
.recruit {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    padding: 30px;
}

.recruit .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
}

.recruit h2 {
    margin-top: 89px;
    font-size: 48px;
    font-weight: 600;
    line-height: 42px;
}

.recruit .select_count {
    margin-top: 33px;
    font-size: 14px;
    text-align: right;
    line-height: 30px;
}

.recruit .select_count span {
    color: #0047ba;
}

.recruit .list {
    display: flex;
    flex-direction: column;
}

.recruit .list .item-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    margin-top: 10px;
    border: 1px solid #CCC;
    border-radius: 5px;
}

.recruit .list .item-container.active {
    background-color: #F5F5F5;
    border-color: #999;
}

.recruit .list .item-container:hover {
    background: #F9F9f9;
    border-color: #CCC;
}

.recruit .list .item-container .header {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 88px;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px 0 40px;
}

.recruit .list .item-container .left-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.recruit .list .item-container .left-container .period {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    color: #1049A5;
}

.recruit .list .item-container .left-container .title {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    color: #000;
    padding-left: 32px;
}

.recruit .list .item-container .right-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.recruit .list .item-container .right-container .publisher {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #3E3E3E;
    padding-right: 28px;
}

.recruit .list .item-container .right-container .arrow {
    width: 20px;
    height: 20px;
    background: url(../images/recruit/down_arrow.png) no-repeat;
}

.recruit .list .item-container .right-container .arrow.active {
    width: 20px;
    height: 20px;
    background: url(../images/recruit/up_arrow.png) no-repeat;
}

.recruit .list .item-container .detail {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    border-top: 1px solid #cccccc;
    font-size: 18px;
    line-height: 30px;
    padding: 32px 20px 16px 20px;
}

.recruit .list .item-container .detail .title {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    padding: 0px 20px 12px 20px;
}

.recruit .list .item-container .detail .content {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    padding: 0px 20px 32px 20px;
}


@media (max-width: 650px) {
    .recruit .list .item-container .header {
        height: 66px;
        align-items: center;
        justify-content: space-between;
        padding: 0 25px 0 30px;
    }

    .recruit .list .item-container .left-container .period {
        font-size: 10px
    }

    .recruit .list .item-container .left-container .title {
        font-size: 15px;
        padding-left: 24px;
    }

    .recruit .list .item-container .right-container .publisher {
        font-size: 12px;
        padding-right: 21px;
    }

    .recruit .list .item-container .detail .title {
        font-size: 15px;
    }

    .recruit .list .item-container .detail .content {
        font-size: 12px;
    }
}