.recruit .sub_bnr .bnr_bg {
    background: url('../../img/sub/recruit/sbn_bg.jpg') 0 70% / cover no-repeat;
}
.recruit .sub_bnr:before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}
.recruit .step_wr {
    display: flex;
}
.recruit .step_wr .step_cont {
    position: relative;
    border: none;
    background-color: transparent;
    flex-direction: column;
    gap: 2rem;
}
.recruit .step_wr .step_cont + .step_cont::before {
    content: '';
    background: url('../../img/icon/icon_step.svg') center/contain no-repeat;
    width: clamp(3rem, 2.6042vw, 5rem);
    height: clamp(3rem, 2.6042vw, 5rem);
    position: absolute;
    left: -3.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.recruit .step_wr .step_cont .icon {
    width: clamp(10rem, 10.4167vw, 20rem);
    height: clamp(10rem, 10.4167vw, 20rem);
    background: #f8f9fa;
    border: 2px solid #c0c0c0;
    border-radius: 100%;
}
.recruit .step_wr .step_cont .icon svg {
    width: clamp(4rem, 3.6458vw, 7rem);
    height: clamp(4rem, 3.6458vw, 7rem);
}
.recruit .step_wr .step_cont .sub_txt {
    font-weight: bold;
}
.recruit .list_box {
    border-top: 6px solid var(--mainColor);
    border-radius: 0.5rem;
    max-width: 120rem;
    margin: 0 auto;
    margin-top: clamp(5rem, 7.8125vw, 10rem);
}
.recruit .list_box li {
    padding: 3rem;
    border-bottom: 1px solid #c0c0c0;
    gap: 1rem;
}
.recruit .list_box li.no_list {
    display: block;
    padding: 4.5rem 3rem;
    text-align: center;
    font-size: clamp(1.8rem, 1.5625vw, 2rem);
    color: #c0c0c0;
}
.recruit .list_box p {
    font-size: clamp(1.8rem, 1.5625vw, 2rem);
}
.recruit .list_box p + p {
    margin-top: 1rem;
}
.recruit .list_box .btn{
    margin: 0;
}

/* 교수채용 */
.teacher .sec03 .cont_wr {
    flex-wrap: wrap;
    gap: clamp(1.8rem, 1.822vw, 3.5rem);
    margin-top: clamp(5rem, 7.8125vw, 10rem);
}
.teacher .sec03 .cont_wr span {
    display: block;
    font-weight: 500;
    border: 2px solid var(--black);
    padding: 1rem 1.5rem;
    border-radius: 3rem;
}
.tit_box a {
    max-width: max-content;
    margin: 2rem auto 0;
    transition: transform 1s ease, opacity 1s ease, filter 1s ease, color .2s ease;
}
.tit_box a:hover {
    color: var(--mainColor);
}

/* 인재채용 */
.employee .sec03 .cont_wr {
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: clamp(5rem, 7.8125vw, 10rem);
}
.employee .sec03 .cont_wr .sub_txt {
    border: 2px solid var(--black);
    padding: 2rem 1.5rem;
    border-radius: 6rem;
    text-align: center;
    font-weight: bold;
    max-width: 32rem;
}
.employee .sec03 .cont_wr .sub_txt .txt {
    font-weight: normal;
    display: block;
    margin-top: 1.5rem;
}
@media screen and (max-width:1280px) {
    .recruit .step_wr .step_cont + .step_cont::before {
        left: -2.5rem;
    }
}
@media screen and (max-width:768px) {
    .recruit .sub_bnr .bnr_bg {
        background-position: center;
    }
    .recruit .step_wr .step_cont + .step_cont::before {
        top: -3.3rem;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }
    .recruit .list_box p,
    .recruit .list_box li.no_list {
        font-size: clamp(1.6rem, 2.3438vw, 1.8rem);
    }
    .recruit .btn {
        padding: 1rem 1.5rem;
    }
}