.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 600;
  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: 100dvh;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: #003E92;
  z-index: 601;
  transition: all 0.2s ease-in-out;
}
.m-menu.on {
  transform: translateX(0);
}
.m-menu .m-menu-head {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid white;
}
.m-menu .m-menu-head > a {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.m-menu .m-menu-head > a > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.m-menu .m-menu-head .m-menu-close, .m-menu .m-menu-head .prev-depth {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.m-menu .m-menu-head .m-menu-close > svg, .m-menu .m-menu-head .prev-depth > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.m-menu .m-menu-body {
  width: 100%;
  height: auto;
  flex: 1 1 auto;
}
.m-menu .m-menu-body .m-global-depth1 {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-menu .m-menu-body .m-global-depth1 .item {
  width: 100%;
  height: 50px;
}
.m-menu .m-menu-body .m-global-depth1 .item > p, .m-menu .m-menu-body .m-global-depth1 .item > a {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: white;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-depth1 .item > p:hover, .m-menu .m-menu-body .m-global-depth1 .item > a:hover {
  background-color: white;
  color: #003E92;
}
.m-menu .m-menu-body .m-global-depth1 .item .depth2-page {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #87C7B7;
  z-index: 2;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-depth1 .item .depth2-page .m-global-depth2 {
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.m-menu .m-menu-body .m-global-depth1 .item .depth2-page .m-global-depth2 > a {
  width: 100%;
  height: 50px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: white;
  border-radius: 12px;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-depth1 .item .depth2-page .m-global-depth2 > a:hover {
  background: white;
  color: #87C7B7;
}
.m-menu .m-menu-body .m-global-depth1 .item.on .depth2-page {
  transform: translateX(0);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 140px;
  border-bottom: 1px solid white;
  background: transparent;
  display: flex;
  flex-direction: row;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  z-index: 500;
}
@media (max-width: 1280px) {
  .header {
    height: 70px;
    background: white;
  }
}
.header:hover, .header.on, .header.active {
  background-color: white;
}
.header:hover .h-container .h-logo > img, .header.on .h-container .h-logo > img, .header.active .h-container .h-logo > img {
  display: none;
}
.header:hover .h-container .h-logo > img:nth-of-type(2), .header.on .h-container .h-logo > img:nth-of-type(2), .header.active .h-container .h-logo > img:nth-of-type(2) {
  display: block;
}
.header:hover .h-container .h-menu-wrap .h-global-nav .depth-1 > a, .header.on .h-container .h-menu-wrap .h-global-nav .depth-1 > a, .header.active .h-container .h-menu-wrap .h-global-nav .depth-1 > a {
  color: black;
}
.header:hover .h-container .h-menu-wrap .m-menu-open > svg, .header.on .h-container .h-menu-wrap .m-menu-open > svg, .header.active .h-container .h-menu-wrap .m-menu-open > svg {
  fill: black;
}
.header .h-container {
  width: 100%;
  height: 100%;
  max-width: 1500px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1500px) {
  .header .h-container {
    padding: 0 16px;
  }
}
.header .h-container .h-logo {
  position: relative;
  width: auto;
  height: 80%;
}
.header .h-container .h-logo > img {
  width: auto;
  height: 100%;
}
@media (max-width: 1280px) {
  .header .h-container .h-logo > img {
    display: none;
  }
}
.header .h-container .h-logo > img:nth-of-type(2) {
  display: none;
}
@media (max-width: 1280px) {
  .header .h-container .h-logo > img:nth-of-type(2) {
    display: block;
  }
}
.header .h-container .h-menu-wrap {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 150px;
}
.header .h-container .h-menu-wrap .h-global-nav {
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 25px;
}
@media (max-width: 1280px) {
  .header .h-container .h-menu-wrap .h-global-nav {
    display: none;
  }
}
.header .h-container .h-menu-wrap .h-global-nav .depth-1 {
  position: relative;
  height: 100%;
}
.header .h-container .h-menu-wrap .h-global-nav .depth-1 > a {
  height: 100%;
  padding: 0 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  color: white;
  transition: all 0.2s ease-in-out;
}
.header .h-container .h-menu-wrap .h-global-nav .depth-1 .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 0);
  width: 100%;
  max-height: 0px;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.header .h-container .h-menu-wrap .h-global-nav .depth-1 .depth-2 > a {
  height: 45px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: white;
  text-align: center;
  white-space: nowrap;
}
.header .h-container .h-menu-wrap .h-global-nav .depth-1:hover > a {
  background: #003E92;
  color: white;
}
.header .h-container .h-menu-wrap .h-global-nav .depth-1:hover .depth-2 {
  max-height: 500px;
  background: #003E92;
}
.header .h-container .h-menu-wrap .m-menu-open {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .header .h-container .h-menu-wrap .m-menu-open {
    width: 48px;
    height: 48px;
  }
}
.header .h-container .h-menu-wrap .m-menu-open > svg {
  width: 50px;
  height: 50px;
  fill: white;
  transition: inherit;
}
@media (max-width: 1280px) {
  .header .h-container .h-menu-wrap .m-menu-open > svg {
    width: 80%;
    height: 80%;
    fill: black;
  }
}
.header .h-container .h-menu-wrap .m-menu-open:hover {
  background: #003E92;
}
.header .h-container .h-menu-wrap .m-menu-open:hover > svg {
  fill: white;
}

.footer {
  width: 100%;
  padding: 70px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
@media (max-width: 1280px) {
  .footer {
    padding: 48px 0;
  }
}
.footer .container {
  width: 100%;
  max-width: 1500px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1500px) {
  .footer .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .footer .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .footer .container {
    gap: 24px;
  }
}
.footer .container .left {
  flex: 1 1 10%;
  padding-top: 100px;
}
@media (max-width: 1280px) {
  .footer .container .left {
    flex: 1 1 50%;
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .footer .container .left {
    flex: 1 1 100%;
  }
}
.footer .container .left .policy-nav {
  display: flex;
  flex-direction: row;
}
@media (max-width: 480px) {
  .footer .container .left .policy-nav {
    justify-content: center;
  }
}
.footer .container .left .policy-nav > a {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: white;
}
@media (max-width: 1280px) {
  .footer .container .left .policy-nav > a {
    font-size: 16px;
  }
}
.footer .container .left .policy-nav > a:not(:last-of-type) {
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .footer .container .left .policy-nav > a:not(:last-of-type) {
    padding-right: 16px;
    margin-right: 16px;
  }
}
.footer .container .center {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1280px) {
  .footer .container .center {
    margin-top: 50px;
    flex: 1 1 100%;
    order: 3;
  }
}
@media (max-width: 768px) {
  .footer .container .center {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .footer .container .center {
    margin-top: 0;
  }
}
.footer .container .center .f-logo {
  width: 100px;
  height: auto;
  margin-bottom: 55px;
}
@media (max-width: 1280px) {
  .footer .container .center .f-logo {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .footer .container .center .f-logo {
    margin-bottom: 24px;
  }
}
.footer .container .center .f-logo > img {
  width: 100%;
  height: auto;
}
.footer .container .center .f-informations {
  width: 100%;
  margin-bottom: 100px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 13px;
}
@media (max-width: 1280px) {
  .footer .container .center .f-informations {
    margin-bottom: 70px;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .footer .container .center .f-informations {
    margin-bottom: 48px;
  }
}
.footer .container .center .f-informations .info-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 1280px) {
  .footer .container .center .f-informations .info-item {
    flex: unset;
  }
}
.footer .container .center .f-informations .info-item > em {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 22px;
  color: #aaa;
}
@media (max-width: 768px) {
  .footer .container .center .f-informations .info-item > em {
    font-size: 14px;
    line-height: 20px;
  }
}
.footer .container .center .f-informations .info-item > span {
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 22px;
  color: white;
}
@media (max-width: 768px) {
  .footer .container .center .f-informations .info-item > span {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 640px) {
  .footer .container .center .f-informations .info-item > span {
    flex: 0 1 auto;
  }
}
.footer .container .center .f-informations .info-item.w-100 {
  flex: 0 0 100%;
}
@media (max-width: 1280px) {
  .footer .container .center .f-informations .info-item.w-100 {
    flex: unset;
  }
}
.footer .container .center .copyright {
  font-size: 14px;
  line-height: 1;
  color: #aaa;
  text-align: center;
  word-break: keep-all;
}
.footer .container .right {
  flex: 1 1 10%;
  padding-top: 100px;
}
@media (max-width: 1280px) {
  .footer .container .right {
    flex: 1 1 50%;
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  .footer .container .right {
    flex: 1 1 100%;
  }
}
.footer .container .right .social-nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 13px;
}
@media (max-width: 480px) {
  .footer .container .right .social-nav {
    justify-content: center;
  }
}
.footer .container .right .social-nav > a {
  display: block;
  width: 36px;
  height: auto;
  aspect-ratio: 1/1;
}
.footer .container .right .social-nav > a > img {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=common.css.map */