#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 300;
  transition: all 0.2s ease-in-out;
}
#header.active, #header.super-active, #header:hover {
  background: rgba(224, 243, 250, 0.5333333333);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 1280px) {
  #header {
    height: 60px;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#header .container > a {
  flex: 0 0 auto;
  display: flex;
}
#header .container > a > img {
  width: auto;
  height: 56px;
}
@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: 32px;
}
#header .container .h-right-wrap .h-global-nav {
  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;
  flex: 0 0 auto;
  width: 180px;
  height: 100%;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: black;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  max-height: 0;
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
#header .container .h-right-wrap .h-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;
  line-height: 1.3;
  word-break: keep-all;
  color: #2D2D2D;
}
#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;
  display: none;
  width: 48px;
  height: auto;
  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: auto;
  fill: black;
}

.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;
  padding: 100px 0 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: #fafafa;
}
@media (max-width: 1280px) {
  #footer {
    padding: 60px 0 30px;
  }
}
@media (max-width: 768px) {
  #footer {
    padding: 24px 0;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 70px;
}
@media (max-width: 1280px) {
  #footer .container {
    gap: 32px;
  }
}
@media (max-width: 768px) {
  #footer .container {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
#footer .container .f-logo-wrap {
  flex: 0 0 28%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
@media (max-width: 1280px) {
  #footer .container .f-logo-wrap {
    gap: 1rem;
    align-items: center;
  }
}
#footer .container .f-logo-wrap > a {
  width: 100%;
  height: auto;
  display: flex;
}
#footer .container .f-logo-wrap > a > img {
  width: 100%;
  height: auto;
}
#footer .container .f-logo-wrap .f-logo-slogan {
  font-size: 24px;
  line-height: 1.3;
  word-break: keep-all;
  color: #707070;
}
@media (max-width: 1280px) {
  #footer .container .f-logo-wrap .f-logo-slogan {
    font-size: 1rem;
  }
}
#footer .container .f-logo-wrap .f-logo-slogan > em {
  font-weight: 700;
}
#footer .container .f-info-wrap {
  flex: 1 1 auto;
  display: flex;
}
#footer .container .f-info-wrap > ul {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 32px;
}
@media (max-width: 1280px) {
  #footer .container .f-info-wrap > ul {
    gap: 8px 20px;
  }
}
@media (max-width: 768px) {
  #footer .container .f-info-wrap > ul {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
  }
}
#footer .container .f-info-wrap > ul > li {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1280px) {
  #footer .container .f-info-wrap > ul > li {
    gap: 12px;
  }
}
#footer .container .f-info-wrap > ul > li.full-row {
  flex: 1 1 100%;
}
#footer .container .f-info-wrap > ul > li > em {
  flex: 0 0 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  word-break: keep-all;
  color: #707070;
}
@media (max-width: 1280px) {
  #footer .container .f-info-wrap > ul > li > em {
    flex: 0 0 52px;
    font-size: 13px;
    line-height: 20px;
  }
}
#footer .container .f-info-wrap > ul > li > span {
  flex: 0 1 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  word-break: keep-all;
  color: #3D3D3D;
}
@media (max-width: 1280px) {
  #footer .container .f-info-wrap > ul > li > span {
    font-size: 13px;
    line-height: 20px;
  }
}
#footer .container .f-right-wrap {
  flex: 0 0 28%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 80px;
}
@media (max-width: 1280px) {
  #footer .container .f-right-wrap {
    gap: 40px;
  }
}
#footer .container .f-right-wrap .f-nav-group {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
#footer .container .f-right-wrap .f-nav-group .policy-nav {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#footer .container .f-right-wrap .f-nav-group .policy-nav > a {
  flex: 0 0 auto;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #3D3D3D;
}
#footer .container .f-right-wrap .f-nav-group .policy-nav > a:not(:last-of-type) {
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #aaa;
}
#footer .container .f-right-wrap .f-nav-group .f-social-nav {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
#footer .container .f-right-wrap .f-nav-group .f-social-nav > a {
  width: 40px;
  height: auto;
  display: flex;
}
#footer .container .f-right-wrap .f-nav-group .f-social-nav > a > img {
  width: 100%;
  height: auto;
}
#footer .container .f-right-wrap .copyright {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: #aaa;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .container .f-right-wrap .copyright {
    font-size: 13px;
  }
}/*# sourceMappingURL=common.css.map */