

#protection {
    display:flex;
    flex-direction:column;
    gap:80px;
}
#protection .protection_title_cont {
    display:flex;
    flex-direction:column;
    gap:40px;
}
#protection .protection_title_cont .protection_title {
    font-size:1.77em;
    font-weight:800;
    line-height:1.50;
    color:#192D60;
    font-family: 'SUITE', sans-serif;
    text-align: center;
}
#protection .protection_title_cont .protection_title span {
    color:#004F90;
}
#protection .protection_title_cont .protection_keypoint {
    display:flex;
    align-items:stretch;
    justify-content:center;
    gap:30px;
}
#protection .protection_title_cont .protection_keypoint .keypoint_box {
    width:140px;
    background-color:#f9f9f9;
    border-radius:999px;
    padding:30px;
}
#protection .protection_title_cont .protection_keypoint .keypoint_box .keypoint_icon {
    width:80px;
    height:80px;
    background-color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}
#protection .protection_title_cont .protection_keypoint .keypoint_box .keypoint_ti {
    font-size:1.11em;
    font-weight:600;
    text-align:center;
    margin-top:10px;
}
#protection .protection_title_cont .protection_title_co {
    font-size:1em;
    font-weight:400;
    letter-spacing:-0.54px;
    line-height:1.77;
    text-align: center;
}

#protection .grey_box {
    border-radius:30px;
}

#protection .step_detail {
    border:1px solid #ddd;
    border-radius:50px;
    padding:40px;
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-top:50px;
}
#protection .step_detail .detail_box {
    background-color:#F9F9F9;
    border-radius:30px;
    padding:20px;
    display:flex;
    align-items:flex-start;
}
#protection .step_detail .detail_box .detail_title {
    display:flex;
    align-items:center;
    gap:10px;
}
#protection .step_detail .detail_box .detail_title .detail_number {
    width:25px;
    height:25px;
    background-color:#004F90;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
#protection .step_detail .detail_box .detail_title .detail_number p {
    font-size:1em;
    font-weight:700;
    color:#fff;
}
#protection .step_detail .detail_box .detail_title .detail_ti {
    font-size:1em;
    font-weight:700;
}
#protection .step_detail .detail_box .detail_co {
    font-size:1em;
    font-weight:400;
    padding-left:20px;
    flex:1;
} 

#protection .step_detail .detail_co {
    position: relative;
}
#protection .step_detail .detail_co::before {
    content: '-';
    display: inline-block;
    display: block;
    position: absolute;
    left: 6px;
    top: 0;
}

#protection .protection_site {
    display:flex;
    flex-direction:column;
    gap:10px;
}
#protection .protection_site p {
    font-size:1em;
    font-weight:400;
}
#protection .protection_site a {
    color:#004F90;
} 






/* 절차(스탭 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;
}

/* 연락처 */
.business .contact_box {
    display:flex;
    align-items:center;
    justify-content:flex-end;
    background-color:#D7EDFF;
    border-radius:9999px;
    padding:10px;
    gap:10px;
    width: fit-content;
    margin-left: auto;
}
.business .contact_box span {
    font-size:1em;
    font-weight:500;
    font-family: 'S-CoreDream';
    padding:0 20px;
    display:block;
}
.business .contact_box p {
    border-radius:999px;
    background-color:#fff;
    padding:10px 20px;
}

/* 반응형 미디어쿼리 css */
@media (max-width:1600px) {}
@media (max-width:1440px) {}
@media (max-width:1200px) {


    .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) {
    #protection .step_detail .detail_box {
        flex-direction:column;
        gap:5px;
    }

    .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) {
    #protection .protection_title_cont .protection_keypoint {
        gap:20px;
    }
    #protection .protection_title_cont .protection_keypoint .keypoint_box {
        border-radius:30px;
        padding:20px;
        width:auto;
        flex:1;
    }
    #protection .protection_title_cont .protection_keypoint .keypoint_box .keypoint_icon {
        margin:0 auto;
    }
}
@media (max-width:640px) {
    #protection .protection_title_cont .protection_title {
        font-size:1.55em;
    }


    .business .contact_box {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 30px;
        text-align: center;
    }
    .business .contact_box p {
        width:100%;
    }

    #protection .protection_title_cont .protection_keypoint {
        flex-wrap: wrap;
    }
    #protection .protection_title_cont .protection_keypoint .keypoint_box {
        flex:none;
        width:calc(50% - 10px);
    }

    #protection .step_detail {
        padding:20px;
        border-radius:30px;
    }

    .business .scroll .scroll_wd {
        width:840px;
    }
}
@media (max-width:460px) {}