.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 500;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.m-menu-background.on {
  visibility: visible;
  opacity: 1;
}

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  z-index: 501;
  transition: all 0.2s ease-in-out;
}
.m-menu.on {
  transform: translateX(0);
}
.m-menu .m-top {
  flex: 0 0 auto;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  background: #0B2A56;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.m-menu .m-top .m-menu-close {
  width: 35px;
  height: 35px;
}
.m-menu .m-top .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.m-menu .m-body {
  flex: 1 1 auto;
  width: 100%;
  background: white;
}
.m-menu .m-body .m-menu-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-menu-list .depth1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-menu-list .depth1 > a, .m-menu .m-body .m-menu-list .depth1 > span {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #0B2A56;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-body .m-menu-list .depth1 .depth2 {
  width: 100%;
  max-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-body .m-menu-list .depth1 .depth2 > a {
  display: inline-block;
  width: 100%;
  padding: 16px;
  padding-left: 25px;
  font-size: 15px;
  line-height: 1;
  color: #2B7FBB;
}
.m-menu .m-body .m-menu-list .depth1.on > a, .m-menu .m-body .m-menu-list .depth1.on > span {
  background: #0B2A56;
  color: white;
}
.m-menu .m-body .m-menu-list .depth1.on .depth2 {
  max-height: 300px;
}

.header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: 95px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: linear-gradient(to left, #d0e1e9, #fff);
  box-shadow: 0 0 16px -10px black;
  z-index: 300;
}
.header .container {
  width: 100%;
  height: 100%;
  max-width: 1520px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .container .h-logo {
  width: auto;
  height: 60%;
}
.header .container .h-logo > img {
  width: auto;
  height: 100%;
}
.header .container .h-nav-wrap {
  height: 100%;
  display: flex;
  flex-direction: row;
}
.header .container .h-nav-wrap .h-global-nav {
  height: 100%;
  display: flex;
  flex-direction: row;
}
.header .container .h-nav-wrap .h-global-nav .depth1 {
  position: relative;
  height: 100%;
}
.header .container .h-nav-wrap .h-global-nav .depth1 > a {
  height: 100%;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #0B2A56;
}
.header .container .h-nav-wrap .h-global-nav .depth1 .h-depth2-nav {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  min-width: 100%;
  max-height: 0px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0B2A56;
  transition: 0.2s all ease-in-out;
}
.header .container .h-nav-wrap .h-global-nav .depth1 .h-depth2-nav > a {
  padding: 20px 30px;
  font-size: 16px;
  line-height: 1;
  color: white;
  transition: 0.2s all ease-in-out;
}
.header .container .h-nav-wrap .h-global-nav .depth1 .h-depth2-nav > a:hover {
  color: #0B2A56;
  background: #69A0E0;
}
.header .container .h-nav-wrap .h-global-nav .depth1:hover .h-depth2-nav {
  max-height: 500px;
}
.header .container .h-nav-wrap .m-menu-open {
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
}
.header .container .h-nav-wrap .m-menu-open > svg {
  width: auto;
  height: 40px;
  fill: #0B2A56;
}

@media (max-width: 1520px) {
  .header .container {
    padding: 0 16px;
  }
  .header .container .h-nav-wrap .h-global-nav .depth1 > a {
    padding: 0 16px;
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .header {
    height: 50px;
  }
  .header .container .h-nav-wrap .h-global-nav {
    display: none;
  }
  .header .container .h-nav-wrap .m-menu-open {
    display: flex;
  }
}
.footer {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footer .f-main {
  width: 100%;
  padding: 50px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
.footer .f-main .container {
  width: 100%;
  max-width: 1520px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.footer .f-main .container .top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer .f-main .container .top .f-logo {
  width: auto;
  height: 60px;
}
.footer .f-main .container .top .f-logo > img {
  width: auto;
  height: 100%;
}
.footer .f-main .container .top .f-global-nav {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.footer .f-main .container .top .f-global-nav > a {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.footer .f-main .container .bottom .footer-infos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer .f-main .container .bottom .footer-infos > li {
  font-size: 18px;
  line-height: 1;
  color: #aaa;
}
.footer .copyright {
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
}
.footer .copyright > p {
  font-size: 18px;
  line-height: 1;
  color: #818181;
}

@media (max-width: 1520px) {
  .footer .f-main {
    padding: 30px 0;
  }
  .footer .f-main .container {
    padding: 0 16px;
  }
  .footer .f-main .container .top .f-global-nav {
    gap: 20px;
  }
  .footer .f-main .container .top .f-global-nav > a {
    font-size: 16px;
  }
}
@media (max-width: 1280px) {
  .footer .f-main .container {
    gap: 30px;
  }
  .footer .f-main .container .top {
    flex-direction: column;
    gap: 20px;
  }
  .footer .f-main .container .top .f-logo {
    height: 45px;
  }
  .footer .f-main .container .bottom .footer-infos {
    gap: 10px;
  }
  .footer .f-main .container .bottom .footer-infos > li {
    font-size: 14px;
  }
  .footer .copyright {
    padding: 12px 0;
  }
  .footer .copyright > p {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer .f-main .container .top .f-global-nav {
    flex-wrap: wrap;
  }
  .footer .f-main .container .top .f-global-nav > a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer .f-main .container .bottom .footer-infos > li {
    line-height: 1.4;
    word-break: keep-all;
  }
  .footer .copyright > p {
    font-size: 12px;
  }
}
.board-head-section {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.board-head-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.board-head-section .container {
  position: relative;
  width: 100%;
  max-width: 1520px;
  display: flex;
  flex-direction: column;
}
.board-head-section .container .title-wrap {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.board-head-section .container .title-wrap > h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  text-align: center;
  word-break: keep-all;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}
.board-head-section .container .title-wrap > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: white;
  text-align: center;
  word-break: keep-all;
}
.board-head-section .container .bottom-local-nav {
  width: 100%;
  padding: 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.3);
}
.board-head-section .container .bottom-local-nav > h4 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}
.board-head-section .container .bottom-local-nav .local-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.board-head-section .container .bottom-local-nav .local-nav > a {
  font-size: 14px;
  line-height: 1;
  color: white;
}
.board-head-section .container .bottom-local-nav .local-nav > svg {
  height: 16px;
  fill: white;
}

@media (max-width: 1520px) {
  .board-head-section {
    height: 400px;
  }
  .board-head-section .container .title-wrap {
    padding: 0 16px;
  }
  .board-head-section .container .title-wrap > h1 {
    font-size: 60px;
  }
  .board-head-section .container .bottom-local-nav {
    padding: 16px;
  }
  .board-head-section .container .bottom-local-nav > h4 {
    font-size: 28px;
    line-height: 1;
  }
}
@media (max-width: 768px) {
  .board-head-section {
    height: 320px;
  }
  .board-head-section .container .title-wrap > h1 {
    font-size: 40px;
  }
  .board-head-section .container .title-wrap > span {
    font-size: 16px;
  }
  .board-head-section .container .bottom-local-nav > h4 {
    font-size: 22px;
    line-height: 1;
  }
}
@media (max-width: 480px) {
  .board-head-section {
    height: 300px;
  }
  .board-head-section .container .title-wrap > h1 {
    font-size: 28px;
  }
  .board-head-section .container .title-wrap > span {
    font-size: 14px;
  }
  .board-head-section .container .bottom-local-nav {
    gap: 8px;
  }
  .board-head-section .container .bottom-local-nav > h4 {
    font-size: 18px;
    line-height: 1;
  }
}/*# sourceMappingURL=common.css.map */