@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%;
}

/* section01 */
.section01 {
    /* height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center; */
}
.section01 .top {
    display: flex;
    gap: 8.5vw;
}
.section01 .top img {
    width: 39vw;
    max-width: 750px;
}
.section01 .top .text {
    margin-top: 4.17vw;
}
.section01 .top .text p {
    margin-top: 32px;
}
@media(max-width:768px){
    .section01 .top { display: block;}
    .section01 .top img {
        width: 85vw;
    }
    .section01 .top .text {
        margin-top: 30px;
    }
    .section01 .top .text p { margin-top: 21px; }
}
.section01 .bottom {
    display: flex;
    justify-content: space-between;
}

.accordion { 
    width: 470px;
    margin-top: 50px;
}
.accordion .accordion_title {
    position: relative;
    padding: 30px 25px 10px;
    border: inherit;
    border-radius: 0;
    background: transparent;
    transition: 0.5s;
}
.accordion .accordion_title span {
    display: inline-block;
    font-size: 15px;
    margin-left: 8px;
    color: #ececec;
}
.accordion .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #AB9D58;
    overflow: hidden;
}
.accordion .accordion_content {
    position: relative;
    padding: 0px 25px 30px 25px;
    font-size: 15px;
    line-height: 25px;
    border: none;
    background: transparent;
    overflow: hidden;
}
.section01 .bottom .imgbox {
    margin-top: -26px;
}
.section01 .imgbox img {
    width: 27.6vw;
    max-width: 530px;
}
@media(max-width:1420px){
    .section01 .bottom .imgbox { margin-top: 65px;}
}
@media(max-width:1200px){
    .accordion { 
        width: 400px;
    }
    .section01 .imgbox img {
        width: 22.6vw;
    }
}
@media(max-width:768px){
    
    .section01 .bottom {
        flex-direction: column-reverse;
    }
    .section01 .bottom .imgbox {
        margin: 50px 0 15px auto; 
    }
    .section01 .imgbox img {
        width: 56.5vw;
    }
    .accordion {
        width: 100%;
        margin: 0 auto;
    }
    .accordion .accordion_title::before { right: 8px;}
    .accordion .accordion_title { 
        /* font-size: 20px; 
        letter-spacing: 1.4px; */
        padding: 20px 3px 0;
    }
    .accordion .accordion_title span { font-size: 13px; letter-spacing: 0.26px; } 
    .accordion .accordion_content { 
        font-size: 12px;
        line-height: 20px;
        padding: 5px 5px 25px;
    }
}
/* section01 끝*/



/* section 02 */
.section02 {
    position: relative;
}
.section02 .top {
    display: flex;
    gap: 5.7vw;
    margin-bottom: 80px;
}
.section02 .top .img02_01 {
    width: 46.8vw;
    max-width: 900px;
}
.section02 .top .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section02  .bottom {
    display: flex;
    gap: 6.9vw;
    margin-bottom: 190px;
}
.section02  .bottom .left {
    width: 24.4vw;
    max-width: 470px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.section02  .bottom .logo {
    width: 180px;
    margin: 1vw 0 5vw;
}
.section02  .bottom .img02_03 {
    width: 40.1vw;
    max-width: 770px;
}
.section02 .room-navi-wrap {
    position: relative;
    margin: 0 auto 62px;
    display: flex;
    justify-content: center;
}
.section02 .room-navi {
    width: 34.38vw;
    display: flex;
    justify-content: center;
}
.section02 .room-navi-wrap::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #AB9D58;
    transition: all 1s ease;
}
.section02 .room-navi-wrap::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #AB9D58;
    transition: all 1s ease;
}
.section02 .room-navi-wrap.active::before, .section02 .room-navi-wrap.active::after {
    width: 20vw;
}
.section02 .room-navi li {
    width: calc(100% / 6);
}
.section02 .room-navi li a {
    display: block;
    text-align: center;
    color: #AB9D58;
    font-size: 18px;
}
@media(max-width:768px){
   .section02 .top {
        flex-direction: column;
        margin-bottom: 45px;
   }
   .section02 .top .img02_01 {
        width: 85vw;
        max-width: 653px;
   }
   .section02  .bottom {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 92px;
   }
   .section02 .bottom .left {
        flex-direction: row-reverse;
        width: 100%;
        max-width: 768px;
   }
   .section02 .img02_02 {
        width: 52vw;
   }
   .section02 .bottom .logo {
        width: 27vw;
        margin: 0;
   }
   .section02 .bottom .img02_03 {
        width: 85vw;
   }
   .section02 .room-navi-wrap::before {
        left: -8.3%;
    }
    .section02 .room-navi-wrap::after {
        right: -8.3%;
    }
    .section02 .room-navi-wrap.active::before, .section02 .room-navi-wrap.active::after {
        width: 10vw;
    }
    .section02 .room-navi {
        width: 84vw;
    }
    .section02 .room-navi li:nth-of-type(1), .section02 .room-navi li:nth-of-type(2), .section02 .room-navi li:nth-of-type(3) {
        margin-right: 7px;
    }
   .section02 .room-navi li:nth-of-type(4) {
        margin-right: 4px;
   }
}


/* section 02 끝*/



