
#guide .cont { 
    margin-bottom:50px;
}
#guide .title_cont {
    display:flex;
    align-items:center;
    gap:50px;
    padding:50px;
    background-color:#EDF7FF;
    border-radius:30px;
}
#guide .title_cont .title_box {
    display:flex;
    flex-direction:column;
    gap:20px;
}
#guide .title_cont .title_box .title_txt {
    font-size:2.22em;
    font-weight:800;
    color:#192D60;
    font-family: 'SUITE', sans-serif
}
#guide .title_cont .title_box .title_co {
    font-size:1.33em;
    font-weight:400;
}

#guide .grey_box {
    border-radius:30px;
} 
#guide .info_cont {
    display:flex;
    flex-direction:column;
    gap:10px;
}
#guide .info_cont .guide_info {
    display:flex;
    align-items:flex-start;
    gap:10px;
}
#guide .info_cont .guide_info .info_ti {
    width:100px;
    background-color:#fff;
    border-radius:30px;
    padding:3px 8px;
    text-align:center;
    font-size:1em;
    font-weight:600;
}
#guide .info_cont .guide_info .info_co {
    flex:1;
    font-size:1em;
    font-weight:400;
}
#guide .info_cont .guide_info_noti {
    font-size:1em;
    font-weight:400;
    padding-left:20px;
}

#guide .business .busi_ti {
    margin-top:20px;
}


#guide .payment_cont p {
    font-size:1em;
    font-weight:400;
}



/* 절차(스탭 step) */
.business .step_cont {
    display:flex;
    align-items: flex-start;
    gap:30px;
    justify-content:center;
}
.business .step_cont .step_box {
    flex:1;
    max-width:200px;
    height: 100%;
    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(../../../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;
}





/* 반응형 미디어쿼리 css */
@media (max-width:1600px) {}
@media (max-width:1440px) {
    #guide .title_cont .title_box .title_txt {
        font-size:2em;
    }
    #guide .title_cont .title_box .title_co {
        font-size:1.11em;
    }
    #guide .title_cont img {
        max-width:320px;
    }
}
@media (max-width:1200px) {

    #guide .title_cont {
        gap:30px;
    }
    #guide .title_cont img {
        max-width:300px;
    }

    .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) {}
@media (max-width:991px) {
    #guide .title_cont {
        flex-direction:column;
        text-align:center;
        padding:30px;
    } 
    #guide .title_cont img {
        max-width:240px;
    }

    .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:768px) {}
@media (max-width:640px) {
    #guide .title_cont .title_box .title_txt {
        font-size:1.55em;
    }
    #guide .cont {
        margin-bottom:30px;
    }
    #guide .title_cont img {
        max-width:200px;
    }

    #guide .info_cont .guide_info {
        flex-direction:column;
    }
    #guide .info_cont .guide_info .info_ti {
        width:100%;
    }

    .business .step_cont .scroll .scroll_wd {
        width:840px;
    }
}
@media (max-width:460px) {}