* {
    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: #39b54a;
    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: #2f9a3e;
    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;      /* 引き伸ばし時も破綻しない */
    }

    /* オーバーレイは 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;
    }
}

/* =====================
   KeyPoint セクション
   ===================== */
.keypoint {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 20px 64px;
}

/* 背景画像 + オーバーレイ */
.keypoint__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.keypoint__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

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

/* ラベル */
.keypoint__label {
    font-family: Arial, sans-serif;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
    color: #39b54a;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

/* 見出し */
.keypoint__heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(22px, 5.5vw, 32px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.55;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

/* 説明文 */
.keypoint__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;
}

/* 2カラムカード */
.keypoint__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.keypoint__card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 36px 32px 40px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* カードタイトル */
.keypoint__card-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(16px, 4vw, 22px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

.keypoint__card-title--negative {
    color: #1a1a1a;
}

.keypoint__card-title--positive {
    color: #0071bc;
}

/* カード内アイテム */
.keypoint__card-item {
    margin-bottom: 24px;
}

.keypoint__card-item:last-child {
    margin-bottom: 0;
}

/* 各ポイント見出し */
.keypoint__card-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(14px, 3.6vw, 17px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.keypoint__card-heading--negative {
    color: #d84a00;
}

.keypoint__card-heading--positive {
    color: #2e8b57;
}

/* 各ポイント説明文 */
.keypoint__card-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(13px, 3.4vw, 15px);
    font-weight: 400;
    color: #333;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

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

    .keypoint__label {
        font-size: clamp(19px, calc(4vw + 3px), 27px);
    }

    .keypoint__desc {
        margin-bottom: 32px;
    }

    .keypoint__desc br {
        display: none;
    }

    .keypoint__cards {
        gap: 16px;
    }

    .keypoint__card {
        padding: 24px 20px 28px;
        border-radius: 12px;
    }

    .keypoint__card-title {
        margin-bottom: 20px;
    }

    .keypoint__card-heading {
        font-size: 14px;
    }

    .keypoint__card-item {
        margin-bottom: 20px;
    }
}

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

    .keypoint__label {
        margin-bottom: 16px;
    }

    .keypoint__heading {
        margin-bottom: 28px;
    }

    .keypoint__desc {
        margin-bottom: 52px;
    }

    .keypoint__cards {
        grid-template-columns: auto auto;
        justify-content: center;
        gap: 32px;
    }

    .keypoint__card {
        padding: 40px 40px 48px;
    }
}

/* =====================
   Strengths セクション
   ===================== */
.strengths {
    background: #fff;
    padding: 60px 20px 64px;
}

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

.strengths__label {
    font-family: Arial, sans-serif;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
    color: #39b54a;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.strengths__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: 8px;
}

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

.strengths__sub-num {
    font-size: 1.3em;
    font-weight: 700;
}

/* グリッド: PC 3列 */
.strengths__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
}

/* カード */
.strengths__card-img {
    margin-bottom: 20px;
}

.strengths__card-img img {
    display: block;
    width: clamp(180px, 80%, 250px);
    height: auto;
    margin: 0 auto;
    border-radius: 50%;
}

/* タイトル行 */
.strengths__card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.strengths__mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.strengths__card-title p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(14px, 3.8vw, 17px);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

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

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

    .strengths__label {
        font-size: clamp(19px, calc(4vw + 3px), 27px);
    }

    .strengths__sub {
        margin-bottom: 32px;
    }

    .strengths__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* SP: 画像左 + コンテンツ右 */
    .strengths__card {
        display: grid;
        grid-template-columns: 38% 1fr;
        gap: 16px;
        align-items: start;
    }

    .strengths__card-img {
        margin-bottom: 0;
    }

    .strengths__card-img img {
        width: 100%;
        max-width: none;
    }

    .strengths__card-title {
        margin-bottom: 12px;
    }

    .strengths__mark {
        width: 32px;
        height: 32px;
    }
}

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

    .strengths__label {
        margin-bottom: 16px;
    }

    .strengths__heading {
        margin-bottom: 12px;
    }

    .strengths__sub {
        margin-bottom: 48px;
    }
}

/* =====================
   Movie Lineup セクション
   ===================== */
.movie-lineup {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* 背景画像 + オーバーレイ */
.movie-lineup__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.movie-lineup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* コンテンツ */
.movie-lineup__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 64px;
}

/* ラベル */
.movie-lineup__label {
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #39b54a;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    text-align: center;
}

/* メイン見出し */
.movie-lineup__heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

/* 説明文 */
.movie-lineup__desc {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 2;
    letter-spacing: 0.04em;
    margin-bottom: 36px;
    text-align: center;
}

/* カードグリッド */
.movie-lineup__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* 個別カード */
.movie-lineup__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
}

/* カード画像 */
.movie-lineup__card-img-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}

.movie-lineup__card-img {
    width: 100%;
    height: auto;
    display: block;
}

/* カードバッジ（画像と同じ横幅に揃える） */
.movie-lineup__card-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 28px;
    border-radius: 30px;
    background: #39b54a;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    margin-top: 20px;
    margin-bottom: 16px;
}

/* カード説明文 */
.movie-lineup__card-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

/* --- SP --- */
@media (max-width: 767px) {
    .movie-lineup__desc br {
        display: none;
    }
}

/* --- PC --- */
@media (min-width: 768px) {
    .movie-lineup__inner {
        padding: 80px 48px 88px;
    }

    .movie-lineup__label {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .movie-lineup__heading {
        font-size: 38px;
        margin-bottom: 28px;
    }

    .movie-lineup__desc {
        font-size: 18px;
        margin-bottom: 48px;
    }

    .movie-lineup__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 40px;
    }

    .movie-lineup__card {
        max-width: none;
    }

    .movie-lineup__card-badge {
        font-size: 17px;
        padding: 10px 32px;
        margin-top: 24px;
        margin-bottom: 20px;
    }

    .movie-lineup__card-text {
        font-size: 15px;
    }
}

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

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

.flow-movie__label {
    font-family: Arial, sans-serif;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.flow-movie__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-movie__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 36px;
}

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

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

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

.flow-movie__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-movie__arrow {
    flex-shrink: 0;
    padding: 0 clamp(12px, 2.5vw, 32px);
    margin-bottom: 28px;
}

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

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

/* 注釈 */
.flow-movie__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-movie {
        padding: 48px 20px 56px;
    }

    .flow-movie__label {
        font-size: clamp(19px, calc(4vw + 3px), 27px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.price-movie__label {
    font-family: Arial, sans-serif;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
    color: #39b54a;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.price-movie__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;
}

.price-movie__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;
}

/* ---- 料金フレーム（SVG） ---- */
.price-movie__box {
    margin-bottom: 28px;
}

.price-movie__svg {
    width: 100%;
    height: auto;
    display: block;
}

/* 注釈 */
.price-movie__footnote {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 400;
    color: #555;
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin-top: 28px;
    text-align: center;
}

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

    .price-movie__label {
        font-size: clamp(19px, calc(4vw + 3px), 27px);
    }

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

    .price-movie__desc br {
        display: none;
    }

    .price-movie__box {
        margin-bottom: 20px;
    }
}

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

    .price-movie__label {
        margin-bottom: 16px;
    }

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

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

    .price-movie__box {
        margin-bottom: 36px;
    }

    .price-movie__svg {
        width: 900px;
        margin: 0 auto;
    }

    .price-movie__footnote {
        margin-top: 36px;
    }
}

/* =====================
   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: #39b54a;
    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: #2f9a3e;
    border-color: rgba(255, 255, 255, 0.7);
}

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