#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  background: white;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
  z-index: 500;
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1680px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .container #h-logo {
  flex: 0 0 auto;
  height: 80%;
  display: flex;
}
@media (max-width: 1280px) {
  #header .container #h-logo {
    height: 50%;
  }
}
#header .container #h-logo > img {
  width: auto;
  height: 100%;
}
#header .container .h-right-wrap {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 180px;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap {
    gap: 16px;
  }
}
#header .container .h-right-wrap .h-global-nav {
  flex: 0 0 auto;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .h-global-nav {
    display: none;
  }
}
#header .container .h-right-wrap .h-global-nav .depth-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li {
  position: relative;
  flex: 0 0 auto;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li > a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li:hover .depth-2 {
  display: flex;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  padding-top: 40px;
  display: none;
  flex-direction: column;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 > li {
  width: 100%;
  height: auto;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 > li > a {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: black;
  text-align: center;
  background: white;
  transition: all 0.2s ease-in-out;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 > li > a:hover {
  background: #123261;
  color: white;
}
#header .container .h-right-wrap .lang {
  position: relative;
  width: 100px;
  height: 48px;
}
#header .container .h-right-wrap .lang .current {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#header .container .h-right-wrap .lang .current span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #464646;
}
#header .container .h-right-wrap .lang .current i {
  transform: rotate(90deg);
  font-size: 16px;
  line-height: 1;
  color: #707070;
  font-variation-settings: "wght" 300;
}
#header .container .h-right-wrap .lang .languages {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  display: none;
  flex-direction: column;
  border: 1px solid #aaa;
  background: white;
}
#header .container .h-right-wrap .lang .languages a {
  width: 100%;
  padding: 12px;
  display: flex;
  justify-content: center;
  font-size: 16px;
  line-height: 1.2;
  color: #464646;
  -moz-text-align-last: center;
       text-align-last: center;
  word-break: keep-all;
}
#header .container .h-right-wrap .lang .languages a.now {
  font-weight: 600;
  background: #cdffdc;
  color: #075a37;
}
#header .container .h-right-wrap .lang.on .languages {
  display: flex;
}
#header .container .h-right-wrap .m-menu-open {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 12px;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .m-menu-open {
    display: flex;
  }
}
#header .container .h-right-wrap .m-menu-open i {
  font-size: 28px;
  line-height: 1;
  color: black;
}

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

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(calc(100% + 12px));
  width: 100%;
  height: 100dvh;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
  z-index: 951;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .m-menu-head {
  flex: 0 0 auto;
  width: 100%;
  height: 70px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}
.m-menu .m-menu-head > a {
  flex: 0 0 auto;
  width: auto;
  height: 60%;
}
.m-menu .m-menu-head > a > img {
  width: auto;
  height: 100%;
}
.m-menu .m-menu-head .m-menu-close {
  width: 40px;
  height: 40px;
  padding: 4px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
}
.m-menu .m-menu-head .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.m-menu .m-menu-body {
  flex: 1 1 auto;
  overflow: auto;
}
.m-menu .m-menu-body .m-global-nav {
  width: 100%;
  height: auto;
}
.m-menu .m-menu-body .m-global-nav .depth-1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li > span, .m-menu .m-menu-body .m-global-nav .depth-1 > li > a {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  color: black;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 > li {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #3D3D3D;
  border-left: 1px solid #ddd;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 > li:hover {
  color: #0F4196;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li:hover > span, .m-menu .m-menu-body .m-global-nav .depth-1 > li:hover > a, .m-menu .m-menu-body .m-global-nav .depth-1 > li.active > span, .m-menu .m-menu-body .m-global-nav .depth-1 > li.active > a {
  color: white;
  background: #0F4196;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li.active .depth-2 {
  max-height: 240px;
}
.m-menu .m-menu-bottom {
  flex: 0 0 auto;
  width: 100%;
  height: 70px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ddd;
}
.m-menu .m-menu-bottom > a {
  flex: 1 1 40%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.m-menu .m-menu-bottom > a .icon-box {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: black;
  border-radius: 8px;
  cursor: pointer;
}
.m-menu .m-menu-bottom > a .icon-box > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.m-menu .m-menu-bottom > a > span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
  color: #3D3D3D;
}
.m-menu .m-menu-bottom > a.mypage .icon-box {
  background: white;
  border: 2px solid #01d95a;
}
.m-menu .m-menu-bottom > a.mypage .icon-box > svg {
  fill: #01d95a;
}

#footer {
  width: 100%;
  height: auto;
  padding: 48px 0 24px;
  background: black;
}
@media (max-width: 1280px) {
  #footer {
    padding: 24px 0;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .container #f-logo {
  width: auto;
  height: 100px;
  margin-bottom: 30px;
  display: flex;
}
@media (max-width: 1280px) {
  #footer .container #f-logo {
    height: 52px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  #footer .container #f-logo {
    margin-bottom: 20px;
  }
}
#footer .container #f-logo > img {
  height: 100%;
}
#footer .container .f-global-nav {
  margin-bottom: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 60px;
  align-items: center;
}
@media (max-width: 1280px) {
  #footer .container .f-global-nav {
    margin-bottom: 24px;
    gap: 16px 40px;
  }
}
#footer .container .f-global-nav > a {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #aaa;
  word-break: keep-all;
}
@media (max-width: 768px) {
  #footer .container .f-global-nav > a {
    font-size: 14px;
  }
}
#footer .container .f-infos {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media (max-width: 1280px) {
  #footer .container .f-infos {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  #footer .container .f-infos {
    margin-bottom: 20px;
  }
}
#footer .container .f-infos span {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.2;
  text-align: center;
  color: white;
}
#footer .container .copyright {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.2;
  text-align: center;
  color: white;
}/*# sourceMappingURL=common.css.map */