#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
  z-index: 300;
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .container > a {
  flex: 0 0 auto;
  display: flex;
}
#header .container > a > img {
  width: auto;
  height: 64px;
}
@media (max-width: 1280px) {
  #header .container > a > img {
    height: 40px;
  }
}
#header .container .h-right-wrap {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 120px;
}
#header .container .h-right-wrap .h-global-nav {
  flex: 0 1 auto;
  height: 100%;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .h-global-nav {
    display: none;
  }
}
#header .container .h-right-wrap .h-global-nav .depth-1 {
  height: 100%;
  display: flex;
  flex-direction: row;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li {
  position: relative;
  width: auto;
  height: 100%;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li > a {
  height: 100%;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  width: 180px;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: white;
  transition: all 0.2s ease-in-out;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 > a {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
  color: black;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li:hover .depth-2 {
  max-height: 480px;
}
#header .container .h-right-wrap .m-menu-open {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: none;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .m-menu-open {
    display: flex;
  }
}
#header .container .h-right-wrap .m-menu-open > svg {
  width: 100%;
  height: 100%;
  fill: #aaa;
}

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

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: white;
  transition: all 0.2s ease-in-out;
  z-index: 401;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .m-menu-head {
  flex: 0 0 auto;
  width: 100%;
  height: 52px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  border-bottom: 1px solid #ddd;
}
.m-menu .m-menu-head .m-menu-close {
  position: relative;
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.m-menu .m-menu-head .m-menu-close > svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  fill: black;
}
.m-menu .m-menu-body {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-body .m-global-nav {
  width: 100%;
}
.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: 20px;
  font-weight: 600;
  line-height: 1.3;
  word-break: keep-all;
  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;
  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 > a {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
  color: #3D3D3D;
}
.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 {
  background: black;
  color: white;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li.active .depth-2 {
  max-height: 300px;
}

#footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: #F1F1F1;
}
#footer .f-top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 480px) {
  #footer .f-top {
    padding: 0 1rem;
  }
}
#footer .f-top .wrap {
  width: 95%;
  height: auto;
  max-width: 1280px;
  padding: 56px 0 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1280px) {
  #footer .f-top .wrap {
    padding: 40px 0 24px;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  #footer .f-top .wrap {
    padding: 24px 0;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
#footer .f-top .wrap .policy-nav {
  flex: 1 1 25%;
  display: flex;
  flex-direction: row;
}
@media (max-width: 1280px) {
  #footer .f-top .wrap .policy-nav {
    flex: 1 1 10%;
  }
}
@media (max-width: 480px) {
  #footer .f-top .wrap .policy-nav {
    display: none;
  }
}
#footer .f-top .wrap .policy-nav > a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #707070;
}
#footer .f-top .wrap .policy-nav > a:not(:last-of-type) {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #707070;
}
#footer .f-top .wrap .f-center {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
@media (max-width: 1280px) {
  #footer .f-top .wrap .f-center {
    flex: 1 1 60%;
    gap: 32px;
  }
}
#footer .f-top .wrap .f-center #f-logo {
  width: auto;
  height: 64px;
}
@media (max-width: 1280px) {
  #footer .f-top .wrap .f-center #f-logo {
    height: 40px;
  }
}
#footer .f-top .wrap .f-center #f-logo > img {
  width: auto;
  height: 100%;
}
#footer .f-top .wrap .f-center .f-info-list {
  width: 100%;
  height: auto;
  max-width: 480px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}
@media (max-width: 1280px) {
  #footer .f-top .wrap .f-center .f-info-list {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
  }
}
#footer .f-top .wrap .f-center .f-info-list .item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
  color: #464646;
}
@media (max-width: 1280px) {
  #footer .f-top .wrap .f-center .f-info-list .item {
    font-size: 13px;
  }
}
#footer .f-top .wrap .f-center .f-info-list .item > em {
  position: relative;
  flex: 0 0 auto;
  padding-right: 12px;
  margin-right: 12px;
}
@media (max-width: 1280px) {
  #footer .f-top .wrap .f-center .f-info-list .item > em {
    padding-right: 8px;
    margin-right: 8px;
  }
}
#footer .f-top .wrap .f-center .f-info-list .item > em::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  background: #464646;
}
#footer .f-top .wrap .social-nav {
  flex: 1 1 25%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 1280px) {
  #footer .f-top .wrap .social-nav {
    flex: 1 1 10%;
  }
}
#footer .f-top .wrap .social-nav > a {
  flex: 0 0 auto;
  width: 48px;
  height: auto;
  display: flex;
}
@media (max-width: 1280px) {
  #footer .f-top .wrap .social-nav > a {
    width: 32px;
  }
}
#footer .f-top .wrap .social-nav > a > img {
  width: 100%;
  max-width: 100%;
}
#footer .f-bottom {
  width: 100%;
  height: auto;
  padding: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#footer .f-bottom .copyright {
  font-size: 14px;
  line-height: 1.4;
  word-break: keep-all;
  text-align: center;
  color: #aaa;
}/*# sourceMappingURL=common.css.map */