@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;
}
.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 .text, .section01 .imgbox {
    width: 32vw;
}

.section01 .text { /* 왼쪽 텍스트 영역 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    height: 46.875vw;
    background: #F3ECE4;
}
.section01 .text h3 {
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 400;
}
.section01 .text h3 strong {
    font-size: 1.5em;
    margin-right: 3px;
}
.section01 .text h3 small {
    font-size: 0.66em;
    vertical-align: middle;
}
.section01 .text p:first-of-type {
    margin-bottom: 20px;
}
.section01 .text p:last-of-type {
    font-weight: 600;
}
.section01 .imgbox img {
    max-width: 615px;
    width: 32vw;
}

.accordion { width: 31%;}
.accordion .accordion_title {
    position: relative;
    padding: 30px 25px;
    font-size: 20px;
    letter-spacing: 1.4px;
    font-weight: 400;
    border: inherit;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    transition: 0.5s;
    text-transform: uppercase;
    font-family: 'GangwonEducationTteontteon';
}
.accordion .accordion_title::before {
    content: "＋";
    display: block;
    position: absolute;
    top: 50%; right: 25px; transform: translate(0, -50%);
    padding: 0px 10px;
    width: 16px; height: 23px;
    font-size: 26px;
    line-height: 0.95;
    text-align: center;
    transition: all 0.4s ease;
    font-family: 'Pretendard', 'sans-serif';
}
/* hover 시 title 이동 */
.accordion .accordion_title:hover, .accordion_title.active{
    padding: 30px 25px 30px 40px;
}
.accordion .accordion_title.active::before {
    content: "－";
}
.accordion .accordion_title span {
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.32px;
    margin-left: 8px;
    font-family: 'Pretendard', 'sans-serif';
    transform: translateY(-2px);
}
.accordion .accordion_title .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #704932;
    overflow: hidden;
    transition: width 1.5s ease; /* 애니메이션 */
}
/* 화면에 감지되었을 때 적용할 클래스 */
.accordion .accordion_title .line.active {
    width: 100%;
}
.accordion .accordion_title .line:after{
    content: "";
    position: absolute;
    left: -100%;
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #181818, #704932);
    transition: 2s;
}
.accordion .accordion_content {
    display: none;
    padding: 20px 25px 30px 25px;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 1.8;
    border: none;
    background: transparent;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
}
.accordion_content.active {
    transform: translateX(15px);
}
@media(max-width:1400px){
    .accordion {
        width: 36%;
    }
    .accordion .accordion_title span { font-size: 12px;} 
    .accordion .accordion_content { font-size: 14px;}
}
@media (max-width:1200px) {
    .section01 {
        height: auto;
        justify-content: flex-start;
        gap: 60px;
    }
    .section01 .imgbox { display: none;}
    .section01 .text { width: 45vw;}
}
@media(max-width:1024px){
    .section01 {
       
    }
    .section01 .text h3 {
        font-size: 19px;
    }
    .section01 .text p:first-of-type {
        font-size: 13px;
    }
    .section01 .text p:last-of-type {
        font-size: 13px;
    }
    .accordion {
        width: 45%;
    }
}
@media(max-width:768px){
    .section01 { 
        flex-direction: column;
        gap: 0;
    }
    .section01 .text {
        width: 100vw;
        height: auto;
        padding: 66px 0;
    }
    .section01 .imgbox { 
        display: block;
        width: 100vw;
    }
    .section01 .imgbox img { 
        width: 100vw;
        max-width: 100vw;
    }
    .accordion {
        width: 80%;
        margin: 40px 0;
    }
    .accordion .accordion_title {
        font-size: 15px;
        letter-spacing: 1.05px;
        padding: 25px 20px 20px 20px;
    }
    /* hover 시 title 이동 */
    .accordion .accordion_title:hover, .accordion_title.active{
        padding: 25px 20px 20px 30px;
    }
    .accordion .accordion_title span {
        letter-spacing: 0.24px;
        color: #7b523a;
    }
    .accordion .accordion_content {
        font-size: 12px;
        padding: 15px 25px 10px 16px;
    }
}
@media(max-width:360px) {
    .accordion {
        width: 90%;
    }
}
/* section01 끝*/



/* section 02 룸미리보기 roomlist.css*/



/* section03 */

.section03 {
    padding: 10.4vw 6.25vw;
    display: flex;
}
.section03 img.sec03_01 {
    width: 60vw;
    max-width: 1150px;
}
.section03 .right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.section03 .right h2 {
    transform: translateX(-4.6vw);
}
.section03 .right h2.shadow-title .shadow-text {
    top: auto;
    bottom: -1.7vw;
}
.section03 .right p {
    margin: 60px 0 40px 5.9vw;
    font-size: 16px;
}
.section03 .right .more-btn {
    width: 97px;
    margin: 0 0 0 5.9vw;
}
@media (max-width:1200px){
    .section03 img.sec03_01 {
        width: 50vw;
    }
    .section03 .right p {
        margin: 20px 0 40px 5.9vw;
        font-size: 12px;
    }
}

@media (max-width:768px){
    .section03 {
        flex-direction: column;
        padding: 100px 7.5vw 100px 0;
    }
    .section03 img.sec03_01 {
        width: 84.25vw;
    }
    .section03 .right h2 {
        transform: translate(7.5vw, -0.4em);
    }
    .section03 .right .cont {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 26px;
    }
    .section03 .right p {
        margin: 0;
        font-size: 12px;
    }
    .section03 .right .more-btn {
        width: 86px;
        margin: 0;
    }
}
/* section03 끝 */

