/* ===============================================================
    * room
=============================================================== */
.room-wrap {display: flex; justify-content: space-between; align-items: flex-start;}
.img-wrap {width: 50%; position: relative; padding: 120px;}
.img-wrap:after {content: ''; position: absolute; left: 0; right: 0; top: 0; bottom: 0; background: var(--color-3); z-index: -1;}
.img-wrap .imgbox {width: 100%; height: 550px;}
.info-wrap {width: calc(50% - 80px); height: 790px; margin-left: 80px; border-bottom: 1px solid rgba(153,153,153,.4);}
.info-wrap h2 {font-size: 60px; padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid rgba(153,153,153,.4);}
.info-wrap h3 {font-size: 20px; color: var(--color-2);}
.info-wrap h4 {font-size: 24px; color: #222; margin: 60px 0 30px;}
.info-wrap ul {width: 660px;}
.info-wrap ul li {display: flex; justify-content: flex-start; align-items: flex-start; margin-bottom: 15px;}
.info-wrap ul li span {width: 100px; font-size: 14px; line-height: 24px; letter-spacing: -0.02em; color: #222;}
.info-wrap ul li div {width: calc(100% - 100px); font-size: 14px; line-height: 24px; color: #777;}
.info-wrap ul li div.c1 {color: var(--color-1);}

.infobox {width: 660px; margin-top: 45px;}
.infobox .box {width: 100%;}
.infobox .box-head {width: 100%; height: 40px; padding: 0 15px; display: flex; justify-content: space-between; align-items: center; background: var(--color-2); font-size: 14px; letter-spacing: 0.02em; color: #fff; cursor: pointer; margin-bottom: 20px;}
.infobox .box-txt {padding-bottom: 20px; display: none;}
.calendar-wrap {padding-top: 120px;}
.calendar-wrap h2 {font-size: 40px;}
.calendar-wrap h3 {font-size: 18px; color: var(--color-2); margin: 10px 0 30px;}
.calendar-wrap .btns {display: flex; justify-content: center; align-items: center;}
.calendar-wrap .btns a {margin: 0 10px;}

.room-preview h2 {font-size: 24px; letter-spacing: 0.1em; margin-bottom: 80px;}
.prelist {display: flex; justify-content: flex-start; align-items: center;}
.prelist .item {width: calc((100% - 60px) / 4); margin-right: 20px;}
.prelist .item:last-of-type {margin-right: 0;}   
.prelist .imgbox {width: 100%; height: 245px; overflow: hidden;}
.prelist .imgbox img {transition: .4s;}
.prelist .txtbox h3 {font-size: 24px; margin: 20px 0 15px;}
.prelist .txtbox h4 {font-size: 16px; color: var(--color-2);}
.prelist .item:hover img {transform: scale(1.1);}

@media (max-width: 992px){
    .room.wrap {padding-top: 0;}
    .room-wrap {display: block;}
    .img-wrap {width: 100%; padding: 30px 15px;}
    .img-wrap .imgbox {height: 265px;}
    .info-wrap {width: 100%; height: auto; margin-left: 0; padding: 0 15px;}
    .info-wrap h2 {font-size: 30px; padding-bottom: 15px; margin-bottom: 15px; margin-top: 40px;}
    .info-wrap h3 {font-size: 14px;}
    .info-wrap h4 {font-size: 14px; margin: 20px 0;}
    .info-wrap ul {width: 100%;}
    .info-wrap ul li {margin-bottom: 10px;}
    .info-wrap ul li span {width: 90px;}
    .info-wrap ul li div {width: calc(100% - 90px);}

    .infobox {width: 100%; margin-top: 35px;}
    .infobox .box-head {height: 35px; font-size: 13px;}

    .calendar-wrap {padding-top: 60px;}
    .calendar-wrap h2 {font-size: 30px;}
    .calendar-wrap h3 {font-size: 14px;}
    .calendar-wrap .btns a {margin: 0 5px;}

    .room-preview.wrap {padding-bottom: 30px;}
    .room-preview h2 {font-size: 16px; margin-bottom: 40px;}
    .prelist {flex-wrap: wrap;}
    .prelist .item {width: calc(50% - 5px); margin-right: 10px; margin-bottom: 30px;}
    .prelist .item:nth-of-type(2n) {margin-right: 0;}
    .prelist .imgbox {height: 100px;}
    .prelist .txtbox h3 {font-size: 16px; margin: 10px 0 5px;}
    .prelist .txtbox h4 {font-size: 12px;}
}