@charset "utf-8";

/*defualt*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #494237;
}

li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #23315a;
}
button,
input,
a,
label {
    border: none;
    outline: none;
    background-color: transparent;
    box-sizing: none;
}
.wrapper {
    width: 100%;
    position: relative;
}

section {
    position: relative;
    z-index: 10;
    background-color: #f1ece5;
}
.con1 {
    z-index: 11;
}

.m-br {
    display: none;
}

figure {
    position: relative;
}

.btn-wrap a {
    width: 70px;
    height: 70px;
    border: 1px solid #24242461;
    transform: rotate(-45deg);
    display: block;
    position: relative;
    transition: background-color 0.3s ease;
}

.btn-wrap a span {
    color: #242424;
    background-color: #f1ece5;
    display: inline-block;
    font-family: 'MaruBuri';
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 7%;
    transform: translate(0%, -50%) rotate(45deg);
    transition: transform 1s ease, right 1s ease;
    white-space: nowrap;
    /* padding: 5px 10px; */
    /* pointer-events: none; */
    cursor: pointer;
}

.btn-wrap span:hover {
    /* right: 5%; */
    transform: translate(-10%, -5%) rotate(45deg);
}

/* 영상 */

/*header*/

.hd {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 300;
    transition: all 0.5s ease;
    padding: 50px 0 50px 0;
}

.hd.on {
    background-color: rgba(85, 78, 67, 0.85);
    padding: 20px 0;
}

.hd:hover {
    background-color: rgba(85, 78, 67, 0.85);
}

.hd_inner {
    width: 1400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    /* justify-content: space-between; */
    align-items: flex-start;

}

.hd .hd_inner .sns-box {
    position: absolute;
    right: 1%;
    bottom: 1%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.hd:hover .hd_inner .sns-box {
    opacity: 1;
    visibility: visible;
}

.hd .hd_inner .sns-box ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.hd .hd_inner .sns-box img {
    height: 20px;
    width: 20px;
}

.hd .logo {
    width: 105px;
    /* height: 45px; */
    /* margin-bottom: 30px; */
    transition: all 0.5s ease;
    margin-left: 50px;
}

.hd .logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.hd .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hd .main-menu .menu-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    transition: all 0.5s ease;
    margin-top: 20px;
}

.hd .main-menu .menu-wrap .menu-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.hd .main-menu .menu-wrap .menu-list .menu-tit {
    color: #fff;
    font-size: 15px;
    font-family: 'Pretendard-Regular';
    font-weight: 400;
    transition: all 0.3s ease;
}
/* .hd:hover .main-menu .menu-wrap .menu-list .menu-tit {color: #242424;} */

.hd .main-menu .menu-wrap .menu-list .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    max-height: 0;
    overflow: hidden;
}

.hd:hover .main-menu .menu-wrap .menu-list .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 300px;
}

.hd .main-menu .menu-wrap .menu-list .sub-menu li a {
    color: #fff;
    font-size: 14px;
    font-family: 'Pretendard-Regular';
    font-weight: 300;
    transition: all 0.5s ease;
    display: block;
    padding: 5px 0;
}

.hd .main-menu .menu-wrap .menu-list .sub-menu li a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* 햄버거 메뉴 버튼 - PC에서는 숨김 */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    /* top: 10px; */
    right: 0;
    z-index: 300;
    padding: 0;
    margin-left: 10px;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    transform-origin: center;
}
.hd .hd_inner .hd_reser_button {
    display: block;
    width: 76px;
    height: 32px;
    /* border: 1px solid #FFF; */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    background-color: transparent;
    margin-left: 30px;
    margin-top: 20px;
}
.hd .hd_inner .hd_reser_button:hover {
    /* background-color: #FFF; */
}
.hd .hd_inner .hd_reser_button .fa-clock {
    color: rgba(255, 255, 255);
    margin-bottom: 5px;
    transition: 0.5s;
}
.hd .hd_inner .hd_reser_button:hover .fa-clock {
    /* color: rgba(85, 78, 67); */
}
.hd .hd_inner .hd_reser_button span {
    color: #FFF;
    font-size: 15px;
    font-family: 'Pretendard';
    font-weight: 100;
    transition: 0.5s;
}
.hd .hd_inner .hd_reser_button:hover span {
    /* color: rgba(85, 78, 67); */
}

/* 햄버거 버튼 호버 효과 */
.hamburger-btn:hover span {
    box-shadow: 0 0 8px rgba(244, 238, 225, 0.3);
}

/* 햄버거 버튼 활성화 상태 (X 버튼으로 변환) */
.hamburger-btn.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* 활성화 상태에서 호버 효과 */
.hamburger-btn.active:hover span {
    box-shadow: 0 0 12px rgba(244, 238, 225, 0.5);
}

/* 모바일 메뉴 오버레이 - PC에서는 숨김 */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(85, 78, 67, 0.95);
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-logo {
    width: 54px;
    height: 45px;
}

.mobile-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.mobile-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-menu {
    flex: 1;
    display: flex;
    align-items: center;
}

.mobile-menu-list {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.mobile-menu-item {
    margin-bottom: 40px;
    width: 33%;
    text-align: center;
}

.mobile-menu-tit {
    display: block;
    color: #fff;
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.mobile-menu-tit:hover {
    color: #242424;
}

.mobile-sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 0px;
}

.mobile-sub-menu li {
    margin-bottom: 5px;
}

.mobile-sub-menu li a {
    color: #fff;
    font-size: 14px;
    font-family: 'Pretendard-Regular';
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.mobile-sub-menu li a:hover {
    color: #fff;
    transform: translateX(10px);
}

.mobile-sns-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
}

.mobile-sns-box ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-sns-box img {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .hd .hd_inner .sns-box {
        display: none;
    }
    .m-br {
        display: block;
    }

    .hd {
        padding: 20px 0 20px 0;
    }
    .hd.on {padding: 15px 0;}
    .hd_inner {
        display: flex;
        width: 95%;
        padding-left: 20px;
        justify-content: space-between;
        align-items: center;
    }
    .hd_inner .m_menu_bar {margin-right: 25px;}
    
    .hd .logo {
        /* margin-bottom: 10px; */
        width: 90px;
        float: unset;
        margin-left: 0;
    }
    .hd .hd_inner .hd_reser_button {margin-left: 0;}

    /* PC 메뉴 숨김 */
    .hd .main-menu {
        display: none;
    }

    /* 햄버거 메뉴 버튼 표시 */
    .hamburger-btn {
        display: flex;
    }

    /* 모바일 메뉴 오버레이 표시 */
    .mobile-menu-overlay {
        display: block;
    }
    .mobile-menu-tit {
        font-size: 17px;
    }
}

/*main*/

.top-slide-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #494237;
}

.main-slide-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-slide-wrap .main-tit-wrap {
    position: absolute;
    bottom: 20%;
    left: 13%;
    z-index: 10;
}

.main-slide-wrap .main-tit-wrap h2 {
    color: #fff;
    font-size: 30px;
    font-family: 'MaruBuri';
    font-weight: 400;
    margin-bottom: 20px;
}

.main-slide-wrap .main-tit-wrap .txt-wrap {
    margin-bottom: 10px;
}

.main-slide-wrap .main-tit-wrap .txt-wrap p {
    color: #fff;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    font-weight: 400;
    line-height: 22px;
}

.main-slide-wrap .sub-tit-wrap {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.main-slide-wrap .sub-tit-wrap h2 {
    color: #fff;
    font-size: 30px;
    text-align: center;
    font-family: 'MaruBuri';
    font-weight: 400;
    margin-bottom: 20px;
}

.swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
    width: 100%;
    height: 100%;
}

/* 페이지네이션 스타일 */

.main-wrap {
    overflow: hidden;
}

.main-slide-wrap .page-wrap {
    cursor: pointer;
    z-index: 20;
}

.main-slide-wrap .page {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: 'Pretendard-Regular';
    justify-content: center;
}

.main-slide-wrap .page-front,
.main-slide-wrap .page-last {
    font-size: 14px;
    font-weight: 400;
    width: 20px;
}

.main-slide-wrap .guage-bg {
    width: 120px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.main-slide-wrap .guage-bar {
    display: block;
    height: 100%;
    background-color: #fff;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.main-slide-wrap .guage-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

.top-img-wrap {
    width: 100%;
    height: 100vh;
}

.top-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.5);
}

.top-img-wrap .sub-tit-wrap {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.top-img-wrap .sub-tit-wrap h2 {
    color: #fff;
    font-size: 30px;
    text-align: center;
    font-family: 'MaruBuri';
    font-weight: 400;
    margin-bottom: 20px;
}

.main-gallery-section {
    padding: 100px 0;
}

.main-gallery-section .tit {
    color: #242424;
    text-align: center;
    font-size: 18px;
    font-family: 'MaruBuri';
    font-weight: 400;
    margin-bottom: 50px;
}

.main-gallery-section .gallery-wrap {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    height: 840px;
}

.main-gallery-section .gallery-wrap .img1,
.main-gallery-section .gallery-wrap .img3 {
    width: 350px;
    height: 100%;
}

.main-gallery-section .gallery-wrap .img1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main-gallery-section .gallery-wrap .img1 img {
    height: 400px;
}

.main-gallery-section .gallery-wrap .img1 img:nth-child(1) {
    margin-bottom: 50px;
}

.main-gallery-section .gallery-wrap .img2 {
    width: 630px;
    height: 100%;
}

.main-gallery-section .gallery-wrap .img2 img,
.main-gallery-section .gallery-wrap .img3 img {
    height: 100%;
}

.main-gallery-section .gallery-wrap .img3 {
    position: relative;
}

.main-gallery-section .gallery-wrap .img3 .img-txt {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
}

.main-gallery-section .gallery-wrap .img3 .img-txt p {
    text-align: center;
    color: #fff;
    font-family: 'MaruBuri';
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.main-gallery-section .gallery-wrap .img-wrap img {
    width: 100%;
}

.main-bg-section {
    padding-top: 200px;
}

.main-bg-section .map-bg {
    width: 100%;
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.main-bg-section .map-bg .map-bg-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.main-bg-section .map-bg .map-bg-txt .txt-wrap {
    margin-bottom: 20px;
}

.main-bg-section .map-bg .map-bg-txt .txt-wrap p {
    font-family: 'Arita Buri KR';
    text-align: center;
    font-weight: 200;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
}

.main-bg-section .map-bg .map-bg-txt .bg-btn {
    width: 100%;
    text-align: center;
    padding: 10px 0;
}

.main-bg-section .map-bg .map-bg-txt .bg-btn a {
    border: 1px solid rgba(244, 238, 225, 0.5);
    padding: 10px 20px;
    color: rgba(244, 238, 225, 0.8);
    font-family: 'Pretendard-Regular';
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    position: relative;
    overflow: hidden;
    transition: all 1s ease;
    display: inline-block;
    text-decoration: none;
}

.main-bg-section .map-bg .map-bg-txt .bg-btn a::before {
    content: 'RESERVATION';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: #242424;
    transition: all 0.7s ease;
    white-space: nowrap;
}

.main-bg-section .map-bg .map-bg-txt .bg-btn a:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: transparent;
}

.main-bg-section .map-bg .map-bg-txt .bg-btn a:hover::before {
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .main-wrap .top-slide-section {
        height: 600px;
    }

    .top-slide-section {
        height: 300px;
    }

    .main-slide-wrap .main-tit-wrap {
        bottom: 5%;
        left: 5%;
    }

    .main-slide-wrap .main-tit-wrap .txt-wrap p {
        font-size: 14px;
    }

    .main-slide-wrap .page-front,
    .main-slide-wrap .page-last {
        font-size: 13px;
        width: 15px;
    }

    .main-slide-wrap .guage-bg {
        width: 120px;
        height: 2px;
    }

    .top-img-wrap {
        height: 300px;
    }

    .top-img-wrap .sub-tit-wrap {
        bottom: 5%;
    }

    .main-slide-wrap .sub-tit-wrap h2 {
        font-size: 15px;
    }

    .top-img-wrap .sub-tit-wrap h2 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .main-gallery-section {
        padding: 50px 0;
    }

    .main-gallery-section .tit {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .main-gallery-section .gallery-wrap {
        width: 90%;
        height: 230px;
    }

    .main-gallery-section .gallery-wrap .img1,
    .main-gallery-section .gallery-wrap .img3 {
        width: 40%;
    }

    .main-gallery-section .gallery-wrap .img-wrap img {
        object-fit: cover;
    }

    .main-gallery-section .gallery-wrap .img1 {
        display: none;
    }

    .main-gallery-section .gallery-wrap .img2 {
        width: 58%;
    }

    .main-gallery-section .gallery-wrap .img3 .img-txt p {
        text-align: center;
        color: #fff;
        font-family: 'MaruBuri';
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
    }

    .main-bg-section {
        padding-top: 0px;
    }

    .main-bg-section .map-bg {
        height: 250px;
    }

    .main-bg-section .map-bg .map-bg-txt .txt-wrap {
        margin-bottom: 20px;
    }

    .main-bg-section .map-bg .map-bg-txt .txt-wrap p {
        font-size: 14px;
    }

    .main-bg-section .map-bg .map-bg-txt .bg-btn a {
        padding: 5px 15px;
        color: #fff;
    }
}

/* 풍경 */

.view-con {
    padding: 100px 0;
    overflow: hidden;
}

.view-con .tit {
    color: #242424;
    text-align: center;
    font-size: 18px;
    font-family: 'MaruBuri';
    font-weight: 300;
    margin-bottom: 50px;
}

.view-con .gallery-wrap {
    width: 1600px;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    height: 1000px;
    position: relative;
}

.view-con .gallery-wrap .img-wrap {
    width: 900px;
    height: auto;
}

.view-con .gallery-wrap .img-wrap img {
    width: 100%;
    height: 640px;
}
.view-con .gallery-wrap .img-wrap .img-info {
    margin-top: 20px;
    color: #242424;
    font-size: 13px;
    font-family: 'MaruBuri';
    font-weight: 200;
    line-height: 20px;
}

.view-con .gallery-wrap .txt-wrap {
    padding-left: 50px;
}

.view-con .gallery-wrap .txt-wrap p {
    color: #242424;
    font-family: 'Arita Buri KR';
    font-weight: 400;
    line-height: 20px;
}

.view-con .gallery-wrap .txt-wrap p.txt1 {
    padding-top: 13rem;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.view-con .gallery-wrap .txt-wrap p.txt2 {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.view-con .gallery-wrap .view-img {
    position: absolute;
    bottom: -205px;
    right: 0;
    width: 960px;
    height: 560px;
}

.view-con .gallery-wrap .view-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .view-con {
        padding: 50px 0 80px;
    }

    .view-con .tit {
        margin-bottom: 0;
    }

    .view-con .gallery-wrap {
        width: 90%;
        flex-direction: column-reverse;
        justify-content: flex-end;
        height: 1057px;
    }

    .view-con .gallery-wrap .img-wrap {
        width: 100%;
        height: auto;
    }

    .view-con .gallery-wrap .img-wrap img {
        width: 100%;
        height: 270px;
    }

    .view-con .gallery-wrap .img-wrap .img-info {
        font-size: 11px;
    }

    .view-con .gallery-wrap .txt-wrap {
        padding-left: 0px;
        padding-bottom: 50px;
    }

    .view-con .gallery-wrap .txt-wrap p.txt1 {
        padding-top: 0;
        font-size: 15px;
        margin-bottom: 20px;
    }

    .view-con .gallery-wrap .txt-wrap p.txt2 {
        font-size: 13px;
    }

    .view-con .gallery-wrap .view-img {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 250px;
    }
}
@media (max-width: 430px) {
    .view-con .gallery-wrap .view-img {
        bottom: 10px;
    }
}
@media (max-width: 320px) {
    .view-con .gallery-wrap .view-img {
        bottom: -54px;
    }
}

/* 객실 */

.room-con {
    padding-top: 100px;
    overflow: hidden;
}

.room-con .tit {
    color: #242424;
    text-align: center;
    font-size: 18px;
    font-family: 'MaruBuri';
    font-weight: 300;
    margin-bottom: 150px;
}

.room-con .gallery-wrap {
    width: 1650px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    height: auto;
}

.room-con .gallery-wrap .left {
    width: 820px;
    height: 100%;
}
.room-con .gallery-wrap .left .img-wrap {
    width: 100%;
    position: relative;
    height: 805px; /* 480 + 15 + 310 */
}

.room-con .gallery-wrap .left .img-wrap img:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 480px;
    object-fit: cover;
}

.room-con .gallery-wrap .left .img-wrap img:nth-child(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 310px;
    object-fit: cover;
}

.room-con .gallery-wrap .left .img-wrap img:nth-child(3) {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 310px;
    object-fit: cover;
}

.room-con .gallery-wrap .left .img-wrap img:nth-child(4) {
    position: absolute;
    top: 325px; /* 310 + 15px gap */
    right: 0;
    width: 400px;
    height: 480px;
    object-fit: cover;
}

.room-con .gallery-wrap .left .img-txt {
    font-size: 13px;
    font-family: 'MaruBuri';
    font-weight: 200;
    line-height: 20px;
    color: #242424;
    margin-top: 10px;
}

.room-con .gallery-wrap .right {
    position: relative;
}

.room-con .gallery-wrap .right .room-tit {
    font-family: 'MaruBuri';
    font-size: 30px;
    font-weight: 300;
    color: #242424;
    margin-bottom: 20px;
    line-height: 35px;
}

.room-con .gallery-wrap .right .room-txt {
    font-family: 'Pretendard-Regular';
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: #242424;
    margin-bottom: 50px;
}

.room-con .gallery-wrap .right .room-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 80px;
    width: 540px;
}

.room-con .gallery-wrap .right .room-info-wrap .room-info-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(115 115 115 / 80%);
}

.room-con .gallery-wrap .right .room-info-wrap .room-info-tit span {
    font-family: 'Arita Buri KR';
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: #242424;
}

.room-con .gallery-wrap .right .room-info-wrap .room-info-tit i {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #242424;
    transition: transform 0.5s ease;
}

.room-con .gallery-wrap .right .room-info-wrap .room-info-item.active .room-info-tit i {
    transform: rotate(45deg);
}

.room-con .gallery-wrap .right .room-info-wrap .room-info-txt {
    font-family: 'Pretendard-Regular';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #242424;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    word-break: keep-all;
}

.room-con .gallery-wrap .right .room-info-wrap .room-info-item.active .room-info-txt {
    max-height: 150px;
    margin-top: 10px;
    word-break: keep-all;
    margin-bottom: 25px;
}

/* .room-con .gallery-wrap .right .room-price-wrap {
    border: 1px solid rgba(248, 235, 207, 0.3);
} */

.room-con .gallery-wrap .right .room-price-wrap table {
    border-collapse: collapse;
}

.room-con .gallery-wrap .right .room-price-wrap th,
.room-con .gallery-wrap .right .room-price-wrap td {
    text-align: center;
    font-family: 'Pretendard-Regular';
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    padding: 10px 15px;
    color: #fff;
    /* border: 1px solid rgba(248, 235, 207, 0.8); */
}
/* .room-con .gallery-wrap .right .room-price-wrap td.room-tit {background-color: #4d4336;} */
.room-con .gallery-wrap .right .room-price-wrap th {
    background-color: rgb(85, 78, 67);
    border-left: 1px solid rgb(115 115 115 / 80%);
    border-right: 1px solid rgb(115 115 115 / 80%);
}
/* .room-con .gallery-wrap .right .room-price-wrap th:first-of-type {border-left: none;}
.room-con .gallery-wrap .right .room-price-wrap th:last-of-type {border-right: none;} */
.room-con .gallery-wrap .right .room-price-wrap tr:first-of-type {
    font-weight: 500;
}
.room-con .gallery-wrap .right .room-price-wrap td {
    border: 1px solid rgb(115 115 115 / 80%);
    color: #242424;
}

.room-con .gallery-wrap .right .room-btn {
    margin-top: 50px;
    position: relative;
    height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.room-con .room-btn.btn-wrap a span {top: 20px;}
.room-con .room-btn.btn-wrap a span:hover {transform: translate(12%, -5%) rotate(45deg);}

@media (max-width: 768px) {
    .room-con {
        padding: 50px 0 80px;
    }

    .room-con .tit {
        margin-bottom: 50px;
    }

    .room-con .gallery-wrap {
        width: 90%;
        flex-direction: column-reverse;
        gap: 20px;
        height: auto;
    }

    .room-con .gallery-wrap .left {
        width: 100%;
        height: auto;
    }
    .room-con .gallery-wrap .left .img-wrap {
        width: 100%;
        position: relative;
        height: auto;
    }

    .room-con .gallery-wrap .left .img-wrap img:nth-child(1) {
        position: static;
        width: 100%;
        height: 350px;
    }

    .room-con .gallery-wrap .left .img-wrap img:nth-child(2) {
        position: static;
        width: 100%;
        height: 200px;
    }

    .room-con .gallery-wrap .left .img-wrap img:nth-child(3) {
        position: static;
        width: 100%;
        height: 200px;
    }

    .room-con .gallery-wrap .left .img-wrap img:nth-child(4) {
        position: static;
        width: 100%;
        height: 350px;
    }

    .room-con .gallery-wrap .left .img-txt {
        font-size: 13px;
        font-family: 'MaruBuri';
        font-weight: 200;
        line-height: 20px;
        color: #242424;
        margin-top: 10px;
    }

    .room-con .gallery-wrap .right {
        position: relative;
        padding-bottom: 100px;
    }

    .room-con .gallery-wrap .right .room-tit {
        font-size: 25px;
        line-height: 30px;
    }

    .room-con .gallery-wrap .right .room-txt {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 30px;
    }

    .room-con .gallery-wrap .right .room-info-wrap {
        gap: 10px;
        margin-bottom: 50px;
        width: 100%;
    }

    .room-con .gallery-wrap .right .room-info-wrap .room-info-tit {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding-bottom: 10px;
        margin-bottom: 10px;
        /* border-bottom: 1px solid rgba(248, 235, 207, 0.8); */
    }

    .room-con .gallery-wrap .right .room-info-wrap .room-info-tit span {
        font-family: 'Arita Buri KR';
        font-size: 14px;
        line-height: 16px;
        color: #242424;
    }

    .room-con .gallery-wrap .right .room-info-wrap .room-info-tit i {
        font-size: 13px;
        font-weight: 400;
        line-height: 16px;
        color: #242424;
        transition: transform 0.5s ease;
    }

    .room-con .gallery-wrap .right .room-info-wrap .room-info-item.active .room-info-tit i {
        transform: rotate(45deg);
    }

    .room-con .gallery-wrap .right .room-info-wrap .room-info-txt {
        font-size: 13px;
    }

    .room-con .gallery-wrap .right .room-info-wrap .room-info-item.active .room-info-txt {
        margin-top: 10px;
    }

    .room-con .gallery-wrap .right .room-price-wrap {
        border: 1px solid rgba(248, 235, 207, 0.3);
    }

    .room-con .gallery-wrap .right .room-price-wrap table {
        border-collapse: collapse;
    }

    .room-con .gallery-wrap .right .room-price-wrap th,
    .room-con .gallery-wrap .right .room-price-wrap td {
        text-align: center;
        font-size: 13px;
        padding: 0px 5px;
    }

    .room-con .gallery-wrap .right .room-btn {
        margin-top: 30px;
        text-align: right;
    }
}

/* 스페셜페이지 */

.special-con {
    padding-top: 100px;
    overflow: hidden;
}

.special-con .tit {
    color: #242424;
    text-align: center;
    font-size: 18px;
    font-family: 'MaruBuri';
    font-weight: 300;
    margin-bottom: 100px;
}

.special-con .gallery-wrap {
    width: 1630px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    /* height: 780px; */
}

.special-con .gallery-wrap .left .img-wrap {
    width: 810px;
    height: 550px;
}

.special-con .gallery-wrap .left .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-con .gallery-wrap .left .img-txt {
    font-family: 'MaruBuri';
    font-size: 13px;
    font-weight: 200;
    line-height: 20px;
    color: #242424;
    margin-top: 20px;
}
.special-con .gallery-wrap .right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.special-con .gallery-wrap .right .special-tit {
    font-family: 'MaruBuri';
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    color: #242424;
    margin-top: 90px;
    margin-bottom: 20px;
}

.special-con .gallery-wrap .right .special-txt {
    font-family: 'Pretendard-Regular';
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: #242424;
    margin-bottom: 180px;
}

.special-con .gallery-wrap .right .special-thum-wrap {
    display: flex;
    gap: 50px;
}

.special-con .gallery-wrap .right .special-thum-wrap img {
    width: 350px;
    height: 350px;
    object-fit: cover;
}
.special-bottom-txt {
    font-family: 'MaruBuri';
    font-size: 13px;
    font-weight: 200;
    line-height: 20px;
    color: #242424;
    display: block;
}

@media (max-width: 768px) {
    .special-con {
        padding-top: 50px;
    }

    .special-con .tit {
        margin-bottom: 50px;
    }

    .special-con .gallery-wrap {
        width: 90%;
        flex-direction: column-reverse;
        gap: 20px;
        height: auto;
        padding-bottom: 80px;
    }

    .special-con .gallery-wrap .left .img-wrap {
        width: 100%;
        height: 250px;
    }

    .special-con .gallery-wrap .left .img-txt {
        font-size: 11px;
        margin-top: 10px;
    }

    .special-con .gallery-wrap .right .special-tit {
        font-size: 15px;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .special-con .gallery-wrap .right .special-txt {
        font-size: 13px;
        margin-bottom: 50px;
    }

    .special-con .gallery-wrap .right .special-thum-wrap {
        display: flex;
        gap: 20px;
        justify-content: space-between;
    }

    .special-con .gallery-wrap .right .special-thum-wrap img {
        width: 47%;
        height: auto;
        object-fit: cover;
    }
    .special-bottom-txt {
        /* font-size: 11px; */
        display: none;
    }
}

/* 여행 안내 */

.tour-con {
    overflow: hidden;
}

.tour-con .tit-wrap {
    padding-top: 50px;
}

.tour-con .tit-wrap .tit {
    font-family: 'MaruBuri';
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    color: #242424;
}

.tour-con .container {
    max-width: 1350px;
    margin: 0 auto;
    padding-top: 150px;
    padding-bottom: 200px;
}

.tour-con .grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.tour-con .item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 570px;
}

.tour-con .item:nth-child(even) {
    margin-top: 180px;
}

.tour-con .item-image {
    width: 100%;
    height: 410px;
    overflow: hidden;
}

.tour-con .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-con .item-content {
    padding-top: 20px;
    color: #242424;
}
.tour-con .item-content h3 {
    font-family: 'Arita Buri KR';
    font-size: 28px;
    font-weight: 500;
    line-height: normal;
}

.tour-con .item-content h4 {
    font-family: 'Pretendard-Light';
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
}
.tour-con .item-content p.marginb {padding-top: 10px;}

.tour-con .item-content p {
    padding-top: 30px;
    font-family: 'Pretendard-Light';
    font-size: 16px;
    line-height: 25px;
    font-weight: 300;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .tour-con .container {
        padding: 50px 0;
    }

    .tour-con .grid {
        gap: 50px;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
        justify-content: center;
    }

    .tour-con .item {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .tour-con .item:nth-child(even) {
        margin-top: 0px;
    }

    .tour-con .item-image {
        height: 210px;
    }

    .tour-con .item-content h3 {
        font-size: 20px;
    }

    .tour-con .item-content h4 {
        font-size: 14px;
    }

    .tour-con .item-content p {
        padding-top: 20px;
        font-size: 14px;
    }
}

.map-con {
    padding: 100px 0 150px 0;
    overflow: hidden;
}

.map-con .tit-wrap {
    padding-top: 0px;
    padding-bottom: 100px;
}

.map-con .tit-wrap .tit {
    font-family: 'MaruBuri';
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    color: #242424;
}

.map-con .pc-map {
    width: 100%;
    margin: 0 auto;
    height: auto;
}

.map-con .m-map {
    display: none;
}

.root_daum_roughmap .cont {
    display: none;
}

.map-con .map-wrap {
    width: 1250px;
    margin: 0 auto;
}

.map-con .map-wrap .map-info-wrap {
    margin-top: 60px;
    width: 100%;
}

.map-con .map-wrap .map-info-wrap .map-info-tit {
    padding-bottom: 10px;
    border-bottom: 1px solid #242424;
}

.map-con .map-wrap .map-info-wrap .map-info-tit h3 {
    font-family: 'MaruBuri';
    font-size: 25px;
    font-weight: 300;
    line-height: 30px;
    color: #242424;
}

.map-con .map-wrap .map-info-wrap .map-info-txt {
    padding-top: 20px;
}

.map-con .map-wrap .map-info-wrap .map-info-txt p {
    font-family: 'Pretendard-Regular';
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    color: #242424;
}

@media (max-width: 768px) {
    .map-con {
        padding: 50px 0 100px 0;
    }

    .map-con .tit-wrap {
        padding-bottom: 50px;
    }

    .map-con .pc-map {
        display: none;
    }

    .map-con .m-map {
        display: block;
    }

    .map-con .map-wrap {
        width: 90%;
        margin: 0 auto;
    }

    .map-con .map-wrap .map-info-wrap {
        margin-top: 30px;
        width: 330px;
        margin: 30px auto 0 auto;
    }

    .map-con .map-wrap .map-info-wrap .map-info-tit {
        padding-bottom: 5px;
    }

    .map-con .map-wrap .map-info-wrap .map-info-tit h3 {
        font-family: 'MaruBuri';
        font-size: 20px;
        font-weight: 300;
        line-height: 20px;
        color: #242424;
    }

    .map-con .map-wrap .map-info-wrap .map-info-txt {
        padding-top: 20px;
    }

    .map-con .map-wrap .map-info-wrap .map-info-txt p {
        font-family: 'Pretendard-Regular';
        font-size: 15px;
        line-height: 20px;
        font-weight: 400;
        color: #242424;
    }
}

/* 예약안내 */

.reser-con {
    padding: 100px 0 150px 0;
    overflow: hidden;
}

.reser-con .tit-wrap {
    text-align: center;
    margin-bottom: 90px;
}

.reser-con .tit-wrap h5 {
    font-family: 'MaruBuri';
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    color: #242424;
}

.reser-con .tit-wrap h4 {
    font-family: 'MaruBuri';
    font-size: 45px;
    font-weight: 200;
    line-height: 48px;
    color: #242424;
}

.reser-con .guide-wrap {
    width: 1600px;
    height: auto;
    padding-bottom: 200px;
    margin: 0 auto;
    display: flex;
    position: relative;
    justify-content: space-evenly;
    border-bottom: 1px solid #242424;
}

.reser-con .guide-wrap.sec {
    padding-top: 200px;
    height: auto;
    border-bottom: none;
}

.reser-con .guide-wrap .img-wrap {
    width: 480px;
    height: 350px;
}

.reser-con .guide-wrap .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reser-con .guide-wrap h6 {
    font-family: 'Arita Buri KR';
    font-size: 21px;
    font-weight: 400;
    line-height: 20px;
    color: #242424;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.reser-con .guide-wrap h6::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background-color: #242424;
}

.reser-con .guide-wrap .info-wrap {
    width: 700px;
}

.reser-con .guide-wrap .reser-info {
    margin-bottom: 30px;
}

.reser-con .guide-wrap .reser-info .info-txt p {
    font-family: 'Pretendard-Regular';
    font-size: 17px;
    line-height: 25px;
    font-weight: 300;
    color: #242424;
}

.reser-con .guide-wrap .reser-info .info-txt p a {
    color: #242424;
}

.reser-con .guide-wrap .user-info {
    margin-bottom: 100px;
}

.reser-con .guide-wrap .user-info .info-list li {
    font-family: 'Pretendard-Regular';
    font-size: 15px;
    line-height: 23px;
    font-weight: 300;
    color: #242424;
    position: relative;
}
.reser-con .guide-wrap .user-info .info-list li.margintop {margin-top: 15px;}
.reser-con .guide-wrap .user-info .info-list li.dash-bar::before {content: '-'; position: absolute; left: 0;}
.reser-con .guide-wrap .user-info .info-list li.dash-bar {padding-left: 10px; position: relative;}

/* .reser-con .guide-wrap .user-info .info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background-color: #242424;
} */
/* .reser-con .guide-wrap .reser-price-wrap {
    width: 700px;
} */
.reser-con .guide-wrap .reser-price-wrap table {
    border-collapse: collapse;
    width: 700px;
}

.reser-con .guide-wrap .reser-price-wrap th,
.reser-con .guide-wrap .reser-price-wrap td {
    text-align: center;
    font-family: 'Pretendard-Regular';
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding: 10px 15px;
    color: #fff;
    border: 1px solid rgba(248, 235, 207, 0.3);
}

.reser-con .guide-wrap .reser-price-wrap th {
    background-color: rgb(85, 78, 67);
    border-left: 1px solid rgb(115 115 115 / 80%);
    border-right: 1px solid rgb(115 115 115 / 80%);
}

.reser-con .guide-wrap .reser-price-wrap td {
    border: 1px solid rgb(115 115 115 / 80%);
    color: #242424;
}

.reser-con .guide-wrap .btn-wrap {
    margin-top: 50px;
    position: relative;
    height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.reser-con .guide-wrap .caution-wrap {
    padding-bottom: 70px;
    border-bottom: 1px solid #242424;
}

.reser-con .guide-wrap .caution-list li {
    margin-bottom: 25px;
}

.reser-con .guide-wrap .caution-list li h5 {
    font-family: 'Arita Buri KR';
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #242424;
    margin-bottom: 5px;
}

.reser-con .guide-wrap .caution-list li p.dash-bar {
    font-family: 'Pretendard-Regular';
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    color: #242424;
    position: relative;
    padding-left: 10px;
}
.reser-con .guide-wrap .caution-list li p.dash-bar:before {content: '-'; position: absolute; left: 0;}

.reser-con .guide-wrap .refund-wrap {
    padding-top: 70px;
}

.reser-con .guide-wrap .refund-wrap .refund-txt {
    margin-bottom: 70px;
}
.reser-con .guide-wrap .refund-wrap .refund-txt.refund-txt1 {
    margin-bottom: 0;
    margin-top: 50px;
}
.reser-con .guide-wrap .btn-wrap a span {top: 18px;}
.reser-con .guide-wrap .btn-wrap a span:hover {transform: translate(6%, -5%) rotate(45deg);}
.reser-con .guide-wrap .refund-wrap .refund-txt p {
    font-family: 'Pretendard-Regular';
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    color: #242424;
}

.reser-con .guide-wrap .refund-wrap .refund-table {
    border-collapse: collapse;
}
.reser-con .guide-wrap .refund-wrap .refund-table .red-font {
    color: #d50000;
}

.reser-con .guide-wrap .refund-wrap .refund-table th,
.reser-con .guide-wrap .refund-wrap .refund-table td {
    text-align: center;
    font-family: 'Pretendard-Light';
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: #242424;
    padding: 5px 20px;
    border: 1px solid rgb(115 115 115 / 80%);
}

.reser-con .guide-wrap .refund-wrap .refund-table th {
    background-color: rgb(85, 78, 67);
    color: #fff;
}
#notice-wrap .reser-con .guide-wrap {
    border-bottom: none;
}

@media (max-width: 768px) {
    .reser-con {
        padding: 50px 0 0px 0;
    }

    .reser-con .tit-wrap {
        margin-bottom: 50px;
    }

    .reser-con .tit-wrap h5 {
        font-size: 18px;
        line-height: 30px;
    }

    .reser-con .tit-wrap h4 {
        font-size: 30px;
        line-height: 40px;
    }

    .reser-con .guide-wrap {
        width: 90%;
        height: auto;
        flex-direction: column;
        justify-content: center;
        padding-bottom: 100px;
    }

    .reser-con .guide-wrap.sec {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .reser-con .guide-wrap .img-wrap {
        width: 100%;
        height: 250px;
        margin-bottom: 50px;
    }

    .reser-con .guide-wrap h6 {
        font-family: 'Arita Buri KR';
        font-size: 16px;
        margin-bottom: 10px;
    }

    .reser-con .guide-wrap .info-wrap {
        width: 100%;
    }

    .reser-con .guide-wrap .reser-info {
        margin-bottom: 20px;
    }

    .reser-con .guide-wrap .reser-info .info-txt p {
        font-size: 15px;
    }

    .reser-con .guide-wrap .user-info {
        margin-bottom: 50px;
    }

    .reser-con .guide-wrap .user-info .info-list li {
        font-size: 13px;
    }

    /* .reser-con .guide-wrap .user-info .info-list li::before {
        top: 0.6rem;
    } */

    .reser-con .guide-wrap .reser-price-wrap th,
    .reser-con .guide-wrap .reser-price-wrap td {
        font-size: 13px;
        padding: 0px 5px;
    }

    .reser-con .guide-wrap .btn-wrap {
        bottom: 5%;
        right: 10%;
    }

    .reser-con .guide-wrap .caution-wrap {
        padding-bottom: 50px;
    }

    .reser-con .guide-wrap .caution-list li h5 {
        font-size: 13px;
    }

    .reser-con .guide-wrap .caution-list li p.dash-bar {
        font-size: 13px;
    }

    .reser-con .guide-wrap .refund-wrap {
        padding-top: 50px;
    }

    .reser-con .guide-wrap .refund-wrap .refund-txt {
        margin-bottom: 50px;
    }

    .reser-con .guide-wrap .refund-wrap .refund-txt p {
        font-size: 13px;
    }

    .reser-con .guide-wrap .refund-wrap .refund-table {
        margin: 0 auto;
    }

    .reser-con .guide-wrap .refund-wrap .refund-table th,
    .reser-con .guide-wrap .refund-wrap .refund-table td {
        font-size: 13px;
        padding: 5px 10px;
    }
    .reser-con .guide-wrap .reser-price-wrap table {
        width: unset;
    }
}

/* 룸 프리뷰 */

.room-preview-section {
    padding: 100px 0;
    overflow: hidden;
}

.room-preview-section .room-preview-wrap {
    width: 1400px;
    overflow: hidden;
    height: 675px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.room-preview-section .room-preview-wrap .room-preview-tit {
    position: relative;
}

.room-preview-section .room-preview-wrap .room-preview-tit .tit {
    color: #242424;
    font-size: 30px;
    font-family: 'Arita Buri KR';
    font-weight: 400;
    margin-bottom: 100px;
}
.room-preview-section .room-preview-wrap .room-preview-tit .room-name-container {
    position: relative;
    min-height: 60px;
    margin-bottom: 20px;
}

.room-preview-section .room-preview-wrap .room-preview-tit .room-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #242424;
    font-size: 40px;
    font-family: 'Arita Buri KR';
    font-weight: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-preview-section .room-preview-wrap .room-preview-tit .room-name.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.room-preview-section .room-preview-wrap .room-preview-tit .room-info-container {
    position: relative;
    min-height: 120px;
    margin-bottom: 20px;
    width: 450px;
}

.room-preview-section .room-preview-wrap .room-preview-tit .room-info-txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #242424;
    font-size: 16px;
    font-family: 'Pretendard-Regular';
    font-weight: 400;
    line-height: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-preview-section .room-preview-wrap .room-preview-tit .room-info-txt.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.room-preview-section .room-preview-wrap .room-preview-tit .page {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #242424;
    font-family: 'Pretendard-Regular';
}

.room-preview-section .room-preview-wrap .room-preview-tit .page-front,
.room-preview-section .room-preview-wrap .room-preview-tit .page-last {
    font-size: 14px;
    font-weight: 400;
    width: 20px;
}

.room-preview-section .room-preview-wrap .room-preview-tit .guage-bg {
    width: 200px;
    height: 2px;
    background-color: rgba(51, 26, 7, 0.3);
    position: relative;
    overflow: hidden;
}

.room-preview-section .room-preview-wrap .room-preview-tit .guage-bar {
    display: block;
    height: 100%;
    background-color: #242424;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.room-preview-section .room-preview-wrap .room-preview-slide-wrap {
    width: 675px;
    height: 100%;
    overflow: hidden;
}

.room-preview-section .room-preview-wrap .room-preview-slide-wrap .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .room-preview-section {
        padding: 50px 0;
    }

    .room-preview-section .room-preview-wrap {
        width: 90%;
        overflow: hidden;
        height: auto;
        margin: 0 auto;
        flex-direction: column;
    }

    .room-preview-section .room-preview-wrap .room-preview-tit .room-info-container {
        width: 100%;
    }

    .room-preview-section .room-preview-wrap .room-preview-tit {
        width: 100%;
        margin-bottom: 50px;
    }

    .room-preview-section .room-preview-wrap .room-preview-tit .tit {
        font-size: 25px;
        margin-bottom: 50px;
    }
    .room-preview-section .room-preview-wrap .room-preview-tit .room-name-container {
        min-height: 50px;
    }

    .room-preview-section .room-preview-wrap .room-preview-tit .room-name {
        font-size: 35px;
    }
    .room-preview-section .room-preview-wrap .room-preview-tit .room-info-container {
        min-height: 100px;
    }

    .room-preview-section .room-preview-wrap .room-preview-tit .room-info-txt {
        font-size: 14px;
    }

    .room-preview-section .room-preview-wrap .room-preview-tit .page {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #242424;
        font-family: 'Pretendard-Regular';
    }

    .room-preview-section .room-preview-wrap .room-preview-tit .page-front,
    .room-preview-section .room-preview-wrap .room-preview-tit .page-last {
        width: 20px;
    }

    .room-preview-section .room-preview-wrap .room-preview-tit .guage-bg {
        width: 80px;
    }

    .room-preview-section .room-preview-wrap .room-preview-slide-wrap {
        width: 100%;
        height: 350px;
        overflow: hidden;
    }
}

/* 스페셜 프리뷰 */

.special-preview-section {
    padding: 100px 0;
    overflow: hidden;
}

.special-preview-section .special-preview-wrap {
    width: 1400px;
    height: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    position: relative;
}

.special-preview-section .special-preview-wrap::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 4.7%;
    display: block;
    width: 650px;
    height: 98%;
    border: 1px solid #24242461;
    border-radius: 0 70% 0 0;
    z-index: 1;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.5s ease;
}

.special-preview-section .special-preview-wrap.aos-animate::before {
    clip-path: inset(0 0 0 0);
}

.special-preview-section .special-preview-wrap .special-preview-tit {
    position: relative;
    width: 450px;
    height: 100%;
}

.special-preview-section .special-preview-wrap .special-preview-tit .tit {
    font-family: 'Foglihten';
    font-size: 100px;
    padding-top: 100px;
    color: #333;
    font-weight: 400;
    position: relative;
    z-index: 10;
}

.special-preview-section .special-preview-wrap .special-preview-tit .tit span {
    display: block;
}

.special-preview-section .special-preview-wrap .special-preview-tit .tit span.t2 {
    margin-left: 150px;
}

.special-preview-section .special-preview-wrap .special-preview-tit .btn-wrap.special-btn {
    position: absolute;
    bottom: 5%;
    right: 5%;
    z-index: 10;
}
.special-preview-section .special-preview-wrap .special-preview-tit .btn-wrap.special-btn span {
    top: 17%;
    transform: translate(-10%, -50%) rotate(45deg);
}
.special-preview-section .special-preview-wrap .special-preview-tit .btn-wrap.special-btn span:hover {
    transform: translate(0%, -5%) rotate(45deg);
}
.special-preview-section .special-preview-wrap .special-preview-slide-wrap {
    width: auto;
    height: 695px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 10;
}

.special-preview-section .special-preview-wrap .special-preview-slide-wrap .special-preview-slide {
    width: 695px;
    height: 100%;
    border-radius: 50% 0 0 0;
    overflow: hidden;
}

.special-preview-section .special-preview-wrap .special-preview-slide-wrap .special-preview-slide .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-preview-section .special-preview-wrap .special-preview-slide-wrap .special-preview-gnb {
    margin-bottom: 25px;
    margin-left: 20px;
}

.special-preview-section .special-preview-wrap .special-preview-slide-wrap .special-preview-gnb .gnb-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.special-preview-section .special-preview-wrap .special-preview-slide-wrap .special-preview-gnb .gnb-wrap li {
    color: #a4a19b;
    font-size: 20px;
    font-family: 'MaruBuri';
    font-weight: 400;
    line-height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.special-preview-section .special-preview-wrap .special-preview-slide-wrap .special-preview-gnb .gnb-wrap li.on {
    color: #242424;
}

@media (max-width: 768px) {
    .special-preview-section {
        padding: 50px 0;
    }

    .special-preview-section .special-preview-wrap {
        width: 95%;
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    .special-preview-section .special-preview-wrap::before {
        display: none;
    }

    .special-preview-section .special-preview-wrap .special-preview-tit {
        position: relative;
        width: 100%;
        height: 250px;
    }

    .special-preview-section .special-preview-wrap .special-preview-tit .tit {
        font-size: 60px;
        padding-top: 0px;
    }

    .special-preview-section .special-preview-wrap .special-preview-tit .tit span.t2 {
        margin-left: 80px;
    }

    .special-preview-section .special-preview-wrap .special-preview-tit .btn-wrap.special-btn {
        position: absolute;
        bottom: 15%;
        right: 5%;
        z-index: 10;
    }

    .special-preview-section .special-preview-wrap .special-preview-slide-wrap {
        width: 100%;
        height: 450px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .special-preview-section .special-preview-wrap .special-preview-slide-wrap .special-preview-slide {
        width: 100%;
        height: 350px;
    }

    .special-preview-section .special-preview-wrap .special-preview-slide-wrap .special-preview-gnb {
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .special-preview-section .special-preview-wrap .special-preview-slide-wrap .special-preview-gnb .gnb-wrap {
        flex-direction: row;
        /* gap: 10px; */
        flex-wrap: wrap;
        justify-content: center;
    }

    .special-preview-section .special-preview-wrap .special-preview-slide-wrap .special-preview-gnb .gnb-wrap li {
        color: #a4a19b;
        font-size: 12px;
        width: 31%;
    }
}

.ft {
    background-color: #554e43;
}

.ft-inner {
    width: 1600px;
    margin: 0 auto;
    padding: 50px 0 25px;
    text-align: center;
}

.ft-inner .ft-logo {
    display: inline-block;
    width: 130px;
    height: 75px;
    margin: 0 auto 20px;
}

.ft-inner .ft-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.ft-inner .ft-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ft-inner .ft-tel {
    color: #fff;
    font-size: 25px;
    display: inline-block;
    font-family: 'Pretendard-Regular';
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 30px;
}

.ft-inner .info-wrap {
    color: #ffffff;
    font-size: 15px;
    font-family: 'Pretendard-Regular';
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 50px;
}

.ft-inner .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.ft-inner .right .top-btn {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
    position: absolute;
    margin-bottom: 20px;
}

.ft-inner .right .top-btn span {
    transform: rotate(45deg);
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Pretendard-Regular';
    font-size: 11px;
    font-weight: 400;
    transition: all 0.5s ease;
    white-space: nowrap;
}

.ft-inner .right .top-btn:hover {
    background-color: #e4d6b9;
}

.ft-inner .right .top-btn:hover span {
    color: #494237;
}

/* .ft-inner .sns-box ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.ft-inner .sns-box img {
    width: 20px;
    height: 20px;
} */

.ft-inner .copyright {
    color: #fff;
    font-size: 13px;
    font-family: 'Pretendard-Regular';
    font-weight: 200;
    line-height: 20px;
    margin-bottom: 10px;
}

.ft-inner .copyright a {
    color: #fff;
    font-size: 13px;
    font-family: 'Pretendard-Regular';
    font-weight: 200;
    line-height: 20px;
}

.ft-inner .log {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-family: 'Pretendard-Regular';
    font-weight: 300;
    line-height: 7px;
    text-align: right;
}

.ft .log::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #cccccc;
}

@media (max-width: 768px) {
    .ft-inner {
        width: 95%;
        flex-direction: column;
        justify-content: center;
        padding: 30px 0;
        text-align: center;
        position: relative;
    }

    .ft-inner .ft-logo {
        height: 65px;
        /* margin: 0 auto 10px auto; */
    }
    }

    .ft-inner .ft-tel {
        font-size: 18px;
        line-height: 30px;
        margin: 15px 0;
    }

    .ft-inner .info-wrap {
        font-size: 14px;
    }

    .ft-inner .right {
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .ft-inner .right .top-btn {
        right: 5%;
        top: 5%;
        position: absolute;
        margin-bottom: 0px;
    }

    /* .ft-inner .right .sns-box ul {
        margin-bottom: 20px;
    } */
    .ft-inner .right .log {
        text-align: center;
    }
}
