@charset "utf-8";
@import url(font.css);

:root {
    --fontKo: 'Pretendard', 'san-serif';
    --fontEng: 'Roboto', 'san-serif';
    --mainColor: #33115a;
    --subColor: #f7f5f9;
    --fontColor: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    vertical-align: top;
}

/* ======== common ========= */
.inner {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

body {
    font-family: var(--fontKo);
    font-size: 16px;
    line-height: 1rem;
}

.section {
    padding: 90px 0;
}

h1 {}

h2 {
    font-size: 2.8rem;
    line-height: 2;
}

h3 {
    font-size: 1.2rem;
    line-height: 1.2;
}

/* ========= quick menu ========= */
.quick-menu {
    position: fixed;
    right: 50px;
    bottom: 80px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-menu .qm-item {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #e0dae8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.quick-menu .qm-item:hover {
    background-color: var(--mainColor);
    border-color: var(--mainColor);
    transform: scale(1.1);
}

.quick-menu .qm-item span {
    font-size: 22px;
    color: var(--mainColor);
    transition: color 0.25s ease;
}

.quick-menu .qm-item:hover span {
    color: #fff;
}

.quick-menu .qm-item.top-btn span {
    color: #aaa;
}

.quick-menu .qm-item.top-btn:hover {
    background-color: #444;
    border-color: #444;
}

.quick-menu .qm-item.top-btn:hover span {
    color: #fff;
}

.quick-menu .qm-item .qm-label {
    position: absolute;
    right: 58px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background-color: #222;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.quick-menu .qm-item .qm-label::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #222;
    border-right: none;
}

.quick-menu .qm-item:hover .qm-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.quick-menu .qm-item.top-btn {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease,
        background-color 0.25s ease, border-color 0.25s ease,
        transform 0.25s ease;
}

.quick-menu .qm-item.top-btn.show {
    opacity: 1;
    visibility: visible;
}

/* =========  header ========= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all .3s;
}

.header::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    top: 80px;
    left: 0;
}

.header.down {
    height: 315px;
}

.header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {}

.header .logo a {
    display: block;
    width: 145px;
    height: auto;
}

.header .logo a img {
    width: 100%;
    height: 100%;
    vertical-align: -3px;
}

.header nav .main-menu {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header nav .main-menu>li {
    width: 100px;
    display: inline-block;
    vertical-align: top;
    padding: 0 20px;
    white-space: nowrap;
    transition: all 0.3s;
}

.header nav.on .main-menu>li {
    width: 180px;
}

.header nav .main-menu>li>a {
    display: block;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s;
}

.header nav .main-menu>li:hover>a {
    color: var(--mainColor);
}

.header .sub-menu {
    width: 900px;
    height: 235px;
    position: absolute;
    top: 80px;
    left: 25%;
    transform: translateX(-2%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.header .sub-menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -15%;
    z-index: -1;
}

.header .sub-menu ul {
    padding-top: 25px;
}

.header .sub-menu ul li {
    width: 180px;
    padding: 12px 0;
    text-align: center;
}

.header .sub-menu ul li a {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
}

.header .sub-menu ul li:hover a {
    color: var(--mainColor);
    font-weight: 600;
}

/* ------ util */
.header .util {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .util a {
    display: block;
    margin-right: 15px;
}

.header .util a:last-child {
    margin-right: 0;
}

.header .util a.login {
    margin-right: 12px;
}

.header .util a.login:hover {
    text-decoration: underline;
}

.header .util a.join {
    margin-right: 30px;
    position: relative;
}

.header .util a.join:hover {
    text-decoration: underline;
}

.header .util a.join::before {
    content: "";
    display: block;
    width: 1px;
    height: 15px;
    background-color: #666;
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
}

.header .util a > span {
    display: block;
    width: 32px;
    height: 32px;
}

.header .util a .time {
    width: 32px;
    height: 32px;
    background: url(../img/time.png) no-repeat center / 100% auto;
}

.header .util a .mypage {
    width: 32px;
    height: 32px;
    background: url(../img/mypage.png) no-repeat center / 100% auto;
}

.header .m-btn {
    display: none;
    margin-top: 8px;
    z-index: 90;
    cursor: pointer;
}

.header .m-btn .line {
    display: block;
    width: 20px;
    height: 3px;
    background-color: #33115a;
    margin-bottom: 4px;
    border-radius: 50px;
}

/* ========= main ========= */

/* --- visual */
.visual {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 80px;
}

.visual .sw-visual {
    width: 100%;
    height: 100%;
}

.visual .sw-visual .swiper-slide {}

.visual .sw-visual .swiper-slide a {}

.visual .sw-visual .swiper-slide a img {
    width: 100%;
    height: 780px;
    object-fit: cover;
}

/* ========= visual pagination (B타입 — 좌측 세로 막대) ========= */
.visual .visual-pagination {
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.visual .visual-pagination .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0;
    transition: background-color 0.4s ease, height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual .visual-pagination .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
}

/* prev / next 공통 */
.visual .sw-visual-prev,
.visual .sw-visual-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.visual .sw-visual-prev:hover,
.visual .sw-visual-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.visual .sw-visual-prev {
    left: 50px;
}

.visual .sw-visual-next {
    right: 50px;
}

.visual .sw-visual-prev span,
.visual .sw-visual-next span {
    font-size: 28px;
    color: #fff;
    transition: transform 0.2s ease;
}

/* ========= play button ========= */
.visual .sw-visual .swiper-slide .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(2px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual .sw-visual .swiper-slide .play-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual .sw-visual .swiper-slide .play-btn:hover::after {
    transform: scale(1);
}

.visual .sw-visual .swiper-slide .play-btn .play-triangle {
    position: relative;
    z-index: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
    transition: border-color 0.35s ease;
}

.visual .sw-visual .swiper-slide .play-btn:hover .play-triangle {
    border-color: transparent transparent transparent rgba(18, 7, 31, 0.85);
}

/* ========= trailer-modal ========= */
.trailer-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.trailer-modal.open {
    display: flex;
}

.trailer-modal .modal-backdrop {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4)0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.9) 100%);
    cursor: pointer;
    animation: backdropFadeIn 0.3s ease forwards;
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.trailer-modal .modal-container {
    position: relative;
    z-index: 1;
    width: min(90vw, 1100px);
    animation: modalSlideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.trailer-modal .modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.2s, transform 0.2s;
}

.trailer-modal .modal-close:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.trailer-modal .modal-close span {
    font-size: 28px;
    line-height: 1;
}

.trailer-modal .modal-iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.trailer-modal .modal-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ------ movie */
.movie {}

.movie h2 {}

/* ------ mv-TabMenu */
.movie .mv-tab-menu {
    margin-top: 10px;
    margin-bottom: 30px;
    position: relative;
}

.movie .mv-tab-menu>ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #ccc;
}

.movie .mv-tab-menu>ul>li {
    padding: 10px 10px 15px 0;
}

.movie .mv-tab-menu>ul>li>a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
}

.movie .mv-tab-menu>ul>li>a.focus {
    color: var(--mainColor);
    font-weight: 700;
    position: relative;
}

.movie .mv-tab-menu>ul>li>a.focus::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--mainColor);
    position: absolute;
    bottom: -16px;
    left: 0;
}

.movie .mv-tab-menu>.more-btn {
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    top: 50%;
}

.movie .mv-tab-menu>.more-btn a {
    display: block;
    text-align: center;
    color: #666;
}

.movie .mv-tab-menu>.more-btn a:hover {
    color: var(--mainColor);
}

.movie .mv-tab-menu>.more-btn a strong {
    padding-left: 4px;
}

.movie .mv-tab-menu>.more-btn a span {
    vertical-align: middle;
    padding-bottom: 3px;
}

/* ------ mv-list */
.movie .mv-list {
    position: relative;
}

.movie .mv-list .sw-movie {
    width: 100%;
}

.movie .mv-list .sw-movie .swiper-slide {
    width: 100%;
}

.movie .mv-list .sw-movie .swiper-slide .mv-poster {
    width: 100%;
    height: 365px;
    position: relative;
}

.movie .mv-list .sw-movie .swiper-slide .mv-poster img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* ------ rank */
.movie .mv-list .sw-movie .swiper-slide .mv-poster .rank {
    position: absolute;
    top: 25px;
    left: 10px;
    color: #fff;
    font-size: 3.5rem;
    font-family: var(--fontEng);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -6.3333px;
    text-shadow: 1px 3px 10px #0a0a0a;
}

/* ------ overbox */
.movie .mv-list .sw-movie .swiper-slide .mv-poster .overbox {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.movie .mv-list .sw-movie .swiper-slide .mv-poster .overbox.on {
    display: block;
}

.movie .mv-list .sw-movie .swiper-slide .mv-poster .overbox .over-btn {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.movie .mv-list .sw-movie .swiper-slide .mv-poster .overbox .over-btn a {
    display: block;
    color: #fff;
    padding: 10px 50px;
    text-wrap: nowrap;
    border: 1px solid #fff;
    border-radius: 10px;
}

.movie .mv-list .sw-movie .swiper-slide .mv-poster .overbox .over-btn a:first-child {
    margin-bottom: 15px;
}

.movie .mv-list .sw-movie .swiper-slide .mv-poster .overbox .over-btn a:hover {
    background-color: #fff;
    color: #0a0a0a;
    font-weight: 500;
}

/* ------ mv-title */
.movie .mv-list .sw-movie .swiper-slide .mv-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.movie .mv-list .sw-movie .swiper-slide .mv-title h3 {
    max-width: 80%;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie .mv-list .sw-movie .swiper-slide .mv-title .mv-rating {
    width: 18px;
    height: 18px;
}

.movie .mv-list .sw-movie .swiper-slide .mv-title .mv-rating img {
    width: 100%;
    height: 100%;
}

.movie .mv-list .sw-movie .swiper-slide .mv-desc {
    text-align: center;
    margin-top: 8px;
}

.movie .mv-list .sw-movie .swiper-slide .mv-desc span {
    font-size: 14px;
    color: #666;
    margin-right: 12px;
    position: relative;
}

.movie .mv-list .sw-movie .swiper-slide .mv-desc span:last-child {
    margin-right: 0;
}

.movie .mv-list .sw-movie .swiper-slide .mv-desc span::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    right: -9px;
    width: 1px;
    height: 9px;
    background-color: #666;
}

.movie .mv-list .sw-movie .swiper-slide .mv-desc span:last-child:before {
    display: none;
}

.movie .mv-list .sw-movie .swiper-slide .mv-desc span.d-day {
    color: var(--mainColor);
    font-weight: 500;
}

.movie .mv-list .sw-movie-prev {
    position: absolute;
    top: 40%;
    left: -12px;
    transform: translateY(-40%);
    z-index: 99;
    cursor: pointer;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.movie .mv-list .sw-movie-prev:hover {
    opacity: 1;
}

.movie .mv-list .sw-movie-prev.show {
    opacity: 1;
    visibility: visible;
}

.movie .mv-list .sw-movie-prev span {
    display: block;
    position: relative;
    z-index: 1;
    color: #666;
}

.movie .mv-list .sw-movie-prev span:hover {
    color: #0a0a0a;
}

.movie .mv-list .sw-movie-prev span::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.movie .mv-list .sw-movie-next {
    position: absolute;
    top: 40%;
    right: -12px;
    transform: translateY(-40%);
    z-index: 99;
    cursor: pointer;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.5);
    opacity: 1;
    transition: all 0.3s;
}

.movie .mv-list .sw-movie-next.hide {
    opacity: 0;
}

.movie .mv-list .sw-movie-next span {
    display: block;
    position: relative;
    z-index: 1;
    color: #666;
}

.movie .mv-list .sw-movie-next span:hover {
    color: #0a0a0a;
}

.movie .mv-list .sw-movie-next span::after {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* ========= cruation ========= */
.curation {
    background-image: linear-gradient(to bottom, rgb(44, 13, 66) 100%);
}

.curation inner {}

.curation h2 {
    color: #f7f5f9;
    padding-bottom: 12px;
    position: relative;
}

.curation h2::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgb(247, 245, 249);
    position: absolute;
    bottom: 10px;
    left: 0;
}

.curation .cu-box {
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #f7f5f9;
}

.curation .cu-box .cu-img {
    width: 80%;
    height: 100%;
}

.curation .cu-box .cu-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.curation .cu-box .cu-summary {
    display: none;
}

.curation .cu-box .mv-curation {
    width: 90%;
}

.curation .cu-box .mv-curation .cu-title {
    font-size: 2.4rem;
    font-weight: 600;
    text-align: left;
    color: #f7f5f9;
    margin-bottom: 40px;
}

.curation .cu-box .mv-curation .curation-desc {
    font-size: 1.2rem;
    color: #f7f5f9;
}

.curation .cu-box .mv-curation .curation-desc span {
    margin-right: 20px;
}

.curation .cu-box .mv-curation .curation-desc span:last-child {
    margin-right: 0;
}

.curation .cu-box .mv-curation .intro {
    margin: 35px 0;
    color: #f7f5f9;
}

.curation .cu-box .mv-curation .intro>p {
    font-size: 1.1rem;
    line-height: 2;
}

.curation .cu-box .mv-curation .intro .cu-mb {
    display: none;
}

.curation .cu-box .mv-curation .mv-info {
    border-top: 1px solid #f7f5f9;
    padding: 25px 0;
}

.curation .cu-box .mv-curation .mv-info .star {
    font-size: 1.2rem;
    color: #f7f5f9;
    padding-bottom: 20px;
}

.curation .cu-box .mv-curation .mv-info .star span {}

.curation .cu-box .mv-curation .mv-info .star span:nth-child(2) {
    font-size: 18px;
    position: relative;
    padding-left: 8px;
    vertical-align: middle;
    padding-bottom: 4px;
}

.curation .cu-box .mv-curation .mv-info .gu-desc {
    background-color: #f7f5f9;
    border-radius: 10px;
    padding: 20px;
    margin-top: 8px;
}

.curation .cu-box .mv-curation .mv-info .gu-desc>p {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--mainColor);
}

.curation .cu-box .mv-curation .mv-info .gu-desc .sw-mv-info {
    width: 100%;
    height: 56px;
}

.curation .cu-box .mv-curation .mv-info .gu-desc .sw-mv-info .swiper-slide {
    width: 100%;
    height: 100%;
}

.curation .cu-box .mv-curation .mv-info .gu-desc .sw-mv-info .swiper-slide .guest {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4%;
}

.curation .cu-box .mv-curation .mv-info .gu-desc .sw-mv-info .swiper-slide .guest .guest-p {
    text-align: center;
}

.curation .cu-box .mv-curation .mv-info .gu-desc .sw-mv-info .swiper-slide .guest .guest-p>span {
    font-size: 35px;
    color: #666;
}

.curation .cu-box .mv-curation .mv-info .gu-desc .sw-mv-info .swiper-slide .guest .guest-p>p {
    font-size: 14px;
    font-weight: 500;
}

.curation .cu-box .mv-curation .mv-info .gu-desc .sw-mv-info .swiper-slide .guest>p {}

.curation .cu-box .mv-curation .cu-btn {
    margin-top: 20px;
}

.curation .cu-box .mv-curation .cu-btn a {
    display: inline-block;
    color: #f7f5f9;
}

.curation .cu-box .mv-curation .cu-btn a.btn1 {
    padding: 10px 25px;
    border: 1px solid #f7f5f9;
    border-radius: 10px;
    margin-right: 20px;
}

.curation .cu-box .mv-curation .cu-btn a.btn1:hover {
    background-color: #f7f5f9;
    color: var(--mainColor);
    font-weight: 600;
}

.curation .cu-box .mv-curation .cu-btn a.btn2 {
    margin-right: 0;
}

.curation .cu-box .mv-curation .cu-btn a.btn2:hover {
    text-decoration: underline;
}

.curation .cu-box .mv-curation .cu-btn a span {
    vertical-align: middle;
    padding-bottom: 3px;
}

/* ========= cinema ========= */
.cinema {}

.cinema .inner {
    position: relative;
}

.cinema h2 {
    text-align: left;
    margin-bottom: 8px;
}

.cinema .sub-title {
    font-size: 18px;
    color: #3d3d3d;
}

.cinema .sw-cinema {
    padding: 30px 0;
}

.cinema .sw-cinema .swiper-slide {
    width: 100%;
    height: 350px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

.cinema .sw-cinema .swiper-slide .ci-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.cinema .sw-cinema .swiper-slide .ci-img .ci-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    transition: all 0.3s;
}

.cinema .sw-cinema .swiper-slide .ci-img .ci-bg:hover {
    opacity: 0;
}

.cinema .sw-cinema .swiper-slide .ci-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s;
}

.cinema .sw-cinema .swiper-slide .cine-desc {
    color: #f7f5f9;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.cinema .sw-cinema .swiper-slide .cine-desc h3 {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cinema .sw-cinema .swiper-slide .cine-desc>p {
    display: block;
    white-space: nowrap;
    margin-bottom: 12px;
}

.cinema .sw-cinema .swiper-slide .cine-desc .ci-btn {
    display: block;
}

.cinema .sw-cinema .swiper-slide .cine-desc .ci-btn:hover {
    text-decoration: underline;
}

.cinema .sw-cinema .swiper-slide .cine-desc .ci-btn>a {
    font-size: 14px;
    color: #f7f5f9;
}

.cinema .sw-cinema .swiper-slide .cine-desc .ci-btn a>span {
    font-size: 18px;
    vertical-align: middle;
    padding-bottom: 3px;
}

.cinema .sw-cine-prev,
.cinema .sw-cine-next {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    z-index: 99;
    cursor: pointer;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.5);
    opacity: 1;
    transition: all 0.3s;
}

.cinema .sw-cine-prev {
    opacity: 0;
    visibility: hidden;
    left: -12px;
}

.cinema .sw-cine-prev.show {
    opacity: 1;
    visibility: visible;
}

.cinema .sw-cine-next {
    right: -12px;
}

.cinema .sw-cine-next.hide {
    opacity: 0;
}

.cinema .sw-cine-prev::before,
.cinema .sw-cine-next::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* ========= event ========= */
.event {
    background-color: #fff;
}

.event .event-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* ------ ticket */
.event .event-box .ticket {
    width: 52%;
}

.event .event-box .ticket .main-title {
    text-align: left;
    /* padding-bottom: 10px;
    border-bottom: 1px solid #ddd; */
}

.event .event-box .ticket .sub-title {
    text-align: left;
    font-size: 18px;
    line-height: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
    color: #3d3d3d;
}

/* ------ sw-ticket */
.event .event-box .ticket .sw-ticket {
    width: 100%;
    height: 430px;
    margin-top: 25px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.event .event-box .ticket .sw-ticket .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.event .event-box .ticket .sw-ticket .swiper-slide .con-txt {
    width: 43%;
    height: 100%;
    padding-top: 12px;
    padding-left: 15px;
}

.event .event-box .ticket .sw-ticket .swiper-slide .con-txt .con-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 55px;
}

.event .event-box .ticket .sw-ticket .swiper-slide .con-txt .con-title span {
    display: block;
    font-weight: 400;
    margin: 25px 0 8px 0;
}

.event .event-box .ticket .sw-ticket .swiper-slide .con-txt .con-title span.t-num {
    font-weight: 500;
    color: rgb(114, 19, 19);
}

.event .event-box .ticket .sw-ticket .swiper-slide .con-txt .con-title span.ticket-mv {
    font-size: 1.5rem;
    margin-top: 0;
    font-weight: 600;
    color: rgb(114, 19, 19);
}

.event .event-box .ticket .sw-ticket .swiper-slide .con-txt .con-btn {
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #666;
    border-radius: 50px;
}

.event .event-box .ticket .sw-ticket .swiper-slide .con-txt .con-btn:hover {
    background-color: rgb(94, 16, 16);
    color: #fff;
}

.event .event-box .ticket .sw-ticket .swiper-slide .con-img {
    width: 55%;
}

.event .event-box .ticket .sw-ticket .swiper-slide .con-img img {
    width: 100%;
    object-fit: cover;
}

/* ------ pick */
.event .event-box .pick {
    width: 46%;
}

.event .event-box .pick .main-title {
    text-align: left;
}

.event .event-box .pick .sub-title {
    text-align: left;
    font-size: 18px;
    line-height: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ccc;
    color: #3d3d3d;
}

.event .event-box .pick .pick-list {
    width: 100%;
    height: 430px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 25px;
}

.event .event-box .pick .pick-list .card {
    width: 50%;
    height: 100%;
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.event .event-box .pick .pick-list .card .card-img {
    width: 100%;
    height: 280px;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.event .event-box .pick .pick-list .card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: all 0.3s;
}

.event .event-box .pick .pick-list .card .card-img:hover img {
    transform: scale(1.1);
}

.event .event-box .pick .pick-list .card .card-desc {
    padding: 20px;
}

.event .event-box .pick .pick-list .card .card-desc h3 {
    line-height: 1.4;
    padding-bottom: 30px;
}

.event .event-box .pick .pick-list .card .card-desc h3:hover {
    text-decoration: underline;
}

.event .event-box .pick .pick-list .card .card-desc p {
    color: #7a7a7a;
}

/* ========= store ========== */
.store {
    background-color: #fff;
}

.store .inner {
    position: relative;
}

.store .store-btn {
    position: absolute;
    top: 50px;
    right: 0;
}

.store .store-btn a {
    display: block;
    text-align: center;
    color: #666;
    margin-top: 10px;
}

.store .store-btn a:hover {
    color: var(--mainColor);
}

.store .store-btn a span {
    vertical-align: middle;
    padding-bottom: 3px;
}

.store .store-menu {
    position: relative;
    margin-top: 10px;
}

.store .store-menu .sw-store {
    width: 100%;
}

/* ------ card */
.store .store-menu .card {
    width: 100%;
    height: 360px;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
}

.store .store-menu .card .menu-img {
    display: block;
    margin: 0 auto;
    width: 220px;
    height: 220px;
    overflow: hidden;
}

.store .store-menu .card .menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.store .store-menu .card .menu-img:hover img {
    transform: scale(1.1);
}

.store .store-menu .card .menu-info {
    padding: 15px 20px;
    border-top: 1px solid #ddd;
}

.store .store-menu .card .menu-info h3 {
    padding-bottom: 15px;
    text-align: left;
    font-size: 18px;
}

.store .store-menu .card .menu-info h3:hover {
    text-decoration: underline;
}

.store .store-menu .card .menu-info p {
    color: #666;
}

.store .store-menu .card .menu-info p.desc {
    width: 100%;
    padding-bottom: 20px;
}

.store .store-menu .card .menu-info .m-on {
    display: none;
}

.store .store-menu .card .menu-info p.price {
    text-align: right;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mainColor);
}

.store .store-menu .card .menu-info p.price span {
    font-size: 1rem;
    margin-right: 5px;
    text-decoration: line-through;
    color: #666;
    font-weight: 500;
    font-style: italic;
}

/* ------ prev / next */
.store .store-menu .sw-store-prev,
.store .store-menu .sw-store-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;
    cursor: pointer;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.store .store-menu .sw-store-prev {
    left: -12px;
    opacity: 0;
    visibility: hidden;
}

.store .store-menu .sw-store-prev.show {
    opacity: 1;
    visibility: visible;
}

.store .store-menu .sw-store-next {
    right: -12px;
    opacity: 1;
}

.store .store-menu .sw-store-next.hide {
    opacity: 0;
}

.store .store-menu .sw-store-prev span,
.store .store-menu .sw-store-next span {
    display: block;
    position: relative;
    z-index: 1;
    color: #666;
}

.store .store-menu .sw-store-prev span:hover,
.store .store-menu .sw-store-next span:hover {
    color: #0a0a0a;
}

.store .store-menu .sw-store-prev span::before,
.store .store-menu .sw-store-next span::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}


/* ========= info ========= */
.info {
    padding-bottom: 80px;
    background-color: #f7f5f9;
}

.info .inner {}

.info h2 {
    text-align: left;
    margin-bottom: 50px;
}

/* ------ notic */
.info .notic {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info .notic .left-box {
    width: 48%;
}

.info .notic .left-box .notic-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #666;
}

.info .notic .left-box .notic-con h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 15px 0;
}

.info .notic .left-box .notic-con a {
    display: block;
    text-align: center;
    color: #666;
    margin-top: 10px;
}

.info .notic .left-box .notic-con a:hover {
    color: var(--mainColor)
}

.info .notic .left-box .notic-con a span {
    vertical-align: middle;
    padding-bottom: 3px;
}

.info .notic .left-box ul {}

.info .notic .left-box ul li {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.info .notic .left-box ul li a {
    display: block;
    font-weight: 500;
}

.info .notic .left-box ul li a:hover {
    text-decoration: underline;
}

.info .notic .left-box ul li span {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding-right: 20px;
    color: #666;
}

/* ------ right box */
.info .notic .right-box {
    width: 48%;
}

.info .notic .right-box .app-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info .notic .right-box .app-con h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 15px 0;
}

.info .notic .right-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* --- menu-icon */
.info .menu-icon {
    margin-top: 60px;
}

.info .menu-icon ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info .menu-icon ul li {
    width: 180px;
    position: relative;
}

.info .menu-icon ul li::before {
    content: "";
    display: block;
    width: 1px;
    height: 45px;
    background-color: #ddd;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.info .menu-icon ul li:first-child:before {
    display: none;
}

.info .menu-icon ul li a {
    display: block;
    text-align: center;
    font-weight: 500;
    color: #666;
}

.info .menu-icon ul li a:hover {
    color: var(--mainColor);
    font-weight: 600;
}

.info .menu-icon ul li a span {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.info .menu-icon ul li.notic-icon a span {
    width: 45px;
    height: 45px;
    background: url(../img/icon-notic1.png) no-repeat center / auto 100%;
}

.info .menu-icon ul li.notic-icon a:hover span {
    background-image: url(../img/icon-notic.png);
}

.info .menu-icon ul li.support a span {
    width: 40px;
    height: 40px;
    background: url(../img/icon-headset-100.png) no-repeat center / auto 100%;
}

.info .menu-icon ul li.support a:hover span {
    background-image: url(../img/icons8-headset.png);
}

.info .menu-icon ul li.faq a span {
    width: 40px;
    height: 40px;
    background: url(../img/icons-sms-100.png) no-repeat center / auto 100%;
}

.info .menu-icon ul li.faq a:hover span {
    background-image: url(../img/icons8-sms.png);
}

.info .menu-icon ul li.inquiry a span {
    width: 45px;
    height: 45px;
    background: url(../img/icons-ansdml.png) no-repeat center / auto 100%;
}

.info .menu-icon ul li.inquiry a:hover span {
    background-image: url(../img/icons-ansdml-100.png);
}

.info .menu-icon ul li.rent a span {
    width: 40px;
    height: 40px;
    background: url(../img/icons-cinema.png) no-repeat center / auto 100%;
}

.info .menu-icon ul li.rent a:hover span {
    background-image: url(../img/icon-cinema-100.png);
}

/* ========= footer ========= */
.footer {
    width: 100%;
    height: 250px;
    background-color: var(--mainColor);
    padding: 30px 0;
}

.footer .info-top {
    margin-bottom: 30px;
}

.footer .info-top>ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.footer .info-top>ul>li {
    position: relative;
    color: #ddd;
}

.footer .info-top>ul>li a {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: #ddd;
}

.footer .info-top>ul>li::before {
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    background-color: #ccc;
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
}

.footer .info-top>ul>li:first-child:before {
    display: none;
}

.footer .info-top>ul li a:hover {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.footer .info-btm {
    margin-bottom: 30px;
}

.footer .info-btm>ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.footer .info-btm>ul>li {}

.footer .info-btm>ul>li a {
    display: block;
    font-size: 14px;
    line-height: 14px;
    color: #ddd;
}

.footer .info-btm>ul>li a:hover {
    color: #fff;
}

.footer .info-desc {
    position: relative;
}

.footer .info-desc .sns {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.footer .info-desc .sns img {
    margin-right: 5px;
}

.footer .info-desc ul {
    margin-top: 15px;
}

.footer .info-desc ul>li {
    padding-bottom: 3px;
}

.footer .info-desc ul>li>span {
    color: #ddd;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer .info-desc ul>li span:first-child {
    padding-left: 0;
}

.footer .info-desc ul>li span:first-child::before {
    display: none;
}

.footer .info-desc ul>li span.email {
    padding-left: 5px;
}

.footer .info-desc ul>li span.email::before {
    display: none;
}

.footer .info-desc ul>li span::before {
    content: "·";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 4px;
}

.footer p {
    display: block;
    font-family: var(--fontEng);
    font-size: 12px;
    margin-top: 30px;
    color: #ddd;
    opacity: 0.6;
}

.footer p:hover {
    opacity: 1;
}

/* ========= mobile menu ========= */
.m-menu-dim {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.m-menu-dim.open {
    display: block;
}

.m-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: #fff;
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.m-menu.open {
    transform: translateX(0);
}

.m-menu .m-menu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
}

.m-menu .m-menu-head .m-util a {
    font-size: 14px;
    font-weight: 500;
    margin-right: 12px;
    color: #333;
}

.m-menu .m-menu-head .m-util a:hover {
    text-decoration: underline;
}

.m-menu .m-menu-head .m-close {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-menu .m-menu-head .m-close span {
    font-size: 26px;
    color: #333;
}

.m-menu .m-nav > li {
    border-bottom: 1px solid #eee;
}

.m-menu .m-nav .m-depth1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0a0a;
    cursor: pointer;
}

.m-menu .m-nav .m-depth1 span {
    transition: transform 0.3s;
}

.m-menu .m-nav li.on .m-depth1 {
    color: var(--mainColor);
}

.m-menu .m-nav li.on .m-depth1 span {
    transform: rotate(180deg);
}

.m-menu .m-nav .m-depth2 {
    max-height: 0;
    overflow: hidden;
    background-color: var(--subColor);
    transition: max-height 0.3s ease;
}

.m-menu .m-nav li.on .m-depth2 {
    max-height: 300px;
}

.m-menu .m-nav .m-depth2 li a {
    display: block;
    padding: 12px 30px;
    font-size: 15px;
    color: #555;
}

.m-menu .m-nav .m-depth2 li a:hover {
    color: var(--mainColor);
    text-decoration: underline;
}
