/**
 * =====================================================
 * 求人詳細ページ：職種別アイキャッチ画像
 * -----------------------------------------------------
 * 推奨画像サイズ：
 * 1200 × 675px
 * アスペクト比：
 * 16 : 9
 * =====================================================
 */

.mpj-job-featured {
    width: 100%;
    padding: 8px 0 26px;
}

.mpj-job-featured__inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f5f8f6;
    border: 1px solid #e0e9e4;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(35, 74, 56, 0.08);
}

.mpj-job-featured__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin: 0;
    object-fit: cover;
    object-position: center;
}

/* =========================================
   タブレット
========================================= */
@media (max-width: 1024px) {

    .mpj-job-featured {
        padding-bottom: 24px;
    }

    .mpj-job-featured__inner {
        border-radius: 20px;
    }
}

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

    .mpj-job-featured {
        padding: 4px 0 20px;
    }

    .mpj-job-featured__inner {
        border-radius: 16px;
        box-shadow: 0 7px 20px rgba(35, 74, 56, 0.07);
    }

    .mpj-job-featured__image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        object-fit: cover;
        object-position: center;
    }
}