#room_wrap {
    margin-top: 90px;
}

/* room_detail */
.room_detail {
    padding: 60px 0;
}
.room_detail > div {
    position: relative;
}
.room_detail .main_img {
    width: 50%;
    margin-left: 0;
    margin-right: 0;
}
.room_detail .main_img img.slide_img {
    display: block;
    width: 100%;
    height: 720px;
    object-fit: cover;
}
/* 슬라이드 pagenation */
.room_detail .swiper-pagination::after {
    content: "";
    display: block;
    clear: both;
}
.room_detail .swiper-pagination {
    position: static;
    width: max-content !important;
    float: right;
}
.room_detail .swiper-pagination span {
    border: 1px solid #555555;
    border-radius: 0;
    background-color: transparent;
    /* opacity: 1; */
}
.room_detail .swiper-pagination span:last-child {
    margin: 0 0 0 4px;
}
.room_detail .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: #555555;
}
/* 슬라이드 pagenation end */
.room_detail .main_txt {
    position: absolute;
    top: 0;
    left: 50%;
    width: 33.5%;
    height: 100%;
    margin-left: 126px;
}


.room_detail .main_txt > span {
    display: block;
    font-size: 2.5em;
    font-weight: 900;
    color: #bbb0a3;
}
.room_detail .main_txt h3 {
    font-family: 'S-CoreDream-5Medium', snas-serif;
    font-size: 3.7em;
    letter-spacing: 1px;
    word-break: keep-all;
}
.room_detail .main_txt h3 span {
    font-size: 1.2em;
}
.room_detail .main_txt .mo_line {
    display: none;
    position: relative;
    width: 100%;
    height: 1px;
    margin: 25px 0 27px 0;
    background-color: #949494;
}
.room_detail .main_txt .mo_line:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -1px);
    width: 100%;
    height: 2px;
    background-color: #555555;
    animation: line 0.5s linear 1s 1 forwards;
}
@keyframes line {
    0% {
        width: 100%;
    }
    100% {
        width: 15%;
    }
}

.room_slide_mo {overflow: visible !important;}
/*룸 모바일 슬라이드 밑에 페이지네이션 보이게 설정*/

.room_detail .main_txt .mo_icon {
    display: none;
    width: 45px;
    margin: 0 auto;
}
.room_detail .main_txt p {
    margin: 30px 0;
    font-size: 1.2em;
    word-break: keep-all;
}
.room_detail .main_txt > .slide_pc {
    position: relative;
}
.room_detail .main_txt > .slide_mo, .slide_mo {
    display: none;
    padding: 0 30px;
    box-sizing: border-box;
}
.room_detail .main_txt .thumbnail {
    position: relative;
    z-index: 1;
    display: flex;
    margin: 30px 0 40px 0;
}
.room_detail .main_txt .thumbnail li {
    cursor: pointer;
}
.room_detail .main_txt .thumbnail li img {
    display: block;
    width: 100%;
}
.room_detail .main_txt .button.slide_pc_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    width: calc(100% + 56px);
    cursor: pointer;
}
.room_detail .main_txt .button i {
    display: block;
    width: 18px;
}
.room_detail .main_txt .accordion .accordion_title {
    position: relative;
    padding: 0 25px;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 58px;
    border: inherit;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    transition: 0.5s;
}
.room_detail .main_txt .accordion .accordion_title::before,
.room_detail .main_txt .accordion .accordion_title::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background-color: #949494;
    transition: 1s;
}
.room_detail .main_txt .accordion .accordion_title::before {
    right: 25px;
    width: 16px;
    height: 2px;
}
.room_detail .main_txt .accordion .accordion_title::after {
    display: none;
    right: 32px;
    width: 2px;
    height: 16px;
}
.room_detail .main_txt .accordion .accordion_title span {
    display: inline-block;
    font-family: 'S-CoreDream-4Regular';
    font-size: 0.9em;
    font-weight: 400;
    margin-left: 8px;
    letter-spacing: 0;
    
}
.room_detail .main_txt .accordion .accordion_title span.ui-accordion-header-icon {
    display: none;
}
.room_detail .main_txt .accordion .accordion_title .line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
    overflow: hidden;
}
.room_detail .main_txt .accordion .accordion_title .line:after{
    content: "";
    position: absolute;
    left: -100%;
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #181818, #d4d4d4);
    transition: 2s;
}
/* 아코디언 타이틀 애니메이셔 end */
.room_detail .main_txt .accordion .accordion_title[aria-selected="true"]::after {
    display: block;
}
.room_detail .main_txt .accordion .accordion_title:hover::before,
.room_detail .main_txt .accordion .accordion_title:hover::after {
    background-color: #181818;
}
.room_detail .main_txt .accordion .accordion_title:hover {
    padding: 0 35px;
}
.room_detail .main_txt .accordion .accordion_title[aria-selected="true"] .line:after,
.room_detail .main_txt .accordion .accordion_title:hover .line:after {
    left: 0;
}
/* 아코디언 타이틀 애니메이션 end */
.room_detail .main_txt .accordion .accordion_content {
    display: none;
    padding: 20px 25px 30px 20px;
    font-family: 'S-CoreDream-4Regular';
    color: #949494;
    line-height: 22px;
    border: none;
    background: transparent;
    overflow: hidden;
}
/* room_detail end */
/* room_info */
.room_info {
    width: 80%;
    /* margin: 80px auto; */
    margin: 0 auto;
    text-align: center;
}
.room_info > div {
    /* margin: 0 100px; */
}
.room_info .room_daily_price {
    height: 200px;
    background-color: grey;
}
.room_info .wave {
    /* margin: 40px 0; */
}
/* room_info end*/

/* room_pic */
.room_pic * {
    box-sizing: border-box;
}
.room_pic .box1 {
    margin-top: 3%;
}
.room_pic .box2 {
    display: flex;
    margin: 3% 0 6%;
}
.room_pic .box2 .img_pic {
    width: 45%;
}
.room_pic .box2 .img_logo {
    width: 10%;
}
.room_pic .box2 .img_logo.logo_mo {
    display: none;
}
/* room_pic end*/

/* room_other */
.room_other {
    position: relative;
    width: 50%;
    /* margin: 180px 0 180px 0; */
    margin: 60px 0 180px 0;
    background: url("/images/room/roomList_bg.jpg") no-repeat center;
    background-size: cover;
}
.room_other .main {
    height: 650px;
    margin-left: 22%;
    padding: 90px 0;
    box-sizing: border-box;
}
.room_other .main .room_intro {
    margin-top: 40px;
}
.room_other .main .room_intro .icon {
    display: block;
    margin-top: 70px;
    width: 55px;
}
.room_other .main .room_intro strong {
    display: inline-block;
    margin: 14px 0 30px 0;
    font-family: 'ZCOOL XiaoWei', serif;
    font-size: 3.6em;
    font-weight: 400;
}
.room_other .main .room_intro p {
    font-family: 'S-CoreDream-3Light';
    font-size: 1.2em;
    color: #949494;
}
.room_other .main .card {
    position: absolute;
    top: 50%;
    right: -80%;
    transform: translate(0, -50%);
    margin-left:420px;
}
.room_other .main .card .box {
    display: flex;
    gap: 55px;
}
.room_other .main .card .box .item {
    position: relative;
    box-shadow: 7px 7px 7px rgb(193 197 196);
}
.room_other .main .card .box .item .txt {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px 40px;
    box-sizing: border-box;
    color: #fff;
    background-color: rgba(18,18,18, 0.85);
}
.room_other .main .card .box .item .txt .room_name {
    display: block;
    font-family: "S-CoreDream-5Medium";
    font-size: 1.6em;
    font-weight: 400;
}
.room_other .main .card .box .item .txt .sub {
    font-size: 1.2em;
    font-family: 'S-CoreDream-4Regular';
    color: #c1c1c1;
    padding-right: 75px;
}
.room_other .main .card .box .item .txt .info {
    margin-top: 30px;
    font-size: 1.2em;
    font-family: 'S-CoreDream-2ExtraLight';
    line-height: 25px;
}
.room_other .main .card .box .item .txt .view {
    position: absolute;
    right: 29px;
    bottom: 27px;
    font-family: 'Unica One', cursive;
    font-size: 1em;
    line-height: 25px;
}
.room_other .main .card .box .item .txt .view:hover::after {
    width: 100%;
}
.room_other .main .card .box .item .txt .view::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: 1s;
}
.room_other .main .card .box .item .txt .view a {
    display: block;
}
/* room_other end */
@media (max-width: 1400px){
    .room_other .main .card .box .item .txt {
        padding: 18px 20px;
    }
    .room_other .main .card .box .item .txt .sub {
        font-size: 0.9em;
    }
    .room_other .main .card .box .item .txt .info {
        font-size: 0.9em;
    }
}

/* 모바일 상태 */
@media (max-width: 1200px) {
    #room_wrap {
        margin-top: 60px;
    }
    /* room_detail */
    .room_detail {
        padding: 20px 0;
    }
    .room_detail > div {
        position: relative;
    }
    .room_detail .main_img {
        display: none;
    }
    .room_detail .main_img img.slide_img {
        display: block;
        width: 100%;
    }
    /* 슬라이드 pagenation */
    .room_detail .swiper-pagination {
        float: none;
        margin: 5px auto;
    }
    /* 슬라이드 pagenation end */
    .room_detail .main_txt {
        position: static;
        width: 100%;
        margin-top: 50px;
        margin-left: auto;
        text-align: center;
    }
    .room_detail .main_txt > span {
        font-size: 1.8em;
    }
    .room_detail .main_txt h3 {
        font-size: 1.8em;
    }
    .room_detail .main_txt .mo_line {
        display: block;
    }
    .room_detail .main_txt .mo_icon {
        display: block;
    }
    .room_detail .main_txt p {
        margin: 15px 0;
        padding: 0 20px;
        box-sizing: border-box;
        font-size: 1em;
        letter-spacing: -1px;
    }
    .room_detail .main_txt > .slide_pc {
        display: none;
    }
    .room_detail .main_txt > .slide_mo {
        display: block;
    }
    .room_detail .main_txt > .slide_mo .room_mo_prev,
    .room_detail .main_txt > .slide_mo .room_mo_next {
        position: absolute;
        z-index: 2;
        top: 50%;
        transform: translate(0, -50%);
        width: 18px;
    }
    .room_detail .main_txt > .slide_mo .room_mo_prev {
        left: 10px;
    }
    .room_detail .main_txt > .slide_mo .room_mo_next {
        right: 10px;
    }
    .room_detail .main_txt .thumbnail {
        display: none;
    }
    /* 아코디언 */
    .room_detail .main_txt .accordion {
        margin: 70px 0 0 0;
        padding: 0 30px;
        text-align: left;
        box-sizing: border-box;
    }
    .room_detail .main_txt .accordion .accordion_title {
        padding: 0 10px;
        font-size: 1.2em;
        line-height: 42px;
    }
    .room_detail .main_txt .accordion .accordion_title::before,
    .room_detail .main_txt .accordion .accordion_title::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        background-color: #949494;
        transition: 1s;
    }
    .room_detail .main_txt .accordion .accordion_title::before {
        right: 10px;
        width: 12px;
        height: 2px;
    }
    .room_detail .main_txt .accordion .accordion_title::after {
        display: none;
        right: 15px;
        width: 2px;
        height: 12px;
    }
    .room_detail .main_txt .accordion .accordion_title span {
        display: inline-block;
        font-family: 'S-CoreDream-4Regular';
        font-size: 0.9em;
        margin-left: 8px;
    }
    /* 아코디언 타이틀 애니메이셔 end */
    .room_detail .main_txt .accordion .accordion_title:hover {
        padding: 0 10px;
    }
    /* 아코디언 타이틀 애니메이션 end */
    .room_detail .main_txt .accordion .accordion_content {
        display: none;
        padding: 10px 8px 90px 8px;
    }
    /* room_detail end */
    /* room_info */
    .room_info {
        width: 100%;
        margin: 30px auto;
        padding: 0 30px;
        box-sizing: border-box;
    }
    .room_info .room_daily_price {
        height: 125px;
    }
    /* .room_info .wave {
        display: none;
    } */
    /* room_info end*/
    /* room_other */
    .room_other {
        width: 100%;
        margin: 60px 0 0 0;
        background: url("/images/room/roomList_bg_mo.jpg") no-repeat center;
        background-size: cover;
    }
    .room_other .main {
        height: max-content;
        margin-left: auto;
        padding: 82px 0;
    }
    .room_other .main .room_intro {
        margin-top: 0;
        text-align: center;
    }
    .room_other .main .room_intro .icon {
        width: 50px;
        margin: 0 auto;
    }
    .room_other .main .room_intro strong {
        margin: 0 0 10px 0;
        font-size: 3em;
    }
    .room_other .main .room_intro p {
        padding: 0 30px;
        box-sizing: border-box;
        font-size: 1em;
        color: #555555;
    }
    .room_other .main .card {
        position: static;
        transform: none;
        margin-left: 0;
        padding: 0 30px;
        box-sizing: border-box;
    }
    .room_other .main .card .box {
        display: flex;
        flex-flow: column;
        gap: 20px;
        margin: 20px 0 0 0;
    }
    .room_other .main .card .box .item {
        height: 207px;
    }
    .room_other .main .card .box .item .img {
        height: 100%;
    }
    .room_other .main .card .box .item .img img {
        height: 100%;
        object-fit: cover;
    }

    .room_other .main .card .box .item .txt {
        padding: 10px 20px;
    }
    .room_other .main .card .box .item .txt .room_name {
        font-size: 1.3em;
    }
    .room_other .main .card .box .item .txt .sub {
        display: block;
        margin-top: -1px;
        font-size: 1em;
        word-break: keep-all;
    }
    .room_other .main .card .box .item .txt .info {
        display: none;
    }
    .room_other .main .card .box .item .txt .view {
        right: 20px;
        bottom: 7px;
        font-size: 0.8em;
    }
    .room_other .main .card .box .item .txt .view::after {
        bottom: 5px;
    }
    /* room_other end */

    /* room_pic */
    .room_pic .box1 {
        margin-top: 10%;
    }
    .room_pic .box2 {
        display: block;
        margin: 10% 0 6%;
    }
    .room_pic .box2 .img_pic {
        width: 100%;
    }
    .room_pic .box2 .img_logo {
        width: 100%;
    }
    .room_pic .box2 .img_logo.logo_pc {
        display: none;
    }
    .room_pic .box2 .img_logo.logo_mo {
        display: inline;
    }

    /* room_pic end*/
}

@media (max-width:350px){
    .room_detail .main_txt p {
        font-size: 0.9em;
    }
}



/* 방갈로 상단 */
#room_wrap.bungalow_wrap {
    margin-top: 60px;
}
.bungalow_wrap .room_detail .main_txt > span {
    font-size: 2.0em;
    line-height: 1.2;
}
.bungalow_wrap .room_detail .main_txt h3 {
    font-size: 3.2em;
    line-height: 1.5em;
}
.room_detail .main_txt dl {
    margin-top: 10px;
}
.room_detail .main_txt dt{
    padding: 1em 0 0.3em;
    font-size: 1.4em;
    font-weight: 700;
    color: #5f4526;
}
.room_detail .main_txt dd {
    font-size: 1.17em;
    padding-left: 2em;
    font-weight: 600;
    color: #333;
}
.room_detail .main_txt dd::before {
    content: "· ";
    color: #5f4526;
    font-weight: 700;
    margin-left: -0.55em;
}
.bungalow_wrap .room_detail .main_txt > .slide_pc {
    width: 80%;
}
@media(max-width:1400px){
    .room_detail .main_txt dt{
        padding: 1em 0 0.3em;
        font-size: 1.2em;
        font-weight: 700;
        color: #5f4526;
    }
    .room_detail .main_txt dd {
        font-size: 1em;
        padding-left: 2em;
        font-weight: 600;
        color: #333;
    }
    .bungalow_wrap .room_detail .main_txt > .slide_pc {
        width: 100%;
    }
}
@media(max-width:1200px){
    .bungalow_wrap .slide_mo {
        display: block;
        padding: 0;
    }
    .bungalow_wrap .room_detail .main_txt > span {
        font-size: 1.2em;
    }
    .bungalow_wrap .room_detail .main_txt h3 {
        font-size: 1.8em;
    }
    .room_detail .main_txt dl {
        margin-top: 0px;
        padding: 0 3%;
        text-align: left;
    }
    .room_detail .main_txt dd {
        padding-left: 1.5em;
        word-break: keep-all;
    }
}


/* 방갈로 이용규정 주의사항 */
 .bungalow-rule {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 2rem;
    box-sizing: border-box;
    border: 1px solid #ddd;
  }

  .bungalow-rule article {
    flex: 1 1 50%;
    padding: 1.5rem;
    box-sizing: border-box;
  }

  .bungalow-rule h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: #5f4526;
  }

  .bungalow-rule ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
  }

  .bungalow-rule li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 1.17em;
    font-weight: 600;
    color: #333;;
    word-break: keep-all;
  }
  .bungalow-rule li::before {
    content: "· ";
    color: #5f4526;
    font-weight: 700;
    margin-left: -0.55em;
  }

  /* 가운데 세로 라인 */
  .bungalow-rule .rule-usage {
    border-right: 1px solid #696969;
  }

  @media (max-width: 1200px) {
    .bungalow-rule {
      flex-direction: column;
      padding: 0;
    }
    .bungalow-rule article {
        padding: 1rem;
    }
    .bungalow-rule .rule-usage {
      border-right: none;
      border-bottom: 1px solid #696969;
    }
    .bungalow-rule h3 {
        font-size: 1.2em;
        margin-bottom: 0.4rem;
    }
    .bungalow-rule ul {
        padding-left: 1rem;
    }
    .bungalow-rule li {
        font-size: 1em;
        margin-bottom: 0.3rem;
    }
  }