@charset UTF-8;
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* ── 全体ラッパー ── */
.recruit_all {
    width: 80%;
    margin: 0 auto 120px;
}

/* ── セクション ── */
.recruit_section {
    margin-top: 80px;
}

.recruit_section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
}

/* ── テーブル ── */
.recruit_table_wrap {
    border: 1px solid #D4D4D4;
}

.recruit_table {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
}

.recruit_table dt {
    width: 18%;
    padding: 20px 10px;
    box-sizing: border-box;
    background-color: #AFAFAF;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #D4D4D4;
}

.recruit_table dd {
    width: 82%;
    margin: 0;
    padding: 20px 24px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #D4D4D4;
}

.recruit_table dt:last-of-type,
.recruit_table dd:last-of-type {
    border-bottom: none;
}

/* ── 応募ボタン ── */
.recruit_apply {
    margin-top: 60px;
    text-align: center;
}

.recruit_apply a {
    display: inline-block;
    padding: 15px 54px;
    background-color: #CB0606;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    border: 1px solid #CB0606;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.recruit_apply a:hover {
    background-color: #fff;
    color: #CB0606;
}

/* ── レスポンシブ ── */
@media screen and (max-width: 992px) {
    .recruit_all {
        width: 95%;
        margin-bottom: 60px;
    }

    .recruit_section {
        margin-top: 50px;
    }

    .recruit_section h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .recruit_table dt {
        width: 30%;
        font-size: 12px;
    }

    .recruit_table dd {
        width: 70%;
        font-size: 13px;
        padding: 16px 16px;
        align-items: flex-start;
    }

    .recruit_apply a {
        padding: 14px 30px;
        font-size: 14px;
    }
}
