@charset "utf-8";


#volunteer {}
#volunteer .cont {
    margin-top:50px;
}
#volunteer .volunteer_title {
    display:flex;
    align-items:center;
    gap:50px;
    padding:50px;
    position: relative;
    z-index:1;
} 
#volunteer .volunteer_title::before {
    content:'';
    width:100%;
    max-width:1200px;
    height:100%;
    border-radius:0 200px 200px 0;
    background: rgb(215,237,255);
    background: linear-gradient(87deg, rgba(215,237,255,0.4) 61.67%, rgba(255,255,255,0.4) 124.94%);
    position:absolute;
    left:-50px;
    top:0;
    z-index:-1;
}
#volunteer .volunteer_title .title_text {
    display:flex;
    flex-direction:column;
    gap:20px;
    flex:1;
}
#volunteer .volunteer_title .title_text .title_text_ti {
    font-size:2.22em;
    font-weight:800;
    color:#192D60;
    font-family: 'SUITE', sans-serif;
}
#volunteer .volunteer_title .title_text .title_text_co {
    font-size:1.33em;
    font-weight:400;
}

#volunteer .field_cont {
    display:flex;
    flex-wrap: wrap;
    gap:20px;
}
#volunteer .field_cont .field_box {
    width:calc(25% - 15px);
    background-color:#F9F9F9;
    border-radius:9999px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:20px;
}
#volunteer .field_cont .field_box .field_icon {
    background-color:#fff;
    border-radius:50%;
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
}
#volunteer .field_cont .field_box .field_txt {
    flex:1;
    display:flex;
    flex-direction:column;
    gap:10px;
}
#volunteer .field_cont .field_box .field_ti {
    font-size:1.22em;
    font-weight:600;
}
#volunteer .field_cont .field_box .field_co {
    font-size:1em;
    font-weight:400;
}

#volunteer .grey_box {
    border-radius:30px;
}


/* 절차(스탭 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%;
    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(../../../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;
}

#volunteer .step_noti {
    font-size:1em;
    font-weight:400;
    text-align:center;
    margin-top:30px;
}
#volunteer .step_noti span {
    color:#004F90;
    font-weight:600;

}


#volunteer .openlink_btn {
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    max-width:300px;
    height:70px;
    margin:0 auto;
    padding:0 30px;
    background-color:#004F90;
    border-radius:30px 0 30px 30px;
    color:#fff;
    font-size:1.22em;
    font-weight:600;
    font-family: 'S-CoreDream';
}

#volunteer .benefit_cont {
    border:1px solid #ddd;
    border-radius:50px;
    padding:40px;
    display:flex;
    flex-wrap: wrap;
    gap:20px;
}
#volunteer .benefit_cont .benefit_box {
    background-color:#f9f9f9;
    display:flex;
    align-items:center;
    gap:10px;
    padding:20px;
    border-radius:30px;
    width:calc(50% - 10px);
}
#volunteer .benefit_cont .benefit_box .benefit_num {
    width:25px;
    height:25px;
    background-color:#004F90;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
#volunteer .benefit_cont .benefit_box .benefit_num p {
    font-size:1em;
    font-weight:700;
    color:#fff;
}
#volunteer .benefit_cont .benefit_box .benefit_co {
    flex:1;
    font-size:1em;
    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) {
    #volunteer .volunteer_title .title_text .title_text_ti {
        font-size:2em
    }
    #volunteer .volunteer_title .title_text .title_text_co {
        font-size:1.11em;
    }

    #volunteer .field_cont .field_box .field_ti {
        font-size:1.11em;
    }
}
@media (max-width:1200px) {
    #volunteer .volunteer_title {
        padding:50px 30px;
    }
    #volunteer .volunteer_title::before {
        left:-50px;
    }
    #volunteer .volunteer_title img {
        max-width: 220px;
    }

    #volunteer .field_cont .field_box {
        gap:10px;
    }
    #volunteer .field_cont {
        gap:10px;
    }
    #volunteer .field_cont .field_box {
        width:calc(25% - 7.5px);
        padding:10px;
    }

    .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) {
    #volunteer .volunteer_title {
        flex-direction: column;
        text-align: center;
    }
    #volunteer .volunteer_title img {
        max-width: 200px;
    }
    #volunteer .field_cont .field_box {
        flex-direction:column;
        border-radius: 20px;
    }
    #volunteer .field_cont .field_box .field_icon {
        width:65px;
        height:65px;
    }
    #volunteer .field_cont .field_box .field_icon img {
        width:35px;
    }
    #volunteer .field_cont .field_box .field_ti {
        font-size:1em;
        text-align:center;
    }
    #volunteer .field_cont .field_box .field_co {
        font-size:0.88em;
        text-align:center;
    }

    #volunteer .benefit_cont {
        flex-direction:column;
        gap:10px;
    }
    #volunteer .benefit_cont .benefit_box {
        width:100%;
    }

    .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) {
    #volunteer .volunteer_title {
        padding:50px 0 0;
    }
    #volunteer .volunteer_title::before {
        height:75%;
        width:calc(100% + 50px);
    }
    #volunteer .volunteer_title .title_text .title_text_ti {
        font-size:1.55em
    }
    #volunteer .volunteer_title .title_text .title_text_co {
        font-size:1em;
    }
    #volunteer .field_cont .field_box {
        width:calc(50% - 5px);
    }

    #volunteer .benefit_cont {
        padding:20px;
    }
    #volunteer .openlink_btn {
        font-size: 1em;
        height: 50px
    }


    .business .contact_box {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        border-radius: 30px;
        text-align: center;
    }
    .business .contact_box p {
        width:100%;
    }
}
@media (max-width:460px) {}