* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #ffffff;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
    background: transparent;
}

/* SP専用改行ユーティリティ */
.sp-only {
    display: none;
}

@media (max-width: 767px) {
    .sp-only {
        display: block;
    }
}

/* PC専用改行ユーティリティ */
.pc-only {
    display: none;
}

@media (min-width: 768px) {
    .pc-only {
        display: inline;
    }
}

/* =====================
   FV Section (採用支援)
   ===================== */
.recruit-fv {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* 背景画像 */
.recruit-fv__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.recruit-fv__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% center;
    display: block;
}

@media (min-width: 768px) {
    .recruit-fv__bg-img {
        object-position: center center;
    }
}

/* 暗めのオーバーレイ */
.recruit-fv__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* コンテンツ */
.recruit-fv__content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 20px;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .recruit-fv__content {
        padding: 0 48px;
        padding-top: 24px;
        padding-bottom: 80px;
    }
}

/* サブタイトル帯 + キャッチ全体を下へオフセット */
.recruit-fv__catch-group {
    margin-top: 200px;
}

@media (max-width: 767px) {
    .recruit-fv__catch-group {
        margin-top: 120px;
    }
}

/* サブタイトル帯：見出しと同幅、左端揃え・右端揃え */
.recruit-fv__subtitle-band {
    position: relative;
    margin-bottom: 20px;
    /* 帯の幅 = コンテンツ幅いっぱい（見出しと同じ） */
    width: 100%;
    overflow: hidden;
}

@media (min-width: 768px) {
    .recruit-fv__subtitle-band {
        margin-bottom: 24px;
        width: calc(100% * 2 / 3);
    }

    .recruit-fv {
        max-height: 930px;
    }
}

.recruit-fv__subtitle {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.06em;
    padding: 6px 0 6px 8px;
    white-space: nowrap;
    /* 背景：左端白→右端（見出し右端）で透明に */
    background: linear-gradient(
        to right,
        #ffffff  0%,
        #ffffff  50%,
        rgba(255,255,255,0.85) 62%,
        rgba(255,255,255,0.65) 72%,
        rgba(255,255,255,0.4)  82%,
        rgba(255,255,255,0.15) 92%,
        rgba(255,255,255,0.0)  100%
    );
}

@media (min-width: 768px) {
    .recruit-fv__subtitle {
        font-size: 20px;
        padding: 8px 0 8px 8px;
    }
}

/* メインキャッチコピー */
.recruit-fv__heading {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.recruit-fv__heading-em {
    font-style: normal;
    display: inline-block;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .recruit-fv__heading {
        font-size: 45px;
        margin-bottom: 28px;
    }
}

/* サブコピー */
.recruit-fv__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    line-height: 1.9;
    letter-spacing: 0.04em;
}

@media (min-width: 768px) {
    .recruit-fv__desc {
        font-size: 22px;
    }
}

/* CTAエリア */
.recruit-fv__cta {
    margin-top: clamp(60px, 12vh, 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.recruit-fv__cta-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .recruit-fv__cta-text {
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 24px;
    }
}

.recruit-fv__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    padding: 16px 40px;
    background-color: #f7931e;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 60px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.recruit-fv__cta-btn:hover {
    background-color: #de8118;
    border-color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .recruit-fv__cta-btn {
        min-width: 280px;
        padding: 18px 48px;
        font-size: 18px;
    }
}

/* SP 微調整 */
@media (max-width: 767px) {

    /* --- FV：背景画像をブラウザ幅に合わせて伸縮 --- */
    .recruit-fv {
        min-height: 0;          /* 100vh を解除 */
        display: grid;          /* grid 重ね合わせで高さを自動決定 */
        grid-template: 1fr / 1fr;
    }

    /* bg と content を同じセルに重ねる */
    .recruit-fv__bg,
    .recruit-fv__content {
        grid-area: 1 / 1;
    }

    /* 背景をフロー要素に戻し、画像の比率で高さを決める */
    .recruit-fv__bg {
        position: relative;
    }

    .recruit-fv__bg-img {
        width: 100%;
        height: auto;           /* 幅に比例して伸縮 */
        min-height: 100%;       /* コンテンツが長い場合は引き伸ばし */
        object-fit: cover;      /* 引き伸ばし時も破綻しない */
        object-position: calc(100% + 200px) center; /* 右側の人物が必ず入るよう右寄せ、さらに現状から右へ200px */
    }

    /* オーバーレイは bg 内で絶対配置のまま */
    .recruit-fv__overlay {
        position: absolute;
        inset: 0;
    }

    /* コンテンツ：左右 20px で収める */
    .recruit-fv__content {
        padding: 16px 20px 48px;
        min-width: 0;           /* grid 内の溢れ防止 */
        overflow: hidden;
    }

    .recruit-fv__heading-em {
        white-space: normal;    /* 長い見出しの折り返しを許可 */
    }

    .recruit-fv__heading {
        font-size: 22px;
    }

    .recruit-fv__desc br {
        display: none;
    }

    .recruit-fv__cta {
        margin-top: 40px;
    }
}

/* =====================
   Solution セクション
   ===================== */
.solution-pamph {
    position: relative;
    background: #fff6e8;
    padding: 60px 20px 64px;
    overflow: hidden;
}

/* 背景画像：セクションの天地いっぱいに表示（トリミングなし・左寄せ） */
.solution-pamph__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.solution-pamph__bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.solution-pamph__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.solution-pamph__label {
    font-family: Arial, sans-serif;
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 700;
    color: #f15a24;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.solution-pamph__heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(22px, 5.5vw, 32px);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.04em;
    line-height: 1.55;
    margin-bottom: 24px;
}

.solution-pamph__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(13px, 3.5vw, 15px);
    font-weight: 400;
    color: #333;
    line-height: 2;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.solution-pamph__sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(13px, 3.5vw, 15px);
    font-weight: 400;
    color: #333;
    line-height: 2;
    letter-spacing: 0.03em;
}

/* --- SP --- */
@media (max-width: 767px) {
    .solution-pamph {
        min-height: 420px;
        display: flex;
        align-items: center;
        padding: 48px 20px 56px;
    }

    .solution-pamph__bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 246, 232, 0.82);
    }

    .solution-pamph__bg-img {
        width: auto;
        height: 100%;
        object-fit: cover;
    }

    .solution-pamph__inner {
        width: 100%;
        padding: 24px 16px;
    }

    .solution-pamph__heading {
        font-size: clamp(20px, calc(5.5vw - 2px), 30px);
    }

    .solution-pamph__heading br {
        display: none;
    }

    .solution-pamph__desc br {
        display: none;
    }
}

/* --- PC --- */
@media (min-width: 768px) {
    .solution-pamph {
        min-height: 560px;
        display: flex;
        align-items: center;
        padding: 80px 40px 88px;
    }

    .solution-pamph__label {
        margin-bottom: 16px;
    }

    .solution-pamph__heading {
        margin-bottom: 28px;
    }

    .solution-pamph__desc {
        margin-bottom: 20px;
    }
}

/* =====================
   Service セクション
   ===================== */
.service-pamph {
    background: #fff;
    padding: 60px 20px 64px;
}

.service-pamph__inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ラベル */
.service-pamph__label {
    font-family: Arial, sans-serif;
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 700;
    color: #f15a24;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    text-align: center;
}

/* メイン見出し */
.service-pamph__heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(22px, 5.5vw, 32px);
    font-weight: 700;
    color: #1a3763;
    letter-spacing: 0.04em;
    line-height: 1.55;
    margin-bottom: 40px;
    text-align: center;
}

/* カードグリッド */
.service-pamph__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}

/* 個別カード */
.service-pamph__card {
    display: flex;
    flex-direction: column;
}

/* バッジ（ピル） */
.service-pamph__badge {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-radius: 999px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(15px, 3.6vw, 17px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    text-align: center;
    margin-bottom: 20px;
}

.service-pamph__badge--pamphlet {
    background: #ee6c2f;
}

.service-pamph__badge--ppt {
    background: #f4a223;
}

/* 画像 */
.service-pamph__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.service-pamph__img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* カードタイトル */
.service-pamph__card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(18px, 4.5vw, 22px);
    font-weight: 700;
    color: #1a3763;
    letter-spacing: 0.03em;
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: left;
}

/* 本文 */
.service-pamph__card-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(13px, 3.5vw, 15px);
    font-weight: 400;
    color: #333;
    line-height: 1.9;
    letter-spacing: 0.02em;
    text-align: left;
}

/* --- SP --- */
@media (max-width: 767px) {
    .service-pamph {
        padding: 48px 20px 56px;
    }

    .service-pamph__heading {
        font-size: clamp(20px, calc(5.5vw - 2px), 30px);
        margin-bottom: 32px;
    }

    .service-pamph__card-text br {
        display: none;
    }
}

/* --- PC --- */
@media (min-width: 768px) {
    .service-pamph {
        padding: 80px 40px 96px;
    }

    .service-pamph__label {
        margin-bottom: 16px;
    }

    .service-pamph__heading {
        margin-bottom: 56px;
    }

    .service-pamph__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

/* =====================
   Extras セクション
   ===================== */
.extras-pamph {
    position: relative;
    overflow: hidden;
    background: #fff6e8;
}

/* 背景画像：セクションの天地いっぱいに表示（トリミングなし） */
.extras-pamph__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.extras-pamph__bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.extras-pamph__bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
}

.extras-pamph__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 40px 72px;
}

.extras-pamph__content {
    max-width: 560px;
}

/* ラベル */
.extras-pamph__label {
    font-family: Arial, sans-serif;
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 700;
    font-style: normal;
    color: #f15a24;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

/* バッジ（赤ピル） */
.extras-pamph__badge {
    display: inline-block;
    padding: 10px 32px;
    background: #c0392b;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 999px;
    margin-bottom: 24px;
}

/* 見出し */
.extras-pamph__heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(18px, 4.5vw, 24px);
    font-weight: 700;
    color: #1a3763;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* 説明テキスト */
.extras-pamph__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(13px, 3.5vw, 15px);
    font-weight: 400;
    color: #333;
    line-height: 2;
    letter-spacing: 0.03em;
}

/* --- SP --- */
@media (max-width: 767px) {
    .extras-pamph__inner {
        padding: 48px 24px 56px;
    }

    .extras-pamph__content {
        max-width: none;
    }

    .extras-pamph__bg-img {
        object-fit: cover;
        object-position: right center;
    }

    .extras-pamph__heading {
        font-size: 18px;
        white-space: nowrap;
    }

    .extras-pamph__desc br {
        display: none;
    }
}

/* --- PC --- */
@media (min-width: 768px) {
    .extras-pamph__inner {
        padding: 72px 60px 80px;
    }
}

/* =====================
   Flow site セクション
   ===================== */
.flow-pamph {
    background: #fcdba3;
    padding: 60px 20px 64px;
}

.flow-pamph__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.flow-pamph__label {
    font-family: Arial, sans-serif;
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 700;
    color: #f15a24;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.flow-pamph__heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(22px, 5.5vw, 32px);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.04em;
    line-height: 1.55;
    margin-bottom: 40px;
}

/* ステップ群 */
.flow-pamph__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
}

/* 各ステップ */
.flow-pamph__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.flow-pamph__icon {
    width: clamp(80px, 12vw, 120px);
    height: clamp(80px, 12vw, 120px);
}

.flow-pamph__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flow-pamph__step-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(14px, 3.5vw, 17px);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.03em;
}

/* 矢印 */
.flow-pamph__arrow {
    flex-shrink: 0;
    padding: 0 clamp(12px, 2.5vw, 32px);
    margin-bottom: 28px;
}

.flow-pamph__arrow-pc {
    display: block;
    width: clamp(16px, 2.5vw, 26px);
    height: auto;
}

.flow-pamph__arrow-sp {
    display: none;
}

/* 注釈 */
.flow-pamph__note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(13px, 3.5vw, 15px);
    font-weight: 400;
    color: #333;
    letter-spacing: 0.03em;
    line-height: 1.8;
}

/* --- SP --- */
@media (max-width: 767px) {
    .flow-pamph {
        padding: 48px 20px 56px;
    }

    .flow-pamph__heading {
        margin-bottom: 32px;
    }

    /* SP: 縦並び */
    .flow-pamph__steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .flow-pamph__step {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 280px;
    }

    .flow-pamph__icon {
        width: 90px;
        height: 90px;
        flex-shrink: 0;
    }

    .flow-pamph__step-label {
        font-size: 18px;
    }

    /* 矢印 SP: アイコン幅の中心に揃える */
    .flow-pamph__arrow {
        width: 100%;
        max-width: 280px;
        margin: 0px 0px 0px;
        padding: 10px 0;
        display: flex;
        justify-content: flex-start;
        padding-left: 33px; /* アイコン90px の中心 */
    }

    .flow-pamph__arrow-pc {
        display: none;
    }

    .flow-pamph__arrow-sp {
        display: block;
        width: 24px;
        height: auto;
    }
}

/* --- PC --- */
@media (min-width: 768px) {
    .flow-pamph {
        padding: 80px 40px 88px;
    }

    .flow-pamph__label {
        margin-bottom: 16px;
    }

    .flow-pamph__heading {
        margin-bottom: 48px;
    }

    .flow-pamph__note {
        margin-top: 8px;
    }
}

/* =====================
   Price セクション
   ===================== */
.price-pamph {
    background: #e5e5e5;
    padding: 60px 20px 64px;
}

.price-pamph__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.price-pamph__label {
    font-family: Arial, sans-serif;
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 700;
    color: #f15a24;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.price-pamph__heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(22px, 5.5vw, 32px);
    font-weight: 700;
    color: #1a3763;
    letter-spacing: 0.04em;
    line-height: 1.55;
    margin-bottom: 24px;
}

.price-pamph__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(13px, 3.5vw, 15px);
    font-weight: 400;
    color: #333;
    line-height: 2;
    letter-spacing: 0.03em;
    margin-bottom: 40px;
}

/* ---- 料金カードグリッド ---- */
.price-pamph__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

/* カード */
.price-pamph__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* カードヘッダー */
.price-pamph__card-header {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    padding: 16px 20px;
    text-align: center;
}

.price-pamph__card-header--pamphlet {
    background: linear-gradient(135deg, #ee6c2f, #f08040);
}

.price-pamph__card-header--ppt {
    background: linear-gradient(135deg, #f4a223, #f7b84a);
}

/* カードボディ */
.price-pamph__card-body {
    padding: 28px 32px 32px;
}

/* 料金行 */
.price-pamph__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.price-pamph__item {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(15px, 3.8vw, 18px);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.03em;
    line-height: 1.5;
    text-align: left;
}

.price-pamph__price {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(15px, 3.8vw, 18px);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.03em;
    white-space: nowrap;
    text-align: right;
}

/* 区切り線 */
.price-pamph__divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 4px 0;
    width: 100%;
}

/* --- SP --- */
@media (max-width: 767px) {
    .price-pamph {
        padding: 48px 16px 56px;
    }

    .price-pamph__desc {
        margin-bottom: 32px;
    }

    .price-pamph__grid {
        gap: 12px;
    }

    .price-pamph__card-body {
        padding: 20px 16px 24px;
    }

    .price-pamph__row {
        padding: 10px 0;
    }

    .price-pamph__divider {
        width: 100%;
    }

    .price-pamph__item,
    .price-pamph__price {
        font-weight: 400;
        font-size: clamp(14px, calc(3.8vw - 1px), 17px);
    }
}

/* --- PC --- */
@media (min-width: 768px) {
    .price-pamph {
        padding: 80px 40px 88px;
    }

    .price-pamph__label {
        margin-bottom: 8px;
    }

    .price-pamph__heading {
        margin-bottom: 28px;
    }

    .price-pamph__desc {
        margin-bottom: 48px;
    }

    .price-pamph__grid {
        gap: 4px;
    }

    .price-pamph__card {
        width: fit-content;
        margin: 0 auto;
    }

    .price-pamph__card-header {
        padding: 20px 24px;
        white-space: nowrap;
    }

    .price-pamph__card-body {
        padding: 32px 40px 40px;
    }
}

/* =====================
   Message3 セクション
   ===================== */
.message3 {
    position: relative;
    width: 100%;
    height: 100vw;
    max-height: 640px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .message3 {
        height: 400px;
        max-height: none;
    }
}

/* 背景画像 */
.message3__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.message3__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.message3__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.40);
}

/* コンテンツ */
.message3__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 48px 20px;
    text-align: center;
}

/* メインコピー */
.message3__heading {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(13px, 3.9vw, 24px);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.7;
    margin-bottom: 28px;
}

@media (min-width: 768px) {
    .message3__heading {
        font-size: 32px;
        line-height: 1.5;
        margin-bottom: 32px;
    }
}

/* サブテキスト */
.message3__text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 2;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .message3__text {
        font-size: 18px;
        margin-bottom: 44px;
    }
}

/* CTAボタン */
.message3__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    padding: 18px 48px;
    background-color: #f7931e;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 60px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.message3__cta-btn:hover {
    background-color: #de8118;
    border-color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .message3__cta-btn {
        min-width: 280px;
        padding: 18px 56px;
        font-size: 18px;
    }
}
