@charset "UTF-8";
[data-aos='custom-circle'] circle {
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 3s ease;
}

[data-aos='custom-circle'].aos-animate circle {
    stroke-dashoffset: 0;
    opacity: 0.4;
}

/* 애니메이션 키프레임 */
@keyframes scrollMove {
    0% {
        top: 0%;
        animation-timing-function: ease-in;
    }
    50% {
        top: 100%;
        animation-timing-function: ease-out;
    }
    100% {
        top: 0%;
    }
}
.s-hero {
    position: relative;
    height: var(--vh-100);
    overflow: hidden;
}
.s-hero__wrapper {
    width: 100%;
    height: 100%;
}
.s-hero .shero-video {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.s-hero .shero-video__indicator {
    position: absolute;
    left: 50%;
    bottom: 10%;
    width: 22%;
    min-width: 30rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 2;
}
.s-hero .shero-video__indicator .video-shero-title {
    font-family: var(--font-blacker);
    font-size: clamp(2.8rem, 2.6042vw, 5rem);
    font-weight: 200;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 0 1rem;
}
.s-hero iframe.vmoVideo {
    border: none;
    outline: none;
    pointer-events: none;
    opacity: 1;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    background-color: #f7f9fb;
    z-index: 1;
    overflow: hidden;
}
@media all and (max-width: 768px) {
    .s-hero {
        height: 75svh;
    }
}

.scroll-indicator {
    position: relative;
    width: 1px;
    height: 50px; /* 선 길이 조정 */
    margin: 0 auto;
}
.scroll-indicator .line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 50px;
    background-color: white;
}
.scroll-indicator .circle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    animation: scrollMove 2.5s infinite ease-in-out;
}
.scroll-indicator .text {
    position: absolute;
    left: 50%;
    bottom: -26px;
    transform: translateX(-50%);
    font-family: var(--font-lato);
    font-size: 1.3rem;
    color: #fff;
    white-space: nowrap;
}

.shero-swiper {
    position: relative;
    width: 100%;
}
.shero-swiper__media {
    width: 100%;
    height: var(--vh-100);
}
.shero-swiper__media .swiper-slide {
    overflow: hidden;
    height: 100%;
}
.shero-swiper__media .img-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.shero-swiper__indicator {
    position: absolute;
    left: 50%;
    bottom: 10%;
    width: 22%;
    min-width: 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 2;
}
.shero-swiper__indicator > div {
    position: absolute;
    top: 50%;
    width: 78px;
    height: 54px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.5s;
}
.shero-swiper__indicator > div.swiper-button-disabled {
    opacity: 0.5;
}
.shero-swiper__indicator > div.swiper-shero-prev {
    left: 1rem;
}
.shero-swiper__indicator > div.swiper-shero-prev:hover {
    left: 0;
}
.shero-swiper__indicator > div.swiper-shero-prev .page-num {
    left: 12px;
    top: 4px;
}
.shero-swiper__indicator > div.swiper-shero-next {
    justify-content: flex-end;
    right: 1rem;
}
.shero-swiper__indicator > div.swiper-shero-next:hover {
    right: 0;
}
.shero-swiper__indicator > div.swiper-shero-next .page-num {
    right: 12px;
    bottom: 4px;
}
.shero-swiper__indicator > div .page-num {
    position: absolute;
    color: #fff;
    font-family: var(--font-lato);
    font-size: clamp(1.2rem, 1.5625vw, 1.6rem);
    font-weight: 300;
    line-height: 1;
}
.shero-swiper__indicator > div .arrow {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: #fff;
    position: relative;
}
.shero-swiper__indicator > div .arrow.left::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 1px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    transform: rotate(-45deg);
}
.shero-swiper__indicator > div .arrow.right::after {
    content: '';
    position: absolute;
    top: -5px;
    right: 1px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}
.shero-swiper__indicator .swiper-shero-title {
    font-family: var(--font-blacker);
    font-size: clamp(2.8rem, 2.6042vw, 5rem);
    font-weight: 200;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    padding: 0 1rem;
}
@media all and (max-width: 1024px) {
    .shero-swiper__indicator > div .arrow {
        width: 38px;
    }
}
@media all and (max-width: 768px) {
    .shero-swiper__media {
        height: 75svh;
    }
}

.s-title {
    position: relative;
}
.s-title__wrapper {
    position: relative;
    padding-top: clamp(10rem, 10.4167vw, 20rem);
}
.s-title .title-box {
    position: relative;
    z-index: 2;
    padding-left: 4rem;
}
.s-title .title-box.title-box--center {
    text-align: center;
    padding-left: 0;
}
.s-title .title-box .tit-sm {
    font-family: var(--font-lato);
    font-size: clamp(1.2rem, 0.7292vw, 1.4rem);
    font-weight: 500;
    color: var(--clr-black);
    text-transform: uppercase;
}
.s-title .title-box .tit-cm {
    font-family: var(--font-blacker);
    font-size: clamp(4rem, 4.1667vw, 8rem);
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: 0.4rem;
    color: var(--clr-primary);
    text-transform: uppercase;
}

.s-title .title-box .tit-cm span {
    font-family: 'aboreto', sans-serif;
}

.s-title .circle-anim {
    position: absolute;
    left: 0;
    top: 1rem;
    width: 27.0833vw;
    height: 27.0833vw;
    min-width: 25rem;
    min-height: 25rem;
    z-index: -1;
}
.s-title .circle-anim svg {
    transform: rotate(90deg);
}

.s-container {
    position: relative;
    background: var(--clr-background);
    z-index: 2;
}

.contents {
    margin-top: 4rem;
}

.inner {
    width: 90%;
    max-width: 160rem;
    margin: 0 auto;
}

.res-pic {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.res-pic img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 40vh;
}
.res-pic video {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    min-height: 40vh;
}
.btn-book {
    display: flex;
    justify-content: center;
}
.btn-book a {
    position: relative;
    padding: 0 3rem;
}
.btn-book a::before {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--clr-primary);
    transform: translate(-50%, -50%);
    transition: all 0.4s;
}
.btn-book a:hover::before {
    width: calc(100% + 2.8rem);
}
.btn-book a span {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-family: var(--font-blacker);
    font-size: clamp(2.6rem, 1.5625vw, 3rem);
    font-weight: 200;
    line-height: 1;
    color: var(--clr-primary);
    background: var(--clr-background);
    padding: 0 1.8rem;
}

ul.style-tp1 li {
    position: relative;
    font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
    color: var(--clr-gray);
    padding: 0.1rem 0 0.1rem 2.4rem;
}
ul.style-tp1 li::before {
    position: absolute;
    left: 0.6rem;
    top: 1.2rem;
    content: '';
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--clr-gray);
    opacity: 0.6;
}

.prologue .sec2 {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: background-color 0.8s ease;
    background: var(--clr-primary);
    min-height: calc(var(--vh-100) + 20vh);
}
.prologue .sec2 .intro-text {
    position: relative;
    z-index: 2;
    margin-bottom: clamp(4rem, 8vh, 8rem);
    max-width: min(80%, 80rem);
}
.prologue .sec2 .intro-text > div {
    color: #fff;
    margin-bottom: clamp(1.5rem, 2vh, 2.5rem);
    font-size: clamp(1.6rem, 1.0417vw, 2rem);
}
.prologue .sec2 .intro-text > div:nth-child(1) {
    font-size: clamp(2rem, 1.4583vw, 2.8rem);
}
.prologue .sec2 .path-wrapper {
    position: relative;
    width: 100%;
    height: clamp(200px, 40vh, 350px);
    margin: clamp(30px, 5vh, 60px) 0;
}
.prologue .sec2 .hori-txt {
    position: absolute;
    left: 100%;
    top: calc(50% + 5rem);
    transform: translate(-50%, -50%);
    font-family: var(--font-blacker);
    font-size: clamp(30rem, 20.8333vw, 40rem);
    font-weight: 200;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}
.prologue .sec2 .line-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: visible;
}
.prologue .sec2 .line-svg path {
    vector-effect: non-scaling-stroke; /* 선 두께가 일정하게 유지되도록 */
}
.prologue .sec2 .outro-text {
    position: relative;
    z-index: 2;
    text-align: right;
    max-width: min(80%, 80rem);
    margin-left: auto;
    padding-right: clamp(0px, 2vw, 2rem);
}
.prologue .sec2 .outro-text > div {
    color: #fff;
    margin-bottom: clamp(1.5rem, 2vh, 2.5rem);
    font-size: clamp(1.6rem, 1.0417vw, 2rem);
}
@media all and (max-width: 768px) {
    .prologue .sec2 .intro-text,
    .prologue .sec2 .outro-text {
        max-width: 100%;
    }
    .prologue .sec2 .line-svg {
        transform: scale(0.9);
        transform-origin: center;
    }
    .prologue .sec2 #dot {
        r: 12; /* 작은 화면에서는 원을 더 크게 표시 */
    }
    .s-title .title-box {
        padding-left: 0;
    }
}
@media all and (max-width: 480px) {
    .prologue .sec2 .path-wrapper {
        height: 20vh;
    }
}
.prologue .sec3 {
    overflow: hidden;
}
.prologue .sec3 .inner {
    padding: 22rem 0;
}
.prologue .sec3 .line-content {
    display: flex;
    flex-direction: column;
}
.prologue .sec3 .line-content__item {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.prologue .sec3 .line-content__item::before {
    position: absolute;
    left: 50%;
    top: 0;
    content: '';
    width: 200%;
    height: 1px;
    background: var(--clr-primary);
    opacity: 0.5;
    transform: translateX(-50%);
}
.prologue .sec3 .line-content__item:first-child::before {
    display: none;
}
.prologue .sec3 .line-content__item .ar-l {
    width: 50%;
    color: var(--clr-tertiary);
    padding: 6.4rem 0;
}
.prologue .sec3 .line-content__item .ar-l .txt1 {
    font-family: var(--font-lato);
    font-size: clamp(1.4rem, 1.0417vw, 2rem);
    letter-spacing: 0.4rem;
}
.prologue .sec3 .line-content__item .ar-l .txt2 {
    font-family: var(--font-blacker);
    font-size: clamp(3rem, 4.1667vw, 8rem);
    font-weight: 200;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
}
.prologue .sec3 .line-content__item .ar-r {
    position: relative;
    width: 50%;
}
.prologue .sec3 .line-content__item .ar-r .image {
    position: absolute;
    top: 0;
    max-width: 13.44vw;
    z-index: 2;
}
.prologue .sec3 .line-content__item .ar-r .image.ip1 {
    left: 5%;
}
.prologue .sec3 .line-content__item .ar-r .image.ip2 {
    top: 10%;
    left: 50%;
}
.prologue .sec3 .line-content__item .ar-r .image.ip3 {
    top: -10%;
    left: 0;
}
.prologue .sec3 .line-content__item .ar-r .image img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media all and (max-width: 1024px) {
    .prologue .sec3 .inner {
        padding: 10rem 0;
    }
    .prologue .sec3 .line-content {
        display: flex;
        flex-direction: column;
    }
    .prologue .sec3 .line-content__item {
        justify-content: center;
    }
    .prologue .sec3 .line-content__item .ar-l {
        padding: 5.2rem 0;
    }
    .prologue .sec3 .line-content__item .ar-r .image {
        position: relative;
        top: auto;
        max-width: 80%;
        margin-left: 20%;
    }
    .prologue .sec3 .line-content__item .ar-r .image.ip1 {
        left: auto;
    }
    .prologue .sec3 .line-content__item .ar-r .image.ip2 {
        top: auto;
        left: auto;
    }
    .prologue .sec3 .line-content__item .ar-r .image.ip3 {
        top: auto;
        left: auto;
    }
}
@media all and (max-width: 768px) {
    .prologue .sec3 .inner {
        padding: 8rem 0;
    }
    .prologue .sec3 .line-content__item::before {
        display: none;
    }
    .prologue .sec3 .line-content__item .ar-l {
        width: 100%;
        text-align: center;
    }
    .prologue .sec3 .line-content__item .ar-r {
        width: 100%;
    }
    .prologue .sec3 .line-content__item .ar-r .image {
        max-width: 100%;
        margin: 0 auto;
    }
}
.prologue .sec4 {
    height: 120vh;
}
.prologue .sec4 .inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}
.prologue .sec4 .hori-txt {
    position: absolute;
    left: 50%;
    top: -5rem;
    transform: translateX(-50%);
    font-family: var(--font-blacker);
    font-size: clamp(30rem, 20.8333vw, 40rem);
    font-weight: 200;
    line-height: 1;
    color: var(--clr-primary);
    opacity: 0.1;
    z-index: -1;
}
.prologue .sec4 .box-video {
    flex-shrink: 0;
    width: 45.57%;
    overflow: hidden;
}
.prologue .sec4 .box-video img {
    height: var(--vh-100);
}
.prologue .sec4 .box-content {
    width: 45.57%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.prologue .sec4 .box-content .txt {
    text-align: center;
    font-size: clamp(1.4rem, 1.5625vw, 1.6rem);
}
.prologue .sec4 .box-content .txt + .txt {
    margin-top: 2rem;
}
.prologue .sec4 .box-content .res-pic {
    margin-top: 6rem;
}
@media all and (max-width: 1024px) {
    .prologue .sec4 {
        height: auto;
    }
    .prologue .sec4 .inner {
        flex-wrap: wrap;
        padding-bottom: 10rem;
    }
    .prologue .sec4 .inner::before {
        position: absolute;
        left: 50%;
        top: auto;
        bottom: -3.2rem;
    }
    .prologue .sec4 .box-video {
        width: 100%;
    }
    .prologue .sec4 .box-video img {
        height: 50vh;
    }
    .prologue .sec4 .box-content {
        width: 85%;
        margin: 0 auto;
        padding: 6rem 0;
    }
}

.special .sec1 {
    margin: 10rem 0 16rem;
}
.special .sec1 .inner {
    text-align: center;
}
.special .sec1 .txt1 {
    font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
    font-weight: 600;
    color: var(--clr-gray);
}
.special .sec1 .txt2 {
    font-size: clamp(1.4rem, 1.5625vw, 1.6rem);
    color: var(--clr-gray);
    margin: 2rem 0;
}
.special .sec1 .txt3 {
    font-size: clamp(1.4rem, 1.5625vw, 1.6rem);
    color: var(--clr-gray);
}
.special .sec2 {
    height: var(--vh-100);
    background: var(--clr-primary);
}
.special .sec2 .inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.special .sec2 .box-video {
    flex-shrink: 0;
    width: 50%;
    overflow: hidden;
}
.special .sec2 .box-video img {
    height: var(--vh-100);
}
.special .sec2 .box-content {
    width: 50%;
    margin: 0 10rem;
    color: #fff;
}
.special .sec2 .box-content .txt1 {
    margin-top: 4.8rem;
    font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
}
.special .sec2 .box-content .txt2 {
    font-size: clamp(1.4rem, 1.5625vw, 1.6rem);
    margin-top: 2rem;
}
@media all and (max-width: 1024px) {
    .special .sec2 {
        height: auto;
    }
    .special .sec2 .inner {
        flex-wrap: wrap;
    }
    .special .sec2 .box-video {
        width: 100%;
    }
    .special .sec2 .box-video img {
        height: 50vh;
    }
    .special .sec2 .box-content {
        width: 85%;
        margin: 0 auto;
        padding: 6rem 0;
    }
}
.special .sec3 {
    position: relative;
    background: var(--clr-primary);
    overflow: hidden;
    min-height: calc(var(--vh-100) * 3.1);
    /* 중앙 SVG 경로 영역 */
    /*
  @media all and (min-width: 1401px) {
      & { 
          min-height: calc(var(--vh-100) * 3.4);
      }
  }
  */
}
.special .sec3 .inner {
    position: relative;
}
.special .sec3 .fixed-content {
    position: relative;
    z-index: 5;
}
.special .sec3 .heading {
    color: #fff;
    text-align: center;
    padding: 8rem 0;
}
.special .sec3 .heading .main-title {
    font-family: var(--font-blacker);
    font-size: clamp(4.8rem, 6.25vw, 12rem);
    font-weight: 200;
    letter-spacing: 0.4rem;
    margin-bottom: 8rem;
    line-height: 1.2;
}
.special .sec3 .heading .sub-text {
    font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
    margin-bottom: 20px;
}
.special .sec3 .heading .desc-text {
    font-size: clamp(1.4rem, 1.5625vw, 1.6rem);
}
.special .sec3 .center-path {
    width: 120px;
    height: calc(var(--vh-100) * 1);
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.special .sec3 .center-path svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}
.special .sec3 .scroll-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 100vh;
    display: flex;
    justify-content: space-between;
    min-height: 800px;
    height: calc(var(--vh-100) * 3); /* 이미지가 사라진 후에도 스크롤이 가능하도록 높이 증가 */
    z-index: 4;
}
.special .sec3 .left-images,
.special .sec3 .right-images {
    width: 40%;
    position: relative;
}
.special .sec3 .image-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    overflow: hidden;
}
.special .sec3 .image-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.special .sec3 .image-box:hover img {
    transform: scale(1.05);
}
.special .sec3 .left-images .image-box {
    margin-left: 0;
    margin-right: 20px;
}
.special .sec3 .right-images {
    align-content: flex-end;
    margin-bottom: 27vh;
}
.special .sec3 .right-images .image-box {
    margin-right: 0;
    margin-left: 20px;
}
@media all and (max-width: 768px) {
    .special .sec3 {
        /*
    & .center-path {

    }
    & .scroll-content {
        min-height: 600px;
    }
    & .left-images .image-box {
        margin-top: 100px;
        margin-right: 10px;
    }
    & .right-images .image-box {
        margin-top: 300px;
        margin-left: 10px;
    }
    & .image-box {
        max-width: 100%;
    }
    */
    }
    .special .sec3 {
        min-height: calc(var(--vh-100) * 3.1);
    }
}
@media all and (max-width: 480px) {
    .special .sec3 {
        min-height: calc(var(--vh-100) * 2.9);
    }
}

.rooms .sec1 {
    min-height: 70vh;
}
.rooms .sec1 .inner {
    display: flex;
    width: 100%;
    max-width: 100%;
}
.rooms .sec1 .box-content {
    flex-shrink: 0;
    width: 58.3333333333%;
}
.rooms .sec1 .box-content img {
    height: calc(var(--vh-100) * 0.85);
}
.rooms .sec1 .box-video {
    width: 41.6666666667%;
    max-width: 472px;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: right;
    overflow: hidden;
}
.rooms .sec1 .box-video .txt1 {
    margin-top: 2.8rem;
    font-family: var(--font-blacker);
    font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
    font-weight: 200;
    color: var(--clr-gray);
}
@media all and (max-width: 1024px) {
    .rooms .sec1 {
        height: auto;
    }
    .rooms .sec1 .inner {
        flex-wrap: wrap;
    }
    .rooms .sec1 .box-content {
        width: 100%;
    }
    .rooms .sec1 .box-content img {
        height: 50vh;
    }
    .rooms .sec1 .box-video {
        width: 85%;
        margin: 0 auto;
        padding: 6rem 0;
    }
}
.rooms .sec2 {
    margin: 16rem 0;
}
.rooms .sec2 .inner {
    text-align: center;
}
.rooms .sec2 .txt1 {
    font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
    font-weight: 600;
    color: var(--clr-dark);
    text-transform: uppercase;
}
.rooms .sec2 .txt2 {
    font-size: clamp(1.4rem, 1.5625vw, 1.6rem);
    color: var(--clr-dark);
    margin: 2rem 0;
}
.rooms .sec2 .txt3 {
    font-size: clamp(1.4rem, 1.5625vw, 1.6rem);
    color: var(--clr-dark);
}
@media all and (max-width: 768px) {
    .rooms .sec2 {
        margin: 10rem 0;
    }
}
.rooms .sec3 .inner {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
}
.rooms .sec3 .box-content {
    width: 75%;
}
.rooms .sec3 .box-content .cont + .cont {
    margin-top: 10rem;
}
.rooms .sec3 .box-content .btn-book {
    margin-top: 6rem;
}
.rooms .sec3 .box-title {
    width: 16.6666666667%;
    margin-left: 8.3333333333%;
}
.rooms .sec3 .box-title .pos-sticky {
    position: sticky;
    top: 30%;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
.rooms .sec3 .box-title .pos-sticky::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 1px;
    height: 100%;
    background: var(--clr-primary);
}
.rooms .sec3 .box-title > div {
    font-family: var(--font-blacker);
    font-size: clamp(2rem, 5.2083vw, 10rem);
    font-weight: 200;
    line-height: 1;
    color: var(--clr-primary);
    writing-mode: vertical-rl;
}
.rooms .sec3 .cont-title {
    font-family: var(--font-blacker);
    font-size: clamp(2.4rem, 1.5625vw, 3rem);
    font-weight: 200;
    color: var(--clr-black);
    margin-bottom: 2.8rem;
}
@media all and (max-width: 1024px) {
    .rooms .sec3 .box-content {
        width: 100%;
    }
    .rooms .sec3 .box-content .cont + .cont {
        margin-top: 10rem;
    }
    .rooms .sec3 .box-title {
        display: none;
    }
}
.rooms .sec4 {
    margin-top: 10rem;
}

.price-table table {
    border-top: 2px solid rgba(133, 191, 193, 0.4);
    font-size: clamp(1.3rem, 1.5625vw, 1.6rem);
}
.price-table th {
    padding: 12px 2%;
    border-bottom: 1px solid rgba(133, 191, 193, 0.4);
    vertical-align: middle;
    background: rgba(133, 191, 193, 0.4);
    font-weight: 400;
}
.price-table td {
    padding: 12px 2%;
    text-align: center;
    border-right: 1px solid rgba(133, 191, 193, 0.4);
    border-bottom: 1px solid rgba(133, 191, 193, 0.4);
    vertical-align: middle;
    white-space: nowrap;
}
.price-table td:last-of-type {
    border-right: none;
}
.price-table tbody th {
    border-bottom: 1px solid rgba(133, 191, 193, 0.4);
    border-right: 1px solid rgba(133, 191, 193, 0.4);
}
@media all and (max-width: 768px) {
    .price-table td {
        padding: unset;
    }
    .price-table {
        overflow: auto;
    }
    .price-table table {
        min-width: 480px;
        overflow-x: auto;
    }
}

.canc-table table {
    border-top: 2px solid rgba(133, 191, 193, 0.4);
    font-size: clamp(1.3rem, 1.5625vw, 1.6rem);
}
.canc-table th {
    padding: 12px 2%;
    border-bottom: 1px solid rgba(133, 191, 193, 0.4);
    vertical-align: middle;
    background: rgba(133, 191, 193, 0.4);
    font-weight: 400;
}
.canc-table td {
    padding: 12px 2%;
    text-align: center;
    border-right: 1px solid rgba(133, 191, 193, 0.4);
    border-bottom: 1px solid rgba(133, 191, 193, 0.4);
    vertical-align: middle;
    white-space: nowrap;
}
.canc-table td:last-of-type {
    border-right: none;
}
.canc-table tbody th {
    border-bottom: 1px solid rgba(133, 191, 193, 0.4);
    border-right: 1px solid rgba(133, 191, 193, 0.4);
}
@media all and (max-width: 768px) {
    .canc-table {
        overflow: auto;
    }
    .canc-table table {
        min-width: 480px;
        overflow-x: auto;
    }
}

.supplies-list {
    width: 66.6666666667%;
}
.supplies-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 4rem;
}
.supplies-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.supplies-list .icon {
    display: flex;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
}
.supplies-list .icon i {
    font-size: clamp(2.2rem, 1.4583vw, 2.8rem);
}
.supplies-list .tit {
    font-size: clamp(1.3rem, 0.7813vw, 1.5rem);
}
@media all and (max-width: 1280px) {
    .supplies-list {
        width: 100%;
    }
}

.room-preview {
    position: relative;
    overflow: hidden;
    background: var(--clr-primary);
    padding: 16rem 0;
}
.room-preview__wrapper {
    width: 90%;
    max-width: 160rem;
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
}
.room-preview__title {
    width: 16.6666666667%;
    display: flex;
    justify-content: flex-end;
}
.room-preview__title > div {
    font-family: var(--font-blacker);
    font-size: clamp(3.2rem, 5.2083vw, 10rem);
    font-weight: 200;
    line-height: 1;
    text-align: center;
    color: #fff;
    writing-mode: vertical-rl;
}
.room-preview__content {
    width: 83.3333333333%;
}
@media all and (max-width: 1600px) {
    .room-preview__wrapper {
        flex-direction: column;
    }
    .room-preview__title {
        width: 100%;
        justify-content: flex-start;
    }
    .room-preview__title > div {
        writing-mode: unset;
    }
    .room-preview__content {
        width: 100%;
        margin-top: 4rem;
    }
}
@media all and (max-width: 1024px) {
    .room-preview {
        padding: 10rem 0;
    }
}

.preview-swiper .image {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.preview-swiper .image::before {
    position: absolute;
    left: 0;
    top: 0;
    content: '- View -';
    width: 100%;
    height: 100%;
    font-family: var(--font-blacker);
    font-size: clamp(1.6rem, 1.0417vw, 2rem);
    font-weight: 200;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    z-index: 2;
    transition: all 0.3s;
}
.preview-swiper .image:hover::before {
    opacity: 1;
}
.preview-swiper .image img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.preview-swiper .tit {
    margin-top: 1rem;
    font-family: var(--font-lato);
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: flex-end;
}

.preview-swiper .tit b {
    font-size: 21px;
    margin-right: 10px;
    display: inline-block;
    line-height: 30px;
}

@media all and (min-width: 1025px) {
    .preview-swiper__media .swiper-wrapper {
        display: grid !important;
        grid-template-columns: repeat(6, 1fr) !important;
        grid-template-rows: repeat(2, auto) !important;
        gap: 40px 20px !important;
        width: 100% !important;
        transform: none !important;
    }
    .preview-swiper__media .swiper-slide {
        width: 100% !important;
        margin-right: 0 !important;
        height: auto !important;
        /* 첫 번째 줄: 1~5번 슬라이드 (6번째 칸은 비움) */
        /* 두 번째 줄: 6~10번 슬라이드 (첫 번째 칸은 비움) */
    }

    .room-preview__content .line {
        width: 100%;
        height: 1px;
        display: block;
        margin: 10rem 0;
        background-color: #fff;
        opacity: 0.5;
    }

    .preview-swiper__media .swiper-slide:nth-child(1) {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    .preview-swiper__media .swiper-slide:nth-child(2) {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }
    .preview-swiper__media .swiper-slide:nth-child(3) {
        grid-column: 3 !important;
        grid-row: 1 !important;
    }
    .preview-swiper__media .swiper-slide:nth-child(4) {
        grid-column: 4 !important;
        grid-row: 1 !important;
    }
    .preview-swiper__media .swiper-slide:nth-child(5) {
        grid-column: 5 !important;
        grid-row: 1 !important;
    }
    .preview-swiper__media .swiper-slide:nth-child(6) {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }
    .preview-swiper__media .swiper-slide:nth-child(7) {
        grid-column: 3 !important;
        grid-row: 2 !important;
    }
    .preview-swiper__media .swiper-slide:nth-child(8) {
        grid-column: 4 !important;
        grid-row: 2 !important;
    }
    .preview-swiper__media .swiper-slide:nth-child(9) {
        grid-column: 5 !important;
        grid-row: 2 !important;
    }
    .preview-swiper__media .swiper-slide:nth-child(10) {
        grid-column: 6 !important;
        grid-row: 2 !important;
    }

    .preview-swiper__media.two .swiper-slide:nth-child(1) {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }
    .preview-swiper__media.two .swiper-slide:nth-child(2) {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }
    .preview-swiper__media.two .swiper-slide:nth-child(3) {
        grid-column: 3 !important;
        grid-row: 1 !important;
    }
    .preview-swiper__media.two .swiper-slide:nth-child(4) {
        grid-column: 4 !important;
        grid-row: 1 !important;
    }
    .preview-swiper__media.two .swiper-slide:nth-child(5) {
        grid-column: 5 !important;
        grid-row: 1 !important;
    }
    .preview-swiper__media.two .swiper-slide:nth-child(6) {
        grid-column: 3 !important;
        grid-row: 2 !important;
    }
    .preview-swiper__media.two .swiper-slide:nth-child(7) {
        grid-column: 4 !important;
        grid-row: 2 !important;
    }
    .preview-swiper__media.two .swiper-slide:nth-child(8) {
        grid-column: 5 !important;
        grid-row: 2 !important;
    }
    .preview-swiper__media.two .swiper-slide:nth-child(9) {
        grid-column: 6 !important;
        grid-row: 2 !important;
    }

    .preview-swiper__media.mo {
        display: none;
    }
}
@media all and (max-width: 1024px) {
    .room-preview__wrapper {
        width: 99%;
    }

    .preview-swiper__media .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem 1rem;
    }

    .preview-swiper__media.two {
        margin-top: 50px;
    }

    .preview-swiper__media.pc {
        display: none;
    }

    .preview-swiper__media.mo {
        display: block;
        width: 97%;
        margin: 0 auto;
    }

    .preview-swiper__media .swiper-slide {
        width: calc((100% - 3rem) / 4);
    }
    .preview-swiper .image::before {
        display: none;
    }
    .preview-swiper .tit {
        font-size: 1rem;
    }

    .preview-swiper .tit {
        margin-top: 0px;
        font-size: 11px;
        flex-direction: column;
        align-items: flex-start;
    }

    .preview-swiper .tit b {
        font-size: 18px;
        margin-right: 0px;
        margin-bottom: 3px;
        line-height: normal;
    }
}

.reservation .sec1 {
    margin-top: 10rem;
}
.reservation .sec1 .inner {
    display: flex;
    align-items: center;
    max-width: 140rem;
}
.reservation .sec1 .box-image {
    width: 50%;
}
.reservation .sec1 .box-content {
    width: 50%;
}
.reservation .sec1 .reser-info {
    width: 66.6666666667%;
    margin: 0 auto;
    color: var(--clr-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3.2rem;
    margin-bottom: 4rem;
}
.reservation .sec1 .reser-info .info-atc .tit {
    display: flex;
    align-items: center;
    font-size: clamp(1.6rem, 1.0417vw, 2rem);
}
.reservation .sec1 .reser-info .info-atc .tit span {
    margin-left: 1.2rem;
}
.reservation .sec1 .reser-info .info-atc .info {
    margin-top: 0.8rem;
}
.reservation .sec1 .reser-info .info-atc .info p {
    font-size: clamp(1.6rem, 1.0417vw, 2rem);
}
.reservation .sec1 .reser-info .info-atc .info p span {
    display: block;
    font-size: clamp(1.2rem, 1.5625vw, 1.6rem);
}
@media all and (max-width: 768px) {
    .reservation .sec1 .inner {
        flex-wrap: wrap;
    }
    .reservation .sec1 .box-image {
        width: 100%;
    }
    .reservation .sec1 .box-content {
        width: 100%;
    }
    .reservation .sec1 .reser-info {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem 0;
        margin-top: 6rem;
    }
    .reservation .sec1 .reser-info .info-atc {
        flex: 1 1 50%;
    }
    .reservation .sec1 .reser-info .info-atc:last-child {
        flex-grow: 2;
    }
}
.reservation .sec2 {
    margin: 20rem 0;
}
.reservation .sec2 .box-title {
    text-align: center;
}
.reservation .sec2 .box-title h3 {
    font-family: var(--font-blacker);
    font-size: clamp(4rem, 4.1667vw, 8rem);
    font-weight: 200;
    line-height: 1.2;
    letter-spacing: 0.4rem;
    color: var(--clr-secondary);
    text-transform: uppercase;
}
.reservation .sec2 .box-content {
    position: relative;
    margin-top: 8rem;
    overflow: hidden;
}
.reservation .sec2 .box-content > .moreview-container {
    position: relative;
    height: 40rem;
    overflow: hidden;
    transition: all 0.3s;
}
.reservation .sec2 .box-content > .moreview-container .btn-more-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 10rem;
    z-index: 2;
}
.reservation .sec2 .box-content > .moreview-container .btn-more-wrapper::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(247, 249, 251) 40%, rgba(247, 249, 251, 0.6) 90%, rgba(247, 249, 251, 0) 100%);
    transition: all 0.4s;
}
.reservation .sec2 .box-content > .moreview-container .btn-more-wrapper .btn-more {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    font-family: var(--font-blacker);
    font-size: clamp(2rem, 1.8229vw, 3.5rem);
    font-weight: 200;
    line-height: 1.2;
    color: var(--clr-primary);
}
.reservation .sec2 .box-content > .moreview-container .btn-more-wrapper .btn-more::before,
.reservation .sec2 .box-content > .moreview-container .btn-more-wrapper .btn-more::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: calc(50% - 1px);
    width: 2px;
    height: 12px;
    border-radius: 9999px;
    background-color: var(--clr-primary);
    transform-origin: 50% calc(100% - 1px);
}
.reservation .sec2 .box-content > .moreview-container .btn-more-wrapper .btn-more::before {
    transform: rotate(45deg);
}
.reservation .sec2 .box-content > .moreview-container .btn-more-wrapper .btn-more::after {
    transform: rotate(-45deg);
}
.reservation .sec2 .box-content > .moreview-container .btn-more-wrapper .btn-more.close::before,
.reservation .sec2 .box-content > .moreview-container .btn-more-wrapper .btn-more.close::after {
    display: none;
}
@media all and (max-width: 768px) {
    .reservation .sec2 {
        margin: 16rem 0;
    }
    .reservation .sec2 .box-content {
        margin-top: 4rem;
    }
}
.reservation .sec3 {
    overflow: hidden;
    background: var(--clr-primary);
}
.reservation .sec3 .inner {
    position: relative;
    max-width: 140rem;
}
.reservation .sec3 .line-content__item {
    display: flex;
    flex-direction: column;
    position: relative;
    color: #fff;
    padding: 8rem 0;
}
.reservation .sec3 .line-content__item::before {
    position: absolute;
    left: 50%;
    top: 0;
    content: '';
    width: 200%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
}
.reservation .sec3 .line-content__item:first-child::before {
    display: none;
}
.reservation .sec3 .line-content__item .txt1 {
    font-family: var(--font-lato);
    font-size: clamp(1.4rem, 1.0417vw, 2rem);
    letter-spacing: 0.4rem;
}
.reservation .sec3 .line-content__item .txt2 {
    font-family: var(--font-blacker);
    font-size: clamp(3rem, 4.1667vw, 8rem);
    font-weight: 200;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    color: #1c3a5e;
}
.reservation .sec3 .line-content__item ul li {
    font-size: clamp(1.4rem, 0.9375vw, 1.8rem);
}
.reservation .sec3 .line-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reservation .sec3 .line-image .res-pic {
    width: 83.3333333333%;
}
@media all and (max-width: 1024px) {
    .reservation .sec3 .inner {
        padding: 6rem 0;
    }
    .reservation .sec3 .line-content__item {
        padding: 4rem 0;
    }
    .reservation .sec3 .line-image {
        justify-content: flex-end;
        align-items: flex-end;
    }
}
@media all and (max-width: 768px) {
    .reservation .sec3 .line-image {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        height: auto;
        margin-top: 4rem;
    }
    .reservation .sec3 .line-image .res-pic {
        width: 100%;
    }
}
.reservation .sec4 {
    margin-top: 20rem;
}
.reservation .sec4 .inner {
    position: relative;
    display: flex;
    max-width: 140rem;
}
.reservation .sec4 .box-title {
    width: 25%;
    margin-right: 8.3333333333%;
}
.reservation .sec4 .box-title .pos-sticky {
    position: sticky;
    top: 10rem;
    display: flex;
    width: 100%;
}
.reservation .sec4 .box-title .pos-sticky > div {
    position: relative;
    font-family: var(--font-blacker);
    font-size: clamp(2.8rem, 2.6042vw, 5rem);
    font-weight: 200;
    line-height: 1;
    text-transform: uppercase;
    color: #1c3a5e;
    padding-right: 2rem;
    overflow: hidden;
}
.reservation .sec4 .box-title .pos-sticky > div::before {
    position: absolute;
    right: 0;
    top: 50%;
    content: '';
    width: 1px;
    height: calc(100% + 2rem);
    background: #1c3a5e;
    transform: translateY(-50%);
}
.reservation .sec4 .box-content {
    width: 66.6666666667%;
}
.reservation .sec4 .box-content .cont-info + .cont-info {
    margin-top: 4rem;
}
.reservation .sec4 .box-content .cont-info > strong {
    display: block;
    font-size: clamp(1.8rem, 1.1458vw, 2.2rem);
    font-weight: 400;
    color: var(--clr-gray);
    margin-bottom: 1rem;
}
@media all and (max-width: 1024px) {
    .reservation .sec4 {
        margin-top: 14rem;
    }
}
@media all and (max-width: 768px) {
    .reservation .sec4 .inner {
        flex-wrap: wrap;
    }
    .reservation .sec4 .box-title {
        width: 100%;
        margin-right: 0;
    }
    .reservation .sec4 .box-title .pos-sticky > div::before {
        right: -100%;
        width: 100%;
        height: 1px;
    }
    .reservation .sec4 .box-content {
        width: 100%;
        margin-top: 4rem;
    }
}
.reservation .sec5 {
    margin-top: 20rem;
    padding-bottom: 10rem;
    background: var(--clr-background);
}
.reservation .sec5 .inner {
    position: relative;
    display: flex;
    max-width: 140rem;
}
.reservation .sec5 .box-title {
    width: 25%;
    margin-right: 8.3333333333%;
}
.reservation .sec5 .box-title .pos-sticky {
    position: sticky;
    top: 10rem;
    display: flex;
    width: 100%;
}
.reservation .sec5 .box-title .pos-sticky > div {
    position: relative;
    font-family: var(--font-blacker);
    font-size: clamp(2.8rem, 2.6042vw, 5rem);
    font-weight: 200;
    line-height: 1;
    text-transform: uppercase;
    color: #1c3a5e;
    padding-right: 2rem;
    overflow: hidden;
}
.reservation .sec5 .box-title .pos-sticky > div::before {
    position: absolute;
    right: 0;
    top: 50%;
    content: '';
    width: 1px;
    height: calc(100% + 2rem);
    background: #1c3a5e;
    transform: translateY(-50%);
}
.reservation .sec5 .box-content {
    width: 66.6666666667%;
}
.reservation .sec5 .box-content p {
    font-size: clamp(1.5rem, 0.9375vw, 1.8rem);
    color: var(--clr-gray);
}
.reservation .sec5 .box-content p + p {
    margin-top: 0.5rem;
}
.reservation .sec5 .box-content .canc-table {
    margin: 3rem 0;
}
@media all and (max-width: 1024px) {
    .reservation .sec5 {
        margin-top: 14rem;
    }
}
@media all and (max-width: 768px) {
    .reservation .sec5 .inner {
        flex-wrap: wrap;
    }
    .reservation .sec5 .box-title {
        width: 100%;
        margin-right: 0;
    }
    .reservation .sec5 .box-title .pos-sticky > div::before {
        right: -100%;
        width: 100%;
        height: 1px;
    }
    .reservation .sec5 .box-content {
        width: 100%;
        margin-top: 4rem;
    }
}

.tour-list {
    display: flex;
    flex-direction: column;
    padding-top: 30rem;
    overflow: hidden;
}
.tour-list .tour-item {
    position: relative;
    padding: 12rem 0 8rem;
}
.tour-list .tour-item::before {
    position: absolute;
    right: 0;
    bottom: 0;
    content: '';
    width: 80%;
    height: 100%;
    background: rgba(133, 191, 193, 0.2);
}
.tour-list .tour-item .inner {
    display: flex;
}
.tour-list .tour-item .box-image {
    width: 58.3333333333%;
}
.tour-list .tour-item .box-image .res-pic {
    margin-top: -30rem;
}
.tour-list .tour-item .box-content {
    position: relative;
    width: 37.5%;
    margin: 0 4.1666666667%;
    z-index: 2;
}
.tour-list .tour-item .box-content .con-head {
    border-bottom: 1px solid rgba(102, 102, 102, 0.2);
    margin-bottom: 2rem;
}
.tour-list .tour-item .box-content .con-head .num {
    font-family: var(--font-lato);
    font-size: clamp(1.4rem, 1.0417vw, 2rem);
    color: var(--clr-gray);
}
.tour-list .tour-item .box-content .con-head .tit {
    margin-top: 0.8rem;
    font-family: var(--font-arita);
    font-size: clamp(2.8rem, 2.6042vw, 5rem);
    font-weight: 300;
    line-height: 1.2;
    color: #1c3a5e;
}
.tour-list .tour-item .box-content .con-head .time {
    display: flex;
    align-items: center;
    color: var(--clr-gray);
    margin: 1rem 0;
}
.tour-list .tour-item .box-content .con-head .time i {
    transform: scaleX(-1);
}
.tour-list .tour-item .box-content .con-head .time span {
    position: relative;
    font-size: clamp(1.4rem, 1.0417vw, 2rem);
    margin-left: 1.4rem;
    padding-left: 1.4rem;
}
.tour-list .tour-item .box-content .con-head .time span::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: '';
    width: 4px;
    height: 4px;
    background: var(--clr-gray);
    border-radius: 50%;
}
.tour-list .tour-item .box-content .con-body {
    font-size: clamp(1.4rem, 1.5625vw, 1.6rem);
    color: var(--clr-gray);
}
.tour-list .tour-item + .tour-item {
    margin-top: 40rem;
}
.tour-list .tour-item:nth-child(2n)::before {
    left: 0;
    right: auto;
    background: rgb(133, 191, 193);
}
.tour-list .tour-item:nth-child(2n) .inner {
    flex-direction: row-reverse;
}
.tour-list .tour-item:nth-child(2n) .box-content .con-head .num {
    color: #fff;
}
.tour-list .tour-item:nth-child(2n) .box-content .con-head .tit {
    color: #fff;
}
.tour-list .tour-item:nth-child(2n) .box-content .con-head .time {
    color: #fff;
}
.tour-list .tour-item:nth-child(2n) .box-content .con-head .time span::before {
    background: #fff;
}
.tour-list .tour-item:nth-child(2n) .box-content .con-body {
    color: #fff;
}

.tour-list .tour-item:nth-child(2n) .box-content .con-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

@media all and (max-width: 1024px) {
    .tour-list {
        padding-top: 4rem;
    }
    .tour-list .tour-item {
        position: relative;
        padding: 8rem 0;
    }
    .tour-list .tour-item::before {
        width: 100%;
    }
    .tour-list .tour-item .inner {
        flex-direction: column;
    }
    .tour-list .tour-item .box-image {
        width: 100%;
    }
    .tour-list .tour-item .box-image .res-pic {
        margin-top: 0;
    }
    .tour-list .tour-item .box-content {
        width: 100%;
        margin: 0;
        padding-top: 4rem;
    }
    .tour-list .tour-item + .tour-item {
        margin-top: 0;
    }
    .tour-list .tour-item:nth-child(2n) .inner {
        flex-direction: column;
    }
}
