header {
  border-bottom: none;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.main_logo {display: none;}
.main_logo2 {display: block !important;}
.gnb-link {color: #fff !important;}

header.fixed .main_logo {display: block !important;}
header.fixed .main_logo2 {display: none !important;}
header.fixed .gnb-link {color: #302f38 !important;}

.header-hamburger span {background: #fff !important;}
header.fixed .header-hamburger span {background: #000 !important;}

/* main-visual */
.main-visual {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    padding: 0;
    overflow: hidden;
    color: #fff;
}

.mv-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mv-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.mv-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.mv-copy {
    position: absolute;
    left: 50px;
    bottom: 85px;
    color: #fff;
}

.mv-copy-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
    letter-spacing: -2%;
}

.mv-copy-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    word-break: keep-all;
}

.mv-logo-large {
    width: min(900px, 50vw);
}

.mv-logo-large img {
    width: 100%;
    height: auto;
    display: block;
}

.mv-reservation-btn {
    position: absolute;
    right: 50px;
    bottom: 85px;
    z-index: 4;
    min-width: 185px;
    height: 60px;
    padding: 0 24px;
    border: 1px solid #fff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}  

.mv-reservation-btn:hover {
    background: #fff;
    color: var(--main-color);
}

.mv-reservation-btn.mo-btn {
    display: none;
}

/* PC / Mobile 이미지 */
.display-pc {
    display: block;
}

.display-m {
    display: none;
}

@media (max-width: 1820px) {
  .mv-content, .mv-bg {
    padding: 0 !important;
  }
}

@media (max-width: 1024px) {
    .mv-copy {
        left: 20px;
        bottom: 60px;
    }

    .mv-copy-title {
        font-size: 24px;
    }

    .mv-copy-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .mv-logo-large {
        width: 85vw;
        max-width: 460px;
    }

    .mv-reservation-btn {
        position: unset;
        margin-bottom: 70px;
        min-width: 160px;
        height: 48px;
        font-size: 14px;
    }

    .mv-reservation-btn.pc-btn {
        display: none;
    }

    .mv-reservation-btn.mo-btn {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .main-visual {
        height: 100svh;
    }

    .display-pc {
        display: none;
    }

    .display-m {
        display: block;
    }

    .mv-bg img {
        object-position: center;
    }
}

@media (max-width: 450px) {
    .mv-copy {
        bottom: 85px;
    }

    .mv-reservation-btn {
        margin-bottom: 40px;
    }

    .visual-br {display: none;}
}

/* daily-middle-text */
.daily-middle-text {
  max-width: 1820px;
  margin: 0 auto;
  padding: 100px 0 120px;
}

.daily-middle-inner {
    text-align: center;
}

.daily-middle-icon {
    margin-bottom: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.daily-middle-icon img {
    display: block;
}

.daily-middle-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 25px;
    color: var(--main-color);
    word-break: keep-all;
}

.daily-middle-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: var(--main-color);
    word-break: keep-all;
}


@media (max-width: 768px) {
    .daily-middle-text {
        padding: 100px 0;
    }

    .daily-middle-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .daily-middle-desc {
        font-size: 14px;
    }
}

/* daylil-section */
.daylil-section {
    padding: 120px 0 0;
    background: linear-gradient(
        180deg,
        rgba(192, 205, 236, 0.12) 0%,
        rgba(255, 255, 255, 0) 88%
    );
}

.daylil-inner {
    max-width: 1820px;
    margin: 0 auto;
    box-sizing: border-box;
}

.daylil-head {
    margin-bottom: 50px;
}

.daylil-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    color: var(--main-color);
}

.daylil-text-box {
    color: #000;
}

.daylil-sub-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
    word-break: keep-all;
}

.daylil-sub-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -2%;
    opacity: 0.8;
    word-break: keep-all;
}

.daylil-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.daylil-card {
    position: relative;
    background: transparent;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
}

.daylil-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.daylil-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.daylil-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* 흐르는 텍스트 영역 */
.daily-flow-text {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 170px 0 0;
    box-sizing: border-box;
}

.daily-flow-track {
    width: max-content;
    display: flex;
    animation: dailyTextFlow 40s linear 1s infinite normal none running;
}

.daily-flow-track p {
    white-space: nowrap;
    font-size: clamp(64px, 7vw, 124px);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(48,47,56, 0.06);
}

@keyframes dailyTextFlow {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .daylil-section {
       padding: 110px 0 0;
    }

    .daylil-title {
        font-size: 48px;
        margin-bottom: 30px;
    }

    .daylil-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .daily-flow-text {
        padding: 80px 0 0;
    }
}

@media (max-width: 768px) {
    .daylil-inner {
        padding: 0 20px;
    }

    .daylil-head {
        margin-bottom: 70px;
    }

    .daylil-sub-desc {
        font-size: 14px;
    }

    .daylil-name {
        font-size: 22px;
    }
}

@media (max-width: 500px) {
    .daylil-title {
        font-size: 38px;
    }

    .daylil-sub-title {
        font-size: 18px;
    }

    .daylil-sub-desc br {
        display: none;
    }
}

/* why-daylil-section */
.why-daylil-section {
    position: relative;
    padding:110px 0 85px;
    background: #fff;
    overflow: hidden;
}

.why-daylil-head {
    text-align: center;
    margin-bottom: 50px;
}

.section-eyebrow {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--main-color);
}

.section-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #000;
    word-break: keep-all;
}

.why-daylil-slider-wrap {
    position: relative;
    width: 100%;
}

.why-daylil-swiper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.why-daylil-swiper .swiper-wrapper {
    align-items: center;
}

.why-daylil-slide {
    width: 80%;
    max-width: 1500px;
    padding-bottom: 60px; 
    box-sizing: border-box;
    transition: opacity 0.8s ease;
}

.why-daylil-card {
    transform: translateY(0);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.why-daylil-slide:not(.swiper-slide-active) {
    opacity: 0.3;
}

.why-daylil-slide:not(.swiper-slide-active) .why-daylil-card {
    transform: translateY(60px);
}

.why-daylil-slide.swiper-slide-active .why-daylil-card {
    transform: translateY(0);
}

.why-daylil-card {
    position: relative;
    width: 100%;
    height: 730px;
    overflow: hidden;
    transition: transform 0.4s ease;
    background: #ddd;
}

.why-daylil-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-daylil-card .card-mo-bg {
    display: none;
}

.why-daylil-content {
    position: absolute;
    left: 80px;
    bottom: 60px;
    z-index: 3;
    color: #fff;
}

.why-daylil-card-title {
    font-size: 70px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 15px;
}

.why-daylil-card-sub {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
}

.why-daylil-card-desc {
    word-break: keep-all;
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.why-daylil-prev,
.why-daylil-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(-50%);
}

.why-daylil-prev {
    left: 12%;
}

.why-daylil-next {
    right: 12%;
}

.why-daylil-prev::before,
.why-daylil-next::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
}

.why-daylil-prev::before {
    left: 14px;
    transform: translateY(-50%) rotate(-45deg);
}

.why-daylil-next::before {
    right: 14px;
    transform: translateY(-50%) rotate(135deg);
}

.why-daylil-count-wrap {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.why-daylil-count {
    position: absolute;
    right: 5%;
    bottom: 100px;
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 7px;
    color: #fff;
    font-size: 40px;
    line-height: 1.4;
}

.why-daylil-count .why-total,
.why-daylil-count span:nth-child(2) {
    opacity: 0.4;
}

@media (max-width: 1820px) {
    .why-daylil-prev {
        left: 7%;
    }

    .why-daylil-next {
        right: 7%;
    }
}

@media (max-width: 1500px) {
    .why-daylil-prev {
        left: 15px;
    }

    .why-daylil-next {
        right: 15px;
    }
}

@media (max-width: 1200px) {
    .why-daylil-slide {
        width: 85%;
    }

    .why-daylil-count {
        right: 30px;
    }
}

@media (max-width: 1024px) {
    .why-daylil-section {
        padding: 70px 0 60px;
    }

    .why-daylil-content {
        left: 20px;
        bottom: 45px;
    }

    .why-daylil-card-title {
        font-size: 34px;
        margin-bottom: 7px;
    }

    .why-daylil-card-sub {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .why-daylil-card-desc {
        font-size: 14px;
    }

    .why-daylil-count {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .section-eyebrow {
        font-size: 14px;
    }

    .why-daylil-slide {
        padding-bottom: 0;
    }

    .why-daylil-slide:not(.swiper-slide-active) .why-daylil-card {
        transform: translateY(0);
    }

    .why-daylil-count {
        bottom: 10px;
    }
}

@media (max-width: 450px) {
    .why-daylil-card .card-pc-bg {
        display: none;
    }

    .why-daylil-card .card-mo-bg {
        display: block;
    }

    .why-daylil-prev {
        left: 10px;
    }

    .why-daylil-next {
        right: 10px;
    }

    .why-daylil-card {
        height: 550px;
    }

    .why-daylil-card-desc br {
        display: none;
    }

    .why-daylil-content {
        left: 0;
        padding: 0 20px;
    }
}

/* clinic-section */
.clinic-section {
    padding: 135px 0;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(192, 205, 236, 0.12) 88%
    );
}

.clinic-head {
    text-align: center;
    margin-bottom: 50px;
}

.clinic-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 1820px;
    height: 470px;
    margin: 0 auto;
    overflow: hidden;
}

.clinic-swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.clinic-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: 100%;
    /* transform: none !important; */
}

.clinic-slide {
    width: 235px;
    height: 470px !important;
    flex: 0 0 auto;
    overflow: visible;
    z-index: 2;
    transform: translateZ(0);
    will-change: width;
    backface-visibility: hidden;
}

.clinic-slide.is-active {
    z-index: 5;
}

.clinic-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.clinic-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.clinic-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.9s ease;
}

.clinic-slide.is-active .clinic-img-box::after {
    opacity: 0;
}

.clinic-btn-wrap {
    margin-top: 55px;
    text-align: center;
}

.clinic-more-btn {
    min-width: 185px;
    height: 60px;
    padding: 0 55px;
    border-radius: 999px;
    background: #000;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .clinic-slider-wrap {
        height: 350px;
    }

    .clinic-slide {
        width: 180px;
        height: 350px;
    }
}

@media (max-width: 1024px) {
    .clinic-section {
        padding: 60px 0 120px;
    }

    .clinic-slider-wrap {
        height: 300px;
        overflow: hidden;
        padding: 0;
    }

    .clinic-swiper {
        width: 100%;
        height: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .clinic-swiper .swiper-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        height: 100%;
    }

    .clinic-slide {
        height: 300px !important;
        flex-shrink: 0;
        overflow: hidden;
    }

    .clinic-slide.swiper-slide-active .clinic-img-box::after {
        opacity: 0;
    }

    .clinic-btn-wrap {
        margin-top: 50px;
    }

    .clinic-more-btn {
        min-width: 140px;
        height: 48px;
        padding: 0 38px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .clinic-slider-wrap {
        height: 250px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .clinic-slide {
        height: 250px !important;
    }
}

/* before-after-section */
.before-after-section {
    padding: 120px 0 110px;
    overflow: hidden;
}

.before-after-head {
    max-width: 1820px;
    margin: 0 auto 60px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    box-sizing: border-box;
}

.before-after-more {
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.before-after-swiper {
    width: 100%;
    overflow: visible;
}

.before-after-swiper .swiper-wrapper {
    align-items: stretch;
}

.before-after-slide {
    width: 430px;
}

.before-after-card {
    position: relative;
    display: block;
    width: 100%;
    height: 425px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.before-after-img {
    width: 100%;
    height: 100%;
}

.before-after-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.before-after-card:hover .before-after-img img {
    transform: scale(1.04);
    filter: grayscale(0);
}

.before-after-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
    min-width: 100px;
    height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
}

.before-after-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    height: 58px;
    padding: 0 20px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
}

.before-after-card:hover .before-after-badge {
    border: 1px solid #000;
    color: #000;
}

.before-after-card:hover .before-after-title {
    background: #000;
    color: #fff;
}

.before-after-progress {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    width: 640px !important;
    height: 3px !important;
    margin: 70px auto 0;
    background: rgba(0, 0, 0, 0.2) !important;
}

.before-after-progress .swiper-pagination-progressbar-fill {
    background: #000 !important;
}

@media (max-width: 1024px) {
    .before-after-section {
        padding: 110px 0;
    }

    .before-after-head {
        margin-bottom: 45px;
        align-items: flex-end;
    }

    .before-after-more {
        font-size: 15px;
    }

    .before-after-slide {
        width: 360px;
    }

    .before-after-card {
        height: 260px;
    }

    .before-after-progress {
        width: 420px !important;
        margin: 50px auto 0;
    }

    .before-after-badge {
        top: 15px;
        left: 15px;
        min-width: 75px;
        height: 28px;
        padding: 0 14px;
        font-size: 12px;
    }

    .before-after-title {
        height: 38px;
        padding: 0 15px;
        font-size: 14px;
    }

    .before-after-img img {
        filter: grayscale(0);
    }

    .before-after-badge {
        border: 1px solid #fff;
        color: #fff;
    }

    .before-after-title {
        background: #000;
        color: #fff;
    }
}

@media (max-width: 768px) {
    .before-after-section {
        padding: 75px 0;
    }

    .before-after-head {
        padding: 0 20px;
        margin-bottom: 35px;
    }

    .before-after-head .section-title {
        font-size: 18px;
    }

    .before-after-more {
        font-size: 12px;
    }

    .before-after-slide {
        width: 78vw;
    }

    .before-after-card {
        height: 240px;
    }

    .before-after-badge {
        top: 18px;
        left: 18px;
        height: 28px;
        font-size: 12px;
    }

    .before-after-title {
        height: 52px;
        font-size: 14px;
    }

    .before-after-progress {
        width: calc(100% - 80px) !important;
        margin-top: 45px;
    }
}

/* balance-text-section */
.balance-text-section {
    position: relative;
    width: 100%;
    padding: 180px 0;
    margin: 80px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.balance-text-inner {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.balance-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.balance-symbol img {
    width: 100%;
    height: auto;
    display: block;
}

.balance-title {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: var(--main-color)
}

@media (max-width: 768px) {
    .balance-text-section {
        padding: 100px 20px;
    }

    .balance-symbol {
        max-width: 180px;
    }

    .balance-title {
        font-size: 40px;
    }
}

/* info-section */
.info-section {
    padding: 60px 0 170px;
}

.info-inner {
    max-width: 1820px;
    margin: 0 auto;
    box-sizing: border-box;
}

.info-head {
    margin-bottom: 50px;
}

.info-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

.info-map {
    width: 100%;
    min-height: 530px;
    overflow: hidden;
}

.info-map iframe {
    width: 100%;
    height: 100%;
    min-height: 530px;
    object-fit: cover;
    display: block;
}

.info-text {
    padding: 10px 0 0;
}

.info-block {
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.info-block:first-child {
    padding-top: 0;
}

.info-block:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.info-block h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 33px;
    color: var(--main-color);
}

.info-block p {
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    color: var(--main-color);
    word-break: keep-all;
}

.info-time-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-time-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    align-items: flex-start;
}

.info-time-label {
    font-size: 15px;
    font-weight: 300;
    color: var(--main-color);
}

.info-time-row p {
    font-size: 15px;
    font-weight: 300;
    color: var(--main-color);
}

.info-time-row .muted {
    opacity: 0.5;
}

@media (max-width: 1200px) {
    .info-section {
        padding: 100px 0;
    }

    .info-head {
        text-align: center;
    } 

    .info-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .info-text {
        padding-top: 0;
    }

    .info-block:first-child {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 75px 0 120px;
    }

    .info-map, .info-map iframe {
        min-height: 350px;
    }

    .info-block {
        padding: 25px 0;
    }

    .info-block h3 {
        margin-bottom: 25px;
    }

    .info-block p,
    .info-time-label,
    .info-time-row p {
        font-size: 14px;
    }

    .info-time-row {
        grid-template-columns: 80px 1fr;
    }
}

@media (max-width: 450px) {
    .info-map, .info-map iframe {
        min-height: 300px;
    }
}

/* ✅ Popup Modal */
.pop-modal {
  position: fixed;
  inset: 0;
  display: none;
  pointer-events: none;
  z-index: 1000;
}

.pop-modal.is-open {
  display: inline-block;
}

.pop-modal .pop-dim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pop-modal .pop-wrap {
  pointer-events: auto;
}

.pop-wrap {
  position: relative;
  max-height: calc(100vh - 80px);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#popupModalA .pop-wrap {
  position: absolute;
  left: 40px;
  top: 40px;
  width: min(820px, calc(100vw - 40px));
}

#popupModalB .pop-wrap {
  position: absolute;
  left: 880px;
  top: 40px;
  width: min(420px, calc(100vw - 40px));
}

.pop-close {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border-radius: 999px;
  font-size: 26px;
  line-height: 40px;
  cursor: pointer;
  z-index: 3;
}

.pop-swiper {
  width: 100%;
  position: relative;
  z-index: 1;
}
.pop-swiper .swiper-slide {
  display: flex;
}
.pop-swiper .swiper-slide a,
.pop-swiper .swiper-slide div {
  width: 100%;
  display: block;
}
.pop-swiper img {
  width: 100%;
  height: auto;
  display: block;
}
.pop-swiper .swiper-pagination {
  bottom: 0 !important;
  display: none;
}
.pop-swiper .swiper-pagination-bullet-active {
  background: #000 !important;
}

.pop-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}
.pop-foot label {
  display: flex;
  align-items: center;
  gap: 3px;
}
.pop-today {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.pop-foot-close {
  border: 0;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 13px;
}

.pop-tabs {
  position: relative;
  z-index: 20;
  display: flex;
}
.pop-tabs::-webkit-scrollbar {
  display: none;
}

.pop-tab {
  background: #fff;
  flex: 1 1 0;
  border: 0;
  min-width: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  height: 45px;
  padding: 0 10px;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #111;
}

.pop-tab:hover,
.pop-tab.is-active {
  background: #111;
  color: #fff;
}

@media (max-width: 1024px) {
  .pop-foot {
    padding: 7px 10px;
  }

  #popupModalA .pop-wrap,
  #popupModalB .pop-wrap {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .pop-tab {
    font-size: 11px;
    line-height: 15px;
    word-break: keep-all;
    padding: 0 5px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  #popupModalA .pop-wrap,
  #popupModalB .pop-wrap {
    width: min(450px, calc(100vw - 40px));
  }
}
