/**
 * =====================================================
 * 求人詳細ページ：キャッチコピー
 * =====================================================
 */

.mpj-job-catch {
    width: 100%;
    padding: 38px 0 24px;
}

.mpj-job-catch__inner {
    position: relative;
    width: 100%;
    padding: 30px 32px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #f4fff8 0%,
        #fffdf3 100%
    );
    border: 1px solid #dceee4;
    border-radius: 22px;
    box-shadow: 0 10px 28px rgba(47, 107, 79, 0.08);
}

.mpj-job-catch__inner::before {
    position: absolute;
    top: -42px;
    right: -42px;
    width: 130px;
    height: 130px;
    content: "";
    background: rgba(255, 209, 72, 0.16);
    border-radius: 50%;
}

.mpj-job-catch__label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: #2f6b4f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.mpj-job-catch__label::before {
    display: block;
    width: 24px;
    height: 3px;
    content: "";
    background: #f2c744;
    border-radius: 999px;
}

.mpj-job-catch__text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #243d32;
    font-size: clamp(24px, 2.5vw, 34px);
    font-weight: 800;
    line-height: 1.55;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
    word-break: normal;
    text-wrap: pretty;
}

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

    .mpj-job-catch__inner {
        padding: 28px 28px;
    }

    .mpj-job-catch__text {
        font-size: clamp(23px, 3vw, 30px);
    }
}

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

    .mpj-job-catch {
        padding: 24px 0 18px;
    }

    .mpj-job-catch__inner {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .mpj-job-catch__inner::before {
        top: -34px;
        right: -34px;
        width: 100px;
        height: 100px;
    }

    .mpj-job-catch__label {
        margin-bottom: 10px;
        font-size: 12px;
    }

    .mpj-job-catch__label::before {
        width: 20px;
    }

    .mpj-job-catch__text {
        font-size: 21px;
        line-height: 1.6;
        letter-spacing: 0.01em;
    }
}