/* セクションごとの塊 */
.recruitment-section {
    display: flex; /* 横並びにする */
    margin-bottom: 80px;
}
.recruitment-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* 左側の見出しエリア */
.recruitment-section__head {
    width: 30%; /* 左側3割 */
    padding-right: 40px;
    box-sizing: border-box;
}
.recruitment-section__head h2 {
    font-size: 20px;
    color: #172A88; /* 青文字 */
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* 右側の内容エリア */
.recruitment-section__body {
    width: 70%; /* 右側7割 */
}

/* リンク */
.rec-link {
    color: #172A88;
    text-decoration: underline;
    font-size: 15px;
}
.rec-link:hover {
    opacity: 0.7;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .recruitment-section {
        display: block; /* 縦並びにする */
        margin-bottom: 50px;
        padding-bottom: 40px;
    }
    .recruitment-section__head {
        width: 100%;
        margin-bottom: 20px;
        padding-right: 0;
    }
    .recruitment-section__body {
        width: 100%;
    }
}