article {
    padding-top: 14.4rem;
}
@media screen and (max-width: 1000px) {
    article {
        padding-top: 6.3rem;
    }
}




/* ===== HEAD ===== */
.detail-head {
    padding-bottom: 6.4rem;
}

/* breadcrumb */
.breadcrumb {
    max-width: 110rem;
    margin: 0 auto;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0 .9rem;
}
.breadcrumb a {
    color: var(--primary-gray);
    font-size: 1.3rem;
    line-height: 1;
    transition: color .3s ease-in-out;
}
.breadcrumb a:hover {
    color: var(--primary-black);
}
.breadcrumb .sep {
    display: block;
    width: .4rem;
}
.breadcrumb span {
    color: var(--primary-gray);
    font-size: 1.3rem;
    line-height: 1;
}

/* hero */
.hero {
    max-width: 110rem;
    margin: 1.6rem auto 0;
}
.hero .hero-img {
    width: 100%;
    aspect-ratio: 110 / 62;
    border-radius: .8rem;
    overflow: hidden;
}

/* title */
.title-area {
    max-width: 95rem;
    margin: 3.2rem auto 0;
}
.title-area .scene-wrap {
    display: flex;
    gap: 0 .8rem;
}
.title-area .scene {
    display: inline-block;
    color: var(--secondary-black);
    font-size: 1.5rem;
    line-height: 1;
    background: #F6F6F6;
    border: 1px solid var(--tertiary-gray);
    padding: .9rem .8rem;
    border-radius: .3rem;
}
.title-area h1 {
    font-family: var(--font-jp-zenold);
    font-size: 4rem;
    line-height: 1;
    margin-top: 2.4rem;
}
.title-area .excerpt {
    margin-top: 2.4rem;
}
.title-area .excerpt p {
    color: var(--secondary-black);
    font-size: 1.8rem;
    letter-spacing: 0.03em;
}
.title-area .excerpt ul {
    margin-top: 2.4rem;
    display: flex;
    gap: 0 1.6rem;
}
.title-area .excerpt ul li {
    color: var(--secondary-black);
    font-size: 1.5rem;
    line-height: 1;
}
.title-area .excerpt .event-date {
    color: var(--secondary-black);
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    margin-top: 2.4rem;
}

/* spec */
.spec {
    max-width: 95rem;
    margin: 6.4rem auto 0;
}
.spec-inner {
    display: flex;
}
.spec-item {
    flex: 1;
    text-align: center;
    position: relative;
}
.spec-item::after {
    content: '';
    width: 1px;
    height: 6.5rem;
    background: var(--secondary-gray);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.spec-item:first-of-type:before {
    content: '';
    width: 1px;
    height: 6.5rem;
    background: var(--secondary-gray);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.spec-label {
    color: var(--secondary-black);
    font-size: 1.4rem;
    letter-spacing: 0.03em;
}
.spec-value {
    color: var(--primary-gray);
    font-size: 1.8rem;
    font-family: var(--font-jp-zenold);
    letter-spacing: 0.03em;
    margin-top: .4rem;
}
.spec-value strong {
    color: var(--primary-gray);
    font-size: 3.2rem;
    font-family: var(--font-eg-eb);
    line-height: 1;
}

@media screen and (max-width: 1000px) {
    .detail-head {
        padding-bottom: 3.6rem;
    }

    /* breadcrumb */
    .breadcrumb {
        width: calc(100% - 4rem);
    }
    .breadcrumb a {
        font-size: 1.1rem;
    }
    .breadcrumb a:hover {
        opacity: 1;
    }
    .breadcrumb .sep {
        width: .3rem;
    }
    .breadcrumb span {
        font-size: 1.1rem;
    }

    /* hero */
    .hero {
        width: calc(100% - 4rem);
    }
    .hero .hero-img {
        aspect-ratio: 350 / 197;
    }

    /* title */
    .title-area {
        width: calc(100% - 4rem);
        margin: 1.6rem auto 0;
    }
    .title-area .scene {
        font-size: 1.3rem;
        padding: .7rem .5rem;
    }
    .title-area h1 {
        font-size: 2.2rem;
        margin-top: 1.6rem;
    }
    .title-area .excerpt {
        margin-top: 1.6rem;
    }
    .title-area .excerpt p {
        font-size: 1.4rem;
    }
    .title-area .excerpt ul {
        margin-top: 1.6rem;
    }
    .title-area .excerpt ul li {
        font-size: 1.3rem;
    }
    .title-area .excerpt .event-date {
        font-size: 1.3rem;
        margin-top: 1.6rem;
    }

    /* spec */
    .spec {
        width: calc(100% - 4rem);
        margin: 3rem auto 0;
    }
    .spec-inner {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0 2rem;
    }
    .spec-item {
        flex: initial;
        width: calc(50% - 1rem);
        padding: 1.2rem 0;
    }
    .spec-item:first-of-type {
        width: 100%;
    }
    .spec-item::after {
        content: '';
        width: 100%;
        height: 1px;
        background: var(--secondary-gray);
        position: absolute;
        right: auto;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
    }
    .spec-item:first-of-type:before {
        content: '';
        width: 100%;
        height: 1px;
        background: var(--secondary-gray);
        position: absolute;
        left: 0;
        top: 0;
        transform: unset;
    }
    .spec-label {
        font-size: 1.3rem;
    }
}





/* ===== SECTION COMMON ===== */
.detail-section {
    padding: 8rem 0;
}
.section-inner01 {
    max-width: 95rem;
    margin: 0 auto;
}
.section-inner02 {
    max-width: 110rem;
    margin: 0 auto;
}

@media screen and (max-width: 1000px) {
    .detail-section {
        padding: 4rem 0;
    }
    .section-inner01 {
        width: calc(100% - 4rem);
    }
    .section-inner02 {
        width: calc(100% - 4rem);
    }
}





/* ===== GALLERY ===== */
.gallery {
    background: #F7F7F7;
}
.gallery h2 {
    font-size: 3.2rem;
    font-family: var(--font-jp-zenold);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.7rem;
    margin-top: 1.5rem;
}
.gallery-item {
    border-radius: .8rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    will-change: opacity;
}
.gallery-item.is-hidden {
    display: none;
}
.gallery-img {
    overflow: hidden;
}
.gallery-img img {
    transition: transform .5s ease-in-out;
}
.gallery-img:hover img {
    transform: scale(1.05);
}
.gallery-extra-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-extra-wrap[aria-hidden="true"] {
    pointer-events: none;
}
.gallery-extra-wrap.is-expanded {
    grid-template-rows: 1fr;
}
.gallery-extra-grid {
    margin-top: 0;
    min-height: 0;
    overflow: hidden;
}
.gallery-extra-wrap.is-expanded .gallery-extra-grid {
    margin-top: 1.5rem;
}
.gallery-extra-item {
    opacity: 0;
    transition: opacity 0.7s ease 0.08s;
}
.gallery-extra-wrap.is-expanded .gallery-extra-item {
    opacity: 1;
}
.gallery-img {
    width: 100%;
    aspect-ratio: 305 / 230;
}
.gallery-item p {
    color: #FFF;
    font-size: 1.6rem;
    line-height: 1;
    position: absolute;
    bottom: 1.2rem;
    left: 1.6rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.gallery-load {
    width: fit-content;
    margin: 3rem auto 0;
}
.gallery-load button {
    width: fit-content;
    color: var(--secondary-black);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0 .4rem;
}
.gallery-load button .btn-icon {
    width: 1.6rem;
}

@media screen and (max-width: 1000px) {
    .gallery h2 {
        font-size: 2.2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .gallery-extra-wrap.is-expanded .gallery-extra-grid {
        margin-top: 1rem;
    }
    .gallery-item p {
        font-size: 1.4rem;
        bottom: 1.2rem;
        left: .9rem;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .gallery-img:hover img {
        transform: scale(1);
    }
}





/* ===== STORY ===== */
.story {
    background: #FFF;
}
.story h2 {
    font-size: 3.2rem;
    font-family: var(--font-jp-zenold);
    line-height: 1;
    padding-bottom: 2.4rem;
    position: relative;
}
.story h2::before {
    content: '';
    width: 100%;
    height: .2rem;
    background: linear-gradient(
        to right,
        var(--primary-black) 0,
        var(--primary-black) 7rem,
        var(--tertiary-gray) 7rem,
        var(--tertiary-gray) 100%
    );
    position: absolute;
    bottom: 0;
    left: 0;
}
.story-summary {
    margin-top: 4rem;
}
.story-summary ul {
    display: flex;
    flex-wrap: wrap;
    gap: 4.8rem 0;
}
.story-summary ul li {
    width: 100%;
    display: flex;
    gap: 0 3rem;
}
.story-summary-icon {
    width: 8rem;
}
.story-summary-txt {
    width: calc(100% - 12.8rem);
}
.story-summary-txt h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
}
.story-summary-txt p {
    font-size: 1.6rem;
    margin-top: .8rem;
}
.story-menu {
    margin-top: 8rem;
    display: flex;
    flex-direction: column;
    gap: 3rem 0;
}
.story-menu-block {
    background: #F7F7F7;
    border: 1px solid var(--tertiary-gray);
    border-radius: 1rem;
    padding: 2.4rem 4rem 3.2rem;
}
.story-menu-block h3 {
    font-size: 2.6rem;
    font-family: var(--font-jp-zenold);
    line-height: 1;
    text-align: center;
}
.story-menu-block h3 span {
    display: block;
    margin: 0 auto 1.2rem;
}
.story-menu-food h3 span {
    width: 6.4rem;
}
.story-menu-drink h3 span {
    width: 6.2rem;
}
.story-menu-block ul {
    width: 100%;
    margin-top: 3.2rem;
    display: block;
    column-count: 2;
    column-gap: 4rem;
}
.story-menu-block ul li {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1;
    padding-left: 1.9rem;
    position: relative;
    break-inside: avoid;
    margin-bottom: 1.6rem;
}
.story-menu-block ul li::before {
    content: '';
    width: .9rem;
    height: .9rem;
    border-radius: 100%;
    background: #D9D9D9;
    position: absolute;
    top: .35rem;
    left: 0;
}

@media screen and (max-width: 1000px) {
    .story h2 {
        font-size: 2.2rem;
        padding-bottom: 1.8rem;
    }
    .story h2::before {
        height: .2rem;
    }
    .story-summary {
        margin-top: 3.2rem;
    }
    .story-summary ul {
        gap: 2.4rem 0;
    }
    .story-summary ul li {
        gap: 0 2.8rem;
    }
    .story-summary-icon {
        width: 4.7rem;
    }
    .story-summary-txt {
        width: calc(100% - 7.5rem);
    }
    .story-summary-txt h3 {
        font-size: 1.6rem;
    }
    .story-summary-txt p {
        font-size: 1.5rem;
        line-height: 1.8;
    }
    .story-menu {
        margin-top: 4rem;
    }
    .story-menu-block {
        padding: 2.4rem 1.4rem 3.2rem;
    }
    .story-menu-block h3 {
        font-size: 1.9rem;
    }
    .story-menu-block h3 span {
        margin: 0 auto .8rem;
    }
    .story-menu-food h3 span {
        width: 4.4rem;
    }
    .story-menu-drink h3 span {
        width: 4.2rem;
    }
    .story-menu-block ul {
        column-count: 1;
        margin-top: 2rem;
        gap: 1.3rem 0;
    }
    .story-menu-block ul li {
        width: 100%;
        font-size: 1.4rem;
    }
    .story-menu-block ul li::before {
        top: .25rem;
    }
}





/* ===== CTA ===== */
.cta {
    padding: 0 0 8rem;
}
.cta-cnt {
    background: #F9E2DF;
    border-radius: .8rem;
    padding: 4rem 0;
    margin: 0 auto;
}
.cta h2 {
    font-size: 3.2rem;
    font-family: var(--font-jp-zenold);
    text-align: center;
}
.cta p {
    font-size: 1.9rem;
    text-align: center;
    margin-top: 2.1rem;
}
.cta-btn {
    width: fit-content;
    max-width: 100%;
    margin: 4rem auto 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 3.2rem;
}
.cta-btn a {
    width: 27rem;
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 1.6rem;
    position: relative;
    transition: background .3s ease-in-out;
}
.cta-btn01 {
    background: #FFF;
    border: 1px solid #333333;
    border-radius: 5rem;
    padding: 1.3rem 0;
}
.cta-btn01:hover {
    background: #F7F7F7;
}
.cta-btn01.tel {
    font-size: 2.1rem;
    font-family: var(--font-eg-lato);
    font-weight: 700;
    line-height: 1;
}
.cta-btn01 span {
    height: 2rem;
}
.cta-btn01 span img {
    width: auto;
    height: 100%;
}
.cta-btn02 {
    color: #FFF;
    background: var(--primary-black);
    border: 1px solid #FFF;
    border-radius: 5rem;
}
.cta-btn02:hover {
    background: #000;
}
.cta-btn02 span {
    width: 2.3rem;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
    .cta {
        padding: 0 0 5.6rem;
    }
    .cta-cnt {
        padding: 2.5rem 1.5rem;
    }
    .cta h2 {
        font-size: 2.2rem;
        font-weight: 500;
        line-height: 1.4;
    }
    .cta p {
        font-size: 1.5rem;
        line-height: 1.8;
        margin-top: 1.2rem;
    }
    .cta-btn {
        margin: 2.8rem auto 0;
        gap: 1.6rem 0;
    }
    .cta-btn a {
        min-height: 5.2rem;
    }
    .cta-btn01:hover {
        background: #FFF;
    }
    .cta-btn02:hover {
        background: var(--primary-black);
    }
}







/* ===== RELATED ===== */
.related {
    background: #F7F7F7;
    overflow: hidden;
}
.related h2 {
    font-size: 3.2rem;
    font-family: var(--font-eg-eb);
    line-height: 1;
}
.related-slider {
    width: 100%;
    margin-top: 1.5rem;
    position: relative;
}
.related-slider .swiper {
    width: calc(100% + ((100vw - 110rem) / 2));
    margin-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.related-slider .swiper.is-dragging {
    cursor: grabbing;
    user-select: none;
}
.related-slider .swiper::-webkit-scrollbar {
    display: none;
}
.related-slider .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.6rem;
    width: max-content;
    padding-bottom: 3rem;
}
.related-cnt {
    flex: 0 0 min(32rem, calc(100vw - 6rem));
    height: auto;
    background: #FFF;
    border-radius: .8rem;
    box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.07);
    overflow: hidden;
    position: relative;
}
.related-cat {
    display: flex;
    gap: .8rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
}
.related-cat span {
    display: inline-block;
    color: var(--secondary-black);
    font-size: 1.3rem;
    line-height: 1;
    background: #FFF;
    border-radius: .5rem;
    padding: .6rem;
}
.related-thum {
    width: 100%;
    aspect-ratio: 350 / 233;
    overflow: hidden;
}
.related-cnt .related-thum img {
    transition: transform .6s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.related-cnt:hover .related-thum img {
    transform: scale(1.05);
}
.related-body {
    padding: 2.4rem;
}
.related-info {
    display: flex;
    align-items: center;
    gap: 0 .8rem;
}
.related-info-item {
    color: var(--primary-gray);
    font-size: 1.4rem;
    position: relative;
}
.related-info-item span {
    color: var(--primary-gray);
    font-size: 1.4rem;
    font-family: var(--font-eg-lato);
    line-height: 1;
}
.related-info-deco {
    width: 1px;
    height: 1.4rem;
    background: var(--primary-gray);
}
.related-body h3 {
    color: var(--primary-black);
    font-size: 1.7rem;
    font-weight: 600;
    font-family: var(--font-jp-zenold);
    line-height: 1.2;
    margin-top: 1.6rem;
}
.related-back {
    width: 27rem;
    color: var(--primary-black);
    font-size: 1.6rem;
    font-weight: 600;
    background: #FFF;
    border-radius: 7rem;
    border: 1px solid var(--primary-black);
    padding: 1.3rem 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
    transition: background .3s ease-in-out;
}
.related-back:hover {
    background: #F7F7F7;
}
.related-back span {
    display: block;
    width: 2.3rem;
}

@media screen and (max-width: 1000px) {
    .related-slider .swiper {
        width: calc(100% + ((100vw - 35rem) / 2));
    }
    .related-slider .swiper-wrapper {
        gap: 1.2rem;
        padding-bottom: 3.8rem;
    }
    .related-cnt {
        flex-basis: min(30rem, calc(100vw - 5rem));
    }
    .related-thum {
        aspect-ratio: 300 / 200;
    }
    .related-cnt:hover .related-thum img {
        transform: scale(1);
    }
    .related-info-item {
        color: var(--primary-gray);
        font-size: 1.4rem;
        position: relative;
    }
    .related-back:hover {
        background: #FFF;
    }
}





/* ===== MODAL ===== */
.modal {
    display: flex;
    position: fixed;
    z-index: 10000;
    inset: 0;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s ease, visibility .35s ease;
}
.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.modal-overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
}
.modal-content {
    width: 90%;
    max-width: 78rem;
    background: #191919;
    border-radius: 1rem;
    padding: 3.5rem 2rem 3.5rem 3.5rem;
    position: relative;
    transform: translateY(4rem);
    transition: transform .35s ease, opacity .35s ease;
    opacity: 0;
}
.modal.active .modal-content {
    transform: translateY(2rem);
    opacity: 1;
}
.modal-inner {
    max-height: calc(100vh - 16rem);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #fff transparent;
    padding-inline-end: 1.5rem;
}
.modal-inner::-webkit-scrollbar {
    width: .6rem;
}
.modal-inner::-webkit-scrollbar-track {
    background: transparent;
}
.modal-inner::-webkit-scrollbar-thumb {
    background-color: #fff;
    border-radius: 100rem;
    border: .15rem solid transparent;
    background-clip: padding-box;
}
.modal-inner::-webkit-scrollbar-thumb:hover,
.modal-inner::-webkit-scrollbar-thumb:active {
    background-color: #fff;
    border: .15rem solid transparent;
    background-clip: padding-box;
}

/* main slider */
.main-gallery-swiper {
    margin-bottom: 3rem;
}
.main-gallery-swiper .swiper-slide {
    width: 100%;
}
.main-gallery-swiper .modal-img {
    width: 100%;
    aspect-ratio: 710/523;
    border-radius: .3rem;
    overflow: hidden;
}
.main-gallery-swiper .modal-cap {
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    margin-top: .7rem;
}
.main-gallery-swiper .swiper-button-prev,
.main-gallery-swiper .swiper-button-next {
    color: var(--primary-black);
    width: 4rem;
    height: 4rem;
    background: transparent;
    border-radius: 50%;
    transition: color .3s ease-in-out,
                background .3s ease-in-out;
}
.main-gallery-swiper .swiper-button-prev {
    left: 2rem;
}
.main-gallery-swiper .swiper-button-next {
    right: 2rem;
}
.main-gallery-swiper .swiper-button-prev::after,
.main-gallery-swiper .swiper-button-next::after {
    font-size: 1.6rem;
    font-weight: bold;
}
.main-gallery-swiper .swiper-button-prev:hover,
.main-gallery-swiper .swiper-button-next:hover {
    color: var(--primary-black);
    background: #FFF;
}

/* thumnail slider */
.thumb-gallery-swiper {
    overflow: visible;
}
.thumb-gallery-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    transform: none !important;
}
.thumb-gallery-swiper .swiper-slide {
    aspect-ratio: 113 / 85;
    margin-right: 0 !important;
    border-radius: .3rem;
    cursor: pointer;
    overflow: hidden;
}
.thumb-img {
    width: 100%;
}
.thumb-img img {
    transition: transform .5s ease-in-out;
}
.thumb-img:hover img {
    transform: scale(1.05);
}
.thumb-gallery-swiper .swiper-slide-thumb-active {
    border: 2px solid #fff;
}

/* option */
.close-modal {
    width: 4rem;
    position: absolute;
    top: -4rem;
    right: -4rem;
    cursor: pointer;
}
.swiper-button-next,
.swiper-button-prev {
    background: transparent;
    border: 1px solid rgba(255, 255, 255);
    transition: background .3s ease,
                border .3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #FFF;
    border: 1px solid rgba(255, 255, 255);
}
.swiper-button-next::after,
.swiper-button-prev::after {
    color: #FFF;
    transition: color .3s ease;
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--primary-black);
}
.swiper-button-next {
    right: 1.8rem;
}
.swiper-button-prev {
    left: 1.8rem;
}

@media screen and (max-width: 1000px) {
    .modal-content {
        width: calc(100% - 4rem);
        border-radius: .45rem;
        padding: 1.5rem .5rem 1.5rem 1.5rem;
        transform: translateY(1rem);
    }
    .modal-inner {
        max-height: calc(100vh - 14rem);
        padding-inline-end: 1rem;
    }

    /* main slider */
    .main-gallery-swiper {
        margin-bottom: 1.5rem;
    }
    .main-gallery-swiper .modal-img {
        aspect-ratio: 320/235;
        border-radius: .15rem;
    }
    .main-gallery-swiper .modal-cap {
        font-size: 1.5rem;
        margin-top: .3rem;
    }
    .main-gallery-swiper .swiper-button-prev,
    .main-gallery-swiper .swiper-button-next {
        width: 3rem;
        height: 3rem;
    }
    .main-gallery-swiper .swiper-button-prev {
        left: 2rem;
    }
    .main-gallery-swiper .swiper-button-next {
        right: 2rem;
    }
    .main-gallery-swiper .swiper-button-prev::after,
    .main-gallery-swiper .swiper-button-next::after {
        font-size: 1.4rem;
    }

    /* thumnail slider */
    .thumb-gallery-swiper .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: .3rem;
    }
    .thumb-gallery-swiper .swiper-slide {
        aspect-ratio: 50 / 38;
        border-radius: .15rem;
    }
    .thumb-gallery-swiper .swiper-slide-thumb-active {
        border: 1px solid #fff;
    }
    .thumb-img:hover img {
        transform: scale(1);
    }

    /* option */
    .close-modal {
        width: 3.2rem;
        top: -4.2rem;
        right: 0;
    }
    .swiper-button-next {
        right: .4rem;
    }
    .swiper-button-prev {
        left: .4rem;
    }
}
