/**
 * =====================================================
 * 求人詳細ページ：基本情報
 * =====================================================
 */

.mpj-job-basic {
    width: 100%;
    padding: 8px 0 28px;
}

.mpj-job-basic__inner {
    width: 100%;
    padding: 30px 32px;
    background: #ffffff;
    border: 1px solid #dcebe3;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(47, 107, 79, 0.08);
}

.mpj-job-basic__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.mpj-job-basic__heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    min-width: 38px;
    height: 38px;
    color: #ffffff;
    font-size: 17px;
    background: #2f8f63;
    border-radius: 50%;
}

.mpj-job-basic__title {
    margin: 0;
    color: #264c3b;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.4;
}

.mpj-job-basic__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.mpj-job-basic__item {
    min-width: 0;
    overflow: hidden;
    background: #fbfefc;
    border: 1px solid #e2ece6;
    border-radius: 14px;
}

.mpj-job-basic__label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    padding: 12px 15px;
    color: #2f6b4f;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
    background: #eef8f2;
    border-bottom: 1px solid #e2ece6;
}

.mpj-job-basic__label i {
    width: 18px;
    text-align: center;
}

.mpj-job-basic__value {
    margin: 0;
    padding: 15px;
    color: #33483e;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
    overflow-wrap: anywhere;
    white-space: normal;
}

/* =========================================
   スマートフォン
========================================= */
@media (max-width: 767px) {

    .mpj-job-basic {
        padding: 4px 0 22px;
    }

    .mpj-job-basic__inner {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .mpj-job-basic__heading {
        gap: 10px;
        margin-bottom: 18px;
    }

    .mpj-job-basic__heading-icon {
        width: 34px;
        min-width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .mpj-job-basic__title {
        font-size: 20px;
    }

    .mpj-job-basic__list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mpj-job-basic__label {
        padding: 11px 13px;
        font-size: 13px;
    }

    .mpj-job-basic__value {
        padding: 13px;
        font-size: 14px;
        line-height: 1.7;
    }
}