.intro{
    margin-bottom: 40px;
}

.intro_txt{
    max-width: 467px;
}
.intro_txt h2{
    text-align: left;
    font-size:28px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.intro_txt p{
    margin-bottom: 20px;
}
.box{
    border-radius: 10px;
    background: var(--site-secondary);
    padding: 10px;
}
.box h3{
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 7px;
}
.box p{
    background: #fff;
    border-radius: 10px;
    font-weight: bold;
    padding: 15px 20px;
    margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {

    .intro_txt,.intro_img{
        max-width: 48%;
    }
}
@media only screen and (max-width: 960px) {
.intro_txt h2{
        font-size: 24px;
    }
}
@media only screen and (max-width: 568px) {
    .intro{
        margin-bottom: 30px;
    }
    .intro .row{
        flex-direction: column;
    }
    .intro_txt,.intro_img{
        max-width: 100%;
    }
    .intro_txt{
        margin-bottom: 30px;
    }
    .intro_txt h2{
        font-size: 20px;
    }
    .box{
     padding: 5px;   
    }
    .box p{
        padding: 10px;
        line-height: 1.5;
    }
}

/*各お部屋の様子*/
.room h3{
    font-size:20px;
    font-weight: bold;
    margin-bottom: 30px;
}
.room h3::before{
    content: '●';
    color: var(--site-secondary);
    font-size: 22px;
    display: inline-block;
    vertical-align: inherit; 
    margin-right: 5px;
}
.room-list{
    margin-bottom: 60px;
    gap: 1.5vw;
}
.room-list li{
    max-width: 230px;
}
.room-list li img{
    border-radius: 10px;
    overflow: hidden;
}
.room-list li p{
    background:var(--site-secondary);
    color: #fff;
    font-weight: bold;
    font-size:16px;
    text-align: center;
    border-radius: 10px;
    margin-top: 10px;
}

.facility{
    margin-bottom: 60px;
}
.facility-content{
    justify-content: flex-end;
    gap: 4vw;
}
.facility_txt{
    max-width: 655px;
}
.facility_txt h3{
    font-size: 20px;
    margin-bottom: 20px;
}
.facility_txt h3::before{
    content: '●';
    color: var(--site-primary);
    font-size: 22px;
    display: inline-block;
    vertical-align: inherit; 
    margin-right: 5px;
}
.facility_txt p{
    margin-bottom: 10px;
}
.facility_img{
    max-width: 299px;
}

@media only screen and (max-width: 1024px) {
    .room-list li{
        max-width: 23%;
    }
    .facility_img{
        max-width: 30%;
    }
    .facility_txt{
        max-width: 65%;
    }
}
@media only screen and (max-width: 568px) {
    .room h3{
        margin-bottom: 20px;
    }
    .room-list li{
        max-width: 48%;
        width: 100%;
        margin-bottom: 20px;
    }
    .room-list{
        margin-bottom: 10px;
        gap: 10px;
    }
    .facility-content{
        display: block;
    }
    .facility_txt h3{
    text-indent: -.7em;
    padding-left: .7em;
    }
    .facility_img,.facility_txt{
        max-width: 100%;
    }
}

.price h2{
    font-size: 32px;
    text-align: left;
    margin-bottom: 40px;
}
.price h2::before{
    content: '●';
    color: var(--site-primary);
    font-size: 30px;
    display: inline-block;
    vertical-align: inherit; 
    margin-right: 5px;
}
.price h3{
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
}
.price .occupancy{
    margin-bottom: 20px;
}


/*----grid------*/
.occupancy dl,
.experience dl{
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns:repeat(7, 1fr);
    grid-auto-rows: minmax(50px, auto);
}
.occupancy .full,
.experience .full{
    grid-row: 1 / 3;  
    grid-column:1 / 2;
    background:var(--site-secondary) ;
    text-align: center;
    align-items: center;
    display: grid;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}
.experience .full{
    background: var(--site-keycolor);
}
.occupancy dt,.occupancy dd{
    text-align: center;
    border:2px solid var(--site-secondary) ;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}
.occupancy dt{
    background: #ddf1de;
    grid-row: 1;
        border-bottom: none;
    border-left: none;
}
.occupancy dd{
    display: grid;
    border-left: none;
}

.experience dt,.experience dd{
    text-align: center;
    border:2px solid var(--site-keycolor) ;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}
.experience dt{
    background: #e7e4f2;
    grid-row: 1;
    border-bottom: none;
    border-left: none;
}
.occupancy dt:nth-child(12),
.experience dt:nth-child(12){
    border-radius: 0 15px 0 0;
}
.occupancy dd:last-child,
.experience dd:last-child{
    border-radius: 0 0 15px 0;
}
.experience dd{
    border-left: none;
}


.price ul{
    width: 60%;
    margin-left: 40%;
    margin-top: 10px;  
}
.price ul li{
    font-size: 14px;
    font-weight: bold;
}
.experience{
    margin-bottom: 40px;
}
.experience ul{
    text-align: right;
}


.caution-box{
    background:var(--site-primary);
    color: #fff;
    border-radius: 10px;
    padding: 20px 0;
    position: relative;
    margin-bottom: 50px;
}
.caution-box::before{
    content: '';
    background: url(../img/introduction/cution.svg)no-repeat center top;
    display: inline-block;
    width: 39px;
    height: 39px;
    vertical-align: middle;
    margin-right: 10px;
}
@media only screen and (max-width: 1024px) {
    .price{
        overflow: hidden;
    }
    .price ul li{
        text-indent: -2.7em;
        padding-left: 2.7em;
    }
    .occupancy .full,
    .experience .full{
        font-size: clamp(16px, 1.8vw, 20px);
    }
    .occupancy dt,
    .occupancy dd,
    .experience dt,
    .experience dd{
        font-size: clamp(16px, 1.8vw, 18px);
    }
}
@media only screen and (max-width: 960px) {
    .caution-box{
        text-align: left;
        padding: 20px;
        text-indent: -5em;
        padding-left: 5em;
    }
    .caution-box::before{
        margin-left: 20px;
 
    }
}
@media only screen and (max-width: 568px) {
    .price h2{
        font-size: 24px;
    }
    .price h3{
        font-size: 20px;
    }

   /* .occupancy dl,
    .experience dl{
    display: grid;
    grid-auto-rows: minmax(40px, auto);
    }
    .occupancy .full,
    .experience .full{
        grid-column:8 / 1;
        grid-row: 1;
    }
    .occupancy dt,
    .experience dt{
        grid-row: auto;
        grid-column:1 / 4;
    }
    .occupancy dd,
    .experience dd{
        grid-row: auto;
        grid-column: 4 / 8;
    }
    .experience{
        margin-bottom: 30px;
    }
            */
    .price ul{
        width: 100%;
        margin-left: 0;
        margin-bottom: 30px;
    }

        .scroll__inner {
        background-color: #ffffff;
        padding: 0 0 20px 0;
        overflow-x: scroll;
        -ms-overflow-style: none;
        /* IE, Edge 対応 */
        scrollbar-width: none;
        /* Firefox 対応 */
        }
        .scroll__inner::-webkit-scrollbar {
        /* Chrome, Safari 対応 */
        display: none;
        }
        .simplebar-scrollbar::before {
        background: #ffffff;
        border-radius: 0;
        height: 5px !important;
        margin-left: 2px;
        margin-top: 3px;
        }
        .simplebar-scrollbar.simplebar-visible::before {
        opacity: 1;
        }
        .simplebar-track {
        background: #cbd2e0;
        height: 15px !important;
        }

        .occupancy .full, .experience .full{
            width: 140px;
            border-radius: 10px 0 0 10px;
        }
        .occupancy dt, .occupancy dd, .experience dt, .experience dd{
            width: 100px;
        }
        .table_radius{
            border-radius: none;
            overflow: visible;
            margin: 0 -5.3vw 0 0;
        }

    .caution-box{
        text-indent: -3em;
        padding-left: 3em;
    }
    .caution-box::before{
        width: 20px;
        height: 20px;
        background-size: contain;
    }
    .caution-box{
        margin-bottom: 30px;
    }


}

/*-----------------------------
ギャラリー
------------------------------*/
.gallery-list{
    gap: 3vw 2.5vw;
    margin: 60px 0;
}
.gallery-list li{
    width: 30%; 
}
@media only screen and (max-width:568px){
    .gallery-list{
        justify-content: center;
        margin: 20px 0;
    }
    .gallery-list li{
        width: 48%;
    }
}



/*-----------------------------
お問い合わせ
------------------------------*/
.content-area{
    background-color: var(--site-secondary);
    padding: 40px;
}

.contact_box{
    background: #fff;
    border-radius: 30px;
    padding: 20px 0;
    position: relative;
}
.contact_box ul{
    max-width: 545px;
    margin: 0 auto;
}
.contact_box ul::before{
    background: url(../img/introduction/contact_before.png)no-repeat center top;
    content: '';
    width: 210px;
    height: 241px;
    background-size: contain;
    position: absolute;
    left: 4%;
    bottom: -20px;
}
.contact_box ul::after{
    background: url(../img/introduction/contact_after.png)no-repeat center top;
    content: '';
    width: 165px;
    height: 226px;
    background-size: contain;
    position: absolute;
    right: 4%;
    bottom: 0;
}
.contact_box .mail-form{
    margin-left: 0;
    margin-bottom: 20px;
}
.contact_box .mail-form a{
    background:var(--site-secondary);
    border-radius: 50px;
    display: block;
    color: #fff;
    padding: 7px 20px;
}
.contact_box .mail-form a span{
    position: relative;
    padding: 8px 20px 8px 80px;
    font-size: 36px;
    font-weight: bold;
    display: block;
    line-height: 1.3;
}
.contact_box .mail-form a span::before{
    content: '';
    background: url(../img/introduction/icon_mail.png) no-repeat center center;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.contact_box .mail-form a span em{
    font-size: 16px;
    color: var(--site-secondary);
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 4px 12px;
    text-align: center;
    font-weight: bold;
}
.contact_box .call a{
    background: #fff;
    border-radius: 50px;
    display: block;
    color: #333;
}
.contact_box .call a span{
    position: relative;
    padding: 0px 20px 8px 100px;
    font-size: 60px;
    font-weight: bold;
    display: block;
    line-height: 1.1;
}
.contact_box .call a span::before{
    content: '';
    background: url(../img/introduction/icon_tel.png) no-repeat center center;
    width: 85px;
    height: 85px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}
.contact_box .call a span em{
    font-size: 18px;
    display: block;
    text-align: center;
    font-weight: bold;
}
.right_stamp::after{
    bottom: -50px;
}


@media only screen and (max-width: 1024px) {
    .contact_box .call ,.contact_box .mail-form{
        max-width: 80%;
        margin: 10px auto;
    }
    .contact_box{
        padding:20px 0 ;
    }
    .contact_box ul::before{
        width: 21%;
        height: 100%;
    }
    .contact_box ul::after{
        width: 18%;
        height: 100%;
    }
    .contact_box .mail-form a span{
        font-size: 26px;
        line-height: 1.5;
    }
    .contact_box .call a span{
        font-size: 46px;
    }
    .contact_box .call a span::before{
        background-size: contain;
        width: 65px;
        height: 65px;
    }
}
@media only screen and (max-width: 960px) {
    .content-area{
        padding: 30px;
    }
    .content-area .inner{
        width: 100%;
    }
    .contact_box .call ,.contact_box .mail-form{
        max-width: 70%;
    }
    .contact_box ul::before{
        width: 18%;
        bottom: -15%;
    }
    .contact_box ul::after{
        width: 16%;
        bottom: -10%;
    }
    .contact_box .mail-form a span{
        font-size: 20px;
    }
    .contact_box .call a span{
        font-size: 40px;
        padding: 0px 20px 8px 80px;
    }
     .contact_box .call a span::before{
        width: 50px;
        height: 50px;
}
}
@media only screen and (max-width: 568px) {
    .content-area{
        padding: 20px 15px;
    }
    .contact_box{
        background: none;
    }
    .contact_box ul::before,
    .contact_box ul::after{
        content: none;
    }
    .contact_box ul{
        display: flex;
        flex-direction: column;
        gap:10px;
    }
    .contact_box .call,
    .contact_box .mail-form {
        max-width: 100%;
        margin: 0;
    }
    .contact_box .mail-form a span{
        padding: 8px 20px 8px 65px;
    }
    .contact_box .call a span{
        font-size: 34px;
        padding: 0px 20px 8px 65px;
    }
    .contact_box .call a span em{
        font-size: 14px;
    }
    .contact_box .mail-form a,
    .contact_box .call a{
        padding: 5px 10px;
        width: 100%;
    }
    .contact_box .mail-form a span::before{
        border: 3px solid var(--site-secondary);
        border-radius: 50px;
        width: 50px;
        height: 50px;
        background-size: contain;
    }
    .contact_box .mail-form a{
        background-color: #fff;
        color: var(--site-secondary);
    }
    .contact_box .mail-form a span em{
        background: var(--site-secondary);
        color: #fff;
    }
    .contact_box{
        padding: 0;
    }
}