@charset "utf-8";

.recruit-box {
    width: var(--width2);
    margin: 0 auto;
    position: relative;
    padding: 65px;
    border-radius: 5px;
    background-image: url(../../img/recruit/photo.png);
    background-size: 100%;
    background-position: top left;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-bottom: 104px;
}

.recruit-box::before {
    content: "";
    display: block;
    position: absolute;
    background-color: rgba(0,84,170,0.65);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.recruit-box__inner {
    position: relative;
}

.recruit-box__title {
    font-size: 26px;
    font-weight: var(--font-weight__bold);
    color: var(--white);
    line-height: calc(30 / 26);
    padding-top: 24px;
    padding-bottom: 38px;
}

.recruit-box__banner {
    width: 190px;
    position: absolute;
    right: 0;
    top: 0;
}

.recruit-box__list {
    background-color: var(--white);
    padding: 56px 60px 80px;
    padding-bottom: 80px;
}

.recruit-box__item {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 17px 0;
    border-bottom: solid 1px var(--black);
}

.recuruit-box__head {
    font-size: 16px;
    line-height: calc(24 / 16);
    font-weight: var(--font-weight__bold);
    width: 155px;
}

.recuruit-box__body {
    font-size: 16px;
    line-height: calc(24 / 16);
    flex: 1;
    word-break: break-all;
}

.recruit-box__none {
    font-size: 26px;
    font-weight: var(--font-weight__bold);
    text-align: center;
    color: var(--white);
    padding: 84px 0;
}


@media (max-width: 768px) {
    .recruit-box {
        padding: 30px;
        margin-bottom: 64px;
    }
    
    .recruit-box__title {
        font-size: 18px;
        padding-top: 12px;
        padding-bottom: 18px;
    }
    
    .recruit-box__banner {
        width: 99px;
    }
    
    .recruit-box__list {
        padding: 34px;
    }
    
    .recuruit-box__head {
        width: 102px;
        font-size: 14px;
        line-height: calc(24 / 14);
        width: 100%;
    }
    
    .recuruit-box__body {
        font-size: 14px;
        line-height: calc(24 / 14);
        flex: auto;
        width: 100%;
    }


    .recruit-box__none {
        font-size: 20px;
        padding: 40px 0;
    }
}