@charset "utf-8";
/* 기본설정 */
/* @import "default.css"; */
.roomslide{
    position: relative;
}
.roomslide .textbox{
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9997;
}
.roomslide .textbox h2{
    font-size: 50px;
    color: #fff;
}
.roomslide .textbox span{
    display: block;
    font-size: 22px;
}
.roomlist1{
    display: flex;
    justify-content: center;
    gap: 5%;
  }
.roomslide img{
    width: 100%;
    height: 100%;
}

.room-sec01 {
    display: flex;
    justify-content: center;
    gap: 13.28vw;
}

.room-sec01 .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.room-sec01 h2 {
    font-size: 32px;
    margin-bottom: 35px;
    font-family: 'ridi';
}
.room-sec01 p {
    white-space: pre-line;
    font-size: 15px;
    line-height: 1.6;
}
.room-sec01 .image img {
    max-width: 786px;
    width: 40.94vw;
}

@media (max-width:1024px) {
    .room-sec01 {
        padding: 100px 5vw 55px;
        flex-direction: column;
        gap: 40px;
    }
    .room-sec01 .image img {
        max-width: 786px;
        width: 90vw;
    }
    .room-sec01 h2 {
        font-size: 22px;
        margin-bottom: 17px;
    }
    .room-sec01 p {
        font-size: 13px;
    }
}


/* room-sec02 객실정보 */
.room-sec02 {
    padding-top: 0;
}
.roomInfo_con01 {
    display:table-cell;
    width:50%;
    vertical-align:top;
}
.roomInfo_con02 {
    display:table-cell;
    width:40%;
    vertical-align:top;
}
.roomInfo {
    margin-bottom:30px;
}
.roomInfo:after {
    content:"";
    display:block;
    clear:both;
}
.roomInfo > dt {
    float:left
}
.roomInfo > dt:after {
    content:"";
    margin:0 20px;
    height:35px;
    line-height:35px;
    border-right:2px dotted #333;
    vertical-align:top;
}
.roomInfo > dd {
    text-align: left;
    float:left;
    width:calc(100% - 100px);
}
.roomInfo_text02 {
    display:inline-block; 
    margin-right:30px;
}
.roomInfo_text .title {
    font-size:1em;
    line-height:1.5em;
    text-transform:uppercase;
    margin-bottom:0.5em;
    color: var(--main-gold);
}
.roomInfo_text .text {
    font-size:1em;
    line-height:1.6em;
    font-family: 'pret-r';
    white-space: pre-line;
}
.roomInfoWrap {
    padding: 30px 120px;
    font-size: 15px;
    max-width: 1200px;
    margin: 0 auto; width :100%;
}

@media (max-width:1024px){
    .roomInfoWrap {
        padding: 30px 5vw;
    }
    .roomInfo_con01, .roomInfo_con02 {
        display: block;
        width: 100%;
    }
    .roomInfo_text .text {
        font-size: 14px;
    }
}

/* room-sec03 이미지 4개 */
.room-sec03 {
    margin: 0 auto;
    padding: 150px 10vw;
    background: #EBEAE7;
}

.room-sec03 .imgbox-top,
.room-sec03 .imgbox-bottom {
    display: flex;
    gap: 4vw;
    margin-bottom: 5vw;
}
.room-sec03 .imgbox-top {
    justify-content: flex-end;
}
.room-sec03 .imgbox-bottom {
    margin-bottom: 0;
}

.room-sec03 .img-item {
    max-width: 636px;
    background: #fff;
    padding: 25px 83px 25px 25px;
    flex: 1;
    overflow: hidden;
    box-shadow: 0px 0px 20px #5454541C;
}

.room-sec03 .img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width:1400px){
    /* .room-sec03 .imgbox-top {
        transform: translateX(4vw);
    }
    .room-sec03 .imgbox-bottom {
        transform: translateX(-4vw);
    } */
}

/* 768px 이하 */
@media (max-width: 768px) {
    .room-sec03 {
        padding: 100px 5vw;
    }
    
    .room-sec03 .imgbox-top,
    .room-sec03 .imgbox-bottom {
        transform: translateX(0);
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .room-sec03 .imgbox-bottom {
        margin-bottom: 0;
    }
    
    .room-sec03 .img-item {
        padding: 13px 42px 13px 13px;
        width: 80vw;
    }

    .room-sec03 .img-item.second {
        margin-left: auto;
    }
}




/*메인 이외 탑슬라이드 */
/* 초기 상태 */
.topslide .swiper-slide:first-child .slide-caption h2,
.topslide .swiper-slide:first-child .slide-caption p,
.topslide .swiper-slide:first-child .slide-caption .view-more-button {
  opacity: 0;
  transform: translateY(45px);
}

/* 애니메이션 클래스 적용 시 */
.topslide .swiper-slide:first-child .slide-caption.animate h2 {
  transition: all 1s ease;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.topslide .swiper-slide:first-child .slide-caption.animate p {
  transition: all 1s ease;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
