#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;
}

.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: 55%;
  height: auto;
}
.m-menu .m-menu-head > a > img {
  width: 100%;
  height: auto;
}
.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: 1.6rem;
  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: 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;
}
@media (max-width: 1280px) {
  #footer .container .mid .f-infos span {
    font-size: 1.4rem;
  }
}
#footer .container .mid .f-infos span > b {
  font-weight: 700;
  color: white;
}/*# sourceMappingURL=common.css.map */