
#rental .cont {
    margin-bottom:80px;
}
#rental .title_cont {
    display:flex;
    align-items:center;
    gap:50px;
    padding:50px;
    background-color:#EDF7FF;
    border-radius:30px;
}
#rental .title_cont .title_box {
    display:flex;
    flex-direction:column;
    gap:20px;
}
#rental .title_cont .title_box .title_txt {
    font-size:2.11em;
    font-weight:800;
    color:#192D60;
    font-family: 'SUITE', sans-serif
}
#rental .title_cont .title_box .title_co {
    font-size:1.22em;
    font-weight:400;
    line-height:1.45;
}

#rental .facility_floor {
    margin-top:20px;
    display:flex;
    align-items:stretch;
    gap:15px;
}
#rental .facility_floor .img_view_box {
    flex:1;
    border-radius: 30px 0px 30px 30px;
    border:1px solid #ddd;
    overflow:hidden;
}
#rental .facility_floor .img_view_box img {
    width:100%;
    border-radius: 30px 0px 30px 30px;
}
#rental .facility_floor .img_tab_box {
    flex:1;
    max-width:320px;
    padding:20px;
    border-radius: 0px 20px 20px 20px;
    background-color:#f4f4f4;
}
#rental .facility_floor .img_tab_box .img_btns {
    display:flex;
    flex-direction:column;
    gap:10px;
}
#rental .facility_floor .img_tab_box .img_btns .imgBtn {
    border-radius:20px;
    background-color:#fff;
    display:block;
    padding:10px 20px;
    border:1px solid #fff;
    font-size:1.11em;
    font-weight:500;
    letter-spacing:-0.6px;
    text-align:center;
}
#rental .facility_floor .img_tab_box .img_btns .imgBtn.on {
    border-color:#004F90;
    color:#004F90;
    font-weight:700;
}

#rental .info_cont {
    display:flex;
    align-items:stretch;
    flex-wrap: wrap;
    gap:20px;
}
#rental .info_cont .info_box {
    background-color:#f9f9f9;
    border-radius:30px;
    padding:30px;
    width:calc(50% - 10px);
    display:flex;
    flex-direction:column;
    gap:20px;
}
#rental .info_cont .info_box .info_title {
    font-size:1.11em;
    font-weight:700;
    background-color:#fff;
    border-radius:30px;
    padding:5px 8px;
    text-align:center;
}
#rental .info_cont .info_box .info_text p {
    font-size:1em;
    font-weight:400;
    letter-spacing:-0.54px;
}

#rental .grey_box {
    border-radius:30px;
}
#rental .number_text_box {
    display:flex;
    flex-direction:column;
    gap:10px;
}
#rental .decimal {
    list-style-type:decimal;
    padding-left:30px;
}


/* 커스텀 부분 테이블 css */
#bo_list #rental .scroll table thead tr th {
    border-bottom: none;
    background-color: #D7EDFF;
    font-weight: 600;
    color: #222;
}
#bo_list #rental .scroll table tr th, 
#bo_list #rental .scroll table tr td {
    padding: 10px;
}
#bo_list #rental .scroll table {
    border-radius: 30px;
}
#bo_list #rental .scroll table tr td p + p {
    margin-top:5px;
}
#bo_list #rental .scroll table tr td span {
    font-weight:600;
}
#bo_list #rental .scroll table tr td span + p {
    margin-top:10px;
}


/* 스텝부분 사업이랑 동일 */
.business .step_cont {
    display:flex;
    align-items: flex-start;
    gap:30px;
    justify-content:center;
}
.business .step_cont .step_box {
    flex:1;
    max-width:200px;
    min-width:200px;
    height: 100%;
    min-height:173px;
    display:flex;
    flex-direction:column;
    gap:10px;
    align-items:center;
    justify-content: flex-start;
    text-align:center;
    position: relative;
}
.business .step_cont .step_box::after {
    content:'';
    width:30px;
    height:30px;
    background-image:url(../../../../theme/mir_basic/img/step_arrow.png);
    background-repeat:no-repeat;
    background-position:center center;
    background-size:100% 100%;
    position:absolute;
    right:-30px;
    top:50%;
    transform:translateY(-50%);
}
.business .step_cont .step_box:last-child::after {
    display:none;
}
.business .step_cont .step_box .step_icon {
    width:120px;
    height:120px;
    margin:0 auto;
    border-radius:30px;
    background-color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}
.business .step_cont .step_box .step_co {
    display:flex;
    flex-direction:column;
    gap:5px;
}
.business .step_cont .step_box .step_co .step_title {
    font-size:0.88em;
    font-weight:600;
}
.business .step_cont .step_box .step_co .step_t {
    font-size:0.88em;
    font-weight:400;
}



@media (max-width:1440px) {
    #rental .title_cont .title_box .title_txt {
        font-size:2em;
    }
    #rental .title_cont .title_box .title_co {
        font-size:1.11em;
    }
    #rental .title_cont img {
        max-width:320px;
    }
}
@media (max-width:1200px) {
    #rental .title_cont {
        gap:30px;
    }
    #rental .title_cont img {
        max-width:300px;
    }


    #rental .facility_floor .img_tab_box {
        max-width:280px;
    }



    .business .step_cont .step_box {
        max-width:100%;
        flex:1;
   }
    .business .step_cont .step_box .step_icon {
        width:100px;
        height:100px;
        border-radius:20px;
    }
    .business .step_cont .step_box .step_icon img {
        width:55px;
    }
}
@media (max-width:1024px) {
    #rental .cont {
        margin-bottom:50px;
    }
}
@media (max-width:991px) {
    #rental .title_cont {
        flex-direction:column;
        text-align:center;
        padding:30px;
    } 
    #rental .title_cont img {
        max-width:240px;
    }

    #rental .facility_floor {
        flex-direction:column;
    }
    #rental .facility_floor .img_tab_box {
        max-width:100%;
    }
    #rental .facility_floor .img_tab_box .img_btns {
        flex-direction:row;
        flex-wrap: wrap;
    }
    #rental .facility_floor .img_tab_box .img_btns .imgBtn {
        flex:1;
        font-size:1em;
    }

    #rental .info_cont {
        flex-direction:column;
    }
    #rental .info_cont .info_box {
        width:100%;
    }


    .business .step_cont .step_box {
        flex:none;
        min-width: 160px;
    }
    .business .step_cont .step_box .step_icon {
        width:90px;
        height:90px;
    }
    .business .step_cont .step_box .step_icon img {
        width:50px;
    }
    .business .step_cont .step_box::after {
        width: 20px;
        height: 20px;
        background-size: 100%;
        right: -25px;
    }
}

@media (max-width:640px) {
    #rental .cont {
        margin-bottom:30px;
    }
    #rental .title_cont img {
        max-width:200px;
    }
    #rental .title_cont .title_box .title_txt {
        font-size:1.55em;
    }
    #rental .title_cont .title_box .title_co {
        font-size:1em;
    }

    #rental .info_cont .guide_info {
        flex-direction:column;
    }
    #rental .info_cont .guide_info .info_ti {
        width:100%;
    }

    #rental .facility_floor .img_tab_box .img_btns .imgBtn {
        padding:10px 5px;
        min-width:140px;
    }


    .business .step_cont .step_box {
        min-width: 120px;
    }

}