#popParent {
    display: none;
}
.pop-parent {
    z-index: 9999;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding-bottom: 40px;
    background-color: rgba(0, 0, 0, 0.35);
}
.pop-parent .pop {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
}
.pop-parent .m-ratioBox-wrap {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
.pop-parent .m-ratioBox-wrap .m-ratioBox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--sub_color01);
}
.pop-parent .m-ratioBox-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}
.pop-parent .m-ratioBox-wrap iframe {
    width: 105%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 1;
}
.pop-parent .pop .btn-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    background-color: black;
    cursor: pointer;
}
.pop-parent .pop .btn-toggle img {
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    transition: all 0.3s;
}
.pop-parent .pop-btns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 40px;
    background-color: #3c3c3c;
}
.pop-parent .pop-btns a {
    color: #fff;
    padding: 7px 14px;
}
.pop-parent .pop-btns #oneday_check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}
.pop-parent .pop-btns #oneday_check + label {
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}
.pop-parent .pop-btns #oneday_check + label:before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    border: 1px solid #fff;
}
.pop-parent .pop .swiper-btn-control {
    width: 8px;
    height: 11px;
    margin-left: 16px;
    position: relative;
    top: 2px;
}
.pop-parent .popupSwiper {
    background-color: #fff;
}
.pop-parent .swiper-pagination {
    pointer-events: none;
    top: 21px;
    left: auto;
    right: 20px;
    width: fit-content;
}
.pop-parent .swiper-pagination-bullet {
    flex: 0 0 auto;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 0;
    border: 1px solid white;
    opacity: 0.5;
    background-color: transparent;
}
.pop-parent .swiper-pagination-bullet-active {
    background-color: #fff;
    opacity: 1;
}
.pop-parent .active {
    right: -400px;
}
.pop-parent .active .btn-toggle {
    transform: rotate(180deg);
}
.pop-parent .pop .btn-close {
    width: 40px;
    height: 40px;
    background-color: black;
}
.pop-parent .pop .btn-close > i {
    color: #fff;
}

/* FAQ */
.faq-item summary .minus {
    display: none;
}
.faq-item:open summary .plus {
    display: none;
}
.faq-item:open summary .minus {
    display: block;
}

/* index */
.main-banner .swiper-slide {
    width: 100%;
    height: 100vh;
    background-color: black;
    padding: 0 16px;
}
.index-s2-slide {
    width: 100%;
    padding: 0 calc((100vw - 1600px) / 2);
}
.index-s2-slide .swiper-slide {
    width: fit-content;
    transition: padding 0.3s ease;
}
.index-s2-slide .swiper-slide:hover {
    padding-right: 72px;
}
.index-s2-slide-card {
    width: 400px;
    height: 475px;
}
.customer-swiper-wrap {
    width: 100%;
    position: relative;
    &::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 20%;
        height: 100%;
        background: linear-gradient(
            to left,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 1)
        );
        z-index: 9;
    }
    &::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 20%;
        height: 100%;
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 1)
        );
        z-index: 9;
    }
}
.customer-swiper .swiper-wrapper {
    transition-timing-function: linear;
    will-change: transform;
}

.customer-swiper .swiper-slide {
    width: fit-content;
}
.customer-swiper img {
    width: 100%;
    height: 28px;
    object-fit: contain;
    object-position: center;
}

.customer-marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: none;
    will-change: transform;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

.customer-marquee .swiper-slide {
    flex: 0 0 auto;
    width: fit-content;
    margin-right: clamp(24px, 4vw, 80px);
}
.customer-marquee .swiper-slide img {
    width: 100%;
    height: 28px;
    object-fit: contain;
    object-position: center;
}



@keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

@media screen and (max-width: 1632px) {
    .index-s2-slide {
        padding: 0 16px;
    }
}
@media screen and (max-width: 1280px) {
    .index-s2-slide-card {
        width: 320px;
        height: 380px;
    }
    .index-s2-slide .swiper-slide:hover {
        padding-right: 48px;
    }
    .customer-swiper img {
        height: 24px;
    }
}
@media screen and (max-width: 768px) {
    .index-s2-slide-card {
        width: 240px;
        height: 285px;
    }
    .index-s2-slide .swiper-slide:hover {
        padding-right: 24px;
    }
}

/* nation-slide: 오른쪽 90도 회전 pagination (세로 배치) */
.nation-slide {
    touch-action: pan-y;
}
.nation-slide-pagination {
    position: absolute;
    left: auto;
    right: 0;
    bottom: auto;
    top: 50%;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: rotate(90deg) translateX(-25%) translateY(-100%);
}
.nation-slide-pagination.swiper-pagination-fraction {
    font-size: 20px;
}
.nation-slide-pagination .swiper-pagination-current {
    font-weight: medium;
    opacity: 1;
}
.nation-slide-pagination .swiper-pagination-total {
    opacity: 0.4;
}
.nation-slide-pagination .swiper-pagination-fraction-separator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    opacity: 0.4;
}

@media screen and (max-width: 1024px) {
    .nation-slide-pagination {
        gap: 8px;
        transform: rotate(90deg) translateX(-25%) translateY(-100%);
    }
    .nation-slide-pagination.swiper-pagination-fraction {
        font-size: 14px;
    }
    .nation-slide-pagination .swiper-pagination-fraction-separator {
        width: 2px;
        height: 2px;
    }
}

/* 카카오맵 */
.root_daum_roughmap,
.root_daum_roughmap .wrap_map {
    width: 100% !important;
    height: 100% !important;
}

.tab-content .fade-up {
    opacity: inherit;
}

