@charset "UTF-8";
/* main-color */
/* media-query */
/* ---------------임시 setting (개발 끝나고 제거)--------------- */
/* ---------------공통 스타일 START--------------- */
.section-heading {
  text-align: center;
}

.section-heading .opacity-text {
  transition-delay: 0.2s;
}

.ci img {
  width: 5rem;
}
@media screen and (max-width: 450px) {
  .ci img {
    width: 38px;
  }
}

.ci + .slogan {
  margin: 3rem 0 0;
}

.slogan {
  font-size: 1rem;
  font-weight: 300;
  display: block;
  letter-spacing: 0.5em;
  color: #282828;
  white-space: nowrap;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 450px) {
  .slogan {
    font-size: 7px;
  }
}

.section-title {
  font-size: 4rem;
}
.section-title:has(.ani-text):has(.ani-inner) {
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .section-title:has(.ani-text):has(.ani-inner) {
    line-height: 1.05;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }
}

.slogan + .section-title {
  margin: 3.5rem 0 0;
}

.section-title + .section-desc {
  margin: 2.5rem 0 0;
}
@media screen and (max-width: 767px) {
  .section-title + .section-desc {
    margin: 2rem 0 0;
    text-wrap: balance;
  }
  .section-title + .section-desc br {
    display: none;
  }
}

/* ---------------공통 스타일 END--------------- */
/* ---------------body.scroll style START--------------- */
body.scroll .project-header {
  position: fixed;
  box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.05);
}
body.scroll .quick {
  opacity: 1;
  pointer-events: auto;
}

/* ---------------body.scroll style END--------------- */
/* ---------------project-header START--------------- */
.project-header {
  position: relative;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 72px;
  background-color: #fff;
}
.project-header.dimmed {
  background-color: rgba(255, 255, 255, 0);
}
.project-header.dimmed .maxwidth h1 a img {
  opacity: 0;
}
.project-header .maxwidth {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.project-header .maxwidth h1 a {
  display: block;
}
.project-header .maxwidth h1 a img {
  width: 170px;
  transition: opacity 0.3s ease-in-out;
}
.project-header .maxwidth .gnb .mo-gnb-logo {
  display: none;
}
.project-header .maxwidth .gnb .gnb-menu {
  display: flex;
  gap: 3.5rem;
}
.project-header .maxwidth .gnb .gnb-menu li {
  display: flex;
  align-items: center;
}
.project-header .maxwidth .gnb .gnb-menu li a {
  height: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: color 0.3s ease-in-out 0s, font-weight 0.15s ease-in-out;
  line-height: 1.8;
}
.project-header .maxwidth .gnb .gnb-menu li a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #2458ad, #89d8e5);
  background-size: 200% auto;
  transition: all 0.5s;
  transform: translateX(-103%);
}
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .project-header .maxwidth .gnb .gnb-menu li a:hover {
    font-weight: 800;
  }
  .project-header .maxwidth .gnb .gnb-menu li a:hover::after {
    transform: translateX(0%);
    animation: gradient-89 3s linear infinite;
  }
}
.project-header .maxwidth .btn-mega {
  width: 25px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.project-header .maxwidth .btn-mega .bar {
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: #666;
  position: relative;
  border-radius: 10px;
}
.project-header .maxwidth .btn-mega .bar.top {
  top: 0px;
  transform: rotate(0deg);
  will-change: transform;
  transform-origin: center;
  transition-delay: 0.3s, 0s, 0.3s;
  transition-duration: 0.3s, 0.3s, 0.3s;
  transition-property: top, transform, background-color;
}
.project-header .maxwidth .btn-mega .bar.center {
  margin: 7px 0;
  opacity: 1;
  transition-delay: 0.3s, 0.3s;
  transition-property: opacity, background-color;
  transition-duration: 0.3s, 0.3s;
}
.project-header .maxwidth .btn-mega .bar.bottom {
  bottom: 0px;
  transform: rotate(0deg);
  will-change: transform;
  transform-origin: center;
  transition-delay: 0.3s, 0s, 0.3s;
  transition-duration: 0.3s, 0.3s, 0.3s;
  transition-property: bottom, transform, background-color;
}
.project-header .maxwidth .btn-mega.active .bar {
  background-color: #fff !important;
}
.project-header .maxwidth .btn-mega.active .bar.top {
  top: 9px;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.3s;
}
.project-header .maxwidth .btn-mega.active .bar.center {
  opacity: 0;
}
.project-header .maxwidth .btn-mega.active .bar.bottom {
  bottom: 9px;
  transform: rotate(45deg);
  transition-delay: 0s, 0.3s;
}

@media screen and (max-width: 1279px) {
  .project-header .maxwidth {
    width: 96%;
  }
  .project-header .maxwidth .gnb .gnb-menu {
    gap: 2vw;
  }
  .project-header .maxwidth .gnb .gnb-menu li a {
    font-size: 15.5px;
  }
}
@media screen and (max-width: 991px) {
  .project-header .maxwidth {
    width: calc(100% - 40px);
    gap: 0px;
  }
  .project-header .maxwidth .gnb {
    position: fixed;
    width: 50%;
    max-width: 325px;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #152453;
    transition: transform 0.6s cubic-bezier(0.425, 0.05, 0, 1), opacity 0.6s cubic-bezier(0.425, 0.05, 0, 1);
    border-radius: 30px 0 0 30px;
    transform: translateX(100%);
  }
  .project-header .maxwidth .gnb .mo-gnb-logo {
    display: block;
    opacity: 0;
    transition: opacity 0.5s 0s;
    width: 21rem;
    position: absolute;
    top: 20px;
    left: 25px;
  }
  .project-header .maxwidth .gnb.active {
    transform: translateX(0%);
  }
  .project-header .maxwidth .gnb.active .mo-gnb-logo {
    opacity: 1;
  }
  .project-header .maxwidth .gnb.active .gnb-menu li {
    opacity: 1;
    transform: translateX(0px);
  }
  .project-header .maxwidth .gnb.active .gnb-menu li a {
    color: #fff;
  }
  .project-header .maxwidth .gnb .gnb-menu {
    gap: 27px;
    flex-direction: column;
    padding: 16.5dvh 30px 0;
  }
  .project-header .maxwidth .gnb .gnb-menu li {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(3) {
    transition-delay: 0.15s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(5) {
    transition-delay: 0.25s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(6) {
    transition-delay: 0.3s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(7) {
    transition-delay: 0.35s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(8) {
    transition-delay: 0.4s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(9) {
    transition-delay: 0.45s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(10) {
    transition-delay: 0.5s;
  }
  .project-header .maxwidth .gnb .gnb-menu li a {
    font-size: 19px;
    text-align: center;
    line-height: 1.5;
    font-weight: 800;
  }
  .project-header .maxwidth .gnb .gnb-menu li a::after {
    content: none;
    background: linear-gradient(90deg, #34a8df, #59c2f4, #bbe3f6);
  }
  .project-header .maxwidth .gnb .gnb-menu li a.active::after {
    transform: translateX(0%);
    animation: gradient-89 3s linear infinite;
  }
  .project-header .maxwidth .btn-mega {
    display: flex;
    position: relative;
  }
  .project-header .maxwidth .btn-mega.active .bar {
    width: 24px;
    height: 3px;
    border-radius: 10px;
  }
  .project-header .maxwidth .btn-mega.active .bar.top {
    top: 10px;
  }
  .project-header .maxwidth .btn-mega.active .bar.bottom {
    bottom: 10px;
  }
  .project-header .maxwidth .btn-mega.active::after {
    content: "";
    display: block;
    position: absolute;
    width: 42px;
    height: 42px;
    left: 50%;
    top: 50%;
    transform: translate(-52%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.75);
  }
}
@media screen and (max-width: 767px) {
  .project-header {
    height: 56px;
  }
  .project-header .maxwidth {
    width: calc(100% - 30px);
  }
  .project-header .maxwidth h1 a img {
    width: 170px;
  }
  .project-header .maxwidth .gnb {
    width: 60%;
  }
  .project-header .maxwidth .gnb .mo-gnb-logo {
    left: 20px;
  }
  .project-header .maxwidth .gnb .gnb-menu {
    padding: 17dvh 25px 0;
  }
  .project-header .maxwidth .gnb .gnb-menu li a {
    font-size: 17px;
  }
  .project-header .maxwidth .btn-mega {
    width: 20px;
    height: 20px;
  }
  .project-header .maxwidth .btn-mega .bar.center {
    margin: 5px 0;
  }
  .project-header .maxwidth .btn-mega.active .bar.bottom {
    bottom: 6px;
  }
  .project-header .maxwidth .btn-mega.active::after {
    width: 38px;
    height: 38px;
    left: calc(50% + 2px);
    top: calc(50% + 2px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
}
@media screen and (max-width: 450px) {
  .project-header .maxwidth {
    width: calc(100% - 26px);
  }
  .project-header .maxwidth h1 a img {
    width: 150px;
    position: relative;
    right: 2px;
  }
  .project-header .maxwidth .gnb .mo-gnb-logo {
    width: 145px;
    left: 13px;
    top: 18px;
  }
  .project-header .maxwidth .btn-mega {
    width: 20px;
    height: 20px;
  }
  .project-header .maxwidth .btn-mega .bar.center {
    margin: 5px 0;
  }
  .project-header .maxwidth .btn-mega.active .bar {
    width: 20px;
  }
  .project-header .maxwidth .btn-mega.active .bar.bottom {
    bottom: 6px;
  }
  .project-header .maxwidth .btn-mega.active::after {
    width: 36px;
    height: 36px;
    left: calc(50% + 0px);
    top: calc(50% + 2px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
  }
}
/* ---------------project-header END--------------- */
/* ---------------project-footer START--------------- */
.project-footer {
  padding: 9rem 0 15rem;
  background-color: #414141;
}
.project-footer .maxwidth ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-footer .maxwidth ul li {
  position: relative;
  padding: 0 2.7rem;
  color: #fff;
  font-weight: 700;
}
.project-footer .maxwidth ul li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 2px;
  height: 75%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.project-footer .maxwidth .footer-line {
  background-color: rgba(204, 204, 204, 0.2);
  height: 1px;
  width: 100%;
  margin: 2.7rem 0;
}
.project-footer .maxwidth address {
  color: rgba(255, 254, 254, 0.502);
  font-size: 15px;
  text-align: center;
  line-height: 1.8;
  text-transform: uppercase;
}

@media screen and (max-width: 1023px) {
  .project-footer {
    padding: 7rem 0 20rem;
  }
  .project-footer .maxwidth .footer-line {
    margin: 4rem 0;
  }
  .project-footer .maxwidth address {
    font-size: 14px;
    text-wrap: balance;
  }
  .project-footer .maxwidth address br {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .project-footer {
    padding: 5rem 0 18.5rem;
  }
  .project-footer .maxwidth ul li:not(:last-child)::after {
    width: 1px;
  }
  .project-footer .maxwidth address {
    font-size: 13px;
  }
}
/* ---------------project-footer END--------------- */
/* ---------------quick START--------------- */
.quick {
  opacity: 0;
  pointer-events: none;
  width: calc(100% - 20px);
  max-width: 830px;
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 97;
  border-radius: 20px;
  background-color: #1cb3f5;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.35);
  transition: opacity 0.5s ease-in-out;
  overflow: hidden;
  height: 78px;
}
.quick .quick-menu {
  width: calc(100% - 20px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.quick .quick-menu li {
  flex: 1;
  display: flex;
  justify-content: center;
}
.quick .quick-menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  position: relative;
  border-radius: 20px;
  gap: 10px;
  background-color: #1cb3f5;
  transition: background-color 0.3s ease-in-out, width 0.3s ease-in-out;
}
.quick .quick-menu li a .icon {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0;
}
.quick .quick-menu li a .quick-name {
  position: absolute;
  opacity: 0;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .quick .quick-menu li a:hover {
    background-color: #003a8f;
  }
  .quick .quick-menu li a:hover .quick-name {
    opacity: 1;
  }
  .quick .quick-menu li a:hover.quick-link1 {
    width: 90px;
  }
  .quick .quick-menu li a:hover.quick-link1 .icon {
    transform: translateX(-23px);
  }
  .quick .quick-menu li a:hover.quick-link1 .quick-name {
    transform: translateX(23px);
  }
  .quick .quick-menu li a:hover.quick-link2 {
    width: 85px;
  }
  .quick .quick-menu li a:hover.quick-link2 .icon {
    transform: translateX(-23px);
  }
  .quick .quick-menu li a:hover.quick-link2 .quick-name {
    transform: translateX(23px);
  }
  .quick .quick-menu li a:hover.quick-link3 {
    width: 105px;
  }
  .quick .quick-menu li a:hover.quick-link3 .icon {
    transform: translateX(-33px);
  }
  .quick .quick-menu li a:hover.quick-link3 .quick-name {
    transform: translateX(24px);
  }
  .quick .quick-menu li a:hover.quick-link4 {
    width: 95px;
  }
  .quick .quick-menu li a:hover.quick-link4 .icon {
    transform: translateX(-27px);
  }
  .quick .quick-menu li a:hover.quick-link4 .quick-name {
    transform: translateX(23px);
  }
  .quick .quick-menu li a:hover.quick-link5 {
    width: 85px;
  }
  .quick .quick-menu li a:hover.quick-link5 .icon {
    transform: translateX(-30px);
  }
  .quick .quick-menu li a:hover.quick-link5 .quick-name {
    transform: translateX(18px);
  }
  .quick .quick-menu li a:hover.quick-link6 {
    width: 140px;
  }
  .quick .quick-menu li a:hover.quick-link6 .icon {
    transform: translateX(-37px);
  }
  .quick .quick-menu li a:hover.quick-link6 .quick-name {
    transform: translateX(37px);
  }
}

@media screen and (max-width: 1023px) {
  .quick {
    bottom: 15px;
    max-width: 550px;
    height: auto;
  }
  .quick .quick-menu {
    gap: 0px;
  }
  .quick .quick-menu li a {
    gap: 12px;
    padding: 12px 10px;
  }
  .quick .quick-menu li a .icon {
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .quick .quick-menu li a .icon img {
    height: 27px;
  }
  .quick .quick-menu li a .icon.icon6 img {
    height: 19px;
  }
}
@media screen and (max-width: 767px) {
  .quick {
    bottom: 10px;
    max-width: unset;
  }
  .quick .quick-menu {
    padding: 10px 0;
  }
  .quick .quick-menu li {
    flex: 1;
    justify-content: center;
  }
  .quick .quick-menu li a {
    gap: 7px;
    border-radius: 10px;
    padding: 6px 7px;
  }
  .quick .quick-menu li a .icon img {
    height: 25px;
  }
  .quick .quick-menu li a .quick-name {
    font-size: 13px;
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .quick {
    width: calc(100% - 16px);
    height: 52px;
    display: flex;
    bottom: 7px;
  }
  .quick .quick-menu {
    padding: 0px 0;
    width: 100%;
  }
  .quick .quick-menu li a {
    gap: 7px;
    border-radius: 10px;
    padding: 0px 0px;
  }
  .quick .quick-menu li a .icon {
    transform: none;
  }
  .quick .quick-menu li a .icon img {
    height: 25px;
  }
  .quick .quick-menu li a .icon.icon1 img {
    height: 22px;
  }
  .quick .quick-menu li a .icon.icon6 img {
    height: 17px;
  }
  .quick .quick-menu li a .quick-name {
    font-size: 13px;
  }
}
/* ---------------quick END--------------- */
/* ---------------gnb-dim START--------------- */
.gnb-dim {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  z-index: 99;
  transition: opacity 0.6s cubic-bezier(0.425, 0.05, 0, 1);
}
.gnb-dim.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------------gnb-dim END--------------- */
/* ---------------nopay START--------------- */
.nopay {
  pointer-events: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 10003;
  background: rgba(0, 0, 0, 0.85);
  padding: 20px;
  width: calc(100% - 40px);
  opacity: 0;
  transition: opacity 0.35s;
  height: calc(100dvh - 40px);
  cursor: not-allowed;
}
.nopay img {
  display: block;
  margin: 0 auto;
  max-width: 1100px;
}
.nopay.show {
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}
.nopay.hide {
  opacity: 0;
  pointer-events: none;
}
.nopay::-webkit-scrollbar {
  width: 10px;
}
.nopay::-webkit-scrollbar-track {
  background: transparent; /* 트랙 투명 */
  margin: 8px 0;
}
.nopay::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.22); /* 기본 색 */
  border-radius: 999px; /* 둥근 핸들 */
  border: 2px solid transparent; /* ‘통통한’ 느낌 */
  background-clip: content-box;
}
.nopay::-webkit-scrollbar-corner {
  background: transparent;
}

@media screen and (max-width: 1023px) {
  .nopay {
    padding: 40px 20px 0px 20px;
  }
  .nopay img {
    max-width: unset;
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .nopay {
    padding: 10px 10px 10px 10px;
    width: calc(100% - 20px);
    height: calc(100dvh - 20px);
  }
  .nopay img {
    max-width: unset;
    width: 100%;
  }
}
/* ---------------nopay END--------------- */
/* ---------------popup START--------------- */
.popup-layout {
  position: fixed;
  padding: 0 15px 0 0;
  top: 50%;
  left: 50%;
  opacity: 1;
  max-height: 100dvh;
  transform: translate(calc(-49.9% + 15px), -49.9%) scale(1);
  z-index: 10003;
  transition: opacity 0.65s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.72s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.8s ease-out;
  pointer-events: auto;
  overflow-y: auto;
  scrollbar-gutter: stable;
  transform-origin: top right;
}
.popup-layout.is-closing {
  transform: translate(calc(-49.9% + 15px), calc(-49.9% - 6rem)) scale(0.94);
  pointer-events: none;
  opacity: 0;
}
.popup-layout::-webkit-scrollbar {
  width: 6px;
}
.popup-layout::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 6px 0;
}
.popup-layout::-webkit-scrollbar-thumb {
  background-color: rgba(28, 179, 245, 0.5);
  border-radius: 10px;
}
.popup-layout .popup-inner {
  display: flex;
  flex-direction: row-reverse;
  border-radius: 12px;
  overflow: hidden;
}
.popup-layout .popup-inner .popup-swiper {
  width: 550px;
  overflow: hidden;
}
.popup-layout .popup-inner .popup-list {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup-layout .popup-inner .popup-list li {
  text-align: center;
  line-height: 1.35;
  font-size: 17px;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Paperlogy";
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: -0.02em;
  box-sizing: border-box;
  width: 190px;
  background-color: #aaa;
  color: #fff;
}
.popup-layout .popup-inner .popup-list li.active {
  color: #fff;
  background-color: #1cb3f5;
}
.popup-layout .popup-inner .mo-popup-list {
  display: none;
}
.popup-layout .popup-control {
  display: flex;
  justify-content: space-between;
  margin: 15px 0 0;
}
.popup-layout .popup-control .popup-control-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.popup-layout .popup-control .popup-control-btn svg {
  width: 30px;
}
.popup-layout .popup-control .popup-control-btn svg rect {
  transition: fill 0.3s ease-in-out;
}
.popup-layout .popup-control .popup-control-btn svg path {
  transition: fill 0.3s ease-in-out;
}
.popup-layout .popup-control .popup-control-btn .control-text {
  color: #fff;
  line-height: 1;
  font-size: 17px;
  letter-spacing: 0em;
  font-weight: 600;
}
.popup-layout .popup-control .popup-control-btn:hover svg rect {
  fill: #fff;
}
.popup-layout .popup-control .popup-control-btn:hover svg path {
  fill: #1cb3f5;
}

@media (min-width: 601px) and (max-height: 800px) {
  .popup-layout {
    max-height: 90dvh;
  }
}
@media (max-width: 850px) {
  .popup-layout {
    max-width: 500px;
  }
  .popup-layout .popup-inner {
    flex-direction: column;
    border-radius: 0px;
  }
  .popup-layout .popup-inner .popup-swiper {
    width: 100%;
    position: relative;
  }
  .popup-layout .popup-inner .popup-swiper .swiper-slide img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .popup-layout .popup-inner .popup-list {
    display: none;
  }
  .popup-layout .popup-inner .mo-popup-list {
    display: flex;
    background-color: #fff;
    height: 50px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .popup-layout .popup-inner .mo-popup-list li {
    text-align: center;
    font-size: 17px;
    letter-spacing: 0;
    font-weight: 300;
    font-family: "Paperlogy";
  }
  .popup-layout .popup-inner .mo-popup-list .mo-swiper-pagination {
    position: absolute;
    z-index: 10;
    color: #424242;
    right: 20px;
    top: 50%;
    display: flex;
    transform: translateY(-50%);
    left: unset;
    bottom: unset;
    width: auto;
    font-size: 15px;
    letter-spacing: 0.095em;
    font-family: Arial, Helvetica, sans-serif;
  }
  .popup-layout .popup-control {
    margin: 0;
    padding: 9px;
    background-color: #333333;
    box-sizing: border-box;
    border: 1px solid #666;
  }
  .popup-layout .popup-control .popup-control-btn {
    gap: 6px;
  }
  .popup-layout .popup-control .popup-control-btn svg {
    width: 25px;
  }
  .popup-layout .popup-control .popup-control-btn .control-text {
    font-size: 15px;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 600px) {
  .popup-layout {
    max-width: 80%;
    padding: 0;
    transform: translate(-49.9%, -49.9%) scale(1);
    scrollbar-width: none;
    overflow: hidden;
  }
  .popup-layout::-webkit-scrollbar {
    display: none;
  }
  .popup-layout.is-closing {
    transform: translate(-49.9%, calc(-49.9% - 5rem)) scale(0.94);
  }
  .popup-layout .popup-inner .mo-popup-list {
    height: 42px;
  }
  .popup-layout .popup-inner .mo-popup-list li {
    font-size: 15.5px;
  }
  .popup-layout .popup-inner .mo-popup-list .mo-swiper-pagination {
    right: 10px;
    font-size: 13.2px;
  }
  .popup-layout .popup-control .popup-control-btn {
    gap: 6px;
  }
  .popup-layout .popup-control .popup-control-btn svg {
    width: 21px;
  }
  .popup-layout .popup-control .popup-control-btn .control-text {
    font-size: 13.5px;
  }
}
.popup-dim {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10001;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.popup-dim.hide {
  opacity: 0;
}

/* ---------------popup END--------------- *//*# sourceMappingURL=layout.css.map */