@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    position: relative;
    font-family: 'Noto Sans', sans-serif;
    background-color: #f4f1ea;
}

section {
    position: relative;
    background-color: #f4f1ea;
    z-index: 10;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: white;
}
table {
    outline: 0px;
    border-spacing: 0px;
}
figure {
    position: relative;
}
a,
button,
input {
    box-shadow: none;
    border: 0;
    background-color: transparent;
}
button,
i {
    color: #fff;
}
.swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-slide .slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* inline background-image 요소 렌더링 최적화 */
[style*='background-image'] {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* 화면 밖 영역의 페인트 비용 절감 (지원 브라우저에서만 동작) */
@supports (content-visibility: auto) {
    [style*='background-image'] {
        content-visibility: auto;
        contain-intrinsic-size: 1px 420px;
    }
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: none !important;
}
.swiper-button-prev,
.swiper-button-next {
    position: relative;
    width: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background: none;
}

.mo {
    display: none;
}

.m-map {
    display: none;
}
.m-br {
    display: none;
}
.pc-br {
    display: block;
}
.m-price {
    display: none;
}

.dash-list p {
    position: relative;
    padding-left: 10px;
}

.dash-list p::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 5px;
    height: 1px;
    background-color: rgba(43, 39, 40, 0.8);
}

.dot-list p {
    position: relative;
    padding-left: 15px;
}

.dot-list p::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #2b2728;
}


@media (max-width: 1024px) {

    .dot-list p::before {
        display: none;
    }

    .dash-list p::before {
        top: 0.8rem;
    }
}

.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.vdo-container {
    display: none;
}

.clip-path {
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
    transition: 1s all;
}

.clip-path.aos-animate {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}

.m-br {
    display: none;
}

/* 헤더 */
#hd {
    z-index: 150;
    position: relative;
}

.hd-inner {
    max-width: 332px;
    width: 100%;
    height: 55px;
    margin: 0 auto;
    position: fixed;
    top: 58px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(234, 227, 207, 0.8);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 5px;
}

.hd-inner .logo-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 50px);
    height: 100%;
    margin: 0 auto;
}

.hd-inner .logo-wrap .logo {
    width: 48px;
    height: 35px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hd-inner .logo-wrap .logo a {
    width: 100%;
    height: 100%;
    display: block;
}

.hd-inner .logo-wrap .menu-wrap {
    position: relative;
    width: 40px;
    height: 30px;
    cursor: pointer;
    margin-left: 80px;
}

.hd-inner .logo-wrap .menu-wrap .menu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hd-inner .logo-wrap .menu-wrap .menu-txt {
    color: #2b2728;
    font-family: 'Cormorant', serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 1;
    transition: all 0.3s;
}

.hd-inner .logo-wrap .menu-wrap.on .menu-txt {
    opacity: 0;
}

.hd-inner .logo-wrap .menu-wrap .line-btn-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hd-inner .logo-wrap .menu-wrap .line-btn {
    opacity: 0;
    width: 19px;
    height: 1px;
    background-color: #2b2728;
    transition: all 0.3s;
}

.hd-inner .logo-wrap .menu-wrap.on .line-btn {
    opacity: 1;
}

.hd-inner .logo-wrap .menu-wrap.on .line1 {
    transform: rotate(45deg) translateY(5px) translateX(2px);
}

.hd-inner .logo-wrap .menu-wrap.on .line2 {
    transform: rotate(-45deg) translateY(-3px);
}

@media (max-width: 1024px) {
    .pc-br {
        display: none;
    }

    .m-br {
        display: block;
    }

    .hd-inner {
        max-width: unset;
        width: 90%;
        height: 50px;
        top: 25px;
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hd-inner .logo-wrap {
        padding: 0 10px;
        width: 290px;
        margin: 0 auto;
        background-color: rgba(234, 227, 207, 0.4);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 5px;
    }

    .hd-inner .logo-wrap .logo {
        width: 40px;
        height: 30px;
    }

    .hd-inner .logo-wrap .menu-wrap {
        width: 32px;
        height: 20px;
        margin-left: 85px;
    }

    .hd-inner .logo-wrap .menu-wrap .menu-txt {
        font-size: 14px;
    }

    .hd-inner .logo-wrap .menu-wrap .line-btn-wrap {
        gap: 4px;
    }

    .hd-inner .logo-wrap .menu-wrap.on .line1 {
        transform: rotate(45deg) translateY(3px) translateX(1px);
    }

    /* .hd-inner .logo-wrap .menu-wrap.on .line2 {
        transform: rotate(-45deg) translateY(-3px);
    } */
}

/* 메뉴 토글리스트 */

.gnb-wrap {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(0px);
    width: 332px;
    height: 0px;
    background-color: rgba(234, 227, 207, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 5px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    transition: all 0.7s;
}

.gnb-wrap .gnb-top-wrap {
    position: relative;
    padding-top: 35px;
    padding-bottom: 29px;
    margin-bottom: 21px;
    opacity: 0;
    transition: all 0.7s;
}

.gnb-wrap .gnb-top-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(43, 39, 40, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 1s;
}

.gnb-wrap.on {
    min-height: 365px;
    opacity: 1;
    pointer-events: auto;
}

.gnb-wrap.on .gnb-top-wrap::before {
    transform: scaleX(1);
}

.gnb-wrap .gnb-top-wrap .gnb-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.gnb-wrap .gnb-top-wrap .gnb-list .gnb-item {
    width: 100%;
    text-align: center;
    transition: opacity 0.25s ease;
}

.gnb-wrap .gnb-top-wrap .gnb-list .gnb-item.is-dim {
    opacity: 0.2;
}

.gnb-wrap .gnb-top-wrap .gnb-list .gnb-item a {
    display: block;
    color: #2b2728;
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.gnb-wrap .gnb-top-wrap .gnb-list .gnb-item.has-submenu .gnb-main-link {
    color: #5f5651;
}

.gnb-wrap .gnb-top-wrap .gnb-list .gnb-item.has-submenu.is-open .gnb-main-link {
    color: #2b2728;
}

.gnb-wrap .gnb-top-wrap .gnb-list .gnb-item .gnb-submenu {
    display: none;
    margin-top: 10px;
    text-align: center;
}

.gnb-wrap .gnb-top-wrap .gnb-list .gnb-item .gnb-submenu li {
    display: inline-block;
    position: relative;
    padding: 0 12px;
}

.gnb-wrap .gnb-top-wrap .gnb-list .gnb-item .gnb-submenu li + li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: rgba(43, 39, 40, 0.35);
}

.gnb-wrap .gnb-top-wrap .gnb-list .gnb-item .gnb-submenu a {
    color: rgba(43, 39, 40, 0.75);
    font-family: 'Cormorant', serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
}

.gnb-wrap .gnb-top-wrap .gnb-list .gnb-item .gnb-submenu a:hover {
    color: #2b2728;
}

.gnb-wrap .gnb-bot-wrap {
    position: relative;
    opacity: 0;
    transition: all 0.7s;
}

.gnb-wrap .gnb-bot-wrap .reser-btn-wrap {
    position: relative;
    width: 171px;
    height: 34px;
    border: 1px solid rgba(60, 56, 57, 0.5);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto;
    transition: all 0.3s;
}

.gnb-wrap .gnb-bot-wrap .reser-btn-wrap:hover {
    background-color: #3c3839;
}

.gnb-wrap .gnb-bot-wrap .reser-btn-wrap .reser_btn {
    display: flex;
    color: #3c3839;
    font-family: 'Cormorant', serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s;
}

.gnb-wrap .gnb-bot-wrap .reser-btn-wrap:hover .reser_btn {
    color: #fff;
}

.gnb-wrap .gnb-bot-wrap .sns-wrap .tel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.gnb-wrap .gnb-bot-wrap .sns-wrap .tel-btn .tel-txt {
    color: #3c3839;
    font-family: 'Cormorant', serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.gnb-wrap .gnb-bot-wrap .sns-wrap .tel-btn .num {
    color: #3c3839;
    font-family: 'the-seasons', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.gnb-wrap .gnb-bot-wrap .sns-wrap .sns-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.gnb-wrap .gnb-bot-wrap .sns-wrap .sns-btn a {
    width: 16px;
    height: 16px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.gnb-wrap.on .gnb-top-wrap {
    opacity: 1;
}

.gnb-wrap.on .gnb-bot-wrap {
    opacity: 1;
}

@media (max-width: 1024px) {
    .gnb-wrap {
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 290px;
    }

    .gnb-wrap.on {
        transform: translate(-50%, 0);
    }

    .gnb-wrap .gnb-top-wrap {
        position: relative;
        padding-top: 30px;
    }

    .gnb-wrap .gnb-top-wrap .gnb-list .gnb-item a {
        font-size: 17px;
    }

    .gnb-wrap .gnb-top-wrap .gnb-list .gnb-item .gnb-submenu {
        margin-top: 8px;
    }

    .gnb-wrap .gnb-top-wrap .gnb-list .gnb-item .gnb-submenu li {
        padding: 0 8px;
    }

    .gnb-wrap .gnb-top-wrap .gnb-list .gnb-item .gnb-submenu a {
        font-size: 14px;
    }

    /* .gnb-wrap .gnb-bot-wrap .reser-btn-wrap {
        position: relative;
        width: 171px;
        height: 34px;
        border: 1px solid rgba(60, 56, 57, 0.5);
        border-radius: 3px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 15px auto;
        transition: all 0.3s;
    } */

    .gnb-wrap .gnb-bot-wrap .reser-btn-wrap .reser_btn {
        font-size: 15px;
    }

    .gnb-wrap .gnb-bot-wrap .sns-wrap .tel-btn .tel-txt {
        font-size: 17px;
    }

    .gnb-wrap .gnb-bot-wrap .sns-wrap .tel-btn .num {
        font-size: 16px;
    }
}

/* 메인 히어로 섹션 */

.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
}
.hero-section-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-section-inner .hero-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-section-inner iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-section-inner .hero-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    color: #F4F1EA;

text-align: center;
font-family: "Noto Sans", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 34px;
}

.mo-tit-wrap {
    display: none;
}

@media (max-width: 1024px) {
    .hero-section {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .main-wrap .hero-section {
        margin-top: 100px;
    }

    .special-wrap .hero-section {
        height: 100dvh;
        aspect-ratio: auto;
        overflow: hidden;
    }

    .special-wrap .hero-section .hero-section-inner {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .special-wrap .hero-section .hero-section-inner iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 190.78dvh;
        height: 100dvh;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
    }


    .hero-section-inner .hero-txt {
    display: none;
    }

    .hero-section-inner {
        overflow: hidden;
    }

    .story-wrap .hero-section-inner  { 
        height: 100dvh;
    }

    .hero-section-inner iframe {
        width: 100%;
        height: 100%;
    }

    .mo-tit-wrap {
        display: block;
        margin: 53px 0 43px 0;
        text-align: center;
    }

    .mo-tit-wrap .txt {
        color: #2b2728;
        font-family: 'Noto Sans', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px; /* 175% */
        letter-spacing: -0.36px;
    }

    .mo-tit-wrap .tit {
        color: #2b2728;
        font-family: 'Amandine', serif;
        font-size: 13px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px;
        letter-spacing: 0.39px;
    }
}

/* 메인 슬라이드 섹션 */

.main-section {
    width: 100%;
    padding-top: 260px;
    position: relative;
}

.main-slide-section {
    max-width: 1760px;
    width: 100%;

    margin: 0 auto;
    position: relative;
}

.main-slide-section .main-slide-wrap {
    width: 100%;
    height: 880px;
    position: relative;
}

.main-slide-num {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 100;
}

.main-slide-num.is-mobile {
    display: none;
}

.main-slide-num .num {
    width: 15px;
    color: #302b27;
    text-align: center;
    font-family: Cormorant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.9px;
}

.main-slide-num .num.current {
    margin-bottom: 6px;
}

.main-slide-num .num.total {
    margin-top: 6px;
}

.main-slide-num .line {
    width: 1px;
    height: 28px;
    transform: rotate(-18.258deg);
    background-color: rgba(48, 43, 39, 0.4);
}

/* 메인 슬라이드 페이지네이션 */

.main-slide-pagination {
    padding-top: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-slide-pagination .page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    cursor: pointer;
    position: relative;
    --page-icon-size: 10px;
    --page-icon-gap: 6px;
}

.main-slide-pagination .page img {
    width: var(--page-icon-size);
    height: 13px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1;
}

.main-slide-pagination .page::after {
    content: '';
    position: absolute;
    top: 50%;
    width: var(--page-icon-size);
    height: 13px;
    background-image: var(--page-icon);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translate(0, -50%);
    pointer-events: none;
}

.main-slide-pagination .page#prev::after {
    left: 0;
    background-image: url(../img/common/left.png);
}

.main-slide-pagination .page#next::after {
    right: 0;
    background-image: url(../img/common/right.png);
}
.main-slide-pagination .page:hover::after {
    opacity: 1;
}

.main-slide-pagination .page#prev:hover::after {
    animation: page-arrow-clone-left 0.8s ease-in-out infinite;
}

.main-slide-pagination .page#next:hover::after {
    animation: page-arrow-clone-right 0.8s ease-in-out infinite;
}

@keyframes page-arrow-clone-left {
    0% {
        transform: translate(0, -50%);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translate(calc(-100% - var(--page-icon-gap)), -50%);
        opacity: 0;
    }
}

@keyframes page-arrow-clone-right {
    0% {
        transform: translate(0, -50%);
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    100% {
        transform: translate(calc(100% + var(--page-icon-gap)), -50%);
        opacity: 0;
    }
}

.main-slide-pagination .page .txt {
    color: #302b27;
    font-family: 'Cormorant', serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.6px;
}

.main-slide-pagination .slide-tit-wrap {
    margin: 0 130px;
}

.main-slide-pagination .slide-tit-wrap .slide-txt {
    color: #2b2728;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px; /* 170% */
    letter-spacing: -0.6px;
}

.main-slide-pagination .slide-tit-wrap .slide-tit {
    color: #2b2728;
    text-align: center;
    font-family: 'amandine', sans-serif;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
    letter-spacing: 0.69px;
}

@media (max-width: 1024px) {
    .main-section {
        width: 100%;
        padding-top: 0;
        overflow: hidden;
    }

    .main-slide-section {
        max-width: unset;
        width: 100%;
    }

    .main-slide-section .main-slide-wrap {
        height: 250px;
    }

    .main-slide-wrap .main-slide-num {
        display: none;
    }

    .main-slide-num {
        position: absolute;
        bottom: 10px;
    }

    .main-slide-num.is-mobile {
        display: flex;
        position: static;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 0 30px;
    }

    .main-slide-num .num {
        width: 15px;
        text-align: center;
        font-size: 15px;
    }

    .main-slide-num .num.current {
        margin-bottom: 3px;
    }

    .main-slide-num .num.total {
        margin-top: 3px;
    }

    .main-slide-num .line {
        width: 1px;
        height: 15px;
        transform: rotate(-18.258deg);
        background-color: rgba(48, 43, 39, 0.4);
    }

    /* 메인 슬라이드 페이지네이션 */

    .main-slide-pagination {
        padding-top: 15px;
    }

    .main-slide-pagination .page {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        cursor: pointer;
        position: relative;
        --page-icon-size: 10px;
        --page-icon-gap: 6px;
    }

    .main-slide-pagination .page img {
        width: var(--page-icon-size);
        height: 13px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
        z-index: 1;
    }

    .main-slide-pagination .page::after {
        display: none;
    }

    /* .main-slide-pagination .page .txt {
        display: none;
    } */

    .main-slide-pagination .slide-tit-wrap {
        display: none;
    }

    .main-slide-pagination .slide-tit-wrap .slide-txt {
        font-size: 15px;
    }

    .main-slide-pagination .slide-tit-wrap .slide-tit {
        font-size: 18px;
    }
}

/* 메인 어바웃 섹션*/

.line-area {
    position: relative;
    background-color: #f4f1ea;
}

.line-bg {
    position: absolute;
    top: 21.4%;
    left: 0;
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.special-wrap .line-bg {
    top: -14.6%;
    background-color: #f4f1ea;
}

@media (min-width: 2000px) {
    .special-content-inner {
        padding-top: 300px;
    }

    .special-wrap .line-bg {
        top: -5%;
    }
}

.line-bg .line-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.line-bg .line-svg-mobile {
    display: none;
}

.line-bg .line-bg-img {
    display: none;
    width: 92%;
    height: auto;
}

.line-bg .scroll-line-path {
    fill: none;
}

@media (max-width: 1024px) {
    .line-area {
        overflow: hidden;
    }
    .line-bg {
        top: 10%;
        width: 135vw;
        height: 100%;
        left: unset;
        right: -11%;
    }

    .line-bg .line-svg-pc {
        display: none;
    }

    .line-bg .line-svg:not(.line-svg-mobile) {
        display: none !important;
    }

    .line-bg .line-svg-mobile {
        display: none !important;
    }

    .line-bg .line-bg-img {
        display: block;
        opacity: 0.5;
    }

    /* .line-bg .line-svg-mobile .scroll-line-path {
        stroke-width: 1px !important;
        stroke-linecap: round;
        stroke-linejoin: round;
        vector-effect: non-scaling-stroke;
        shape-rendering: geometricPrecision;
    } */
}

/* 메인 어바웃 섹션 */

.about-section {
    padding-top: 325px;
    background-color: transparent;
    z-index: 5;
}

.about-section-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    gap: 32px;
    overflow: hidden;
    z-index: 6;
}

.about-section-inner .about-tit-wrap {
    position: absolute;
    top: 109px;
    right: 0;
}

.about-section-inner .about-tit-wrap .about-sub-tit {
    color: #2b2728;
    font-family: 'amandine', sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 90px;
    display: block;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
    will-change: clip-path, opacity;
}

.about-section-inner .about-tit-wrap .about-tit {
    color: #2b2728;
    font-family: 'amandine', sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 300;
    line-height: 90px;
    display: block;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
    will-change: clip-path, opacity;
}

.about-section-inner .about-tit-wrap.is-writing .about-sub-tit {
    animation: handwrite-reveal 1.4s ease forwards;
}

.about-section-inner .about-tit-wrap.is-writing .about-tit {
    animation: handwrite-reveal 1.8s ease forwards;
    animation-delay: 0.2s;
}

@keyframes handwrite-reveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        -webkit-clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        -webkit-clip-path: inset(0 0 0 0);
    }
}

.about-section-inner .about-img1 {
    width: 716px;
    height: 900px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
    transition:
        clip-path 2s ease-in-out,
        -webkit-clip-path 2s ease-in-out;
    overflow: hidden;
}

.about-section-inner .about-img1.aos-animate {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}

.about-section-inner .about-txt-wrap {
    padding-top: 325px;
}

.about-section-inner .about-txt-wrap h5 {
    color: #2b2728;
    font-family: 'Noto Sans', sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 20px;
}

.about-section-inner .about-txt-wrap p {
    color: #635b54;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 141px;
}

.about-section-inner .about-img2 {
    width: 344px;
    height: 334px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 45px;
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
    transition:
        clip-path 2s ease-in-out,
        -webkit-clip-path 2s ease-in-out;
    overflow: hidden;
}

.about-section-inner .about-img2.aos-animate {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}

@media (max-width: 1024px) {
    .about-section {
        padding-top: 140px;
        background-color: transparent;
        z-index: 5;
        overflow: hidden;
    }

    .about-section-inner {
        width: 90%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-section-inner .about-tit-wrap {
        position: static;
        padding-left: 67px;
    }

    .about-section-inner .about-tit-wrap .about-sub-tit {
        font-size: 20px;
        line-height: 45px;
    }

    .about-section-inner .about-tit-wrap .about-tit {
        font-size: 30px;
        line-height: 45px;
    }

    .about-section-inner .about-img1 {
        width: 256px;
        height: 334px;
    }

    .about-section-inner .about-txt-wrap {
        padding-top: 10px;
        margin-left: 110px;
        width: 213px;
    }

    .about-section-inner .about-txt-wrap h5 {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .about-section-inner .about-txt-wrap p {
        font-size: 12px;
        line-height: 22px;
        margin-bottom: 0px;
    }

    .about-section-inner .about-txt-wrap p br {
        display: none;
    }

    .about-section-inner .about-img2 {
        width: 133px;
        height: 129px;
        margin-left: 0px;
        position: absolute;
        right: 0px;
        top: 250px;
    }
}

/* 메인 인포섹션 */

.info-section {
    height: 1200px;
    background-color: transparent;
    z-index: 5;
}

.info-section-inner {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.info-section-inner .info-item {
    position: absolute;
    background-color: #f4f1ea;
    padding: 10px 30px;
    width: 389px;
    height: 416px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.info-section-inner .info-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.info-section-inner .info-item > * {
    position: relative;
    z-index: 1;
}

.info-section-inner .info-item1 {
    top: 17%;
    left: 10%;
}

.info-section-inner .info-item1::after {
    content: '';
    position: absolute;
    left: 0;
    top: 55%;
    width: 12px;
    height: 12px;
    background-color: #2b2728;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.5s;
}

.info-section-inner .info-item2 {
    top: 21%;
    left: 60%;
    transform: translateX(-50%);
}

.info-section-inner .info-item2::after {
    content: '';
    position: absolute;
    left: 0;
    top: 65.5%;
    width: 12px;
    height: 12px;
    background-color: #2b2728;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.5s;
}

.info-section-inner .info-item3 {
    top: 58%;
    right: 10%;
}

.info-section-inner .info-item3::after {
    content: '';
    position: absolute;
    right: 0%;
    top: 48%;
    width: 12px;
    height: 12px;
    background-color: #2b2728;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.5s;
}


.info-section-inner .info-item4 {
    top: 75%;
    left: 25%;
}

.info-section-inner .info-item4::after {
    content: '';
    position: absolute;
    left: 0;
    top: 61.5%;
    width: 12px;
    height: 12px;
    background-color: #2b2728;
    border-radius: 50%;
    opacity: 1;
    transition: all 0.5s;
}




.info-section-inner .info-item h4 {
    color: #2b2728;
    font-family: 'Cormorant', serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.info-section-inner .info-item h5 {
    color: #2b2728;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

.info-section-inner .info-item p {
    color: rgba(99, 91, 84, 0.9);
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.info-section-inner .info-item1:hover,
.info-section-inner .info-item2:hover,
.info-section-inner .info-item3:hover {
    color: #fff;
}

.info-section-inner .info-item1:hover::after,
.info-section-inner .info-item2:hover::after,
.info-section-inner .info-item3:hover::after {
    opacity: 0;
}

.info-section-inner .info-item1:hover {
    background-image: none;
}

.info-section-inner .info-item2:hover {
    background-image: none;
}

.info-section-inner .info-item3:hover {
    background-image: none;
}

.info-section-inner .info-item1::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url(../img/main_img3.jpg);
}

.info-section-inner .info-item2::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url(../img/main_img4.jpg);
}

.info-section-inner .info-item3::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url(../img/main_img5.jpg);
}


.info-section-inner .info-item4::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)), url(../img/main_img6.jpg);
}



.info-section-inner .info-item1:hover::before,
.info-section-inner .info-item2:hover::before,
.info-section-inner .info-item3:hover::before,
.info-section-inner .info-item4:hover::before 
{
    opacity: 1;
}

.info-section-inner .info-item1:hover h4,
.info-section-inner .info-item1:hover h5,
.info-section-inner .info-item1:hover p,
.info-section-inner .info-item2:hover h4,
.info-section-inner .info-item2:hover h5,
.info-section-inner .info-item2:hover p,
.info-section-inner .info-item3:hover h4,
.info-section-inner .info-item3:hover h5,
.info-section-inner .info-item3:hover p,
.info-section-inner .info-item4:hover h4,
.info-section-inner .info-item4:hover h5,
.info-section-inner .info-item4:hover p {
    color: #fff;
}

@media (min-width: 2000px) {

    .info-section {
        height: 1500px;
    }


    .line-bg {
        top: 12.3%;
    }

    .info-section-inner .info-item1::after {
        top: 47.5%;
    }

    .info-section-inner .info-item2::after {
        top: 62%;
    }

    .info-section-inner .info-item3 {
        top: 64%;
    }

    .info-section-inner .info-item3::after {
        top: 27.5%;
    }

    .info-section-inner .info-item4 {
        top: 82%;
    }

    .info-section-inner .info-item4::after {
        top: 47%;
    }

}

@media (max-width: 1024px) {
    .info-section {
        overflow: hidden;
        height: auto;
    }

    .info-section-inner {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 13vh;
        padding: 15vh 0 0vh;
    }

    .info-section-inner .info-item {
        width: 90vw;
        height: auto;
        opacity: 0;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        display: grid;
        grid-template-columns: 120px minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        align-items: center;
        justify-items: start;
        column-gap: 18px;
        row-gap: 8px;
        text-align: left;
        padding: 10px 15px;
        background-color: transparent;
    }

    .info-section-inner .info-item::before {
        position: relative;
        inset: auto;
        opacity: 1;
        width: 140px;
        height: 126px;
        display: block;
        grid-column: 1;
        grid-row: 1 / 4;
    }

    .info-section-inner .info-item1::before ,
    .info-section-inner .info-item3::before
    {
        left: -20px;
    }

    .info-section-inner .info-item1 {
        margin-right: 0;
    }

    .info-section-inner .info-item2 {
        grid-template-columns: minmax(0, 1fr) 120px;
    }

    .info-section-inner .info-item4 {
        grid-template-columns: minmax(0, 1fr) 120px;
    }

    .info-section-inner .info-item3 {
        margin-right: 0;
    }

    .info-section-inner .info-item2::before {
        grid-column: 2;
        grid-row: 1 / 4;
    }

    .info-section-inner .info-item4::before {
        grid-column: 2;
        grid-row: 1 / 4;
    }

    .info-section-inner .info-item h4,
    .info-section-inner .info-item h5,
    .info-section-inner .info-item p {
        grid-column: 2;
        text-align: left;
        width: 100%;
    }

    .info-section-inner .info-item h4 {
        grid-row: 1;
    }

    .info-section-inner .info-item h5 {
        grid-row: 2;
    }

    .info-section-inner .info-item p {
        grid-row: 3;
    }

    .info-section-inner .info-item p br {
        display: none;
    }

    .info-section-inner .info-item2 h4,
    .info-section-inner .info-item2 h5,
    .info-section-inner .info-item2 p {
        grid-column: 1;
    }

    .info-section-inner .info-item4 h4,
    .info-section-inner .info-item4 h5,
    .info-section-inner .info-item4 p {
        grid-column: 1;
    }

    .info-section-inner .info-item::after {
        content: '';
        position: absolute;
        width: 8px;
        height: 8px;
        background-color: #ff0000;
        border-radius: 50%;
        opacity: 1;
        z-index: 9999;
        pointer-events: none;
        display: none;
    }

    /* item1: 이미지 왼쪽, 텍스트 오른쪽 -> 마커는 이미지 오른쪽에 */
    .info-section-inner .info-item1::after {
        left: 130px; /* 이미지 width(120px) + gap(18px) - 8px */
        top: 50%;
        transform: translateY(-50%);
    }

    /* item2: 텍스트 왼쪽, 이미지 오른쪽 -> 마커는 이미지 왼쪽에 */
    .info-section-inner .info-item2::after {
        right: 130px; /* 이미지 width(120px) + gap(18px) - 8px */
        top: 50%;
        transform: translateY(-50%);
    }

    /* item3: 이미지 왼쪽, 텍스트 오른쪽 -> 마커는 이미지 오른쪽에 */
    .info-section-inner .info-item3::after {
        left: 130px; /* 이미지 width(120px) + gap(18px) - 8px */
        top: 50%;
        transform: translateY(-50%);
    }

    /* item4: 텍스트 왼쪽, 이미지 오른쪽 -> 마커는 이미지 왼쪽에 */
    .info-section-inner .info-item4::after {
        right: 130px; /* 이미지 width(120px) + gap(18px) - 8px */
        top: 50%;
        transform: translateY(-50%);
    }

    /* JavaScript로 마커 위치가 설정된 경우 */
    .info-section-inner .info-item[style*='--marker-left']::after {
        left: var(--marker-left) !important;
        right: auto !important;
        top: var(--marker-top) !important;
        transform: translate(-50%, -50%) !important;
        background-color: #2b2728 !important;
        width: 6px !important;
        height: 6px !important;
    }

    .info-section-inner .info-item h4 {
        font-size: 18px;
        font-weight: 500;
        background-color: #f4f1ea;
        margin-bottom: 0;
    }

    .info-section-inner .info-item h5 {
        color: #2b2728;
        font-family: 'Noto Sans', sans-serif;
        font-size: 11px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        background-color: #f4f1ea;
    }

    .info-section-inner .info-item p {
        color: rgba(99, 91, 84, 0.9);
        font-family: 'Noto Sans', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        margin-bottom: 0;
        background-color: #f4f1ea;
    }

    .info-section-inner .info-item1:hover,
    .info-section-inner .info-item2:hover,
    .info-section-inner .info-item3:hover,
    .info-section-inner .info-item4:hover {
        color: #302b27;
    }

    .info-section-inner .info-item1:hover::after,
    .info-section-inner .info-item2:hover::after,
    .info-section-inner .info-item3:hover::after,
    .info-section-inner .info-item4:hover::after {
        opacity: 1;
    }

    .info-section-inner .info-item1:hover {
        background-image: inherit;
    }

    .info-section-inner .info-item2:hover {
        background-image: inherit;
    }

    .info-section-inner .info-item3:hover {
        background-image: inherit;
    }

    .info-section-inner .info-item4:hover {
        background-image: inherit;
    }

    .info-section-inner .info-item1:hover::before,
    .info-section-inner .info-item2:hover::before,
    .info-section-inner .info-item3:hover::before,
    .info-section-inner .info-item4:hover::before {
        opacity: inherit;
    }

    .info-section-inner .info-item1:hover h4,
    .info-section-inner .info-item1:hover h5,
    .info-section-inner .info-item1:hover p,
    .info-section-inner .info-item2:hover h4,
    .info-section-inner .info-item2:hover h5,
    .info-section-inner .info-item2:hover p,
    .info-section-inner .info-item3:hover h4,
    .info-section-inner .info-item3:hover h5,
    .info-section-inner .info-item3:hover p,
    .info-section-inner .info-item4:hover h4,
    .info-section-inner .info-item4:hover h5,
    .info-section-inner .info-item4:hover p {
        color: inherit;
    }
}

[data-aos='info-fade'] {
    opacity: 0;
    transition: all 0.5s;
}

[data-aos='info-fade'].aos-animate {
    opacity: 1;
}

/* 룸 프리뷰 */

.room-preview-section {
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    padding-top: 250px;
}

.room-preview-section .room-preview-inner {
    width: 100%;
    overflow: hidden;
}

.room-wrap .room-preview-section .room-preview-inner {
    padding-bottom: 200px;
}

.room-wrap .room-preview-section .room-preview-inner .room-preview-tit {
    display: none;
}

.room-preview-section .room-preview-inner .room-preview-tit {
    width: 100%;
    overflow: hidden;
}

.room-preview-section .room-preview-inner .room-preview-tit h2 {
    color: rgba(12, 12, 12, 0.1);
    font-family: 'amandine', sans-serif;
    font-size: 140px;
    font-style: normal;
    font-weight: 300;
    line-height: 115px; /* 107.143% */
    transform: translateY(80%);
    transition: all 0.5s;
}

.room-preview-section .room-preview-inner .room-preview-tit h2.aos-animate {
    transform: translateY(0);
}

.room-preview-section .room-preview-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.room-preview-section .room-preview-wrap > div {
    width: 50%;
    height: 900px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.room-preview-section .room-preview-wrap > div::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 15;
}

.room-preview-section .room-preview-wrap > div a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}

.room-preview-section .room-preview-wrap .room-view {
    position: absolute;
    left: 0;
    top: 0;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #f4f1ea;
    font-family: 'Cormorant', serif;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 20;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.room-preview-section .room-preview-wrap.is-hover .room-view {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.room-preview-section .room-preview-wrap > div::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.room-preview-section .room-preview-left::before {
    background-image: url(../img/gallery/room_preview/main_room1_1.jpg?v=2);
}

.room-preview-section .room-preview-right::before {
    background-image: url(../img/gallery/room_preview/main_room2_1.jpg?v=2);
}

.room-preview-section .room-preview-wrap > div:hover::before {
    opacity: 1;
}

.room-preview-section .room-preview-left:hover ~ .room-preview-right::after {
    opacity: 1;
}

.room-preview-section .room-preview-right:hover::after {
    opacity: 0;
}

.room-preview-section .room-preview-wrap:has(.room-preview-right:hover) .room-preview-left::after {
    opacity: 1;
}

.room-preview-section .room-preview-wrap > div h3 {
    position: absolute;
    color: #fff;
    font-family: 'amandine', sans-serif;
    font-size: 150px;
    font-style: normal;
    font-weight: 300;
    line-height: 120px;
}

.room-preview-section .room-preview-left .room-tit {
    left: 50px;
    bottom: 0;
}

.room-preview-section .room-preview-right .room-tit {
    right: 50px;
    bottom: 0;
}

@media (min-width: 2000px) {
    .room-preview-section .room-preview-wrap > div {
        height: 1100px;
    }
}

@media (max-width: 1024px) {
    .room-preview-section {
        overflow: hidden;
        padding-top: 70px;
    }

    .room-preview-section .room-preview-inner {
        width: 100%;
        overflow: hidden;
    }

    .room-wrap .room-preview-section .room-preview-inner {
        padding-bottom: 100px;
    }

    .room-preview-section .room-preview-inner .room-preview-tit {
        width: 100%;
        overflow: hidden;
    }

    .room-preview-section .room-preview-inner .room-preview-tit h2 {
        font-size: 35px;
        font-weight: 300;
        line-height: normal; /* 107.143% */
        transform: translateY(80%);
    }

    .room-preview-section .room-preview-wrap {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .room-preview-section .room-preview-wrap > div {
        width: 100%;
        height: 310px;
    }

    .room-preview-section .room-preview-wrap .room-view {
        display: none;
    }

    .room-preview-section .room-preview-wrap > div::before {
        display: none;
    }

    .room-preview-section .room-preview-wrap > div h3 {
        font-size: 70px;
        line-height: normal;
    }

    .room-preview-section .room-preview-left .room-tit {
        left: 5px;
        bottom: -16px;
    }

    .room-preview-section .room-preview-right .room-tit {
        right: 5px;
        bottom: -16px;
    }
}

/* 메인 예약섹션 */

.reser-section {
    width: 100%;
    background-color: transparent;
    overflow: visible; /* guide-wrap 내 sticky 동작을 위해 필요 */
}

.reser-section-inner {
    width: 100%;
    padding-top: 200px;
    padding-bottom: 250px;
}

.reser-section-inner h5 {
    color: #2b2728;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 49px;
}

.reser-section-inner p {
    color: rgba(43, 39, 40, 0.7);
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px;
    margin-bottom: 71px;
}

.reser-section-inner .reser-btn-wrap {
    width: 195px;
    height: 51px;
    border: 1px solid rgba(12, 12, 12, 0.5);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    transition: all 0.5s;
}

.reser-section-inner .reser-btn-wrap .reser_btn {
    color: rgba(12, 12, 12, 0.7);
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}

.reser-section-inner .reser-btn-wrap:hover {
    background-color: #302b27;
}

.reser-section-inner .reser-btn-wrap:hover .reser_btn {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .reser-section-inner {
        overflow: hidden;
    }

    .reser-section-inner {
        padding-top: 115px;
        padding-bottom: 115px;
    }

    .reser-section-inner h5 {
        font-size: 18px;
        line-height: 35px;
        margin-bottom: 30px;
    }

    .reser-section-inner p {
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 0px;
    }

    .reser-section-inner .reser-btn-wrap {
        display: none;
    }
}

/* 스페셜 프리뷰 */

.special-preview-section {
    width: 100%;
    background-color: transparent;
}

.special-preview-section--sub {
    background-color: #f4f1ea;
    z-index: 100;
}

/* 스페셜 서브페이지 노출 분기:
   PC는 sub 전용, 모바일은 일반 preview 전용 */
.special-wrap .special-preview-section--sub {
    display: block;
}

.special-wrap .special-preview-section:not(.special-preview-section--sub) {
    display: none;
}

.special-preview-inner {
    width: 100%;
    padding-bottom: 200px;
}

.special-preview-section .special-preview-tit {
    color: #2b2728;
    text-align: center;
    font-family: 'Amandine', serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 300;
    line-height: normal; /* 50% */
    text-transform: capitalize;
    margin-bottom: 150px;
}

#main .special-preview-inner {
    padding-bottom: 350px;
}

/* ===== 메인 페이지 전용: 큰 이미지 슬라이드 + 하단 nav 리스트 ===== */
.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap {
    height: 820px;
    position: relative;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .special-preview-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .slide-tit-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .slide-tit-wrap .slide-tit {
    color: #fff;
    display: block;
    width: auto;
    padding: 0 45px;
    height: 51px;
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 120px;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .slide-tit-wrap .slide-tit::after,
.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .slide-tit-wrap .slide-tit::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: #fff;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .slide-tit-wrap .slide-tit::after {
    left: 0;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .slide-tit-wrap .slide-tit::before {
    right: 0;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .slide-tit-wrap .slide-btn-wrap {
    position: relative;
    width: 195px;
    height: 51px;
    margin: 0 auto;
    border: 1px solid rgba(243, 240, 232, 0.5);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .slide-tit-wrap .slide-btn-wrap a {
    color: rgba(243, 240, 232, 0.7);
    font-family: 'Cormorant', serif;
    font-size: 25px;
    font-weight: 300;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .slide-tit-wrap .slide-btn-wrap:hover {
    background-color: #f4f1ea;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .slide-tit-wrap .slide-btn-wrap:hover a {
    color: #302b27;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-pagination {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    width: 90%;
}

.special-preview-section:not(.special-preview-section--sub) .special-preview-nav-list .special-preview-nav-item {
    cursor: pointer;
}

/* ===== 서브 페이지 전용: nav 리스트 슬라이더 (6개 노출) ===== */
.special-preview-section--sub .special-preview-nav-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.special-preview-section--sub .special-preview-nav-slider .swiper-wrapper.special-preview-nav-list {
    align-items: stretch;
}

.special-preview-section--sub .special-preview-nav-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    box-sizing: border-box;
    height: auto;
}

.special-preview-section--sub .special-preview-nav-slider .special-preview-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 350px;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.special-preview-section--sub .special-preview-nav-img {
    width: 300px;
    height: 280px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.special-preview-section--sub .special-preview-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 48px;
    position: static;
    transform: none;
}

.special-preview-pagination .page {
    width: 15px;
    height: 26px;
    cursor: pointer;
}

.special-preview-pagination .page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 스페셜 프리뷰 nav wrap (메인 레이아웃) */

.special-preview-nav-wrap {
    width: 100%;
    padding-top: 58px;
    position: relative;
}

.special-preview-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    z-index: 10;
}

.special-preview-nav-list {
    width: 100%;
    margin: 0 auto;
}

.special-preview-section--sub .special-preview-nav-list {
    width: 100%;
}

.special-preview-nav-list .special-preview-nav-item {
    cursor: default;
}

.special-preview-nav-list .special-preview-nav-item .mobile-more-btn-wrap {
    display: none;
}

.special-preview-nav-list .special-preview-nav-item .nav-tit {
    position: relative;
    padding: 0 30px;
    height: 25px;
    color: #302b27;
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-bottom: 13px;
    transition:
        color 0.5s,
        background-position 0.5s ease;
    overflow: hidden;
    background-image: linear-gradient(90deg, #302b27 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
}

.special-preview-nav-list .special-preview-nav-item.on .nav-tit,
.special-preview-nav-list .special-preview-nav-item:hover .nav-tit {
    color: #f4f1ea;
    background-position: 0 0;
}

.special-preview-nav-list .special-preview-nav-item .nav-tit::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: rgba(48, 43, 39, 0.7);
}

.special-preview-nav-list .special-preview-nav-item .nav-tit::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background-color: rgba(48, 43, 39, 0.7);
}

.special-preview-nav-list .special-preview-nav-item p {
    color: rgba(48, 43, 39, 0.7);
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.special-preview-mobile-gauge {
    display: none;
}

@media (max-width: 1024px) {
    .special-wrap .special-preview-section--sub {
        display: none;
    }

    .special-wrap .special-preview-section:not(.special-preview-section--sub) {
        display: block;
        background-color: #f4f1ea;
    }

    .special-preview-section {
        overflow: hidden;
    }

    .special-preview-inner {
        width: 100%;
        padding-bottom: 180px;
    }

    .special-wrap .special-preview-inner {
        padding-bottom: 80px;
    }

    #main .special-preview-inner {
        padding-bottom: 180px;
    }

    /* 메인: 모바일에서 큰 슬라이드 영역 축소, 타이틀/버튼 숨김, pagination 숨김 */
    .special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap {
        height: 250px;
    }

    .special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap .slide-tit-wrap {
        display: none;
    }

    .special-preview-section:not(.special-preview-section--sub) .special-preview-pagination {
        display: none;
    }

    .special-preview-section--sub .special-preview-pagination {
        margin-top: 32px;
    }

    .special-preview-nav-wrap {
        padding-top: 32px;
    }

    .special-preview-section--sub .special-preview-nav-slider .special-preview-nav-item {
        max-width: 100%;
    }

    .special-preview-section--sub .special-preview-nav-img {
        width: 220px;
        height: 194px;
        margin-bottom: 20px;
    }

    /* 메인: 모바일에서 nav 아이템 1개만 노출 */
    .special-preview-section:not(.special-preview-section--sub) .special-preview-nav-list .special-preview-nav-item {
        display: none;
    }

    .special-preview-section:not(.special-preview-section--sub) .special-preview-nav-list .special-preview-nav-item.on {
        display: block;
    }

    .special-preview-nav-list .special-preview-nav-item.on .nav-tit,
    .special-preview-nav-list .special-preview-nav-item:hover .nav-tit {
        color: #302b27;
        background-color: transparent;
        background-image: none;
        font-size: 18px;
    }

    .special-preview-nav-list .special-preview-nav-item .nav-tit::after {
        left: 0%;
    }

    .special-preview-nav-list .special-preview-nav-item .nav-tit::before {
        right: 0%;
    }

    .special-preview-nav-list .special-preview-nav-item .nav-tit {
        height: 32px;
        font-size: 24px;
        padding: 0 20px;
        margin-bottom: 14px;
    }

    .special-preview-nav-list .special-preview-nav-item p {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .special-preview-nav-list .special-preview-nav-item .mobile-more-btn-wrap {
        display: flex;
        justify-content: center;
    }

    .special-preview-nav-list .special-preview-nav-item .mobile-more-btn-wrap a,
    .special-preview-nav-list .special-preview-nav-item .mobile-more-btn-wrap span {
        border: none;
        border-radius: unset;
        color: rgba(48, 43, 39, 0.8);
        font-size: 18px;
        font-family: 'Cormorant', serif;
        text-decoration-line: underline;
        font-style: normal;
        font-weight: 300;
        line-height: 35px;
    }

    .special-preview-mobile-gauge {
        width: 90%;
        height: 1px;
        margin: 28px auto 0;
        background-color: rgba(48, 43, 39, 0.2);
        display: block;
        overflow: hidden;
    }

    .special-preview-mobile-gauge .special-preview-mobile-gauge-fill {
        display: block;
        width: 14.2857%;
        height: 100%;
        background-color: #302b27;
        transition: width 0.35s ease;
    }

    .special-preview-section .special-preview-tit {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .special-wrap .special-preview-nav-list .special-preview-nav-item .nav-tit::after {
        left: 0;
    }

    .special-wrap .special-preview-nav-list .special-preview-nav-item .nav-tit::before {
        right: 0;
    }
}

/* 서브페이지 공통 슬라이드 */

.sub-slide-section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.sub-slide-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.sub-slide-wrap .swiper-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.sub-slide-wrap .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.sub-slide-wrap .swiper-slide .slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.sub-num-pagination {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 100;
}

.sub-num-pagination .page {
    width: auto;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    margin: 0 210px;
}

.sub-num-pagination .page img {
    width: 10px;
    height: 13px;
}

.sub-num-pagination .page .txt {
    color: #f4f1ea;
    font-family: 'Cormorant', serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.48px;
}

.sub-num-pagination .num {
    width: 15px;
    color: #f4f1ea;
    text-align: center;
    font-family: Cormorant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.9px;
}

.sub-num-pagination .num.current {
    margin-bottom: 19px;
}

.sub-num-pagination .num.total {
    margin-top: 6px;
}

.sub-num-pagination .line {
    width: 1px;
    height: 28px;
    transform: rotate(18.258deg);
    background-color: #f4f1ea;
}

/* 서브페이지 공통 슬라이드 모바일 */

@media (max-width: 1024px) {
    .sub-slide-section {
        height: 250px;
    }
    .view-wrap .sub-slide-section {
        height: 350px;
    }

    .room-wrap .sub-slide-section {
        height: 350px;
    }

    .room-wrap .sub-slide-wrap {
        height: 250px;
    }

    .view-wrap .sub-slide-wrap {
        height: 250px;
    }

    .sub-num-pagination {
        bottom: 10px;
        gap: 8px;
    }

    .sub-num-pagination .page {
        width: auto;
        height: 18px;
        gap: 4px;
        margin: 0 50px;
    }

    .sub-num-pagination .page img {
        width: 8px;
        height: 11px;
    }

    .sub-num-pagination .page .txt {
        font-size: 12px;
    }
}

/* 서브페이지 공통 탑이미지 */

.sub-top-section {
    width: 100%;
    height: 100vh;
    position: relative;
}

.sub-top-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.sub-top-img .sub-top-tit {
    position: absolute;
    top: 50%;
    left: 93px;
    transform: translateY(-50%);
    color: #f4f1ea;
    font-family: 'Amandine', sans-serif;
    font-size: 65px;
    font-style: normal;
    font-weight: 400;
    line-height: 90px;
}

.sub-gnb-wrap {
    width: 100%;
    position: absolute;
    bottom: 123px;
    left: 0;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.sub-gnb-wrap .sub-gnb-list {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: 81px;
}

.sub-gnb-wrap .sub-gnb-list a,
.sub-gnb-wrap .sub-gnb-list .sub-gnb-txt {
    display: block;
    color: rgba(244, 241, 234, 0.3);
    font-family: 'Cormorant', serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 0.5s;
}

.sub-gnb-wrap .sub-gnb-list .sub-gnb-txt.on {
    color: #f4f1ea;
}

.sub-gnb-wrap .sub-gnb-list .sub-gnb-txt:hover {
    color: #f4f1ea;
}

/* 서브페이지 탑이미지 모바일 */

@media (max-width: 1024px) {
    .sub-top-section {
        height: 300px;
    }

    .sub-top-img .sub-top-tit {
        left: 30px;
        transform: translateY(-50%);
        font-size: 25px;
        line-height: 30px;
    }

    .sub-gnb-wrap {
        bottom: 0px;
        left: 0;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }

    .sub-gnb-wrap .sub-gnb-list {
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        margin-left: 10px;
    }

    .sub-gnb-wrap .sub-gnb-list a,
    .sub-gnb-wrap .sub-gnb-list .sub-gnb-txt {
        font-size: 16px;
    }
}

/* 건축과조경 페이지 */

.view-section {
    width: 100%;
    position: relative;
    padding-bottom: 150px;
}

.view-top-tit-wrap {
    margin-left: 80px;
    padding-top: 200px;
    padding-bottom: 100px;
   
   
}

.view-top-tit-wrap h4 {
    color: #2b2728;
    font-family: 'Noto Sans', sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 45px;
}




.view-content-slide-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 38px;
}

.view-content-slide-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background-color: #f4f1ea;
    z-index: 2;
    pointer-events: none;
}

.view-content-slide-wrap .swiper-slide {
    display: flex;
    width: calc(100% - 160px);
    gap: 57px;
}

.view-content-slide-wrap .swiper-slide .slide-img {
    width: 54%;
    max-width: 820px;
    min-width: 420px;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.view-content-slide-wrap .swiper-slide .slide-tit-wrap {
    flex: 1;
    min-width: 0;
    padding-right: 120px;
}

.view-content-slide-wrap .swiper-slide .slide-tit-wrap h5 {
    color: #2b2728;
    font-family: 'Amandine', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.7px;
    padding-top: 34px;
    margin-bottom: 50px;
}

.view-content-slide-wrap .swiper-slide .slide-tit-wrap .slide-tit {
    margin-bottom: 153px;
}

.view-content-slide-wrap .swiper-slide .slide-tit-wrap .slide-tit h6 {
    color: rgba(43, 39, 40, 0.8);
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 18px;
}

.view-content-slide-wrap .swiper-slide .slide-tit-wrap .slide-tit p {
    color: #2B2728;
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
}

.view-content-slide-wrap .swiper-slide .slide-txt-wrap {
    display: flex;
    gap: 33px;
}

.view-content-slide-wrap .swiper-slide .slide-txt-wrap .slide-txt {
    color: #635b54;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    width: calc(50% - 16px);
}

.view-content-gauge {
    width: 100%;
    max-width: 1720px;
    height: 2px;
    margin: 100px auto 220px auto;
    background-color: rgba(43, 39, 40, 0.2);
    overflow: hidden;
}

.view-content-gauge .view-content-gauge-fill {
    display: block;
    width: 0;
    height: 100%;
    background-color: #2b2728;
    transition: width 0.5s ease;
}

@media (min-width: 2000px) {
    .view-content-gauge {
        max-width: 2100px;
    }
}

@media (max-width: 1024px) {
    .view-section {
        padding-bottom: 50px;
    }

    .view-content-slide-wrap .swiper-slide .slide-tit-wrap .slide-tit p {
        font-size: 20px;
        line-height: 30px;
    }

    .view-top-tit-wrap {
        width: 90%;
        margin: 0 auto;
        font-size: 20px;
        line-height: 35px;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .view-content-slide-wrap {
        padding-bottom: 28px;
    }

    .view-content-slide-wrap::before {
        display: none;
    }

    .view-content-slide-wrap .swiper-slide {
        width: 100%;
        flex-direction: column;
        gap: 24px;
    }

    .view-content-slide-wrap .swiper-slide .slide-img {
        width: 100%;
        min-width: 0;
        max-width: none;
        height: clamp(240px, 56vw, 520px);
        margin: 0 auto;
    }

    .view-content-slide-wrap .swiper-slide .slide-tit-wrap {
        width: 90%;
        padding-right: 0;
        margin: 0 auto;
    }

    .view-content-slide-wrap .swiper-slide .slide-tit-wrap h5 {
        margin-bottom: 24px;
    }

    .view-content-slide-wrap .swiper-slide .slide-tit-wrap .slide-tit {
        margin-bottom: 30px;
    }

    .view-content-slide-wrap .swiper-slide .slide-txt-wrap {
        flex-direction: column;
        gap: 14px;
    }

    .view-content-slide-wrap .swiper-slide .slide-txt-wrap .slide-txt {
        width: 100%;
    }

    .view-content-gauge {
        width: 90%;
        margin: 0 auto 120px auto;
    }
}

.interview-wrap {
    width: 100%;
}

.interview-inner {
    width: 100%;
    padding-bottom: 335px;
}

.interview-inner .interview-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto 18px auto;
}

.interview-inner .interview-tit h2 {
    color: #2b2728;
    font-family: 'Amandine', sans-serif;
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 85px; /* 106.25% */
    letter-spacing: 2.4px;
}

.interview-inner .interview-tit p {
    color: #635b54;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.interview-vdo-wrap {
    width: 100%;
    height: 1077px;
    border: none;
    aspect-ratio: 16/9;
    position: relative;
}

.interview-vdo-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    aspect-ratio: 16/9;
    pointer-events: none;
}

.interview-sound-btn {
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.12);
    color: rgba(255, 255, 255, 0.68);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background-color 0.25s ease;
}

.interview-sound-btn:hover {
    background-color: rgba(0, 0, 0, 0.22);
}

.interview-sound-btn .sound-icon {
    width: 17px;
    height: 17px;
}

.interview-sound-btn .sound-icon--unmuted {
    display: none;
}

.interview-sound-btn.is-unmuted .sound-icon--unmuted {
    display: block;
}

.interview-sound-btn.is-unmuted .sound-icon--muted {
    display: none;
}

.interview-fullscreen-btn {
    position: absolute;
    right: 24px;
    bottom: 24px;
    min-width: 88px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 22px;
    background-color: rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Noto Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    transition: background-color 0.25s ease;
}

.interview-fullscreen-btn:hover {
    background-color: rgba(0, 0, 0, 0.32);
}

.interview-progress-wrap {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 72px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.interview-vdo-wrap.is-fullscreen .interview-progress-wrap {
    opacity: 1;
    pointer-events: auto;
}

.interview-vdo-wrap.is-pseudo-fullscreen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: #000;
    z-index: 9999;
}

.interview-vdo-wrap.is-pseudo-fullscreen iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
}

html.is-interview-pseudo-fullscreen,
body.is-interview-pseudo-fullscreen {
    overflow: hidden;
}

/* 모바일 pseudo fullscreen에서는 영상 래퍼만 남기고 나머지 UI를 숨김 */
body.is-interview-pseudo-fullscreen > * {
    visibility: hidden;
}

body.is-interview-pseudo-fullscreen .interview-vdo-wrap,
body.is-interview-pseudo-fullscreen .interview-vdo-wrap * {
    visibility: visible;
}

.interview-progress-bar {
    width: 100%;
    height: 6px;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    outline: none;
    cursor: pointer;
}

.interview-progress-bar::-webkit-slider-runnable-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.34);
    border-radius: 999px;
}

.interview-progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    margin-top: -3px;
    border: none;
}

.interview-progress-bar::-moz-range-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    border: none;
}

.interview-progress-bar::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: none;
}

@media (min-width: 2000px) {
    .interview-vdo-wrap {
        height: 1430px;
    }
}

@media (max-width: 1024px) {
    .interview-inner {
        padding-bottom: 150px;
    }

    .interview-inner .interview-tit {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .interview-inner .interview-tit h2 {
        font-size: 50px;
        line-height: 55px;
    }
    .interview-inner .interview-tit p {
        font-size: 13px;
        line-height: 23px;
    }

    .interview-vdo-wrap {
        height: 215px;
    }

    .interview-sound-btn {
        width: 32px;
        height: 32px;
        left: 16px;
        bottom: 16px;
    }

    .interview-sound-btn .sound-icon {
        width: 15px;
        height: 15px;
    }

    .interview-fullscreen-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        right: 16px;
        bottom: 16px;
        min-width: 74px;
        height: 34px;
        padding: 0 12px;
        border-radius: 17px;
        font-size: 12px;
    }

    .interview-progress-wrap {
        left: 16px;
        right: 16px;
        bottom: 56px;
        padding: 5px 0;
    }

    .interview-vdo-wrap.is-pseudo-fullscreen .interview-sound-btn,
    .interview-vdo-wrap.is-pseudo-fullscreen .interview-fullscreen-btn {
        bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .interview-vdo-wrap.is-pseudo-fullscreen .interview-progress-wrap {
        bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    }

    .interview-vdo-wrap.is-pseudo-fullscreen {
        overflow: hidden;
    }
}

@media (max-width: 1024px) and (orientation: portrait) {
    .interview-vdo-wrap.is-pseudo-fullscreen iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100dvh;
        height: 100vw;
        max-width: none;
        max-height: none;
        transform: translate(-50%, -50%) rotate(90deg);
        transform-origin: center;
    }
}

.view-reser-wrap {
    width: 100%;
    position: relative;
}
.view-reser-inner {
    width: calc(100% - 140px);
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 102px;
}
.view-reser-img {
    width: 1300px;
    height: 720px;
}

.view-reser-img .img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.view-reser-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.view-reser-txt .img {
    width: 200px;
    height: 260px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.view-reser-txt p {
    color: #635b54;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin: 74px auto;
}

.view-reser-txt .reser-btn-wrap {
    margin: 0 auto;
}

@media (min-width: 2000px) {
    .view-reser-inner {
        width: calc(100% - 740px);
    }
}

@media (max-width: 1024px) {

    .view-top-tit-wrap h4 {
        font-size: 20px;
        line-height: 30px;
    }


    .view-wrap .mo-banner {
        background-color: #f4f1ea;
    }

    .view-reser-img {
        width: 100%;
        height: 400px;
    }

    .view-reser-inner {
        flex-direction: column;
        gap: 50px;
        width: 100%;
        overflow: hidden;
    }

    .view-reser-txt .img {
        display: none;
    }

    .view-reser-txt p {
        margin: 10px auto 30px auto;
    }
}

/* 스토리 페이지 */

.story-title-section {
    height: auto;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32.92%, #000 100%);
}

/* 스페셜 페이지: 타이틀 구간 스크롤 동안 히어로 영상을 배경처럼 유지 */
.story-wrap .hero-section {
    position: sticky;
    top: 0;
    z-index: 1;
}

.story-wrap .story-title-section {
    position: relative;
    z-index: 11;
}

.story-wrap .story-title-section:before {
    content: '';
    position: absolute;
    top: 257px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

.story-wrap .main-section {
    position: relative;
    z-index: 12;
    background-color: #f4f1ea;
}

.story-title-section-inner {
    width: 90%;
    margin: 0 auto;
    padding-top: 330px;
    padding-bottom: 100px;
}

.story-title-section-inner .story-tit-wrap {
    margin-bottom: 86px;
}

.story-title-section-inner .story-tit-wrap h4 {
    color: #f4f1ea;
    font-family: 'Amandine', serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 38px;
}

.story-title-section-inner .story-tit-wrap p {
    color: #f4f1ea;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.6px;
}

.story-title-section-inner .story-info-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story-title-section-inner .story-info-wrap .story-info-img {
    width: 340px;
    height: 440px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.story-title-section-inner .story-info-wrap .story-info-txt {
    display: flex;
    flex-direction: column;
    gap: 73px;
}

.story-title-section-inner .story-info-wrap .story-info-txt p {
    color: #f4f1ea;
    text-align: right;
    font-family: 'Noto Sans', sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    letter-spacing: -0.66px;
}

.story-title-section-inner .story-info-wrap .story-info-txt p:last-child {
    font-size: 20px;
    line-height: 35px;
    letter-spacing: -0.6px;
}

.story-movie-section {
    width: 100%;
    background-color: #f4f1ea;
    padding: 180px 0 0px 0;
}

.story-movie-section-inner {
    width: 100%;
    margin: 0 auto;
}

.story-movie-section-inner .story-movie-tit {
    text-align: center;
    margin-bottom: 111px;
}

.story-movie-section-inner .story-movie-tit h5 {
    color: #2b2728;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px; /* 200% */
    letter-spacing: -0.6px;
}

.story-movie-section-inner .story-movie-tit h4 {
    color: #2b2728;
    font-family: 'Amandine', serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0.9px;
    margin-bottom: 112px;
}

.story-movie-section-inner .story-movie-txt {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-movie-section-inner .story-movie-txt p {
    color: #635b54;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 175% */
    letter-spacing: -0.48px;
}

.story-movie-wrap {
    width: 1020px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.story-movie-wrap iframe {
    width: 100%;
    height: 476px;
    display: block;
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.story-movie-wrap h2 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 122px;
    color: rgba(43, 39, 40, 0.1);
    font-family: 'Amandine', serif;
    font-size: 120px;
    font-style: normal;
    font-weight: 400;
    line-height: 65px;
    letter-spacing: 3.6px;
    z-index: 9;
    pointer-events: none;
    text-align: center;
}

.story-gallery-section {
    width: 100%;
    background-color: #f4f1ea;
    padding-bottom: 150px;
}

.story-gallery-section-inner {
    width: 100%;
    overflow: hidden;
    height: 1150px;
}

.story-gallery-bg {
    width: 110%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: hidden;
    transition: gap 0.5s ease;
}

.story-gal-tit-wrap {
    margin-left: 30px;
    width: 520px;
    flex: 0 0 520px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: width 0.55s ease, flex-basis 0.55s ease, margin-left 0.55s ease, opacity 0.4s ease, transform 0.55s ease;
}

.story-gal-tit-wrap .story-gal-tit {
    color: #fff;
    font-family: 'Amandine', serif;
    font-size: 55px;
    font-style: normal;
    font-weight: 300;
    line-height: 75px;
    margin-bottom: 115px;
    
}

.story-gal-tit-wrap .story-gal-txt {
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin-left: 80px;
}

.story-gal-tit-wrap .story-gal-txt h5 {
    color: #fff;

    font-family: 'Noto Sans', sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 19px;
}

.story-gal-tit-wrap .story-gal-txt p {
    color: #f4f1ea;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.story-gal-viewer {
    flex: 1;
    min-width: 0;
    position: relative;
    transition: flex-basis 0.55s ease;
}

.story-gal-zoom-layer {
    overflow: hidden;
}

.story-gal-img-wrap {
    --story-gap: 14px;
    --story-thumb-w: clamp(120px, 9.8vw, 180px);
    width: 100%;
    transition: none;
}

.story-gal-img-wrap .swiper-wrapper {
    align-items: center;
    display: flex;
    gap: var(--story-gap);
}

.story-gal-img-wrap.is-basic-swiper .swiper-slide {
    width: auto;
}



.story-gal-img-wrap .swiper-slide {
    position: relative;
    display: block;
    width: var(--story-thumb-w);
    aspect-ratio: 3 / 4;
    height: auto;
    flex-shrink: 0;
    overflow: hidden;
    transition: width 0.68s cubic-bezier(0.22, 0.61, 0.36, 1), height 0.68s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.story-gal-img-wrap .story-gal-img{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: opacity 0.6s ease, transform 0.68s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.6s ease;
}

.story-gal-img-wrap .story-gal-img {
    opacity: 1;
    visibility: visible;
}

@media (min-width:2000px) {
    .story-movie-wrap h2 {
        bottom: 152px;
    }

}


@media (max-width: 1024px) {
    .story-wrap .hero-section {
        position: sticky;
        top: 0;
    }

    .story-wrap .story-title-section {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    }

    .story-wrap .story-title-section:before {
        top: 0;
    }

    .story-title-section-inner {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .story-title-section-inner .story-tit-wrap {
        margin-bottom: 40px;
    }

    .story-title-section-inner .story-tit-wrap h4 {
        font-size: 30px;
        line-height: 45px;
        margin-bottom: 20px;
    }

    .story-title-section-inner .story-tit-wrap p {
        font-size: 15px;
        line-height: 25px;
    }

    .story-title-section-inner .story-info-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .story-title-section-inner .story-info-wrap .story-info-img {
        width: 70%;
        height: 350px;
    }

    .story-title-section-inner .story-info-wrap .story-info-txt {
        width: 100%;
        gap: 18px;
    }

    .story-title-section-inner .story-info-wrap .story-info-txt p {
        text-align: left;
        font-size: 16px;
        line-height: 28px;
    }

    .story-title-section-inner .story-info-wrap .story-info-txt p:last-child {
        font-size: 15px;
        line-height: 25px;
    }

    .story-movie-section {
        padding: 110px 0 50px 0;
    }


    .story-movie-section-inner {
        width: 100%;
    }

    .story-movie-section-inner .story-movie-tit {
        margin-bottom: 70px;
    }

    .story-movie-section-inner .story-movie-tit h5 {
        font-size: 18px;
        line-height: 30px;
    }

    .story-movie-section-inner .story-movie-tit h4 {
        font-size: 26px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .story-movie-section-inner .story-movie-txt {
        gap: 12px;
    }

    .story-movie-section-inner .story-movie-txt p {
        font-size: 15px;
        line-height: 25px;
    }

    .story-movie-wrap {
        width: 100%;
        overflow: visible;
    }

    .story-movie-wrap iframe {
        height: 56.25vw;
        min-height: 260px;
        max-height: 68vh;
    }

    .story-movie-wrap h2 {
        display: none;

    }

    .story-gallery-section {
        padding-top: 0px;
        padding-bottom: 110px;
    }

    .story-gallery-section-inner {
        height: auto;
    }

    .story-gallery-bg {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 60px;
        padding: 80px 0;
    }

    .story-gal-tit-wrap {
        margin-left: 5%;
        width: 90%;
        flex: 0 0 auto;
    }

    .story-gal-tit-wrap .story-gal-tit {
        font-size: 34px;
        line-height: 46px;
        margin-bottom: 24px;
    }

    .story-gal-tit-wrap .story-gal-txt {
        margin-left: 0;
        gap: 10px;
    }

    .story-gal-tit-wrap .story-gal-txt h5 {
        font-size: 17px;
        line-height: 27px;
        margin-bottom: 8px;
    }

    .story-gal-tit-wrap .story-gal-txt p {
        font-size: 15px;
        line-height: 25px;
    }

    .story-gal-viewer {
        width: 100%;
    }

 

    .story-gal-img-wrap {
        padding-left: 5%;
        padding-right: 0;
    }

    .story-gal-img-wrap .swiper-wrapper {
        gap: 10px;
    }

    .story-gal-img-wrap .swiper-slide {
        aspect-ratio: 3 / 4;
    }
}





/* 객실페이지 */

.mo-banner {
    display: none;
    width: 100%;
    height: 100px;
}

#room-info1 .room-info-inner {
    background-color: rgba(102, 92, 79, 0.8);
    height: 1047px;
}

#room2 #room-info1 .room-info-inner {
    background-color: rgba(230, 227, 220, 0.8);
    height: 1047px;
}

#room-info1 .room-info-tit {
    text-align: center;
    margin-bottom: 179px;
    padding-top: 131px;
}

#room-info1 .room-info-tit h2 {
    color: #f4f1ea;
    font-family: 'Amandine', sans-serif;
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#room2 #room-info1 .room-info-tit h2 {
    color: #665c4f;
}

#room-info1 .room-info-tit p {
    color: #f4f1ea;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 40px;
    letter-spacing: -0.6px;
}

#room2 #room-info1 .room-info-tit p {
    color: #665c4f;
}

#room-info1 .room-info-content {
    display: flex;
    gap: 123px;
    margin-left: 385px;
    overflow: hidden;
}

#room-info1 .room-info-img {
    width: 490px;
    height: 660px;
}

#room-info1 .room-info-img .room-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#room-info1 .room-info-txt-wrap {
    overflow: hidden;
}

#room-info1 .room-info-txt-wrap .line {
    margin-top: 144px;
    display: block;
    width: 37px;
    height: 1px;
    background-color: #f4f1ea;
    margin-bottom: 47px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 2s ease;
}
#room-info1 .room-info-txt-wrap .line.aos-animate {
    transform: scaleX(1);
}

#room2 #room-info1 .room-info-txt-wrap .line {
    background-color: #665c4f;
}

#room-info1 .room-info-txt-wrap h5 {
    color: #f4f1ea;
    font-family: 'Noto Sans', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 67px;
}

#room2 #room-info1 .room-info-txt-wrap h5 {
    color: #665c4f;
}

#room-info1 .room-info-txt-wrap .room-info-txt {
    display: flex;
    gap: 60px;
}

#room-info1 .room-info-txt-wrap .room-info-txt p {
    width: 325px;
    color: #f4f1ea;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

#room2 #room-info1 .room-info-txt-wrap .room-info-txt p {
    color: #665c4f;
}

#room-info2 .room-info-inner {
    margin: 0 auto;
    width: 1680px;
    height: 1447px;
    position: relative;
}

#room-info2 .room-info-tit-wrap {
    padding-top: 352px;
    text-align: center;
}

#room-info2 .room-info-tit-wrap h2 {
    color: #2b2728;
    font-family: 'Amandine', sans-serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 65px;
    margin-bottom: 79px;
}

#room-info2 .room-info-tit-wrap p {
    color: rgba(43, 39, 40, 0.8);
    font-family: 'Noto Sans', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

#room-info2 .room-img2 {
    position: absolute;
    right: 0;
    top: 192px;
    width: 490px;
    height: 660px;
}

#room-info2 .room-img2 .room-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#room-info2 .room-img3 {
    position: absolute;
    left: 0;
    bottom: 189px;
    width: 665px;
    height: 400px;
}

#room-info2 .room-img3 .room-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* 객실 정보,비품,가격 */

#room-info3 .room-info-inner {
    position: relative;
}

#room-info3 .room-movie-wrap {
    width: 1670px;
    height: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}
#room-info3 .room-movie-wrap .room-movie-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    bottom: -132px;
}

#room-info3 .room-movie-wrap iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    bottom: -132px;
    pointer-events: none;
}

#room-info3 .room-guide-wrap {
    height: 864px;
    position: relative;
    background-color: #665c4f;
    padding-top: 230px;
}

#room2 #room-info3 .room-guide-wrap {
    height: 764px;
}


#room2 #room-info3 .room-guide-wrap {
    background-color: #dedad2;
}

#room-info3 .room-guide-wrap .room-guide-list {
    padding-left: 0px;
    padding-top: 30px;
    position: relative;
    width: 1670px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#room-info3 .room-guide-wrap .room-guide-list::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #f4f1ea;
    opacity: 0.7;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 2s ease-in-out;
}

#room2 #room-info3 .room-guide-wrap .room-guide-list::after {
    background-color: #665c4f;
}

#room-info3 .room-guide-wrap .room-guide-list.aos-animate::after {
    transform: scaleY(1);
}

#room-info3 .room-guide-wrap .room-guide-item {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    margin-bottom: 76px;
    width: 45%;
}

#room-info3 .room-guide-wrap .room-guide-item h4 {
    color: #f4f1ea;
    font-family: 'Cormorant', serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: auto;
}

#room2 #room-info3 .room-guide-wrap .room-guide-item h4 {
    color: #665c4f;
}

#room-info3 .room-guide-wrap .room-guide-item .room-guide-txt {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#room-info3 .room-guide-wrap .room-guide-item .room-guide-txt p {
    color: rgba(244, 241, 234, 0.8);
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

#room2 #room-info3 .room-guide-wrap .room-guide-item .room-guide-txt p {
    color: rgba(102, 92, 79, 0.8);
}

#room-info3 .room-guide-wrap .room-guide-item .room-guide-txt b {
    font-weight: 500;
}

#room-info3 .room-guide-wrap .room-guide-item .room-guide-txt .tit {
    font-weight: 500;
}

#room-info3 .room-guide-wrap .room-guide-item .room-sup-tit {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: flex-start;
}

#room-info3 .room-guide-wrap .room-guide-item .room-sup-tit li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding-bottom: 20px;
    cursor: pointer;
}

#room-info3 .room-guide-wrap .room-guide-item .room-sup-tit li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    transform: scaleX(0);
    width: 100%;
    height: 1px;
    background-color: #f4f1ea;
    transform-origin: left;
    transition: transform 0.5s ease;
}

#room2 #room-info3 .room-guide-wrap .room-guide-item .room-sup-tit li::after {
    background-color: #665c4f;
}

#room-info3 .room-guide-wrap .room-guide-item .room-sup-tit li.on::after {
    transform: scaleX(1);
}

#room-info3 .room-guide-wrap .room-guide-item .room-sup-tit li span {
    color: #f4f1ea;
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

#room2 #room-info3 .room-guide-wrap .room-guide-item .room-sup-tit li span {
    color: #665c4f;
}

#room-info3 .room-guide-wrap .room-guide-item .room-sup-tit li img {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

#room-info3 .room-guide-wrap .room-guide-item .room-sup-txt {
    position: relative;
    height: 80px;
    width: 640px;
}

#room-info3 .room-guide-wrap .room-guide-item .room-sup-txt li {
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(244, 241, 234, 0.2);
    border-radius: 5px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

#room2 #room-info3 .room-guide-wrap .room-guide-item .room-sup-txt li {
    background-color: rgba(102, 92, 79, 0.05);
}

#room-info3 .room-guide-wrap .room-guide-item .room-sup-txt li.on {
    opacity: 1;
    pointer-events: auto;
}

#room-info3 .room-guide-wrap .room-guide-item .room-sup-txt p {
    padding: 15px 20px;
    color: rgba(244, 241, 234, 0.8);
    font-family: 'Noto Sans', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
}

#room2 #room-info3 .room-guide-wrap .room-guide-item .room-sup-txt p {
    color: rgba(102, 92, 79, 0.8);
}

#room-info3 .room-guide-wrap .room-guide-item .room-price-wrap table {
    border-collapse: collapse;
}

#room-info3 .room-guide-wrap .room-guide-item .room-price-wrap tbody {
    border: 1px solid #f4f1ea;
}

#room-info3 .room-guide-wrap .room-guide-item .room-price-wrap th,
#room-info3 .room-guide-wrap .room-guide-item .room-price-wrap td {
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

#room-info3 .room-guide-wrap .room-guide-item .room-price-wrap th {
    background-color: #665c4f;
    color: #f4f1ea;
    padding: 5px 0px;
    border: 1px solid #f4f1ea;
}

#room-info3 .room-guide-wrap .room-guide-item .room-price-wrap td {
    padding: 5px 20px;
    color: #2b2728;
    background-color: #f4f1ea;
    border: 1px solid #665c4f;
}

#room-info3 .room-guide-wrap .room-guide-item .room-price-wrap tr td:last-child {
    border-right: 1px solid #f4f1ea;
}

#room-info3 .room-guide-wrap .room-guide-item .room-price-wrap .room-tit {
    border-left: 1px solid #f4f1ea;
}


@media (min-width:2000px) {
    #room-info1 .room-info-content {
        gap: 0;
        width: 50%;
        margin: 0 auto;
        justify-content: space-between;
    }

    #room-info3 .room-guide-wrap .room-guide-list::after {
        left: 21%;
    }


    #room-info3 .room-guide-wrap .room-guide-list {
        max-width: 1370px;
        padding-left: 0;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    /* 객실 모바일 */

    .mo-banner {
        display: block;
    }

    #room1 .mo-banner {
        background-color: rgba(102, 92, 79, 0.8);
    }

    #room2 .mo-banner {
        background-color: rgba(230, 227, 220, 0.8);
    }

    #room-info1 .room-info-inner {
        height: 792px;
    }

    #room2 #room-info1 .room-info-inner {
        height: 792px;
    }

    #room-info1 .room-info-tit {
        width: 90%;
        margin: 0 auto;
        padding-top: 40px;
        text-align: left;
    }

    #room-info1 .room-info-tit h2 {
        font-size: 60px;
    }

    #room-info1 .room-info-tit p {
        font-size: 15px;
        line-height: 30px;
        text-align: left;
    }

    #room-info1 .room-info-content {
        flex-direction: column-reverse;
        gap: 100px;
        margin-left: 0px;
    }

    #room-info1 .room-info-img {
        width: 240px;
        height: 330px;
        margin-left: 37%;
    }

    #room-info1 .room-info-txt-wrap {
        width: 90%;
        margin: 0 auto;
    }

    #room-info1 .room-info-txt-wrap .line {
        margin-top: 80px;
        margin-bottom: 30px;
    }

    #room-info1 .room-info-txt-wrap h5 {
        font-size: 15px;
        margin-bottom: 30px;
    }

    #room-info1 .room-info-txt-wrap .room-info-txt {
        flex-direction: column;
        gap: 15px;
    }

    #room-info1 .room-info-txt-wrap .room-info-txt p {
        width: auto;
        font-size: 14px;
    }

    #room-info2 .room-info-inner {
        width: 90%;
        height: 932px;
    }

    #room-info2 .room-info-tit-wrap {
        padding-top: 40px;
    }

    #room-info2 .room-info-tit-wrap h2 {
        font-size: 40px;
        font-weight: 400;
        line-height: 50px;
        margin-bottom: 50px;
    }

    #room-info2 .room-info-tit-wrap p {
        font-size: 14px;
        line-height: 24px;
    }

    #room-info2 .room-img2 {
        position: static;
        width: 100%;
        height: 330px;
        margin-bottom: 50px;
        margin-top: 250px;
    }

    #room-info2 .room-img3 {
        position: static;
        width: 100%;
        height: 200px;
        margin-top: 50px;
    }

    /* 객실 정보,비품,가격 */

    #room-info3 .room-movie-wrap {
        width: 100%;
        height: auto;
        margin: 0 auto 0px auto;
        background-color: #665c4f;
    }
    #room-info3 .room-movie-wrap .room-movie-img {
        position: static;
    }

    #room-info3 .room-movie-wrap iframe {
        position: static;
        aspect-ratio: 16 / 7.8;
    }

    #room-info3 .room-guide-wrap {
        height: auto;
        padding: 50px 5% 0px 5%;
    }

    #room2 #room-info3 .room-guide-wrap {
        height: auto;
    }




    #room-info3 .room-guide-wrap .room-guide-list {
        width: 90%;
        flex-direction: column;
    }

    #room-info3 .room-guide-wrap .room-guide-list::after {
        display: none;
    }

    #room-info3 .room-guide-wrap .room-guide-item {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 50px;
        width: 100%;
    }

    #room-info3 .room-guide-wrap .room-guide-item h4 {
        font-size: 25px;
        width: auto;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-guide-txt {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-guide-txt p {
        font-size: 14px;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-guide-txt b {
        font-weight: 500;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-guide-txt .tit {
        font-weight: 500;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-sup-tit {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
        justify-content: space-between;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-sup-tit li {
        width: 30%;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-sup-tit li span {
        font-size: 13px;
        line-height: 20px;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-sup-tit li img {
        width: 30px;
        height: 25px;
        object-fit: cover;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-sup-txt {
        position: relative;
        height: 100px;
        width: 100%;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-sup-txt p {
        font-size: 14px;
        line-height: 20px;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-price-wrap {
        width: 100%;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-price-wrap table {
        width: 100%;
    }

   

    #room-info3 .room-guide-wrap .room-guide-item .room-price-wrap th,
    #room-info3 .room-guide-wrap .room-guide-item .room-price-wrap td {
        font-size: 12px;
        line-height: 20px;
        border: none;
    }

    #room-info3 .room-guide-wrap .room-guide-item .room-price-wrap td {
        padding: 5px 2px;
    }
}

/* 스페셜 */

.special-wrap .line-area {
    overflow: hidden;
}

@media (min-width: 2000px) {
    .special-wrap .line-bg {
        top: -15%;
        left: 0;
        width: 108%;
    }
}

.special-title-section {
    height: auto;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32.92%, #000 100%);
}

.special-title-section:before {
    content: '';
    position: absolute;
    top: 250px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

/* 스페셜 페이지: 타이틀 구간 스크롤 동안 히어로 영상을 배경처럼 유지 */
.special-wrap .hero-section {
    position: sticky;
    top: 0;
    z-index: 1;
}

.special-wrap .special-title-section {
    position: relative;
    z-index: 11;
}

.special-wrap .main-section {
    position: relative;
    z-index: 12;
    background-color: #f4f1ea;
}

.special-title-section-inner {
    width: 90%;
    margin: 0 auto;
    display: flex;
    padding-top: 370px;
    padding-bottom: 140px;
}

.special-title-section-inner .special-tit-wrap {
    width: 50%;
}

.special-title-section-inner .special-tit-wrap h4 {
    color: #f4f1ea;
    font-family: 'Amandine', serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 85px;
}

.special-title-section-inner .special-tit-wrap h3 {
    color: #f4f1ea;
    font-family: 'Amandine', serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 300;
    line-height: 85px;
    margin-bottom: 25px;
}

.special-title-section-inner .special-tit-wrap p {
    color: #f4f1ea;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.special-title-section-inner .special-info-wrap h5 {
    color: #f4f1ea;
    font-family: 'Cormorant', serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 52px;
}

.special-title-section-inner .special-info-wrap .special-info-txt {
    display: flex;
    gap: 45px;
    margin-bottom: 79px;
}

.special-title-section-inner .special-info-wrap .special-info-txt p {
    width: 338px;
    color: #f4f1ea;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.special-title-section-inner .special-info-wrap .special-info-img {
    width: 340px;
    height: 440px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.special-wrap .main-slide-section {
    max-width: 1464px;
    margin: 0 auto;
    padding-bottom: 200px;
}

.special-wrap .main-slide-num {
    gap: 15px;
    width: 90px;
}

.special-wrap .main-slide-num .num {
    width: 28px;
    color: #f4f1ea;
    text-align: center;
    font-family: Cormorant;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1.2px;
}

.special-wrap .main-slide-num .line {
    background-color: #f4f1ea;
    transform: rotate(18.258deg);
}

.special-content-inner {
    width: 90%;
    max-width: 1350px;
    margin: 0 auto;
    z-index: 3;
    position: relative;
    padding-bottom: 200px;
}

.special-content-item1 {
    margin-bottom: 180px;
}

.special-content-item1-img {
    width: 660px;
    height: 480px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.special-content-item2 {
    display: flex;
    align-items: center;
}

.special-content-item2-txt {
    display: flex;
    flex-direction: column;
    width: 800px;
}

.special-content-item2-tit {
    color: #2b2728;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
}

.special-content-item2-desc {
    margin: 50px 0 70px 0;
    color: rgba(43, 39, 40, 0.7);
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px;
}

.special-content-item2-img {
    width: 540px;
    height: 690px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 1024px) {
    .special-wrap .hero-section {
        position: sticky;
    }

    .special-wrap .special-title-section {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
    }

    .special-title-section-inner {
        flex-direction: column;
        padding-top: 50px;
        padding-bottom: 50px;
        gap: 50px;
    }

    .special-title-section-inner .special-tit-wrap {
        width: 100%;
    }

    .special-title-section-inner .special-tit-wrap h4 {
        font-size: 30px;
        line-height: 45px;
        margin-bottom: 20px;
    }

    .special-title-section-inner .special-tit-wrap h3 {
        font-size: 40px;
        line-height: 65px;
        margin-bottom: 25px;
    }

    .special-title-section-inner .special-tit-wrap p {
        font-size: 15px;
        line-height: 25px;
    }

    .special-title-section-inner .special-info-wrap h5 {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .special-title-section-inner .special-info-wrap .special-info-txt {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .special-title-section-inner .special-info-wrap .special-info-txt p {
        width: auto;
        font-size: 15px;
        line-height: 25px;
    }

    .special-title-section-inner .special-info-wrap .special-info-img {
        width: 70%;
        height: 350px;
    }

    .special-wrap .main-slide-section {
        width: 90%;
        padding-bottom: 100px;
        padding-top: 100px;
    }

    .special-wrap .main-slide-num {
        gap: 15px;
        width: 60px;
    }

    .special-wrap .main-slide-num .num {
        width: 28px;
        font-size: 15px;
        color: #302b27;
    }

    .special-wrap .main-slide-num .line {
        background-color: #302b27;
        transform: rotate(18.258deg);
    }

    .special-content-wrap {
        z-index: 10;
        position: relative;
        background-color: #f4f1ea;
    }

    .special-content-inner {
        width: 90%;
        padding-bottom: 100px;
    }

    .special-content-item1 {
        margin-bottom: 50px;
    }

    .special-content-item1-img {
        width: 100%;
        height: 250px;
    }

    .special-content-item2 {
        flex-direction: column;
        gap: 50px;
    }

    .special-content-item2-txt {
        width: 100%;
    }

    .special-content-item2-tit {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 0px;
    }

    .special-content-item2-desc {
        margin: 30px 0 50px 0;
        font-size: 15px;
        line-height: 25px;
    }

    .special-content-item2-img {
        width: 100%;
        height: 350px;
    }

    .special-content-item2 .reser-btn-wrap {
        margin: 0 auto;
    }
}

/* 예약안내 */

.reser-inner {
    padding-top: 165px;
}

.reser-info-wrap {
    margin-bottom: 250px;
}

.reser-info-tit {
    margin-bottom: 114px;
}

.reser-info-tit h5 {
    color: #2b2728;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -0.6px;
    margin-bottom: 0px;
}

.reser-info-tit h4 {
    color: #2b2728;
    text-align: center;
    font-family: 'Amandine', serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0.9px;
}

.reser-info-txt {
    max-width: 1040px;
    width: 100%;
    margin: 0 auto;
}

.reser-info-list {
    width: 100%;
    margin-bottom: 91px;
}

.reser-info-list li {
    padding: 15px 0px 15px 258px;
    position: relative;
    display: flex;
    gap: 21px;
    align-items: center;
    justify-content: flex-start;
}

.reser-info-list li:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(43, 39, 40, 0.2);
}

.reser-info-list li .info-tit {
    color: #2b2728;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    width: 70px;
}

.reser-info-list li .info-txt {
    color: rgba(43, 39, 40, 0.8);
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.reser-info-list li .info-txt a {
    color: rgba(43, 39, 40, 0.8);
    display: block;
}

.reser-info-wrap .reser-btn-wrap {
    position: relative;
    width: 195px;
    height: 51px;
    border: 1px solid rgba(60, 56, 57, 0.5);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 128px auto;
    transition: all 0.3s;
}

.reser-btn-wrap:hover {
    background-color: #3c3839;
}

.reser-btn-wrap {
    width: 195px;
    height: 51px;
    border: 1px solid rgba(60, 56, 57, 0.5);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 128px auto;
    transition: all 0.3s;
}

.reser-btn-wrap .reser_btn {
    color: rgba(12, 12, 12, 0.7);
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.3s;
}

.reser-btn-wrap:hover .reser_btn {
    color: #fff;
}

.reser-price-wrap {
    width: 90%;
    max-width: 1254px;
    margin: 0 auto;
}

.reser-price-wrap table {
    border-collapse: collapse;
    width: 100%;
}

.reser-price-wrap tbody {
    border: 1px solid #f4f1ea;
}

.reser-price-wrap th,
.reser-price-wrap td {
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.reser-price-wrap th {
    background-color: #665c4f;
    color: #f4f1ea;
    padding: 8px 0px;
    border: 1px solid #f4f1ea;
}

.reser-price-wrap td {
    padding: 8px 40px;
    color: #2b2728;
    background-color: #f4f1ea;
    border: 1px solid #665c4f;
}

.reser-price-wrap tr td:last-child {
    border-right: 1px solid #f4f1ea;
}

.reser-price-wrap .room-tit {
    border-left: 1px solid #f4f1ea;
}

.reser-guide-wrap {
    padding-left: 110px;
    padding-bottom: 150px;
    display: flex;
    gap: 150px;
}

.reser-guide-wrap .reser-guide-tab {
    position: relative;
}

.reser-guide-wrap .reser-guide-tab-list {
    position: sticky;
    top: 10%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reser-guide-wrap .reser-guide-tab-item {
    width: 159px;
    height: 47px;
    border-radius: 5px;
    background-color: rgba(234, 227, 207, 0.4);

    display: flex;
    align-items: center;
    justify-content: center;
}

.reser-guide-wrap .reser-guide-tab-item a {
    display: block;
    color: #2b2728;
    text-align: center;
    font-family: Cormorant;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.reser-guide-content-wrap {
    position: relative;
    height: 1700px;
    width: 90%;
}

.reser-guide-content {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease;
}

.reser-guide-content.on {
    opacity: 1;
}

.reser-guide-tit-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 27px;
    padding-bottom: 37px;
    padding-left: 33px;
}

.reser-guide-tit-wrap h4 {
    color: #2b2728;
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1px;
}

.reser-guide-tit-wrap p {
    color: #2b2728;
    font-family: 'Noto Sans', sans-serif;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}

.reser-guide-txt {
    padding: 45px 0 35px 33px;
    border-top: 1px solid rgba(43, 39, 40, 0.2);
}

.reser-guide-txt h5 {
    color: #2b2728;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 21px;
}

.reser-guide-txt-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reser-guide-txt-list p {
    color: rgba(43, 39, 40, 0.8);
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.reser-bg-section {
    width: 100%;
    overflow: hidden;
    margin-bottom: 149px;
}

.reser-bg-img {
    width: 100%;
    height: 860px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.refund-tit-wrap {
    margin-bottom: 118px;
}

.refund-tit {
    color: #2b2728;
    text-align: center;
    font-family: 'Amandine', serif;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.75px;
    margin-bottom: 69px;
}

.refund-txt {
    color: rgba(43, 39, 40, 0.7);
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 118px;
}

.refund-list {
    width: 1531px;
    height: 130px;
    margin: 0 auto 90px auto;
}

.refund-list table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
}

.refund-list table th,
.refund-list table td {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}

.refund-list table tr th {
    background-color: #665c4f;
    color: #f4f1ea;
    padding: 8px 0px;
    border: 1px solid #f4f1ea;
}

.refund-list table tr td {
    padding: 8px 20px;
    color: #2b2728;
    border: 1px solid #665c4f;
}

.refund-list table tr td:last-child,
.refund-list table tr th:last-child {
    border-right: 1px solid #f4f1ea;
}

.refund-list table tr td:first-child,
.refund-list table tr th:first-child {
    border-left: 1px solid #f4f1ea;
}

.refund-txt-wrap {
    text-align: center;
}

.refund-txt-wrap p {
    color: #2b2728;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    display: inline-block;
}


@media (min-width: 2000px) {
    .reser-guide-wrap {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .reser-inner {
        padding-top: 55px;
    }

    .reser-info-wrap {
        margin-bottom: 100px;
    }

    .reser-info-tit {
        margin-bottom: 50px;
    }

    .reser-info-tit h5 {
        color: #2b2728;
        font-size: 18px;
        line-height: 25px;
    }

    .reser-info-tit h4 {
        font-size: 25px;
        line-height: 25px;
    }

    .reser-info-txt {
        width: 100%;
    }

    .reser-info-list {
        width: 100%;
        margin-bottom: 50px;
    }

    .reser-info-list li {
        padding: 15px 0px 15px 0px;
        gap: 10px;
        flex-direction: column;
    }

    .reser-info-list li .info-tit {
        font-size: 15px;
        line-height: 20px;
        width: auto;
    }

    .reser-info-list li .info-txt {
        font-size: 15px;
        line-height: 20px;
    }

    .reser-price-wrap {
        width: 90%;
        max-width: 1254px;
        margin: 0 auto;
    }

    .reser-price-wrap th,
    .reser-price-wrap td {
        font-size: 11px;
        line-height: 20px;
    }

    .reser-price-wrap th {
        padding: 5px 0px;
    }

    .reser-price-wrap td {
        padding: 5px 2px;
    }

    .reser-guide-wrap {
        padding-left: 0px;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 60px;
    }

    .reser-guide-wrap .reser-guide-tab {
     display: none;
    }

    .reser-guide-wrap .reser-guide-tab-list {
        position: static;
        flex-direction: row;
        gap: 10px;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .reser-guide-wrap .reser-guide-tab-item {
        width: 159px;
        height: 47px;
        border-radius: 5px;
        background-color: rgba(234, 227, 207, 0.4);

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .reser-guide-wrap .reser-guide-tab-item a {
        font-size: 13px;
    }

    .reser-guide-content-wrap {
        height: auto;
        width: 90%;
        position: static;
    }

    .reser-guide-content {
        position: static;
        opacity: 1;
        transition: none;
    }

    .reser-guide-content + .reser-guide-content {
        margin-top: 30px;
    }

    .reser-guide-tit-wrap {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-bottom: 15px;
        padding-left: 15px;
    }

    .reser-guide-tit-wrap h4 {
        font-size: 25px;
    }

    .reser-guide-tit-wrap p {
        font-size: 15px;
    }

    .reser-guide-txt {
        padding: 35px 0 35px 15px;
    }

    .reser-guide-txt h5 {
        font-size: 18px;
        margin-bottom: 21px;
    }

    .reser-guide-txt-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .reser-guide-txt-list p {
        font-size: 15px;
        line-height: 25px;
    }

    .reser-bg-section {
        margin-bottom: 50px;
    }

    .reser-bg-img {
        height: 250px;
    }

    .refund-tit-wrap {
        margin-bottom: 50px;
        padding-top: 50px;
    }

    .refund-tit {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .refund-txt {
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 50px;
    }

    .refund-list {
        width: 90%;
        margin: 0 auto 50px auto;
        height: auto;
    }

    .refund-list table th,
    .refund-list table td {
        font-family: 'Noto Sans', sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        text-align: center;
    }

    .refund-list table tr th {
        background-color: #665c4f;
        color: #f4f1ea;
        padding: 3px 0px;
        border: 1px solid rgba(244, 241, 234, 0.5);
        border-left: none;
    }

    .refund-list table tr td {
        padding: 3px 0px;
        color: #2b2728;
        border: 1px solid #665c4f;
        border-right: none;
    }

    .refund-list table tr td:last-child,
    .refund-list table tr th:last-child {
        border-right: 1px solid #f4f1ea;
    }

    .refund-list table tr td:first-child,
    .refund-list table tr th:first-child {
        border-left: none;
    }

    /* 모바일 환불표(#reser): 좌측 th / 우측 td 세로 정렬 */
    #reser .refund-list table {
        width: 100%;
        border-collapse: collapse;
        display: block;
    }

    #reser .refund-list table tbody {
        width: 100%;
        display: flex;
        align-items: stretch;
    }

    #reser .refund-list table tbody tr {
        display: flex;
        flex-direction: column;
        margin: 0;
    }

    #reser .refund-list table tbody tr:first-child {
        width: 50%;
    }

    #reser .refund-list table tbody tr:last-child {
        width: 62%;
    }

    #reser .refund-list table tbody tr th,
    #reser .refund-list table tbody tr td {
        width: 100%;
        min-height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        word-break: keep-all;
        border-bottom: 0;
    }

    #reser .refund-list table tbody tr th {

        margin-bottom: 0;

    }

    #reser .refund-list table tbody tr td {
        border-left: none;
        border-right: none;
    }

    #reser .refund-list table tbody tr td:first-child {
        border-top: none;
    }

    #reser .refund-list table tbody tr td:last-child {
   border-bottom: none;
    }

    #reser .refund-list table br {
        display: none;
    }

    .refund-txt-wrap {
        text-align: center;
    }

    .refund-txt-wrap p {
        color: #2b2728;
        font-family: 'Noto Sans', sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        display: inline-block;
    }

    .reser-info-wrap .reser-btn-wrap {
        border: none;
        margin: 0 auto 80px auto;
    }

    .reser-btn-wrap {
        border: none !important;
    }

    .reser-btn-wrap:hover {
        background-color: transparent;
    }

    .reser-btn-wrap .reser_btn {
        font-family: Cormorant;
        font-size: 18px;
        font-style: normal;
        font-weight: 300;
        line-height: 35px; /* 194.444% */
        text-decoration-line: underline;
    }

    .reser-btn-wrap:hover .reser_btn {
        color: #2b2728;
    }
}

/* 로케이션 페이지 */

.map-section {
    width: 100%;
}
.map-inner {
    width: 90%;
    margin: 0 auto;
    padding-top: 177px;
    padding-bottom: 190px;
}

.map-tit {
    text-align: center;
    color: #2b2728;
    font-family: 'Noto Sans', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 60px;
}

.map-info {
    margin-bottom: 39px;
}

.map-info-tit {
    color: rgba(43, 39, 40, 0.8);
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 5px;
}

.map-info-txt {
    display: block;
    text-align: center;
    color: #635b54;
    font-family: 'Noto Sans', sans-serif;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
}

.pc-map {
    margin: 0 auto;
    width: 953px;
    position: relative;
}

/* .pc-map img.map {
    position: relative;
    filter: brightness(0.5) contrast(1.1);
    mix-blend-mode: multiply;
} */

.mo-map {
    display: none;
    width: auto;
    margin: 0 auto;
    position: relative;
}

.map-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-top: 91px;
}
.map-btn {
    border: 1px solid rgba(12, 12, 12, 0.5);
    border-radius: 3px;
    width: 195px;
    height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(12, 12, 12, 0.7);
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 35px;
    transition: all 0.5s;
}

.map-btn:hover {
    border: 1px solid rgba(12, 12, 12, 0);
    background-color: #302b27;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .map-inner {
        padding-top: 100px;
        padding-bottom: 100px;
    }


    .map-tit {
        font-size: 19px;
        line-height: 28px;
        margin-bottom: 30px;
    }



    .map-info-tit {
        font-size: 18px;
        line-height: 25px;
    }
    
    .map-info-txt {
        font-size: 15px;
        line-height: 25px;
    }

    .mo-map {
        display: block;
    }
    .pc-map {
        display: none;
    }

    .map-btn-wrap {
        display: flex;
        gap: 30px;
        margin-top: 40px;
    }

    .map-btn {
        width: 125px;
        height: 35px;
        font-size: 17px;
        line-height: 25px;
    }
}

/* 공지사항 페이지 */

.notice-section {
    width: 100%;
}
.notice-inner {
    width: 90%;
    max-width: 1580px;
    margin: 0 auto;
    padding: 210px 0 300px 0;
}

@media (max-width: 1024px) {
    .notice-inner {
        padding: 115px 0 150px 0;
    }
}

/* 푸터 */

.ft {
    width: 100%;
    background-color: #f4f1ea;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.ft-inner {
    width: 90%;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 53px;
}

.ft-img-wrap {
    width: 425px;
    margin: 0 auto 104px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.ft-img-wrap .img {
    width: 100%;
    height: 135px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(6px);
    clip-path: inset(20% 0 80% 0);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        filter 0.8s ease,
        clip-path 0.8s ease;
    will-change: opacity, transform, filter, clip-path;
}

.ft-img-wrap .img.aos-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
}

/* 푸터 정보 */

.ft-info-wrap {
    width: 550px;
    margin: 0 auto;
}

.ft-info-wrap .ft-contact {
    width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin: 0 auto 110px auto;
}

.ft-info-wrap .ft-contact .logo {
    width: 125px;
    height: 91px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ft-info-wrap .ft-contact .logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.ft-info-wrap .ft-contact .address-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ft-info-wrap .ft-contact .address-wrap .tel {
    color: rgba(48, 43, 39, 0.9);
    font-family: 'Noto Sans', sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ft-info-wrap .ft-contact .address-wrap .info-txt {
    color: rgba(48, 43, 39, 0.5);
    font-family: 'Noto Sans', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    position: relative;
}

.ft-info-wrap .ft-contact .address-wrap .info-txt img {
    width: 25px;
    height: 25px;
    position: absolute;
    top: -8px;
    right: -18px;
}

/* 푸터 카피라이트 */

.ft-info-wrap .ft-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.ft-info-wrap .ft-copyright p {
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Pretendard-Light', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.ft-info-wrap .ft-copyright p a {
    color: rgba(0, 0, 0, 0.5);
}

.ft-info-wrap .ft-copyright .log {
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Pretendard-Light', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

@media (max-width: 1024px) {
    .ft-inner {
        width: 90%;
        margin: 0 auto;
        padding-bottom: 30px;
        padding-top: 40px;
    }

    .ft-img-wrap {
        width: 208px;
        margin: 0 auto 45px auto;
        gap: 8px;
    }

    .ft-img-wrap .img {
        height: 70px;
    }

    /* 푸터 정보 */

    .ft-info-wrap {
        width: 100%;
        margin: 0 auto;
    }

    .ft-info-wrap .ft-contact {
        width: 100%;
        flex-direction: column;
        margin: 0 auto 51px auto;
    }

    .ft-info-wrap .ft-contact .logo {
        width: 85px;
        height: 62px;
    }

    .ft-info-wrap .ft-contact .address-wrap {
        display: flex;
        text-align: center;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 7px;
    }

    .ft-info-wrap .ft-contact .address-wrap .tel {
        font-size: 29px;
    }

    .ft-info-wrap .ft-contact .address-wrap .info-txt {
        font-size: 12px;
    }

    .ft-info-wrap .ft-contact .address-wrap .info-txt img {
        width: 20px;
        height: 20px;
        position: absolute;
        top: -8px;
        right: -20px;
    } 

    /* 푸터 카피라이트 */

    .ft-info-wrap .ft-copyright {
        flex-direction: column;
        gap: 13px;
    }

    .ft-info-wrap .ft-copyright p {
        font-size: 9px;
    }

    .ft-info-wrap .ft-copyright .log {
        font-size: 10px;
    }
}

.sub-wrap .inner-con {
    margin: 300px 0;
    width: 100%;
    height: 700px;
}

.root_daum_roughmap .cont {
    display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .sub-top-section {
        height: 420px;
    }

    .sub-gnb-wrap {
        padding: 24px 0;
    }

    .sub-gnb-wrap .sub-gnb-list {
        margin-left: 28px;
        gap: 20px;
    }

    .sub-gnb-wrap .sub-gnb-list a,
    .sub-gnb-wrap .sub-gnb-list .sub-gnb-txt {
        font-size: 18px;
    }

    #room-info1 .room-info-content {
        gap: 70px;
    }

    #room-info1 .room-info-img {
        margin-left: auto;
        margin-right: auto;
    }

    .special-preview-section:not(.special-preview-section--sub) .special-preview-slide-wrap {
        height: 360px;
    }

    .special-preview-section:not(.special-preview-section--sub) .special-preview-nav-list {
        display: flex;
        justify-content: flex-start;
        gap: 28px;
        width: 92%;
        overflow-x: auto;
        padding: 0 12px 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .special-preview-section:not(.special-preview-section--sub) .special-preview-nav-list::-webkit-scrollbar {
        display: none;
    }

    .special-preview-section:not(.special-preview-section--sub) .special-preview-nav-list .special-preview-nav-item {
        display: block;
        flex: 0 0 auto;
    }

    .reser-price-wrap th,
    .reser-price-wrap td {
        font-size: 13px;
        line-height: 22px;
    }

    .reser-price-wrap td {
        padding: 6px 10px;
    }

    .reser-guide-wrap {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .reser-guide-wrap .reser-guide-tab {
        display: block;
    }

    .reser-guide-wrap .reser-guide-tab-list {
        position: sticky;
        top: 90px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        overflow: visible;
    }

    .reser-guide-wrap .reser-guide-tab-item {
        width: 140px;
        height: 42px;
    }

    .reser-guide-wrap .reser-guide-tab-item a {
        font-size: 14px;
    }

    .reser-guide-content-wrap {
        width: 100%;
    }
}
