/* SPACE */
.facility_space{
    background: url("../img/facility/space_bg.webp") center center / cover no-repeat;
    padding: 80px 20px 100px;
}
.facility_space_inner{
    width: min(90%, 1200px);
    margin: 0 auto;
}
.facility_space_content{
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.facility_space_image{
    width: 55%;
}
.facility_space_image img{
    width: 100%;
    display: block;
}
.facility_space_text{
    width: 45%;
    color: #fff;
    font-size: 18px;
    line-height: 2;
}
.facility_lead_yellow{
    color: #FFDD44;
    font-weight: bold;
    margin-bottom: 28px;
}

@media (max-width: 768px){
    .facility_space{
        padding: 10% 0;
    }
    .facility_space_content{
        display: block;
        margin-top: 24px;
    }
    .facility_space_image,
    .facility_space_text{
        width: 100%;
    }
    .facility_space_text{
        margin-top: 24px;
        font-size: 18px;
        line-height: 2;
    }
}


/* ========================================
   MACHINE
======================================== */
.facility_machine{
    background: url("../img/facility/machine_bg.webp") center center / cover no-repeat;
    padding: 80px 20px 100px;
}
.facility_machine_inner{
    width: min(90%, 1200px);
    margin: 0 auto;
}
.facility_machine_wrap{
    margin-top: 40px;
    position: relative;
    display: flex;
    align-items: stretch;
}
.facility_machine_image{
    width: 58%;
}
.facility_machine_image img{
    width: 100%;
    display: block;
}
.facility_machine_box{
    width: 45%;
    background: #1F2D5D;
    color: #fff;
    padding: 3% 2%;
    font-size: 18px;
    line-height: 2;
}
.facility_machine_box span{
    color: #FFDD44;
    font-weight: 500;
}
.facility_machine_list{
    margin: 28px 0;
}
.facility_machine_list h3{
    color: #FFDD44;
    font-size: 20px;
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(255, 255, 255);
}
.facility_machine_list li{
    margin-bottom: 8px;
}

@media (max-width: 768px){
    .facility_machine{
        padding: 10% 0;
    }
    .facility_machine_wrap{
        display: block;
        margin-top: 24px;
    }
    .facility_machine_image{
        width: 100%;
    }
    .facility_machine_box{
        width: auto;
        margin-top: 20px;
        padding: 28px 24px;
        font-size: 18px;
        line-height: 2;
    }
    .facility_machine_list h3{
        font-size: 22px;
    }
}


/* ========================================
   AMENITY
======================================== */
.facility_amenity{
    background: url("../img/facility/amenity_bg.webp") center center / cover no-repeat;
    padding: 80px 20px 100px;
}
.facility_amenity_inner{
    width: min(90%, 1200px);
    margin: 0 auto;
}
.facility_amenity_intro{
    margin: 3% 0 7%;
    color: #fff;
    font-size: 24px;
    line-height: 2;
}
.amenity_row{
    position: relative;
}
.amenity_img{
    position: absolute;
    top: -25px;
    width: 48%;
    margin: 0;
    z-index: 2;
}
.amenity_img img{
    width: 100%;
    display: block;
}
.amenity_box{
    background: #ffffff;
    color: #000000;
    padding: 40px 40px 36px;
    width: 90%;
    position: relative;
    z-index: 1;
    margin-left: auto;
    text-align: right;
}
.amenity_box_head{
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #8797c4;
}
.amenity_box_head h3{
    color: #CDA700;
    font-size: 32px;
}
.amenity_box ul{
    margin: 0 0 22px;
    color: #CDA700;
    font-size: 18px;
    line-height: 2;
    font-weight: 700;
}
.amenity_box p{
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 2;
    font-weight: 700;
}
.amenity_line{
    height: 1px;
    background: rgba(255,255,255,.35);
    margin: 10px 0 0;
}
.amenity_body{
    font-size: 18px;
    line-height: 2;
    text-align: justify;
}
.amenity_body p{
    margin: 0;
}
.text_aria{
    display: inline-block;
    width: 50%;
    margin-left: auto;
}

@media (max-width: 768px){
    .facility_amenity{
        padding: 10% 0;
    }
    .facility_amenity_intro{
        margin-top: 24px;
        font-size: 18px;
        line-height: 2;
    }
    .amenity_row{
        min-height: auto;
    }
    .amenity_img{
        position: relative;
        width: 100%;
        right: 20px;
        top: 10px;
    }
    .amenity_box{
        width: auto;
        margin-left: 0;
        padding: 25px 0px;
    }
    .amenity_box_head{
        width: 90%;
        margin: auto;
        gap: 12px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }
    .amenity_box_head h3{
        font-size: 22px;
    }
    .amenity_box ul{
        font-size: 18px;
    }
    .amenity_box p {
        font-size: 18px;
        line-height: 2;
    }
    .amenity_body{
        width: 90%;
        margin: auto;
        font-size: 18px;
        line-height: 2;
    }
    .text_aria{
        display: block;
        width: 100%;
        margin-left: 0;
    }
}


/* ========================================
   RELAX
======================================== */
.facility_relax{
    background: url("../img/facility/relax_bg.webp") center center / cover no-repeat;
    padding: 80px 20px 100px;
}
.facility_relax_inner{
    width: min(90%, 1200px);
    margin: 0 auto;
}
.facility_relax_gallery{
    display: flex;
    gap: 12px;
    margin-top: 40px;
}
.facility_relax_item{
    flex: 1;
}
.facility_relax_item.big{
    flex: 2;
}
.facility_relax_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.facility_relax_text{
    margin-top: 32px;
    color: #fff;
    font-size: 16px;
    line-height: 2.1;
    font-weight: 700;
}
.facility_relax_text p{
    margin: 0 0 18px;
}
.facility_relax_emphasis{
    color: #FFDD44;
}

@media (max-width: 768px){
    .facility_relax{
        padding: 10% 0;
    }
    .facility_relax_gallery{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .facility_relax_item.big{
        grid-column: 1 / 3;
    }
}


/* ========================================
   CTA
======================================== */
.facility_cta{
    text-align: center;
    margin-top: 34px;
}
.facility_cta_btn{
    display: inline-block;
    transition: transform .3s ease;
}
.facility_cta_btn:hover{
    transform: translateY(-4px);
}
.facility_cta_btn img{
    max-width: 460px;
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px){
    .facility_cta_btn img{
        max-width: 100%;
    }
}