.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: 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;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
  z-index: 300;
  box-shadow: 0 0 12px -4px rgba(15, 65, 150, 0.5);
}
@media (max-width: 1280px) {
  #header {
    height: 70px;
  }
}
#header .container {
  width: 90%;
  height: 100%;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1280px) {
  #header .container {
    width: 95%;
    gap: 16px;
  }
}
#header .container #h-logo {
  flex: 0 1 auto;
}
@media (max-width: 1280px) {
  #header .container #h-logo {
    height: 40%;
    display: flex;
  }
}
#header .container #h-logo > img {
  width: auto;
  height: auto;
  max-width: 100%;
}
@media (max-width: 1280px) {
  #header .container #h-logo > img {
    height: 100%;
  }
}
#header .container .h-right-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}
#header .container .h-right-wrap .h-global-nav {
  height: 100%;
  display: flex;
}
@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: 70px;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li {
  position: relative;
  flex: 0 1 auto;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li > a {
  position: relative;
  font-size: 20px;
  font-family: "S-CoreDream-6Bold";
  line-height: 1.2;
  color: #464646;
  text-align: center;
  word-break: keep-all;
  padding-bottom: 12px;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: auto;
  padding-top: 14px;
  display: none;
  flex-direction: column;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 > a {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  line-height: 1.2;
  word-break: keep-all;
  color: white;
  background: #0F4196;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li .depth-2 > a:hover {
  background: white;
  color: #0F4196;
  font-family: "S-CoreDream-6Bold";
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li:hover > a {
  font-family: "S-CoreDream-9Black";
  color: #0F4196;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li:hover > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #0F4196;
}
#header .container .h-right-wrap .h-global-nav .depth-1 > li:hover .depth-2 {
  display: flex;
}
#header .container .h-right-wrap .menu-open {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
}
@media (max-width: 1280px) {
  #header .container .h-right-wrap .menu-open {
    display: block;
  }
}
#header .container .h-right-wrap .menu-open > svg {
  width: 100%;
  height: 100%;
  fill: #707070;
}

#footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
#footer .f-top {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg, #049D6C, #005480);
}
@media (max-width: 1280px) {
  #footer .f-top {
    height: 48px;
  }
}
#footer .f-top .container {
  width: 95%;
  height: auto;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
#footer .f-top .container .f-global-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1280px) {
  #footer .f-top .container .f-global-nav {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  #footer .f-top .container .f-global-nav {
    gap: 10px;
  }
}
#footer .f-top .container .f-global-nav > a {
  font-size: 18px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #footer .f-top .container .f-global-nav > a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #footer .f-top .container .f-global-nav > a {
    font-size: 12px;
  }
}
#footer .f-top .container .f-global-nav .dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10000rem;
}
@media (max-width: 1280px) {
  #footer .f-top .container .f-global-nav .dot {
    width: 4px;
    height: 4px;
  }
}
#footer .f-bottom {
  width: 100%;
  height: auto;
  padding: 80px 0 52px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
}
@media (max-width: 1280px) {
  #footer .f-bottom {
    padding: 48px 0 20px;
  }
}
@media (max-width: 768px) {
  #footer .f-bottom {
    padding: 20px 0;
  }
}
#footer .f-bottom .container {
  width: 95%;
  height: auto;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
}
@media (max-width: 1280px) {
  #footer .f-bottom .container {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #footer .f-bottom .container {
    align-items: flex-start;
  }
}
#footer .f-bottom .container .left {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 1280px) {
  #footer .f-bottom .container .left {
    flex: unset;
    width: 100%;
    gap: 20px;
  }
}
#footer .f-bottom .container .left #f-logo {
  display: flex;
  width: auto;
  height: auto;
  max-width: 100%;
}
@media (max-width: 1280px) {
  #footer .f-bottom .container .left #f-logo {
    height: 40px;
  }
  #footer .f-bottom .container .left #f-logo > img {
    width: auto;
    height: 100%;
  }
}
@media (max-width: 768px) {
  #footer .f-bottom .container .left #f-logo {
    height: 28px;
  }
}
#footer .f-bottom .container .left .f-info-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 16px;
}
#footer .f-bottom .container .left .f-info-list .item {
  flex: 0 1 auto;
  font-size: 15px;
  line-height: 1.3;
  word-break: keep-all;
  color: #707070;
}
@media (max-width: 768px) {
  #footer .f-bottom .container .left .f-info-list .item {
    font-size: 13px;
  }
}
#footer .f-bottom .container .left .f-info-list .item.full-row {
  flex: 1 1 100%;
}
#footer .f-bottom .container .right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media (max-width: 1280px) {
  #footer .f-bottom .container .right {
    justify-content: flex-start;
  }
}
#footer .f-bottom .container .right .copyright {
  font-size: 14px;
  line-height: 1.2;
  color: #707070;
  word-break: keep-all;
}
@media (max-width: 768px) {
  #footer .f-bottom .container .right .copyright {
    font-size: 12px;
  }
}

.to-the-top {
  position: fixed;
  right: 16px;
  bottom: 12%;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #333;
  border-radius: 8px;
  cursor: pointer;
  z-index: 100;
}
.to-the-top > svg {
  width: auto;
  height: 24px;
  fill: white;
}
.to-the-top > span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: white;
  word-break: keep-all;
  text-align: center;
}/*# sourceMappingURL=common.css.map */