.recruit-desc {
    display: flex;
    justify-content: space-between;
}

.recruit-img {
    width: 50%;
    max-width: 490px;
}

.recruit-item {
    margin-top: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #000;
}

.recruit-badge {
    border-radius: 4px;
    background: #3A8676;
    width: 200px;
    height: 35px;

    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 225% */
    text-align: center;
}

.recruit-item h3 {
    font-size: 24px;
}

.recruit-dl {
    display: flex;
}

.recruit-dl dt {
    font-weight: 700;
}

.recruit-cl span {
    display: inline-block;
    width: 70px;
    height: 25px;
    border: 1px solid #000;

    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {

    .recruit-desc {
        flex-direction: column;
        gap: 20px;
    }

    .recruit-img {
        width: 100%;
    }
}