#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 9rem;
  background: #FFE9F8;
  z-index: 500;
}
@media (max-width: 1280px) {
  #header {
    height: 7rem;
  }
}
#header .container {
  width: 95%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#header .container .h-logo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
#header .container .h-logo span {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #header .container .h-logo span {
    font-size: 1.6rem;
  }
}
#header .container .h-logo b {
  font-size: 3.6rem;
  line-height: 1;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #header .container .h-logo b {
    font-size: 2.8rem;
  }
}
#header .container .h-global-nav {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1280px) {
  #header .container .h-global-nav {
    display: none;
  }
}
#header .container .h-global-nav .depth-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9rem;
}
#header .container .h-global-nav .depth-1 > li {
  position: relative;
  display: flex;
}
#header .container .h-global-nav .depth-1 > li > a {
  display: flex;
  font-size: 1.8rem;
  font-weight: 600;
  word-break: keep-all;
  text-align: center;
  color: black;
}
#header .container .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  padding-top: 0;
  max-height: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
#header .container .h-global-nav .depth-1 > li .depth-2 li > a {
  padding: 1.6rem;
  display: flex;
  flex-direction: row;
  background: white;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
  white-space: nowrap;
}
#header .container .h-global-nav .depth-1 > li:hover .depth-2 {
  padding-top: 3.5rem;
  max-height: 34rem;
}
#header .container .m-menu-open {
  position: relative;
  width: 4.8rem;
  height: 4.8rem;
  cursor: pointer;
}
@media (max-width: 1280px) {
  #header .container .m-menu-open {
    width: 4rem;
    height: 4rem;
  }
}
#header .container .m-menu-open > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3.4rem;
  height: auto;
}

#footer {
  width: 100%;
  height: auto;
  padding: 7rem 0 2.4rem;
  background: black;
}
@media (max-width: 1280px) {
  #footer {
    padding: 4.8rem 0 2rem;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}
#footer .container .left, #footer .container .right {
  flex: 0 0 20rem;
  padding-top: 4.8rem;
  display: flex;
  flex-direction: row;
}
#footer .container .left .policy-nav, #footer .container .right .policy-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
#footer .container .left .policy-nav a, #footer .container .right .policy-nav a {
  flex: 0 0 auto;
  font-size: 1.6rem;
  line-height: 1.1;
  color: white;
}
#footer .container .left .policy-nav .col, #footer .container .right .policy-nav .col {
  flex: 0 0 auto;
  width: 0.2rem;
  height: 1.4rem;
  display: flex;
  background: white;
}
#footer .container .left .social-navs, #footer .container .right .social-navs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}
#footer .container .left .social-navs a, #footer .container .right .social-navs a {
  flex: 0 0 3.2rem;
  display: flex;
}
#footer .container .left .social-navs a > img, #footer .container .right .social-navs a > img {
  width: 100%;
  height: auto;
}
#footer .container .right {
  justify-content: flex-end;
}
#footer .container .mid {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .container .mid #f-logo {
  margin-bottom: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0.7;
}
@media (max-width: 1280px) {
  #footer .container .mid #f-logo {
    margin-bottom: 2.4rem;
    gap: 0.4rem;
  }
}
#footer .container .mid #f-logo span {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.1;
  color: white;
}
@media (max-width: 1280px) {
  #footer .container .mid #f-logo span {
    font-size: 1.6rem;
  }
}
#footer .container .mid #f-logo b {
  font-size: 4.8rem;
  line-height: 1;
  color: white;
}
@media (max-width: 1280px) {
  #footer .container .mid #f-logo b {
    font-size: 3.2rem;
  }
}
#footer .container .mid .f-infos {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
#footer .container .mid .f-infos span {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: #aaa;
  word-break: keep-all;
  text-align: center;
}
#footer .container .mid .f-infos span > b {
  font-weight: 700;
  color: white;
}/*# sourceMappingURL=common.css.map */