@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: 'lato', sans-serif;
    background-color: #fff;
}

section {
    position: relative;
    background-color: #fff;
    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-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;
}

.btn-top {
    z-index: 500;
    cursor: pointer;
    box-shadow: 1px 1px 5px 1px #cccccc;
    position: fixed;
    border-radius: 50px;
    background-color: #fff;
    color: #354246;
    width: 50px;
    height: 50px;
    right: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: 80px;
    font-weight: 300;
    font-size: 13px;
    font-family: 'Pretendard-Medium';
}
.btn-top span {
    font-weight: 600;
}

.inner-con {
    max-width: 1700px;
    margin: 0 auto;
    position: relative;
}

.dash {
    position: relative;
    padding-left: 20px;
}

.dash::before {
    content: '';
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 5px;
    height: 1px;
    background-color: #78645c;
    transform: translateY(-50%);
}

.fade {
    opacity: 0;
    transition: all 0.6s ease;
    transform: translateY(30px);
}

.fade.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

.mo {
    display: none;
}

.m-map {
    display: none;
}
.m-br {
    display: none;
}
.pc-br {
    display: block;
}
.m-price {
    display: none;
}

[data-aos='line'] {
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.6s ease;
    display: block;
}

[data-aos='line'].aos-animate {
    transform: scaleX(1);
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vdo-container {
    display: none;
}

/* 헤더 */
#hd {
    position: fixed;
    top: 0%;
    left: 0;
    width: 100%;
    z-index: 101;
    transition: all 0.3s ease;
}

#hd.fixed {
    background-color: rgba(255, 255, 255, 0.7);
}

#hd .hd-inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 30px 0;
    transition: all 0.3s ease;
}

#hd .hd-inner .logo {
    display: block;
    width: 270px;
    height: 35px;
    transition: all 0.5s ease;
    flex: 0.25;
}

#hd .hd-inner .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#hd.fixed .hd-inner {
    padding: 10px 0;
}

#hd.fixed .hd-inner .logo {
    width: 200px;
    height: 25px;
}

#hd .hd-inner .hd-gbn-wrap ul {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 710px;
    height: 20px;
}

#hd .hd-inner .hd-gbn-wrap ul li {
    width: 20%;
    text-align: center;
}

#hd .hd-inner .hd-gbn-wrap ul li a {
    display: block;
    color: #000;
    font-family: 'Pretendard-Medium';
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    transition: all 0.3s ease;
}

#hd .hd-inner .hd-gbn-wrap ul li a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease;
}

#hd .hd-inner .hd-gbn-wrap ul li a:hover {
    font-weight: 700;
}

#hd .hd-inner .hd-gbn-wrap ul li a:hover:after {
    transform: scaleX(1);
}

@media (max-width: 990px) {
    #hd .hd-inner {
        width: 95%;
        margin: 0 auto;
        padding: 10px 0;
        justify-content: space-between;
    }

    #hd .hd-inner .logo {
        width: 200px;
        height: 25px;
        flex: unset;
    }

    #hd.fixed .hd-inner .logo {
        width: 175px;
        height: 35px;
    }

    #hd.fixed .hd-inner {
        padding: 10px 0 40px 0;
    }

    #hd .hd-inner img {
        width: 142px;
        height: 20px;
        object-fit: contain;
    }

    #hd .hd-inner .hd-gbn-wrap {
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 15px;
        transition: all 0.3s ease;
    }

    #hd.fixed .hd-inner .hd-gbn-wrap {
        bottom: 15px;
    }

    #hd .hd-inner .hd-gbn-wrap ul {
        gap: 0;
        width: 100%;
        padding: 0px 0;
    }

    #hd .hd-inner .hd-gbn-wrap ul li a {
        font-size: 12px;
        display: block;
        padding: 10px 0;
    }
}

/* 메인 슬라이드 */

.vdo-container {
    display: none;
}

.main-top-section {
    height: 100vh;
    width: 100%;
    position: relative;
}

.main-top-section .sub-slide-wrap {
    width: 100%;
    height: 100%;
}

.main-top-section .main-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.main-top-section .main-slide-wrap {
    height: 100%;
    width: 100%;
    position: relative;
}

.main-top-section .main-slide-info {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 50;
}

.main-top-section .main-slide-info .inner-wrap {
    display: inline-flex;
    padding: 64px 158px 63px 174px;
    justify-content: flex-end;
    align-items: center;
    border-radius: 100px 0px 0px 0px;
    background: var(--clr-background);
}

.main-top-section .main-slide-info .inner-wrap .info-txt.txt1 {
    padding-right: 200px;
}

.main-top-section .main-slide-info .inner-wrap .info-txt h5 {
    color: #212121;
    font-family: 'Pretendard-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}

.main-top-section .main-slide-info .inner-wrap .info-txt p {
    color: rgba(33, 33, 33, 0.8);
    font-family: 'Pretendard-SemiBold';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    letter-spacing: -0.176px;
}

.main-top-section .slide-prev,
.main-top-section .slide-next {
    cursor: pointer;
    position: absolute;
    z-index: 50;
    top: 50%;
    transform: translateY(-50%);
}

.main-top-section .slide-prev {
    left: 10%;
}

.main-top-section .slide-prev i,
.main-top-section .slide-next i {
    font-size: 35px;
    color: #fff;
}

.main-top-section .slide-next {
    right: 10%;
}

.video-wrap {
    position: relative;
} /* 16:9 ratio */
.sound-btn {
    position: absolute;
    left: 10%;
    bottom: 10%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sound-btn i {
    font-size: 1rem;
}
.sound-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 990px) {
    .vdo-container {
        width: 100%;
        height: 300px;
        padding: 50px 0;
        display: block;
    }

    .vdo-container iframe {
        width: 100%;
        height: 220px;
    }

    .main-top-section {
        height: 650px;
    }

    .sub-top-section {
        margin-top: 100px;
    }

    .sub-wrap .main-top-section {
        height: 270px;
        margin-top: 100px;
    }

    #garden.sub-wrap .main-top-section {
        margin-top: 0;
    }

    .sub-slide-wrap {
        width: 100%;
        height: 100%;
    }

    .main-top-section .main-slide-info {
        width: 100%;
    }

    .main-top-section .main-slide-info .inner-wrap {
        display: inline-flex;
        padding: 37px 13.5px 30px 14px;
        justify-content: center;
        align-items: center;
        border-radius: 30px 30px 0px 0px;
        background: var(--clr-background);
        width: 100%;
    }

    .main-top-section .main-slide-info .inner-wrap .info-txt.txt1 {
        padding-right: 30px;
    }

    .main-top-section .main-slide-info .inner-wrap .info-txt h5 {
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .main-top-section .main-slide-info .inner-wrap .info-txt p {
        font-size: 12px;
        letter-spacing: -0.132px;
    }

    .main-top-section .slide-prev {
        left: 2%;
    }

    .main-top-section .slide-prev i,
    .main-top-section .slide-next i {
        font-size: 25px;
    }

    .main-top-section .slide-next {
        right: 2%;
    }
}

/* 서브 탑이미지 */

.sub-top-section {
    width: 100%;
    height: auto;
}

.sub-top-section .sub-top-img {
    width: 100%;
    height: 700px;
}

.sub-top-section .sub-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 990px) {
    .sub-top-section .sub-top-img {
        height: 300px;
    }
}

#movie .movie-wrap {
    width: 1600px;
    height: 800px;
}

@media (max-width: 990px) {
    #movie .movie-wrap {
        width: 100%;
        height: 300px;
    }
}

/* 서브 탭메뉴 */

.tab-menu-wrap {
    width: 100%;
    padding: 20px 0;
    transition: all 0.5s ease;
}

#reser .tab-menu-wrap.on {
    position: fixed;
    top: 68px;
    left: 0;
    padding: 0px 0 10px 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.7);
}

.tab-menu-wrap .tab-menu {
    width: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.tab-menu-wrap .tab-menu li {
    text-align: center;
}

.tab-menu-wrap .tab-menu li a {
    color: #000;
    font-family: 'Pretendard-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.tab-menu-wrap .tab-menu li a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transition: all 0.3s ease;
    transform-origin: left;
}

.tab-menu-wrap .tab-menu li a:hover {
    font-weight: 700;
}

.tab-menu-wrap .tab-menu li a:hover:after {
    transform: scaleX(1);
}

.tab-menu-wrap .tab-menu li.on a {
    font-family: 'Pretendard-Bold';
    font-weight: 700;
}

.tab-menu a.on {
    color: #000;
    font-weight: 700;
    border-bottom: 2px solid #000;
}

.tab-menu-wrap .tab-menu li.on a:after {
    transform: scaleX(1);
}

@media (max-width: 990px) {
    .tab-menu-wrap .tab-menu {
        width: 100%;
        gap: 0px;
        flex-wrap: wrap;
        justify-content: unset;
    }

    .tab-menu-wrap .tab-menu li {
        width: 25%;
        padding-bottom: 10px;
    }

    .tab-menu-wrap .tab-menu li a {
        font-size: 13px;
        line-height: 20px;
    }

    .tab-menu-wrap .tab-menu li a:after {
        height: 1px;
    }
}

/* 메인 con1 */

.main-con1 {
    height: auto;
    padding: 140px 0;
    width: 100%;
}

.main-con1 .inner-con {
    height: 1053px;
    max-width: 1950px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main-con1 .inner-con::before {
    content: '';
    position: absolute;
    left: -30rem;
    top: 0;
    width: 910px;
    height: 100%;
    background-color: #efefef;
    z-index: 1;
    transition: all 2s ease-in-out;
}

.main-con1 .inner-con.aos-animate::before {
    left: 0;
}

.main-con1 .inner-con .left-txt {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.main-con1 .inner-con .left-txt .small-tit {
    display: block;
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 20px;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 12px;
}

.main-con1 .inner-con .left-txt .tit-wrap {
    margin-bottom: 43px;
}

.main-con1 .inner-con .left-txt .tit-wrap h4 {
    color: #212121;
    font-family: var(--font-cormorant);
    font-size: 80px;
    font-weight: 500;
    line-height: normal;
}

.main-con1 .inner-con .left-txt .tit-wrap h4:last-child {
    padding-left: 80px;
}

.btn-wrap {
    position: relative;
    display: inline-block;
    width: 146px;
    height: 48px;
    border: 1px solid transparent;
    background-color: #212121;
    border-radius: 50px;
    overflow: hidden;
}
.btn-wrap:before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 46px;
    border-radius: 50px;
    background-color: #fff;
    transition: 0.2s;
    content: '';
}
.btn-wrap .inr {
    display: block;
    position: relative;
    transform: translateY(-50%);
    transition: 0.2s;
}
.btn-wrap .inr span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 118px;
    height: 46px;
    font-size: 16px;
    margin: 0 auto;
    gap: 5px;
    color: #fff;
}
.btn-wrap .inr .clone {
    color: #212121;
    display: flex;
    align-items: center;
}

.btn-wrap .inr .arrow-wrap {
    display: flex;
    position: relative;
    align-items: center;
    transform: rotate(-45deg);
    width: 20px;
}

.btn-wrap .inr .arrow-wrap .line {
    width: 20px;
    transform: scaleX(0.8);
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
    position: relative;
    transition: all 0.5s ease-in-out;
    transform-origin: left;
}

.btn-wrap .inr .clone .arrow-wrap .line {
    background-color: #212121;
}

.btn-wrap .inr .clone .arrow-wrap .line:before {
    background-color: #212121;
}

.btn-wrap .inr .clone .arrow-wrap .line:after {
    background-color: #212121;
}

.btn-wrap .inr .arrow-wrap .line:before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
    transform: rotate(45deg);
}

.btn-wrap .inr .arrow-wrap .line:after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 10px;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
    transform: rotate(-45deg);
}

.btn-wrap:hover:before {
    top: 0;
}
.btn-wrap:hover .inr {
    transform: translateY(0);
}

.btn-wrap:hover .inr .arrow-wrap .line {
    transform: scaleX(1);
}

.main-con1 .inner-con .right {
    position: relative;
    z-index: 2;
    width: 70%;
    margin-left: 37%;
    height: 700px;
    transform: translateY(10rem);
}

.main-con1 .inner-con .right > span {
    position: absolute;
    top: -25px;
    color: #212121;
    font-family: var(--font-lato);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
}

.main-con1 .inner-con .right .txt-1 {
    left: 0;
}

.main-con1 .inner-con .right .txt-2 {
    right: 14rem;
}

.main-con1 .inner-con .right .season-slide-wrap {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.main-con1 .inner-con .right .season-slide-wrap .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.main-con1 .inner-con .right .season-slide-wrap .swiper-wrapper .swiper-slide {
    height: 100%;
    width: 530px;
}

.main-con1 .inner-con .right .season-slide-wrap .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-con1 .inner-con .right .season-slide-wrap .swiper-wrapper .swiper-slide iframe {
   pointer-events: none;
}


@media (max-width: 990px) {
    .main-con1 {
        height: auto;
        padding: 50px 0 90px 0;
        width: 100%;
    }

    .main-con1 .inner-con {
        height: 332px;
        max-width: unset;
        width: 100%;
    }

    .main-con1 .inner-con::before {
        left: -20rem;
        width: 253px;
        height: 100%;
    }

    .main-con1 .inner-con .left-txt {
        left: 15px;
    }

    .main-con1 .inner-con .left-txt .small-tit {
        font-size: 14px;
        font-weight: 300;
        line-height: normal;
        margin-bottom: 19px;
    }

    .main-con1 .inner-con .left-txt .tit-wrap {
        margin-bottom: 30px;
    }

    .main-con1 .inner-con .left-txt .tit-wrap h4 {
        font-size: 30px;
    }

    .main-con1 .inner-con .left-txt .tit-wrap h4:last-child {
        padding-left: 20px;
    }

    .btn-wrap {
        width: 90px;
        height: 35px;
    }
    .btn-wrap:before {
        height: 35px;
    }
    .btn-wrap .inr {
        display: block;
        position: relative;
        transform: translateY(-50%);
        transition: 0.2s;
    }
    .btn-wrap .inr span {
        width: 90px;
        height: 30px;
        font-size: 12px;
        gap: 2px;
    }

    .btn-wrap .inr .arrow-wrap {
        display: flex;
        position: relative;
        align-items: center;
        transform: rotate(-45deg);
        width: 20px;
    }

    .btn-wrap .inr .arrow-wrap .line {
        width: 16px;
        height: 2px;
        border-radius: 3px;
        background-color: #fff;
        position: relative;
        transition: all 0.5s ease-in-out;
        transform-origin: center;
    }

    .btn-wrap .inr .arrow-wrap .line:before {
        content: '';
        position: absolute;
        top: -3px;
        right: -3px;
        width: 10px;
        height: 2px;
        border-radius: 3px;
        background-color: #fff;
        transform: rotate(45deg);
    }

    .btn-wrap .inr .arrow-wrap .line:after {
        content: '';
        position: absolute;
        bottom: -3px;
        right: -3px;
        width: 10px;
        height: 2px;
        border-radius: 3px;
        background-color: #fff;
        transform: rotate(-45deg);
    }

    .main-con1 .inner-con .right {
        width: 70%;
        margin-left: 170px;
        height: 230px;
        transform: translateY(3rem);
    }

    .main-con1 .inner-con .right > span {
        top: -15px;
        font-size: 10px;
    }

    .main-con1 .inner-con .right .txt-1 {
        left: 0;
    }

    .main-con1 .inner-con .right .txt-2 {
        display: none;
    }

    .main-con1 .inner-con .right .season-slide-wrap .swiper-wrapper .swiper-slide {
        width: 150px;
    }
}

/* 메인 CON2 */

.main-con2 {
    height: auto;
    padding: 140px 0 250px 0;
    width: 100%;
}

.main-con2 .inner-con {
    position: relative;
    max-width: 1950px;
    width: 100%;
    margin: 0 auto;
    height: 1080px;
    overflow: hidden;
}

.main-con2 .inner-con > div {
    position: absolute;
}

.main-con2 .inner-con .con2-bg1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
    transition: all 0.6s;
}

.main-con2 .inner-con .con2-bg2 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: all 0.6s;
}

.main-con2 .inner-con .con2-bg1 img,
.main-con2 .inner-con .con2-bg2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.main-con2 .inner-con .con2-bg1:after,
.main-con2 .inner-con .con2-bg2:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    z-index: 3;
    backdrop-filter: blur(7.5px);
    background-color: rgba(255, 255, 255, 0.1);
}

.main-con2 .inner-con .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 375px;
    height: 375px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    z-index: 4;
    transition: all 0.6s;
    cursor: pointer;
}

.main-con2 .inner-con .circle a {
    color: #fff;
    font-family: 'Pretendard-Medium';
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.main-con2 .inner-con .circle:hover,
.main-con2 .inner-con .circle.tapped {
    background-color: #fff;
    border: 1px solid transparent;
}

.main-con2 .inner-con .circle:hover a,
.main-con2 .inner-con .circle.tapped a {
    color: #212121;
}

.main-con2 .inner-con .tit {
    position: absolute;
    top: 10%;
    left: 0%;
    z-index: 4;
}

.main-con2 .inner-con .tit h4,
.main-con2 .inner-con .tit .txt {
    padding-left: 150px;
}
.main-con2 .inner-con .tit h4 {
    color: #212121;
    font-family: var(--font-cormorant);
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
}

.main-con2 .inner-con .tit .txt {
    display: flex;
    align-items: center;
}

.main-con2 .inner-con .tit .txt h6 {
    color: #212121;
    font-family: 'Pretendard-Medium';
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.main-con2 .inner-con .tit .txt .line {
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: rgba(33, 33, 33, 0.5);
    margin: 0 15px;
}

.main-con2 .inner-con .tit .txt p {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.main-con2 .inner-con .tit .line-wrap {
    width: 480px;
    height: 1px;
    background-color: rgba(33, 33, 33, 0.5);
    margin-bottom: 50px;
    position: relative;
}

.main-con2 .inner-con .tit .line-wrap .line {
    position: absolute;
    display: block;
    top: -2px;
    left: 0;
    width: 158px;
    height: 2px;
    background-color: rgba(33, 33, 33, 0.5);
}

.main-con2 .inner-con .txt-wrap {
    position: absolute;
    bottom: 20%;
    right: 10%;
    color: #fff;
    text-align: right;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    z-index: 4;
}

@media (max-width: 990px) {
    .main-con2 {
        padding: 20px 0 150px 0;
    }

    .main-con2 .inner-con {
        max-width: unset;
        width: 100%;
        margin: 0 auto;
        height: 770px;
    }

    .main-con2 .inner-con > div {
        position: absolute;
    }

    .main-con2 .inner-con .con2-bg1 {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 1;
        transition: all 0.6s;
    }

    /* .main-con2 .inner-con .con2-bg2 {
        display: none;
    } */

    .main-con2 .inner-con .con2-bg1:after,
    .main-con2 .inner-con .con2-bg2:after {
        width: 100%;
        height: 50%;
    }

    .main-con2 .inner-con .circle {
        width: 237px;
        height: 237px;
        border-radius: 50%;
    }

    .main-con2 .inner-con .circle a {
        font-size: 14px;
    }
    .main-con2 .inner-con .tit {
        position: absolute;
        top: 10%;
        left: 0%;
        z-index: 4;
    }

    .main-con2 .inner-con .tit h4,
    .main-con2 .inner-con .tit .txt {
        padding-left: 10px;
    }
    .main-con2 .inner-con .tit h4 {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .main-con2 .inner-con .tit .txt {
        flex-direction: column;
        gap: 10px;
    }

    .main-con2 .inner-con .tit .txt h6 {
        font-size: 16px;
    }

    .main-con2 .inner-con .tit .txt .line {
        display: none;
    }

    .main-con2 .inner-con .tit .txt p {
        font-size: 16px;
    }

    .main-con2 .inner-con .tit .line-wrap {
        width: 168px;
        margin-bottom: 28px;
    }

    .main-con2 .inner-con .tit .line-wrap .line {
        width: 58px;
    }

    .main-con2 .inner-con .txt-wrap {
        position: absolute;
        bottom: 40px;
        right: 20px;
        font-size: 14px;
    }
}

/* 프롤로그 */

#prologue .view-con1 {
    width: 100%;
    height: auto;
    position: relative;
}

#prologue .view-con1 .side-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 520px;
    height: 1600px;
    background-color: #efefef;
    z-index: 1;
}

#prologue .view-con1 .view-con-wrap {
    width: 1600px;
    margin: 0 auto;
    padding: 150px 0 200px 0;
    position: relative;
    z-index: 2;
    display: flex;
}

#prologue .view-con1 .view-con-wrap .img-wrap {
    width: 800px;
    height: 800px;
    position: relative;
}

#prologue .view-con1 .view-con-wrap .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#prologue .view-con1 .view-con-wrap .info-wrap {
    width: 800px;
    height: 800px;
    position: relative;
}

#prologue .view-con1 .view-con-wrap .info-wrap .tit-wrap {
    position: absolute;
    top: 118px;
    right: 0;
}

#prologue .view-con1 .view-con-wrap .info-wrap .tit-wrap .small-tit {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    display: block;
    margin-bottom: 30px;
}

#prologue .view-con1 .view-con-wrap .info-wrap .tit-wrap h4 {
    color: #212121;
    font-family: var(--font-cormorant);
    font-size: 80px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: capitalize;
}

#prologue .view-con1 .view-con-wrap .info-wrap .txt-wrap {
    position: absolute;
    bottom: 88px;
    right: 0;
}

#prologue .view-con1 .view-con-wrap .info-wrap .txt-wrap .txt {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: norm al;
    font-weight: 300;
    line-height: 25px;
    text-align: right;
}

#prologue .view-con1 .view-con-wrap .info-wrap .txt-wrap .txt:nth-child(1) {
    margin-bottom: 10px;
}

#prologue .view-con1 .view-con-wrap .info-wrap .txt-wrap .txt b {
    font-weight: 700;
    display: inline-block;
}

#prologue .four-season-section {
    padding-bottom: 200px;
    position: relative;
    background-color: transparent;
}

/* ❶ 기본 상태 ── 화면에 거의 안 보이는 0 px 높이 패스 */
#prologue .four-season-section .four-season-wrap {
    width: 100%;
    height: 900px;
    position: relative;
    overflow: hidden;

    /* 위쪽 선만 그린 뒤 닫힌 사각형 */
    clip-path: path('M0 0C836.5 0 1128 0 1919 0V906.5C1220 0 0 841 0 906.5V0Z');
    -webkit-clip-path: path('M0 0C836.5 0 1128 0 1919 0V906.5C1220 0 0 841 0 906.5V0Z');

    /* clip-path 만 부드럽게 */
    transition: clip-path 1s ease-out;
    transform-origin: center;
}

/* ❷ AOS 애니메이트 ── 최종 곡선 패스 */
#prologue .four-season-section .four-season-wrap.aos-animate {
    /* 원하는 물결형 패스 */
    clip-path: path('M0 0C836.5 72 1128 75.5 1919 0V906.5C1220 833.5 710.5 841 0 906.5V0Z');
    -webkit-clip-path: path('M0 0C836.5 72 1128 75.5 1919 0V906.5C1220 833.5 710.5 841 0 906.5V0Z');
}

#prologue .four-season-section .four-season-wrap .four-season-gnb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

#prologue .four-season-section .four-season-wrap .four-season-gnb .gnb {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

#prologue .four-season-section .four-season-wrap .four-season-gnb .gnb h5 {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    transition: all 0.6s;
}

#prologue .four-season-section .four-season-wrap .four-season-gnb .gnb p {
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    transition: all 0.6s;
}

#prologue .four-season-section .four-season-wrap .four-season-gnb .gnb.on h5 {
    color: #fff;
    font-family: 'Pretendard-Medium';
    font-size: 30px;
    font-weight: 500;
}

#prologue .four-season-section .four-season-wrap .four-season-gnb .gnb.on p {
    color: #fff;
    font-family: 'Pretendard-Light';
    font-size: 16px;
}

#prologue .four-season-section .four-season-track {
    display: flex;
    width: 400%; /* 슬라이드 수만큼 늘어남 */
    height: 100%;
}

#prologue .four-season-section .four-season-wrap img {
    width: 100%; /* 4계절 → 4배 */
    height: 100%;
    object-fit: cover; /* 잘리는 구간 채움 */
    flex: none;
}

#prologue .view-con2 {
    width: 100%;
    padding-bottom: 150px;
    overflow: hidden;
}

#prologue .view-con2 .view-con-wrap {
    width: 1760px;
    height: 860px;
    margin-left: 150px;
    position: relative;
    z-index: 2;
}

#prologue .view-con2 .view-con-wrap .txt {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    position: absolute;
    left: 0;
    top: 0;
}

#prologue .view-con2 .view-con-wrap .img-wrap {
    width: 1291.5px;
    height: 861px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-left: 469px;
}

#prologue .view-con2 .view-con-wrap .img-wrap img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    transition: opacity 1.5s ease-in-out;
}

#prologue .view-con2 .view-con-wrap .img-wrap img.aos-animate {
    opacity: 0;
}

#prologue .view-con2 .view-con-wrap .img-wrap .img1 {
    z-index: 6;
}

#prologue .view-con2 .view-con-wrap .img-wrap .img2 {
    z-index: 5;
}

#prologue .view-con2 .view-con-wrap .img-wrap .img3 {
    z-index: 4;
}

#prologue .view-con2 .view-con-wrap .img-wrap .img4 {
    z-index: 3;
}

#prologue .view-con2 .view-con-wrap .img-wrap .img5 {
    z-index: 2;
}

@media (max-width: 1024px) {
    #prologue .view-con1 .side-bg {
        display: none;
    }

    #prologue .view-con1 .view-con-wrap {
        width: 100%;
        padding: 30px 0 100px 0;
        flex-direction: column-reverse;
    }

    #prologue .view-con1 .view-con-wrap .img-wrap {
        width: 90%;
        margin: 0 auto;
        height: 300px;
    }

    #prologue .view-con1 .view-con-wrap .info-wrap {
        width: 100%;
        height: 370px;
    }

    #prologue .view-con1 .view-con-wrap .info-wrap .tit-wrap {
        position: static;
        margin-bottom: 30px;
        padding-left: 2%;
    }

    #prologue .view-con1 .view-con-wrap .info-wrap .tit-wrap .small-tit {
        font-size: 15px;
        margin-bottom: 5px;
    }

    #prologue .view-con1 .view-con-wrap .info-wrap .tit-wrap h4 {
        font-size: 35px;
    }

    #prologue .view-con1 .view-con-wrap .info-wrap .txt-wrap {
        position: static;
        padding-left: 3%;
    }

    #prologue .view-con1 .view-con-wrap .info-wrap .txt-wrap .txt {
        font-size: 14px;
        line-height: 20px;
        text-align: left;
    }

    #prologue .view-con1 .view-con-wrap .info-wrap .txt-wrap .txt:nth-child(1) {
        margin-bottom: 30px;
    }

    #prologue .four-season-section {
        padding-bottom: 100px;
    }

    /* ❶ 기본 상태 ── 화면에 거의 안 보이는 0 px 높이 패스 */
    #prologue .four-season-section .four-season-wrap {
        width: 100%;
        height: 500px;
        -webkit-clip-path: unset !important;
        clip-path: unset !important;
    }

    #prologue .four-season-section .four-season-wrap .four-season-gnb {
        display: none;
    }

    #prologue .four-season-section .four-season-wrap .four-season-gnb .gnb {
        display: flex;
        align-items: flex-end;
        gap: 15px;
    }

    #prologue .four-season-section .four-season-wrap .four-season-gnb .gnb h5 {
        font-size: 14px;
    }

    #prologue .four-season-section .four-season-wrap .four-season-gnb .gnb p {
        font-size: 14px;
    }

    #prologue .four-season-section .four-season-wrap .four-season-gnb .gnb.on h5 {
        font-size: 20px;
    }

    #prologue .four-season-section .four-season-wrap .four-season-gnb .gnb.on p {
        font-size: 14px;
    }

    #prologue .four-season-section .four-season-track {
        width: 800%;
    }

    #prologue .four-season-section .four-season-wrap img {
        width: 100%;
        object-fit: cover;
    }

    #prologue .view-con2 {
        padding-bottom: 20px;
    }

    #prologue .view-con2 .view-con-wrap {
        width: 90%;
        height: 400px;
        margin: 0 auto;
    }

    #prologue .view-con2 .view-con-wrap .txt {
        font-size: 13px;
        line-height: 20px;
        position: static;
        margin-bottom: 50px;
    }

    #prologue .view-con2 .view-con-wrap .img-wrap {
        width: 100%;
        height: 210px;
        margin-left: 0;
    }
}

/* 여행 안내 */

#tour .tour-section {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-bottom: 330px;
}

#tour .tour-section .tour-wrap {
    width: 100%;
    height: 900px;
    margin: 0 auto 200px auto;
    position: relative;
    z-index: 3;
}

#tour .tour-section .tour-wrap:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    height: 1042px;
    background-color: #efefef;
    z-index: 1;
}

#tour .tour-section .tour-wrap:nth-last-child(1) {
    margin-bottom: 0;
}

#tour .tour-section .tour-wrap .tour-slide-wrap {
    height: 100%;
    width: 1660px;
    margin: 0 auto;
    position: relative;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .swiper-wrapper {
    width: 100%;
    height: 100%;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 100%;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap {
    width: 1030px;
    height: 270px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 20;
    background-color: #fff;
    border-radius: 100px 0px 0px 0px;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner {
    padding-left: 84px;
    padding-top: 64px;
    position: relative;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .slide-btn-wrap {
    position: absolute;
    top: 70px;
    right: 80px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 50px;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .slide-btn-wrap i {
    font-size: 20px;
    color: #212121;
    cursor: pointer;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-tit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-tit .num {
    color: #212121;
    font-family: 'Pretendard-SemiBold';
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-tit h5 {
    color: #212121;
    font-family: 'Pretendard-Medium';
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-info img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-info p {
    color: #212121;
    font-family: 'Pretendard-Bold';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

#tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-txt {
    width: 870px;
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

@media (max-width: 990px) {
    #tour .tour-section {
        padding-bottom: 35px;
    }

    #tour .tour-section .tour-wrap {
        width: 100%;
        height: 460px;
        margin: 0 auto 130px auto;
        position: relative;
        z-index: 3;
    }

    #tour .tour-section .tour-wrap:nth-child(odd)::before {
        display: none;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap {
        height: 500px;
        width: 100%;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .swiper-wrapper {
        height: 250px;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap {
        width: 100%;
        height: auto;
        position: static;
        border-radius: 0px 0px 0px 0px;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner {
        padding: 30px 10px 0 10px;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .slide-btn-wrap {
        top: 54px;
        right: 20px;
        gap: 20px;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .slide-btn-wrap i {
        font-size: 15px;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-tit {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-tit .num {
        font-size: 16px;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-tit h5 {
        font-size: 20px;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-info {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-info img {
        width: 15px;
        height: 15px;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-info p {
        font-size: 14px;
        line-height: 20px;
    }

    #tour .tour-section .tour-wrap .tour-slide-wrap .tour-info-wrap .tour-info-inner .tour-txt {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
    }
}

/* 로케이션 */

#tour .con-wrap {
    padding-bottom: 120px;
}

#location .con-wrap {
    padding-bottom: 250px;
}

.con-wrap {
    width: 1600px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.root_daum_roughmap .cont {
    display: none;
}
.con-wrap .con-tit-wrap {
    padding-top: 150px;
    padding-bottom: 66px;
}

.con-wrap .con-tit-wrap .con-tit {
    color: #000;
    text-align: center;
    font-family: var(--font-maruburi);
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
}

.con-wrap .con-tit-wrap .con-txt {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    text-align: center;
}

@media (max-width: 990px) {
    .con-wrap {
        width: 100%;
        margin: 0 auto;
        padding-bottom: 10px;
    }

    #location .con-wrap {
        padding-bottom: 0;
    }

    #tour .con-wrap {
        padding-bottom: 0;
    }

    .con-wrap .con-tit-wrap {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .con-wrap .con-tit-wrap .con-tit {
        font-size: 35px;
        margin-bottom: 20px;
    }

    .con-wrap .con-tit-wrap .con-txt {
        font-size: 14px;
        line-height: 20px;
    }
}

#room .room-con-wrap {
    position: relative;
    width: 100%;
    height: 1300px;
    margin-bottom: 170px;
}

#room .room-con-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1042px;
    background-color: #efefef;
    z-index: 1;
}

#room .room-con-wrap .img-wrap {
    width: 1600px;
    height: 500px;
    position: relative;
    margin: 200px auto 130px auto;
    z-index: 10;
}

#room .room-con-wrap .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#room .room-con-wrap .info-wrap {
    width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

#room .room-con-wrap .info-wrap .tit-wrap {
    margin-bottom: 75px;
}

#room .room-con-wrap .info-wrap .tit-wrap h4 {
    color: #000;
    text-align: center;
    font-family: var(--font-maruburi);
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

#room .room-con-wrap .info-wrap .tit-wrap .small-tit {
    color: #000;
    display: block;
    text-align: center;
    font-family: 'Pretendard-Regular';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#room .room-con-wrap .info-wrap .info-txt-wrap {
    display: flex;
    justify-content: space-between;
}

#room .room-con-wrap .info-wrap .info-txt-wrap > div h5 {
    color: #000;
    font-family: var(--font-cormorant);
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 30px;
}

#room .room-con-wrap .info-wrap .info-txt-wrap .info-txt h6 {
    color: #000;
    font-family: 'Pretendard-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 5px;
}

#room .room-con-wrap .info-wrap .info-txt-wrap .info-txt .txt p {
    color: #000;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 15px;
}

#room .room-con-wrap .info-wrap .info-txt-wrap .info-txt .txt p:last-child {
    margin-bottom: 0;
}

#room .room-con-wrap .info-wrap .info-txt-wrap .info-sup {
    width: 600px;
}

#room .room-con-wrap .info-wrap .info-txt-wrap .info-sup .sup-list {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}

#room .room-con-wrap .info-wrap .info-txt-wrap .info-sup .sup-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

#room .room-con-wrap .info-wrap .info-txt-wrap .info-sup .sup-list li img {
    width: 45px;
    height: 45px;
    margin-bottom: 5px;
}

#room .room-con-wrap .info-wrap .info-txt-wrap .info-sup .sup-list li span {
    display: block;
    color: #212121;
    font-family: 'Pretendard-Medium';
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#room .room-price-wrap {
    width: 100%;
    padding-bottom: 200px;
}

#room .room-price {
    width: 1400px;
    margin: 0 auto;
    text-align: center;
}

#room .room-price .btn-wrap {
    margin-top: 65px;
}

.room-map-section {
    width: 100%;
    padding: 50px 0 200px 0;
}

.room-map-section .room-map-bg {
    width: 1600px;
    height: 860px;
    margin: 0 auto;
    position: relative;
}

.room-map-section .room-map-wrap.mo {
    display: none;
}

.room-map-section .room-map-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#room .room-map-wrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(230, 230, 230, 0.5);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: all 0.5s;
}

#room .room-map-wrap.on {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#room .room-map-wrap .room-map-img {
    width: 1600px;
    height: 859px;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#room .room-map-wrap .room-map-img.mo {
    display: none;
}

#room .room-map-wrap .hover-gif {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 100px;
    right: 62px;
    cursor: pointer;
    transition: all 0.5s;
}
#room .room-con1 {
    z-index: 100;
}

#room .room-map-wrap .hover-gif:hover {
    transform: rotate(360deg);
}

@media (max-width: 1024px) {
    #room .room-con-wrap {
        height: 1000px;
        margin-bottom: 0px;
    }

    #room .room-con-wrap::before {
        display: none;
    }

    #room .room-con-wrap .img-wrap {
        width: 100%;
        height: 200px;
        margin: 30px auto 50px auto;
    }

    #room .room-con-wrap .info-wrap {
        width: 95%;
        margin: 0 auto;
    }

    #room .room-con-wrap .info-wrap .tit-wrap {
        margin-bottom: 35px;
    }

    #room .room-con-wrap .info-wrap .tit-wrap h4 {
        font-size: 40px;
    }

    #room .room-con-wrap .info-wrap .tit-wrap .small-tit {
        font-size: 18px;
    }

    .room-map-section {
        padding: 50px 0 100px 0;
    }

    #room .room-con-wrap .info-wrap .info-txt-wrap {
        flex-direction: column;
        justify-content: center;
    }

    #room .room-con-wrap .info-wrap .info-txt-wrap > div h5 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    #room .room-con-wrap .info-wrap .info-txt-wrap .info-txt {
        margin-bottom: 50px;
    }

    #room .room-con-wrap .info-wrap .info-txt-wrap .info-txt h6 {
        font-size: 14px;
        line-height: 20px;
    }

    #room .room-con-wrap .info-wrap .info-txt-wrap .info-txt .txt p {
        font-size: 14px;
        line-height: 20px;
    }

    #room .room-con-wrap .info-wrap .info-txt-wrap .info-sup {
        width: 100%;
    }

    #room .room-con-wrap .info-wrap .info-txt-wrap .info-sup .sup-list {
        gap: 10px;
        width: 280px;
        margin: 0 auto;
    }

    #room .room-con-wrap .info-wrap .info-txt-wrap .info-sup .sup-list li {
        width: 22%;
    }

    #room .room-con-wrap .info-wrap .info-txt-wrap .info-sup .sup-list li img {
        width: 25px;
        height: 25px;
    }

    #room .room-con-wrap .info-wrap .info-txt-wrap .info-sup .sup-list li span {
        font-size: 10px;
    }

    #room .room-price-wrap {
        padding-bottom: 0px;
    }

    #room .room-price {
        width: 95%;
    }

    #room .room-price .btn-wrap {
        margin-top: 35px;
    }

    #room .room-map-wrap .room-map-img.mo {
        display: block;
        width: 85%;
        height: 400px;
    }

    #room .room-map-wrap .room-map-img.pc {
        display: none;
    }

    #room .room-map-wrap .hover-gif {
        width: 25px;
        height: 25px;
        position: absolute;
        top: 14%;
        right: 8%;
        cursor: pointer;
        transition: all 0.5s;
    }

    .room-map-section .room-map-bg.mo {
        display: block;
    }

    .room-map-section .room-map-bg.pc {
        display: none;
    }

    .room-map-section .room-map-bg {
        width: 90%;
        margin: 0 auto;
        height: 600px;
    }
}

/* 천상의정원 페이지 */

#garden .garden-top-section {
    width: 100%;
    overflow: hidden;
}

#garden .garden-top-section .garden-top-img {
    width: 100%;
    height: 100vh;
    position: relative;
}

#garden .garden-top-section .garden-top-img .garden-top-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#garden .garden-top-section .garden-top-img .garden-logo {
    position: absolute;
    top: 33%;
    left: 39%;
    transform: translate(-50%, -50%);
    width: 106px;
    height: 76px;
    z-index: 10;
    object-fit: contain;
}

#garden .garden-top-section .garden-top-img .gardem-logo-line {
    position: absolute;
    top: 38.5%;
    left: 38.8%;
    transform: translate(-50%, -50%);
    width: 167px;
    height: 119px;
    z-index: 10;
}

#garden .garden-top-section .garden-top-img .garden-top-dot {
    position: absolute;
    color: #212121;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Pretendard-Light';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    cursor: pointer;
    z-index: 10;
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot1 {
    bottom: 18%;
    left: 42%;
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot2 {
    top: 45%;
    left: 8%;
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot3 {
    top: 31%;
    left: 6%;
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot4 {
    top: 27%;
    left: 16%;
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot5 {
    top: 20%;
    left: 27%;
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot6 {
    top: 13%;
    left: 45%;
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot7 {
    top: 13%;
    right: 41%;
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot8 {
    top: 29%;
    right: 36%;
}

#garden .garden-top-section .garden-top-img .svg-top-img {
    position: absolute;
    transition: all 0.5s;
}

#garden .garden-top-section .garden-top-img .svg-top-img .bg {
    opacity: 0.5;
    position: absolute;
}

#garden .garden-top-section .garden-top-img .svg-top-img .hover {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.7s ease-out;
}

#garden .garden-top-section .garden-top-img .svg-top-img.img1 {
    bottom: 20%;
    left: 31.5%;
}

#garden .garden-top-section .garden-top-img .svg-top-img.img2 {
    top: 43%;
    left: 10%;
}

#garden .garden-top-section .garden-top-img .svg-top-img.img3 {
    top: 35%;
    left: 7%;
}

#garden .garden-top-section .garden-top-img .svg-top-img.img4 {
    top: 30%;
    left: 8%;
}

#garden .garden-top-section .garden-top-img .svg-top-img.img5 {
    top: 23%;
    left: 18%;
}

#garden .garden-top-section .garden-top-img .svg-top-img.img6 {
    top: 30%;
    left: 17%;
}

#garden .garden-top-section .garden-top-img .svg-top-img.img7 {
    top: 16.5%;
    left: 29.5%;
}

#garden .garden-top-section .garden-top-img .svg-top-img.img8 {
    top: 15%;
    right: 43.5%;
}

#garden .garden-top-section .garden-top-img .svg-top-img.img9 {
    top: 17.6%;
    right: 33%;
}

#garden .garden-top-section .garden-top-img .svg-top-img.img10 {
    top: 33%;
    right: 38%;
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot1:hover ~ .svg-top-img.img1 .hover {
    clip-path: inset(0 0 0 0);
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot2:hover ~ .svg-top-img.img2 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot2:hover ~ .svg-top-img.img3 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot2:hover ~ .svg-top-img.img4 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot2:hover ~ .svg-top-img.img5 .hover {
    clip-path: inset(0 0 0 0);
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot3:hover ~ .svg-top-img.img2 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot3:hover ~ .svg-top-img.img3 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot3:hover ~ .svg-top-img.img4 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot3:hover ~ .svg-top-img.img5 .hover {
    clip-path: inset(0 0 0 0);
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot5:hover ~ .svg-top-img.img2 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot5:hover ~ .svg-top-img.img3 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot5:hover ~ .svg-top-img.img4 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot5:hover ~ .svg-top-img.img5 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot5:hover ~ .svg-top-img.img6 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot5:hover ~ .svg-top-img.img7 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot5:hover ~ .svg-top-img.img8 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot5:hover ~ .svg-top-img.img9 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot5:hover ~ .svg-top-img.img10 .hover {
    clip-path: inset(0 0 0 0);
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot4:hover ~ .svg-top-img.img5 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot4:hover ~ .svg-top-img.img6 .hover {
    clip-path: inset(0 0 0 0);
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot6:hover ~ .svg-top-img.img7 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot6:hover ~ .svg-top-img.img8 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot6:hover ~ .svg-top-img.img9 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot6:hover ~ .svg-top-img.img10 .hover {
    clip-path: inset(0 0 0 0);
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot7:hover ~ .svg-top-img.img7 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot7:hover ~ .svg-top-img.img8 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot7:hover ~ .svg-top-img.img9 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot7:hover ~ .svg-top-img.img10 .hover {
    clip-path: inset(0 0 0 0);
}

#garden .garden-top-section .garden-top-img .garden-top-dot.dot8:hover ~ .svg-top-img.img7 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot8:hover ~ .svg-top-img.img8 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot8:hover ~ .svg-top-img.img9 .hover,
#garden .garden-top-section .garden-top-img .garden-top-dot.dot8:hover ~ .svg-top-img.img10 .hover {
    clip-path: inset(0 0 0 0);
}

#garden .garden-top-section .garden-top-img .garden-top-info {
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 100px 0px 0px 0px;
    height: 820px;
    background-color: #fff;
}

#garden .garden-top-section .garden-top-info-list {
    padding: 75px 50px 40px 70px;
}

#garden .garden-top-section .garden-top-info-list .garden-info {
    padding-bottom: 20px;
}

#garden .garden-top-section .garden-top-info-list .garden-info.first .title-dot-list-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

#garden .garden-top-section .garden-top-info-list .garden-info .title-dot-list {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

#garden .garden-top-section .garden-top-info-list .garden-info .title-dot-list-wrap .title-dot {
    width: 30px;
    height: 30px;
    background-color: #212121;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Pretendard-Bold';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#garden .garden-top-section .garden-top-info-list .garden-info .title-dot-list-wrap .title-txt {
    color: #212121;
    font-family: 'Pretendard-Bold';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 15px;
}

#garden .garden-top-section .garden-top-info-list .garden-info.first .title-dot-list-wrap .title-txt {
    margin-bottom: 0;
}

#garden .garden-top-section .garden-top-info-list .garden-info > p {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#garden .garden-top-section .garden-top-info-list .garden-info > p img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

#garden .garden-top-section .garden-top-info-list .garden-info > p img.logo {
    width: 30px;
    height: 30px;
}

#garden .garden-top-section .garden-top-info-list .garden-info > p.red {
    color: #b30000;
}

#garden .garden-con-section {
    padding-top: 170px;
    overflow: hidden;
    width: 100%;
}

#garden .garden-con-section .garden-con-wrap {
    width: 1600px;
    margin: 0 auto;
    padding-bottom: 170px;
}

#garden .garden-con-section .garden-con-wrap .garden-con-img {
    width: 100%;
    height: 900px;
    overflow: hidden;
    margin-bottom: 130px;
    position: relative;
}

#garden .garden-con-section .garden-con-wrap .garden-con-img .sub-slide-wrap .slide-prev,
#garden .garden-con-section .garden-con-wrap .garden-con-img .sub-slide-wrap .slide-next {
    cursor: pointer;
    position: absolute;
    z-index: 50;
    top: 50%;
    transform: translateY(-50%);
}

#garden .garden-con-section .garden-con-wrap .garden-con-img .sub-slide-wrap .slide-prev {
    left: 5%;
}

#garden .garden-con-section .garden-con-wrap .garden-con-img .sub-slide-wrap .slide-next {
    right: 5%;
}

#garden .garden-con-section .garden-con-wrap .garden-con-img .sub-slide-wrap .slide-prev i,
#garden .garden-con-section .garden-con-wrap .garden-con-img .sub-slide-wrap .slide-next i {
    font-size: 35px;
    color: #fff;
}

#garden .garden-con-section .garden-con-wrap .garden-con-img .sub-slide-wrap {
    width: 100%;
    height: 100%;
}

#garden .garden-con-section .garden-con-wrap .garden-con-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#garden .garden-con-section .garden-con-wrap .garden-con-img.aos-animate img {
    clip-path: inset(0 0 0 0);
}

#garden .garden-con-section .garden-con-wrap .garden-con-txt p {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 15px;
    text-align: center;
}

#garden .garden-con-section .garden-con-wrap .garden-con-txt p:last-child {
    margin-bottom: 0;
    color: #212121;
    font-family: 'Pretendard-Bold';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

#garden .garden-line-section {
    padding-top: 120px;
    overflow: hidden;
    width: 100%;
}

#garden .garden-line-section .garden-line-wrap {
    width: 1600px;
    margin: 0 auto;
    padding-bottom: 150px;
}

#garden .garden-line-section .garden-line-wrap .garden-line {
    display: flex;
    align-items: center;
    gap: 110px;
}

#garden .garden-line-section .garden-line-wrap .garden-line-line {
    width: 826px;
    height: 340px;
    overflow: hidden;
    margin: 0 auto;
    clip-path: inset(0 0 100% 0);
    transition: all 1.5s linear;
}

#garden .garden-line-section .garden-line-wrap .garden-line-line.aos-animate {
    clip-path: inset(0 0 0 0);
}

#garden .garden-line-section .garden-line-wrap .garden-line-line img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#garden .garden-line-section .garden-line-wrap .garden-line[data-eq='2'] {
    flex-direction: row-reverse;
}

#garden .garden-line-section .garden-line-wrap .garden-line:last-child {
    margin-bottom: 0;
}

#garden .garden-line-section .garden-line-wrap .img-wrap {
    width: 800px;
    height: 450px;
    overflow: hidden;
    position: relative;
}

#garden .garden-line-section .garden-line-wrap .img-wrap .garden-dot {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

#garden .garden-line-section .garden-line-wrap .img-wrap .garden-info-txt {
    position: absolute;
    font-size: 25px;
    font-family: 'Pretendard-Bold';
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #fff;
    z-index: 50;
}

#garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='1'] .dot1 {
    top: 44%;
    left: 40%;
}

#garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='1'] .garden-info-txt {
    top: 18%;
    left: 29%;
}

#garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='2'] .garden-info-txt {
    top: 18%;
    left: 29%;
}

#garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='1'] .garden-img {
    position: absolute;
    width: 50px;
    height: 50px;
    object-fit: cover;
    top: 10%;
    right: 49%;
}

#garden .garden-line-section .garden-line-wrap .img-wrap .svg-img {
    clip-path: inset(0 0 100% 0);
    transition: all 1.5s linear;
}

#garden .garden-line-section .garden-line-wrap .img-wrap .svg-img.aos-animate {
    clip-path: inset(0 0 0 0);
}

#garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='1'] .svg-img {
    position: absolute;
    top: 18%;
    left: 40%;
}

#garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='2'] .svg-img {
    position: absolute;
    top: 26%;
    left: 17%;
}

#garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='2'] .dot1 {
    top: 34%;
    right: 25%;
}

#garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='2'] .garden-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    position: absolute;
    top: 44%;
    left: 13%;
    z-index: 50;
}

#garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='3'] .dot1 {
    bottom: 30px;
    left: 30px;
}

#garden .garden-line-section .garden-line-wrap .img-wrap img {
    width: 100%;
    height: 100%;
}

#garden .garden-line-section .garden-line-wrap .txt-wrap .title-txt-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

#garden .garden-line-section .garden-line-wrap .txt-wrap .title-txt-wrap .title-dot {
    width: 30px;
    height: 30px;
    background-color: #212121;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Pretendard-Bold';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#garden .garden-line-section .garden-line-wrap .txt-wrap .title-txt-wrap .title-txt {
    color: #212121;
    font-family: 'Pretendard-Bold';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
}

#garden .garden-line-section .garden-line-wrap .txt-wrap .title-txt-wrap .title-img {
    width: 30px;
    height: 30px;
    object-fit: cover;
}

#garden .garden-line-section .garden-line-wrap .txt-wrap p {
    width: 510px;
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 15px;
}

#garden .garden-bg-wrap {
    width: 100%;
    height: 1080px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1920px;
    padding-bottom: 240px;
    -webkit-mask-image: url('../img/sub3_bg.svg'); /* 마스크 이미지 */
    -webkit-mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url('../img/sub3_bg.svg');
}

.sub-wrap iframe {
    pointer-events: none;
}

#movie.sub-wrap iframe {
    pointer-events: auto;
}

#garden .garden-bg-wrap iframe {
    width: 101%;
    height: 114vh;
}

#garden .garden-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#garden .garden-top-section .garden-top-img .garden-top-img-bg.mo {
    display: none;
}

@media (max-width: 1024px) {
    #garden .garden-top-section .garden-top-img {
        height: auto;
    }

    #garden .garden-top-section .garden-top-img .garden-top-img-bg.pc {
        display: none;
    }

    #garden .garden-top-section .garden-top-img .garden-top-img-bg.mo {
        display: block;
    }

    #garden .garden-top-section .garden-top-img .garden-top-img-bg {
        height: 320px;
    }

    #garden .garden-top-section .garden-top-img .garden-logo {
        top: 33%;
        left: 39%;
        width: 50px;
        height: 36px;
        opacity: 0;
    }

    #garden .garden-top-section .garden-top-img .gardem-logo-line {
        top: 38.5%;
        left: 38.8%;
        width: 67px;
        height: 59px;
        opacity: 0;
    }

    #garden .garden-top-section .garden-top-img .garden-top-dot {
        width: 25px;
        height: 25px;
        font-size: 15px;
        opacity: 0;
    }

    #garden .garden-top-section .garden-top-img .garden-top-dot.dot1 {
        bottom: 79%;
        left: 38%;
    }

    #garden .garden-top-section .garden-top-img .garden-top-dot.dot2 {
        top: 16%;
        left: 9%;
    }

    #garden .garden-top-section .garden-top-img .garden-top-dot.dot3 {
        top: 11%;
        left: 6%;
    }

    #garden .garden-top-section .garden-top-img .garden-top-dot.dot4 {
        top: 7%;
        left: 13%;
    }

    #garden .garden-top-section .garden-top-img .garden-top-dot.dot5 {
        top: 5%;
        left: 27%;
    }

    #garden .garden-top-section .garden-top-img .garden-top-dot.dot6 {
        top: 3%;
        left: 43%;
    }

    #garden .garden-top-section .garden-top-img .garden-top-dot.dot7 {
        top: 3%;
        right: 36%;
    }

    #garden .garden-top-section .garden-top-img .garden-top-dot.dot8 {
        top: 8%;
        right: 27%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img .bg {
        opacity: 0.5;
        position: absolute;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img {
        opacity: 0;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img .hover {
        clip-path: inset(0% 0 0 0);
        transition: clip-path 0.7s ease-out;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img1 {
        bottom: 20%;
        left: 31.5%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img2 {
        top: 43%;
        left: 10%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img3 {
        top: 35%;
        left: 7%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img4 {
        top: 30%;
        left: 8%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img5 {
        top: 23%;
        left: 18%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img6 {
        top: 30%;
        left: 17%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img7 {
        top: 16.5%;
        left: 29.5%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img8 {
        top: 15%;
        right: 43.5%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img9 {
        top: 17.6%;
        right: 33%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img10 {
        top: 33%;
        right: 38%;
    }

    #garden .garden-top-section .garden-top-img .garden-top-info {
        position: relative;
        right: 0;
        top: -30px;
        bottom: unset;
        border-radius: 50px 50px 0px 0px;
        height: auto;
        background-color: #fff;
    }

    #garden .garden-top-section .garden-top-info-list {
        padding: 40px 10px 0 10px;
    }

    #garden .garden-top-section .garden-top-info-list .garden-info {
        padding-bottom: 20px;
    }

    #garden .garden-top-section .garden-top-info-list .garden-info.first .title-dot-list-wrap {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    #garden .garden-top-section .garden-top-info-list .garden-info .title-dot-list {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
    }

    #garden .garden-top-section .garden-top-info-list .garden-info .title-dot-list-wrap .title-dot {
        width: 30px;
        height: 30px;
        background-color: #212121;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-family: 'Pretendard-Bold';
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    #garden .garden-top-section .garden-top-info-list .garden-info .title-dot-list-wrap .title-txt {
        color: #212121;
        font-family: 'Pretendard-Bold';
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 20px;
        margin-bottom: 15px;
    }

    #garden .garden-top-section .garden-top-info-list .garden-info.first .title-dot-list-wrap .title-txt {
        margin-bottom: 0;
    }

    #garden .garden-top-section .garden-top-info-list .garden-info > p {
        color: #212121;
        font-family: 'Pretendard-Light';
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: 20px;
        margin-bottom: 5px;
        gap: 5px;
    }

    #garden .garden-top-section .garden-top-info-list .garden-info > p img {
        width: 15px;
        height: 15px;
    }

    #garden .garden-top-section .garden-top-info-list .garden-info > p.red {
        color: #b30000;
    }

    #garden .garden-con-section {
        padding-top: 50px;
        overflow: hidden;
        width: 100%;
    }

    #garden .garden-con-section .garden-con-wrap {
        width: 100%;
        padding-bottom: 20px;
    }

    #garden .garden-con-section .garden-con-wrap .garden-con-img {
        height: 300px;
        margin-bottom: 40px;
    }

    #garden .garden-con-section .garden-con-wrap .garden-con-img .sub-slide-wrap .slide-prev i,
    #garden .garden-con-section .garden-con-wrap .garden-con-img .sub-slide-wrap .slide-next i {
        font-size: 15px;
    }

    #garden .garden-con-section .garden-con-wrap .garden-con-txt {
        width: 90%;
        margin: 0 auto;
    }

    #garden .garden-con-section .garden-con-wrap .garden-con-txt p {
        font-size: 14px;
    }

    #garden .garden-con-section .garden-con-wrap .garden-con-txt p:last-child {
        font-size: 14px;
    }

    #garden .garden-line-section {
        padding-top: 100px;
    }

    #garden .garden-line-section .garden-line-wrap {
        width: 90%;
        padding-bottom: 100px;
    }

    #garden .garden-line-section .garden-line-wrap .garden-line {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    #garden .garden-line-section .garden-line-wrap .garden-line-line {
        display: none;
    }

    #garden .garden-line-section .garden-line-wrap .garden-line[data-eq='2'] {
        flex-direction: column;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap {
        width: 100%;
        height: 250px;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap .garden-dot {
        width: 25px;
        height: 25px;
        font-size: 15px;
        z-index: 11;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap .garden-info-txt {
        font-size: 15px;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='1'] .dot1 {
        top: 45%;
        left: 38%;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='1'] .garden-info-txt {
        top: 18%;
        left: 24%;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='2'] .garden-info-txt {
        top: 18%;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='1'] .garden-img {
        top: 8%;
        right: 40%;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap .svg-img {
        clip-path: inset(0 0 100% 0);
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap .svg-img.aos-animate {
        clip-path: inset(0 0 0 0);
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap .svg-img svg {
        width: 100%;
        height: 100%;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='1'] .svg-img {
        top: 19%;
        left: 38%;
        width: 18px;
        z-index: 10;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='2'] .svg-img {
        top: 32%;
        left: 24%;
        width: 160px;
    }

    #garden .garden-line-section .garden-line-wrap .txt-wrap .title-txt-wrap {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 5px;
    }

    #garden .garden-line-section .garden-line-wrap .txt-wrap .title-txt-wrap .title-dot {
        width: 20px;
        height: 20px;
        font-size: 13px;
    }

    #garden .garden-line-section .garden-line-wrap .txt-wrap .title-txt-wrap .title-txt {
        font-size: 13px;
    }

    #garden .garden-line-section .garden-line-wrap .txt-wrap p {
        width: 100%;
        font-size: 14px;
    }

    #garden .garden-bg-wrap {
        height: 300px;
        padding-bottom: 100px;
    }
}

/* 스페셜 페이지 */

#special .special-con-wrap {
    margin-bottom: 160px;
}

#special .special-con-wrap .con1 {
    display: flex;
    align-items: center;
    gap: 70px;
    width: 1600px;
    margin: 0 auto;
    padding-top: 170px;
    padding-bottom: 130px;
}

#special .special-con-wrap .con1 .img-wrap {
    height: 570px;
    width: 960px;
    overflow: hidden;
}

#special .special-con-wrap .con1 .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#special .special-con-wrap .con1 .info-wrap {
    width: 475px;
}

#special .special-con-wrap .con1 .info-wrap .tit-wrap {
    margin-bottom: 140px;
}

#special .special-con-wrap .con1 .info-wrap .tit-wrap .small-tit {
    display: block;
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

#special .special-con-wrap .con1 .info-wrap .tit-wrap h4 {
    color: #212121;
    font-family: var(--font-cormorant);
    font-size: 80px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

#special .special-con-wrap .con1 .info-wrap .info-txt p {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

#special .special-con-wrap .con2 .txt-wrap {
    margin-bottom: 130px;
}

#special .special-con-wrap .con2 .txt-wrap h6 {
    color: #212121;
    text-align: center;
    font-family: 'Pretendard-Bold';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 15px;
}

#special .special-con-wrap .con2 .txt-wrap p {
    color: #212121;
    text-align: center;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

#special .special-con-wrap .con2 .img-wrap {
    width: 1600px;
    height: 900px;
    margin: 0 auto;
}

#special .special-con-wrap .con2 .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    #special .special-con-wrap {
        margin-bottom: 100px;
    }

    #special .special-con-wrap .con1 {
        flex-direction: column-reverse;
        gap: 20px;
        width: 95%;
        margin: 0 auto;
        padding-top: 30px;
        padding-bottom: 50px;
    }

    #special .special-con-wrap .con1 .img-wrap {
        height: 200px;
        width: 100%;
        overflow: hidden;
    }

    #special .special-con-wrap .con1 .info-wrap {
        width: 100%;
        text-align: center;
    }

    #special .special-con-wrap .con1 .info-wrap .tit-wrap {
        margin-bottom: 30px;
    }

    #special .special-con-wrap .con1 .info-wrap .tit-wrap .small-tit {
        font-size: 15px;
    }

    #special .special-con-wrap .con1 .info-wrap .tit-wrap h4 {
        font-size: 40px;
    }

    #special .special-con-wrap .con1 .info-wrap .info-txt p {
        font-size: 13px;
        line-height: 20px;
    }

    #special .special-con-wrap .con2 .txt-wrap {
        margin-bottom: 100px;
    }

    #special .special-con-wrap .con2 .txt-wrap h6 {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    #special .special-con-wrap .con2 .txt-wrap p {
        font-size: 14px;
        line-height: 20px;
    }

    #special .special-con-wrap .con2 .img-wrap {
        width: 100%;
        height: 300px;
    }
}

#reser .reser-price-wrap {
    width: 1250px;
    margin: 0 auto;
    padding-bottom: 180px;
    text-align: center;
}

#reser .reser-price {
    width: 100%;
}

#reser .reser-price-wrap .btn-wrap {
    margin-top: 70px;
}

#reser .reser-guide-section {
    width: 100%;
    padding-bottom: 180px;
}

#reser .reser-guide-section .reser-guide-wrap {
    width: 100%;
    max-width: 1950px;
    margin: 0 auto;
    display: flex;
}

#reser .reser-guide-section .reser-guide-wrap .img-wrap {
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0;
}

#reser .reser-guide-section .reser-guide-wrap .img-wrap .img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#reser .reser-guide-section .reser-guide-wrap .img-wrap .img iframe {
    width: 101%;
    height: 105vh;
}

#reser .reser-guide-section .reser-guide-wrap .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#reser .reser-guide-section .reser-guide-wrap .img-wrap .img.on {
    opacity: 1;
}

#reser .reser-guide-section .reser-guide-wrap .info-wrap {
    width: 50%;
}

#reser .reser-guide-section .reser-guide-wrap .info-wrap > div {
    padding-left: 100px;
    padding-top: 70px;
    height: 1300px;
}

#reser .reser-guide-section .reser-guide-wrap .info-wrap .info-tit {
    color: #000;
    font-family: var(--font-maruburi);
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
}

#reser .reser-guide-section .reser-guide-wrap .user-info li {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 25px;
}

#reser .reser-guide-section .reser-guide-wrap li .highlight {
    display: inline-block;
    position: relative;
}

#reser .reser-guide-section .reser-guide-wrap li .highlight::before {
    content: '';
    position: absolute;
    left: 0;
    width: 101%;
    height: 22px;
    top: 0px;
    left: -2px;
    background-color: #fffac5;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s linear;
    z-index: -1;
}

#reser .reser-guide-section .reser-guide-wrap li .highlight.aos-animate::before {
    transform: scaleX(1);
}

#reser .reser-guide-section .reser-guide-wrap .user-info li.info-small-tit {
    font-family: 'Pretendard-Bold';
    font-weight: 700;
    margin-bottom: 41px;
}

#reser .reser-guide-section .reser-guide-wrap .user-info li a {
    font-family: 'Pretendard-Bold';
    font-weight: 700;
    display: inline-block;
    color: #000;
}

#reser .reser-guide-section .reser-guide-wrap .reser-info li {
    margin-bottom: 20px;
}

#reser .reser-guide-section .reser-guide-wrap .reser-info .info-small-tit {
    color: #212121;
    font-family: 'Pretendard-Bold';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 5px;
}

#reser .reser-guide-section .reser-guide-wrap .reser-info p {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

#reser .reser-guide-section .reser-guide-wrap .reser-info p a {
    color: #212121;
    font-family: 'Pretendard-Bold';
    font-weight: 700;
}

#reser .reser-guide-section .reser-guide-wrap .reser-info p.dash {
    position: relative;
    padding-left: 12px;
}

#reser .reser-guide-section .reser-guide-wrap .reser-info p.dash::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 1px;
    background-color: #212121;
}

#reser .reser-guide-section .reser-guide-wrap .refund-info .refund-txt {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
}

#reser .reser-guide-section .reser-guide-wrap .refund-info .refund-txt.top {
    margin-bottom: 40px;
}

#reser .reser-guide-section .reser-guide-wrap .refund-info table {
    border-collapse: collapse;
    margin-bottom: 40px;
}

#reser .reser-guide-section .reser-guide-wrap .refund-info table th {
    color: #212121;
    font-family: 'Pretendard-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    padding: 5px 10px;
    border-bottom: 1px solid rgba(33, 33, 33, 0.2);
}

#reser .reser-guide-section .reser-guide-wrap .refund-info table td {
    color: #212121;
    text-align: center;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    padding: 5px 10px;
    border-bottom: 1px solid rgba(33, 33, 33, 0.2);
}

#reser .reser-guide-section .reser-guide-wrap .refund-info table tr.red th,
#reser .reser-guide-section .reser-guide-wrap .refund-info table tr.red td {
    color: #be0000;
}

@media (max-width: 1024px) {
    #reser .tab-menu-wrap.on {
        top: 80px;
    }

    #reser .reser-price-wrap {
        width: 90%;
        padding-bottom: 80px;
    }

    #reser .reser-price {
        width: 100%;
    }

    #reser .reser-price-wrap .btn-wrap {
        margin-top: 50px;
    }

    #reser .reser-guide-section {
        padding-bottom: 80px;
    }

    #reser .reser-guide-section .reser-guide-wrap {
        display: block;
    }

    #reser .reser-guide-section .reser-guide-wrap .img-wrap {
        display: none;
    }

    #reser .reser-guide-section .reser-guide-wrap .img-wrap .img {
        display: none;
    }

    #reser .reser-guide-section .reser-guide-wrap .info-wrap {
        width: 90%;
        margin: 0 auto;
    }

    #reser .reser-guide-section .reser-guide-wrap .info-wrap > div {
        padding-left: 0px;
        padding-top: 100px;
        height: auto;
    }

    #reser .reser-guide-section .reser-guide-wrap .info-wrap .info-tit {
        font-size: 30px;
        margin-bottom: 30px;
    }

    #reser .reser-guide-section .reser-guide-wrap .user-info li {
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 20px;
    }

    #reser .reser-guide-section .reser-guide-wrap .user-info li.info-small-tit {
        margin-bottom: 20px;
    }

    #reser .reser-guide-section .reser-guide-wrap .reser-info li {
        margin-bottom: 15px;
    }

    #reser .reser-guide-section .reser-guide-wrap .reser-info .info-small-tit {
        font-size: 14px;
        line-height: 20px;
    }

    #reser .reser-guide-section .reser-guide-wrap .reser-info p {
        font-size: 14px;
        line-height: 20px;
    }

    #reser .reser-guide-section .reser-guide-wrap .reser-info p.dash {
        position: relative;
        padding-left: 10px;
    }

    #reser .reser-guide-section .reser-guide-wrap .reser-info p.dash::before {
        width: 5px;
    }

    #reser .reser-guide-section .reser-guide-wrap .refund-info .refund-txt {
        font-size: 14px;
        line-height: 20px;
    }

    #reser .reser-guide-section .reser-guide-wrap .refund-info .refund-txt.top {
        margin-bottom: 20px;
    }

    #reser .reser-guide-section .reser-guide-wrap .refund-info table {
        margin: 0 auto 20px auto;
    }

    #reser .reser-guide-section .reser-guide-wrap .refund-info table th {
        color: #212121;
        font-family: 'Pretendard-Medium';
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        padding: 5px 10px;
        border-bottom: 1px solid rgba(33, 33, 33, 0.2);
    }

    #reser .reser-guide-section .reser-guide-wrap .refund-info table td {
        color: #212121;
        text-align: center;
        font-family: 'Pretendard-Light';
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: 20px;
        padding: 5px 10px;
        border-bottom: 1px solid rgba(33, 33, 33, 0.2);
    }
}

#notice .notice-con {
    width: 1400px;
    margin: 0 auto;
    padding-bottom: 100px;
}

@media (max-width: 1024px) {
    #notice .notice-con {
        width: 90%;
        padding-bottom: 80px;
    }

    #notice .tab-menu-wrap .tab-menu {
        justify-content: center;
    }
}

/* 룸프리뷰 슬라이드 영역 */

.room-preview-section {
    height: auto;
    padding-bottom: 240px;
    width: 100%;
}

.room-preview-wrap {
    height: 900px;
    width: 1510px;
    margin: 0 auto;
    max-width: 1510px;
    position: relative;
    overflow: hidden;
}

.room-preview-wrap .room-slide-btn {
    display: flex;
    align-items: center;
    gap: 35px;
    position: absolute;
    bottom: 33.5%;
    left: 15%;
    z-index: 50;
}

.room-preview-wrap .room-slide-btn > div {
    cursor: pointer;
}

.room-preview-wrap .room-slide-btn i {
    font-size: 20px;
    color: #212121;
    display: inline-block;
}

.room-preview-wrap .swiper-wrapper {
    height: 100%;
    width: 100%;
}

.room-preview-wrap .swiper-wrapper .swiper-slide {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-preview-wrap .swiper-wrapper .swiper-slide > div {
    width: 50%;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap > h5 {
    color: #212121;
    font-family: var(--font-cormorant);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-top: 100px;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-tit {
    display: flex;
    align-items: flex-end;
    gap: 40px;
    padding-top: 54px;
    opacity: 0;
    transition: all 0.6s;
}

.room-preview-wrap .swiper-wrapper .swiper-slide-active .info-wrap .room-tit {
    opacity: 1;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-tit .room-num {
    color: #212121;
    font-family: var(--font-cormorant);
    font-size: 80px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-tit h4 {
    color: #212121;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    font-family: var(--font-maruburi);
    font-size: 100px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-tit h4 span {
    color: #212121;
    font-family: var(--font-maruburi);
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-info {
    padding-top: 50px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s;
}

.room-preview-wrap .swiper-wrapper .swiper-slide-active .info-wrap .room-info {
    opacity: 1;
    transform: translateY(0);
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-info .info-tit {
    color: #212121;
    font-family: 'Pretendard-Medium';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-info .vertical-line {
    display: block;
    width: 15px;
    height: 1px;
    background-color: #212121;
    margin: 15px 0;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-info .info1 {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 30px;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-info .info1 .line {
    display: inline-block;
    width: 1px;
    height: 15px;
    background-color: #212121;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-info .info2 {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-bottom: 55px;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-btn-wrap {
    display: flex;
    align-items: center;
    padding-bottom: 90px;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-btn-wrap .btn-wrap {
    margin-right: 90px;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-thum-wrap {
    display: flex;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-thum-wrap img {
    width: 250px;
    height: 150px;
    object-fit: cover;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-thum-wrap img:first-child {
    margin-right: 10px;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-thum-wrap img:last-child {
    margin-top: 60px;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .img-wrap {
    height: 100%;
}

.room-preview-wrap .swiper-wrapper .swiper-slide .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 990px) {
    .room-preview-section {
        padding-bottom: 10px;
    }

    .room-preview-wrap {
        height: 810px;
        width: 100%;
        max-width: unset;
    }

    .room-preview-wrap .room-slide-btn {
        bottom: 21%;
        left: unset;
        right: 10%;
        gap: 30px;
    }

    .room-preview-wrap .room-slide-btn i {
        font-size: 25px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide {
        flex-direction: column-reverse;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap {
        width: 340px;
        height: auto;
        margin-top: 25px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .img-wrap {
        width: 340px;
        height: 250px;
        margin: 0 auto;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap > h5 {
        font-size: 16px;
        padding-top: 0px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-tit {
        gap: 20px;
        padding-top: 20px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-tit .room-num {
        font-size: 40px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-tit h4 {
        gap: 10px;
        font-size: 50px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-tit h4 span {
        color: #212121;
        font-family: var(--font-maruburi);
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-info {
        padding-top: 36px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-info .vertical-line {
        margin: 13px 0;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-info .info1 {
        display: block;
        padding-bottom: 11px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-info .info1 .line {
        display: none;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-info .info2 {
        padding-bottom: 36px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-btn-wrap {
        padding-bottom: 58px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-btn-wrap .btn-wrap {
        margin-right: 0px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-thum-wrap img {
        width: 167px;
        height: 100px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-thum-wrap img:first-child {
        margin-right: 5px;
    }

    .room-preview-wrap .swiper-wrapper .swiper-slide .info-wrap .room-thum-wrap img:last-child {
        margin-top: 30px;
    }
}

/* 스페셜 슬라이드 */

.special-preview-section {
    height: auto;
    padding-bottom: 240px;
    width: 100%;
}

.special-preview-wrap {
    width: 1900px; /* 원하는 프레임 폭 */
    height: 1000px; /* 원하는 프레임 높이 */
    overflow: hidden; /* 내부 이미지가 넘칠 때 잘라내기 */
    position: relative;
    margin: 0 auto;
    display: flex;
    gap: 40px; /* 원하는 간격 */
    align-items: flex-end;
}

.special-preview-wrap .special-preview-info-wrap {
    position: absolute;
    right: 3%;
    top: 0px;
    z-index: 50;
}

.special-preview-wrap .special-preview-info-wrap .inner-wrap {
    width: 900px;
    height: 550px;
    margin-bottom: 50px;
    position: relative;
}

.special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: all 0.6s;
    z-index: 4;
}

.special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info.on {
    pointer-events: auto;
    opacity: 1;
    z-index: 5;
}

.special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .info-txt {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-top: 110px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s;
}

.special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info.on .info-txt {
    opacity: 1;
    transform: translateY(0);
}

.special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .special-tit {
    padding-top: 90px;
    padding-bottom: 50px;
    opacity: 0;
    transition: all 0.6s;
}

.special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info.on .special-tit {
    opacity: 1;
}

.special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .special-tit h6 {
    color: #212121;
    font-family: var(--font-lato);
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 20px;
}

.special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .special-tit .tit {
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

.special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .special-tit .tit h4 {
    color: #212121;
    font-family: var(--font-cormorant);
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .special-tit .tit span {
    color: #212121;
    font-family: 'Pretendard-Light';
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    padding-bottom: 20px;
}

.hero-swiper {
    width: 900px;
    height: 1000px;
    overflow: hidden;
}

.hero-swiper img {
    /* 화면 꽉 차도록 */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── ② 트레일 ─── */
.trail-swiper {
    flex: 1; /* 남은 영역 전부 사용 */
    overflow: hidden;
    position: relative; /* 버튼 배치용 */
    height: 450px;
}

.trail-swiper .swiper-slide {
    width: 400px; /* 고정 폭 */
    height: 450px;
    flex-shrink: 0;
    position: relative;
}

.trail-swiper .swiper-slide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(217, 217, 217, 0.5);
    z-index: 5;
}

.trail-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-preview-wrap .special-slide-btn {
    display: flex;
    align-items: center;
    gap: 35px;
    position: absolute;
    top: 33%;
    right: 10%;
    z-index: 50;
}

.special-preview-wrap .special-slide-btn > div {
    cursor: pointer;
}

.special-preview-wrap .special-slide-btn i {
    font-size: 30px;
    color: #212121;
    display: inline-block;
}

@media (max-width: 990px) {
    .special-preview-section {
        padding-bottom: 20px;
    }

    .special-preview-wrap {
        width: 100%;
        height: 100%;
        flex-direction: column;
        gap: 180px;
        align-items: center;
    }

    .special-preview-wrap .special-slide-btn {
        right: 5%;
        top: unset;
        bottom: 29%;
        gap: 30px;
    }

    .special-preview-wrap .special-slide-btn i {
        font-size: 25px;
    }

    .special-preview-wrap .special-preview-info-wrap {
        position: absolute;
        right: unset;
        left: 5%;
        bottom: 20%;
        top: unset;
        width: 300px;
    }

    .special-preview-wrap .special-preview-info-wrap .inner-wrap {
        width: 100%;
        height: 140px;
        margin-bottom: 0px;
    }

    .special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .info-txt {
        display: none;
    }

    .special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .special-tit {
        padding-top: 0px;
        padding-bottom: 15px;
    }

    .special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .special-tit h6 {
        font-size: 14px;
    }

    .special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .special-tit .tit {
        gap: 20px;
    }

    .special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .special-tit .tit h4 {
        font-size: 40px;
    }

    .special-preview-wrap .special-preview-info-wrap .inner-wrap .specail-info .special-tit .tit span {
        font-size: 16px;
        padding-bottom: 0px;
    }

    .hero-swiper {
        width: 100%;
        height: 400px;
    }

    /* ─── ② 트레일 ─── */
    .trail-swiper {
        flex: 1; /* 남은 영역 전부 사용 */
        height: 120px;
        width: 350px;
        margin: 0 auto;
    }

    .trail-swiper .swiper-slide {
        width: 115px; /* 고정 폭 */
        height: 125px;
    }
}

#footer {
    overflow: hidden;
}

#footer .ft-inner {
    width: 100%;
    height: 980px;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#footer .ft-inner iframe {
    position: absolute;
    z-index: 0;
    width: 100%;
    aspect-ratio: 1905 / 980;
    left: 0;
    top: -10px;
}

#footer .ft-inner .top-ft {
    width: 100%;
    height: 60%;
    position: relative;
    z-index: 10;
}

#footer .ft-inner .top-ft .top-ft-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
    text-align: center;
}

#footer .ft-inner .top-ft .top-ft-txt p {
    color: #fff;
    text-align: center;
    font-family: var(--font-cormorant);
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
}

#footer .ft-inner .top-ft .top-ft-txt p span {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.1s ease, transform 0.1s ease;
}
#footer .ft-inner .top-ft .top-ft-txt.show p span {
    opacity: 1;
    transform: translateY(0);
}

#footer .ft-inner .top-ft .top-ft-txt .btn-wrap {
    background-color: #fff;
    border: none;
    margin-top: 62px;
}

#footer .ft-inner .top-ft .top-ft-txt .btn-wrap:before {
    background-color: #212121;
    height: 100%;
}

#footer .ft-inner .top-ft .top-ft-txt .btn-wrap .inr span {
    color: #212121;
}

#footer .ft-inner .top-ft .top-ft-txt .btn-wrap .inr .clone {
    color: #fff;
}

#footer .ft-inner .top-ft .top-ft-txt .btn-wrap .inr .arrow-wrap .line {
    background-color: #212121;
}

#footer .ft-inner .top-ft .top-ft-txt .btn-wrap .inr .arrow-wrap .line:before {
    background-color: #212121;
}

#footer .ft-inner .top-ft .top-ft-txt .btn-wrap .inr .arrow-wrap .line:after {
    background-color: #212121;
}

#footer .ft-inner .top-ft .top-ft-txt .btn-wrap .inr .clone .arrow-wrap .line {
    background-color: #fff;
}

#footer .ft-inner .top-ft .top-ft-txt .btn-wrap .inr .clone .arrow-wrap .line:before {
    background-color: #fff;
}

#footer .ft-inner .top-ft .top-ft-txt .btn-wrap .inr .clone .arrow-wrap .line:after {
    background-color: #fff;
}

#footer .ft-inner .bottom-ft {
    width: 100%;
    height: 40%;
    position: relative;
    z-index: 10;
}

#footer .ft-inner .bottom-ft .bottom-ft-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(7.5px);
    z-index: 1;
    opacity: 0;
    transform: translateY(100%);
}

#footer .ft-inner .bottom-ft .bottom-ft-bg.aos-animate {
    opacity: 1;
    transform: translateY(0);
}

#footer .ft-inner .bottom-ft .bottom-ft-tit {
    width: 1400px;
    margin: 0 auto;
    padding-top: 60px;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
}

#footer .ft-inner .bottom-ft .bottom-ft-tit h5 {
    color: #fff;
    font-family: var(--font-lato);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

#footer .ft-inner .bottom-ft .bottom-ft-tit .line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 5px 0;
    display: block;
}

#footer .ft-inner .bottom-ft .bottom-ft-tit .bottom-ft-tit-txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#footer .ft-inner .bottom-ft .bottom-ft-tit .bottom-ft-tit-txt span {
    display: inline-block;
    color: #fff;
    font-family: var(--font-lato);
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

#footer .ft-inner .bottom-ft .bottom-ft-con {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 90px;
    position: relative;
    z-index: 2;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info1 {
    text-align: center;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info1 h5 {
    color: #fff;
    font-family: var(--font-cormorant);
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info1 ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info1 ul li {
    width: 50%;
    text-align: center;
    margin-bottom: 15px;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info1 ul li a {
    display: inline-block;
    color: #fff;
    font-family: Pretendard-Light;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info2 {
    text-align: center;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info2 img {
    width: 311px;
    height: 38px;
    object-fit: cover;
    margin-bottom: 48px;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    font-family: Pretendard-Medium;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info2 a i {
    font-size: 20px;
    color: #fff;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info3 h5 {
    color: #fff;
    font-family: var(--font-cormorant);
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
    text-align: right;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info3 p {
    color: #fff;
    text-align: right;
    font-family: Pretendard-Light;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info3 .sns-wrap {
    text-align: right;
    margin-top: 23px;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info3 .sns-wrap a {
    display: inline-block;
    width: 18px;
    height: 16px;
}

#footer .ft-inner .bottom-ft .bottom-ft-con .info3 .sns-wrap a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#footer .ft-inner .bottom-ft .bottom-ft-info {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

#footer .ft-inner .bottom-ft .bottom-ft-info p {
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    font-family: Pretendard-Light;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
}

#footer .ft-inner .bottom-ft .bottom-ft-info p a {
    color: rgba(255, 255, 255, 0.5);
}

#footer .ft-inner .bottom-ft .bottom-ft-info a {
    color: #fff;
    text-align: right;
    font-family: Pretendard-Medium;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

@media all and (max-width: 1440px) {
}

@media all and (max-width: 1400px) {
}

@media (max-width: 1100px) {
    #footer .ft-inner iframe {
        width: 172vw;
        height: 235vh;
        left: 0px;
        top: 10px;
    }
}

@media (max-width: 900px) {
    .pc-br {
        display: none;
    }
    .m-br {
        display: block;
    }

    .pc-map {
        display: none;
    }

    .m-map {
        display: block;
    }

    #footer .ft-inner {
        width: 100%;
        height: 840px;
        max-width: unset;
    }

    #footer .ft-inner iframe {
        width: 371vw;
        height: 111vh;
        left: -80px;
        top: 10px;
    }

    #footer .ft-inner .top-ft {
        height: 45%;
    }

    #footer .ft-inner .top-ft .top-ft-txt {
        width: 90%;
    }

    #footer .ft-inner .top-ft .top-ft-txt p {
        font-size: 25px;
        line-height: 35px;
    }

    #footer .ft-inner .top-ft .top-ft-txt .btn-wrap {
        margin-top: 41px;
    }

    #footer .ft-inner .bottom-ft {
        height: 474px;
        width: 100%;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-tit {
        padding-top: 60px;
        width: 340px;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-tit .line {
        margin: 5px 0;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-con {
        width: 340px;
        flex-direction: column;
        justify-content: unset;
        padding-bottom: 0px;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-con .info1 {
        display: none;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-con .info2 {
        text-align: center;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-con .info2 img {
        width: 217px;
        height: 25px;
        margin-bottom: 41px;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-con .info2 a {
        gap: 17px;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-con .info2 a:nth-child(2) {
        margin-bottom: 20px;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-con .info3 h5 {
        display: none;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-con .info3 p {
        text-align: center;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-con .info3 .sns-wrap {
        display: none;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-info {
        width: 340px;
        flex-direction: column;
        align-items: center;
        justify-content: unset;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-info p {
        margin-bottom: 13px;
        text-align: center;
    }

    #footer .ft-inner .bottom-ft .bottom-ft-info p a {
        color: rgba(255, 255, 255, 0.5);
    }

    #footer .ft-inner .bottom-ft .bottom-ft-info a {
        color: #fff;
        text-align: right;
        font-family: Pretendard-Medium;
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }
}

@media (max-width: 500px) {
    #footer .ft-inner iframe {
        height: 110vh;
    }
}

@media all and (min-width: 2200px) {
    .main-con1 .inner-con {
        max-width: unset;
    }

    .main-con1 .inner-con .left-txt {
        left: 18%;
    }

    .main-con1 .inner-con::before {
        width: 1300px;
    }

    .main-con2 .inner-con {
        max-width: unset;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='1'] .svg-img {
        top: 11%;
        left: 44%;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='2'] .svg-img {
        top: 26%;
        left: 17%;
    }

    #reser .tab-menu-wrap.on {
        top: 67px;
    }
    #prologue .four-season-section .four-season-wrap {
        height: 1000px;
    }
    #prologue .four-season-section .four-season-wrap .img {
        flex: 0 0 2500px;
    }

    #garden .garden-bg-wrap {
        max-width: unset;
        height: 1200px;
    }

    #garden .garden-top-section .garden-top-img .garden-logo {
        top: 35%;
        left: 39%;
        width: 156px;
        height: 110px;
        z-index: 10;
        object-fit: contain;
    }

    #garden .garden-top-section .garden-top-img .garden-top-dot.dot1 {
        bottom: 17%;
        left: 36%;
    }

    #garden .garden-top-section .garden-top-img .gardem-logo-line {
        top: 43.5%;
        left: 38.8%;
        width: 300px;
        height: 250px;
    }

    #garden .garden-top-section .garden-top-img .gardem-logo-line svg {
        width: 100%;
        height: 100%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img svg {
        width: 100%;
        height: 100%;
    }

    #garden .garden-line-section .garden-line-wrap .img-wrap[data-eq='1'] .garden-img {
        top: 4%;
        right: 23%;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img2 {
        top: 43%;
        left: 9%;
        width: 620px;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img3 {
        height: 130px;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img4 {
        top: 30%;
        left: 7.8%;
        width: 220px;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img5 {
        top: 21%;
        left: 17%;
        width: 280px;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img6 {
        top: 30%;
        left: 17%;
        width: 470px;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img7 {
        top: 14.5%;
        left: 28.5%;
        width: 450px;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img8 {
        top: 15%;
        right: 42.5%;
        width: 275px;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img9 {
        top: 16.6%;
        right: 33%;
        width: 220px;
        height: 150px;
    }

    #garden .garden-top-section .garden-top-img .svg-top-img.img10 {
        top: 31%;
        right: 37%;
        width: 478px;
    }

    #footer .ft-inner {
        max-width: unset;
    }

    #footer .ft-inner iframe {
        width: 110%;
        height: 170%;
    }
}
