:root {
    /* 緑ブランド＋暖色（クリーム／サンド）で寒さを緩和 */
    --primary-color: #00a27a;
    --primary-dark: #007a5c;
    --secondary-color: #eaf2ec;
    --accent-color: #b8892a;
    /* 時給・必須マーク等 */
    --btn-primary-bg: #e47935;
    --btn-primary-bg-hover: #f0914a;
    --btn-primary-shadow: rgba(228, 121, 53, 0.38);
    --text-color: #38342f;
    --text-light: #6b5e54;
    --bg-color: #faf7f2;
    --bg-light: #f2ebe3;
    --warm-cream: #fffdf8;
    --warm-sand: #f3e9df;
    --warm-line: rgba(212, 175, 145, 0.42);
    --white: #ffffff;
    --border-radius: 12px;
    --spacing-unit: 1rem;
    --font-heading: 'Outfit', 'Noto Sans JP', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

.container {
    width: 90%;
    max-width: 800px;
    /* Kept narrow for readability on simplified LP */
    margin: 0 auto;
}

/* Header */
.header {
    background: var(--warm-cream);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00a27a;
    letter-spacing: 0.1em;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
    background-color: #333;
    /* Fallback */
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 162, 122, 0.18), rgba(0, 100, 78, 0.45));
    /* Warm brown overlay */
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 4rem 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero__tagline {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.badge {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
}

.hero__description {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero__description .jiku {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFEB3B;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn--primary {
    background: var(--btn-primary-bg);
    color: var(--white);
    border: 2px solid var(--btn-primary-bg);
    box-shadow: 0 4px 12px var(--btn-primary-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(228, 121, 53, 0.45);
    opacity: 1;
    background: var(--btn-primary-bg-hover);
    border-color: var(--btn-primary-bg-hover);
}

.btn--secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn--line {
    background: #06C755;
    color: var(--white);
    border: 2px solid #06C755;
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn--line:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(6, 199, 85, 0.4);
    opacity: 1;
    background: #05B048;
    border-color: #05B048;
}

.btn--large {
    width: 100%;
    max-width: 320px;
    margin-bottom: 1rem;
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section--features {
    background: #ffffff;
    margin-top: -2rem;
    /* Overlap hero */
    position: relative;
    z-index: 3;
    border-radius: 20px 20px 0 0;
}

.section__title {
    text-align: center;
    font-size: 1.5rem;
    color: #00a27a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #e47935b3 0% 0%);
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.underline {
    text-decoration: underline;
    text-underline-offset: -0.2em;
    text-decoration-thickness: 0.5em;
    text-decoration-color: rgba(0, 162, 122, 0.45);
    text-decoration-skip-ink: none;
}

/* 蛍光ペン風ハイライト（「スタッフの声」セクションのみ） */
.section--voice.bg-light .mark-yellow {
    background-color: #fff3c4;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: 0.06em 0.22em 0.12em;
    border-radius: 0.12em;
    text-decoration: none;
}

/* ファーストビュー（コンパクト・FV専用） */
.hero.hero--fv {
    display: flex;
    align-items: center;
    justify-content: center;
    /* テキスト削減後も、FV背景の縦の見え方が大きく縮まないよう下限を確保 */
    min-height: clamp(420px, 58svh, 560px);
    text-align: center;
    color: #3a3335;
    /* 狭い画面でもテキストが端で詰まりにくいよう余白 */
    padding: 0.65rem 0.5rem;
}

/* FV写真のみ：参考イメージどおり「中央＝テキスト（変更なし）／左右＝人物が端へ逃げる」サンドイッチ構図 */
.hero.hero--fv .hero__bg--photo {
    isolation: isolate;
}

.hero.hero--fv .hero__bg--photo .hero__img {
    position: absolute;
    left: 50%;
    top: 50%;
    /* 狭い画面ほど拡大率を上げ、左右の人物の間（中央の通路）を広く見せる */
    width: 142%;
    height: 142%;
    max-width: none;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: 50% 22%;
    z-index: 0;
    filter: saturate(0.96);
}

/* FV写真：中央通路のみ白ぼかし（左右のスタッフはマスク外＝ぼかさない） */
.hero.hero--fv .hero__bg--photo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.06);
    /* 横に細い楕円＝左右の人物エリアはマスク透明で backdrop-filter も効かない */
    -webkit-mask-image: radial-gradient(
        ellipse 24% 92% at 50% 46%,
        #000 0%,
        #000 42%,
        transparent 78%
    );
    mask-image: radial-gradient(
        ellipse 24% 92% at 50% 46%,
        #000 0%,
        #000 42%,
        transparent 78%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero.hero--fv .hero__bg--photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    /* ::before と同じ楕円で白ヴェールも中央帯のみ（顔はクリアに） */
    background: radial-gradient(
        ellipse 24% 92% at 50% 46%,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.88) 14%,
        rgba(255, 255, 255, 0.62) 36%,
        rgba(255, 255, 255, 0.28) 58%,
        rgba(255, 255, 255, 0.06) 76%,
        rgba(255, 255, 255, 0) 88%
    );
}

.hero.hero--fv .hero__title-main.hero__title-stack {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.6rem;
    color: inherit;
    text-shadow: none;
}

.hero.hero--fv .hero__title-lead {
    display: block;
    font-size: clamp(1rem, 3.1vw, 0.92rem);
    font-weight: 600;
    color: #5B4335;
    letter-spacing: 0.02em;
    margin-bottom: 0.45rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.75);
}

.hero.hero--fv .hero__title-line {
    --hero-title-line-fs: clamp(2.5rem, 5.2vw, 1.72rem);
    display: block;
    font-size: var(--hero-title-line-fs);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.85);
}

.hero.hero--fv .hero__title-line--brown {
    color: #5B4335;
    font-size: calc(var(--hero-title-line-fs) * 0.8);
}

.hero.hero--fv .hero__title-line--rose {
    color: #f56da1;
    margin-top: 0.12rem;
}

.hero.hero--fv .hero__title-role,
.hero.hero--fv .hero__title-headline {
    display: block;
    line-height: 1.28;
}

.hero.hero--fv .hero__title-role {
    font-size: 0.78em;
    margin-bottom: 0.1em;
}

.hero.hero--fv .hero__title-headline {
    font-size: 1em;
}

.hero.hero--fv .hero__title-sub {
    font-size: clamp(0.82rem, 2.9vw, 0.98rem);
    font-weight: 600;
    line-height: 1.55;
    margin: 0 0 0.75rem;
    color: #3a3335;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.75);
}

.hero.hero--fv .hero__badges--fv .badge {
    background: rgb(248 228 245 / 95%);
    color: #5E5651;
    border: 1px solid rgb(240 111 181);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    border-radius: 50%;
}

.hero.hero--fv .hero__wage-line {
    font-size: clamp(0.88rem, 3.1vw, 1.02rem);
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    color: #3a3335;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.hero.hero--fv .hero__wage-num {
    color: #e47935;
    font-weight: 800;
    font-size: 1.08em;
    text-shadow: none;
}

.hero.hero--fv .hero__note {
    font-size: clamp(0.78rem, 2.6vw, 0.86rem);
    line-height: 1.55;
    margin: 0 0 0.85rem;
    color: #3a3335;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.hero.hero--fv .hero__cta .btn--primary {
    box-shadow: 0 4px 16px rgba(228, 121, 53, 0.4);
}

.hero.hero--fv .hero__cta .btn--secondary {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero.hero--fv .hero__cta .btn--line {
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.28);
}

/* FV：PCは .hero__content--fv で1カラム（写真の上に重畳）。スマホは display:contents で縦並び＋order用に子をフラット化 */
.hero.hero--fv .hero__content.hero__content--fv {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 22.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.hero__intro--fv {
    position: relative;
    z-index: 2;
    padding: 1.35rem 1.2rem 0.85rem;
    max-width: 22.5rem;
    margin-left: auto;
    margin-right: auto;
}

.hero__cta--fv {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 22.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.2rem 1.55rem;
}

/* FV：599px以下では文量を減らして読みやすく */
.hero__show-sm {
    display: none;
}

@media (max-width: 599px) {
    .hero__hide-sm {
        display: none !important;
    }

    .hero__show-sm {
        display: block;
    }
}

.hero__title-main {
    font-family: var(--font-heading);
    font-size: clamp(1.14rem, 4.2vw, 1.48rem);
    font-weight: 700;
    line-height: 1.45;
    margin: 0 0 0.65rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    color: #fff;
}

.hero__title-sub {
    font-size: clamp(0.84rem, 2.9vw, 0.98rem);
    font-weight: 500;
    line-height: 1.55;
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero__badges--fv {
    margin-bottom: 0.7rem;
}

.hero__badges--fv .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: clamp(4.85rem, 30vw, 5.6rem);
    height: clamp(4.85rem, 30vw, 5.6rem);
    padding: 0.28rem 0.32rem;
    border-radius: 50%;
    font-size: clamp(0.58rem, 2.75vw, 0.7rem);
    line-height: 1.15;
    font-weight: 600;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.hero__pay {
    margin: 0 0 0.55rem;
}

.hero__wage-line {
    font-size: clamp(0.88rem, 3.1vw, 1.02rem);
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero__wage-num {
    color: #e47935;
    font-weight: 800;
    font-size: 1.05em;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}

.hero__note {
    font-size: clamp(0.78rem, 2.6vw, 0.86rem);
    line-height: 1.5;
    margin: 0 0 0.85rem;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
    padding-top: 0.35rem;
}

.hero__cta .btn--large {
    margin-bottom: 0;
    max-width: 100%;
    width: 100%;
}

@media (min-width: 480px) {
    .hero.hero--fv .hero__bg--photo .hero__img {
        width: 136%;
        height: 136%;
        object-position: 50% 22%;
    }
}

@media (min-width: 600px) {
    .hero.hero--fv {
        min-height: clamp(480px, 54svh, 620px);
    }

    .hero.hero--fv .hero__bg--photo .hero__img {
        width: 128%;
        height: 128%;
        object-position: 50% 22%;
    }

    .hero.hero--fv .hero__content.hero__content--fv {
        max-width: 26rem;
        padding: 1.75rem 1.4rem 2.1rem;
    }

    .hero.hero--fv .hero__content--fv .hero__intro--fv,
    .hero.hero--fv .hero__content--fv .hero__cta--fv {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .hero.hero--fv .hero__content--fv .hero__intro--fv {
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero.hero--fv .hero__content--fv .hero__cta--fv {
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero.hero--fv .hero__title-main.hero__title-stack {
        margin-bottom: 0.85rem;
    }

    .hero.hero--fv .hero__title-line {
        --hero-title-line-fs: clamp(2.42rem, 2.65vw, 1.95rem);
    }

    .hero.hero--fv .hero__title-lead {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .hero.hero--fv .hero__title-sub {
        font-size: 1.02rem;
        margin-bottom: 1rem;
    }

    .hero__badges--fv {
        margin-bottom: 0.85rem;
    }

    .hero__badges--fv .badge {
        width: clamp(5.15rem, 17vw, 6.1rem);
        height: clamp(5.15rem, 17vw, 6.1rem);
        padding: 0.32rem 0.4rem;
        font-size: clamp(1rem, 1.5vw, 0.8rem);
        line-height: 1.18;
    }

    .hero__pay {
        margin-bottom: 0.65rem;
    }

    .hero__wage-line {
        font-size: 1.05rem;
    }

    .hero__note {
        font-size: 0.9rem;
        margin-bottom: 1.1rem;
    }

    .hero__cta {
        gap: 0.95rem;
        padding-top: 0.5rem;
    }
}

@media (min-width: 900px) {
    .hero.hero--fv .hero__bg--photo .hero__img {
        width: 120%;
        height: 120%;
        object-position: 50% 22%;
    }
}

/* FVから移動した補足（次セクション冒頭） */
.fv-moved-panel {
    background: linear-gradient(135deg, #fffaf5 0%, #f7faf7 55%, #f3f9f5 100%);
    border: 1px solid var(--warm-line);
    border-radius: var(--border-radius);
    padding: 1.15rem 1.1rem;
    margin-bottom: 2rem;
    /* font-size: 0.95rem; */
    line-height: 1.8;
    color: var(--text-color);
    text-align: left;
}

.fv-moved-panel__diag {
    margin: 0.75rem 0 0;
    text-align: center;
}

.fv-moved-panel__diag-link {
    font-size: 0.85rem;
    color: var(--primary-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fv-moved-panel__diag-link:hover {
    color: var(--primary-color);
}

/* Features List */
.feature-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.feature-item {
    flex: 1 1 100%;
    background: #ffc46261;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

@media (min-width: 600px) {
    .feature-item {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

.feature-item__icon {
    font-size: 2.5rem;
}

.feature-item__title {
    font-size: 1.1rem;
    color: #3d4a43;
}

.section__lead {
    text-align: center;
    margin-top: 2rem;
    font-weight: 500;
}

/* Target Audience */
.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--white);
}

.check-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

.page-reading .section--target .check-list {
    max-width: none;
    width: 100%;
}

.check-list li {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-color);
    padding-left: 0;
    align-items: center;
}

.check-list li::before {
    content: '✔';
    flex: 0 0 1.65rem;
    width: 1.65rem;
    min-width: 1.65rem;
    text-align: center;
    position: static;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1.35;
    padding-top: 0.12em;
}

/* flex 内で本文が折り返せるように（チェック列は固定幅のまま） */
.check-list__text {
    flex: 1 1 auto;
    min-width: 0;
}

.message-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
    border: 1px dashed var(--accent-color);
    color: var(--text-color);
}

/* Job Description */
.subsection__title {
    text-align: center;
    font-size: 1.25rem;
    margin: 2rem 0 1.5rem;
    color: #00a27a;
}

.job-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.job-step {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 120px;
    text-align: center;
}

.job-step__img-placeholder {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: var(--bg-light);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 0.5rem;
}

.info-box {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.no-customer-section {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
}

.point-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1em;
}

/* ol の番号は li の外に出るため、カウンターで pill 内に表示 */
ol.point-list {
    counter-reset: point-list-ol;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}

ol.point-list li {
    counter-increment: point-list-ol;
}

ol.point-list li::before {
    content: counter(point-list-ol) ". ";
    margin-right: 0.35em;
}

.point-list li {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Voice（カード型・写真＋見出し＋区切り線＋本文） */
.voice-card {
    background: #fff;
    padding: 1.35rem 1.25rem 1.45rem;
    border-radius: 14px;
    border: 1px solid #ebe6e0;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    min-width: 0;
}

.voice-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e8e4df;
    padding-bottom: 1rem;
}

.voice-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.voice-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voice-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 0;
}

.voice-card__headline {
    display: block;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.45;
    color: #6d3d38;
    letter-spacing: 0.02em;
}

.voice-card__subline {
    display: block;
    font-size: 0.8125rem;
    color: #8a7d75;
    font-weight: 500;
    line-height: 1.45;
}

.voice-card__body {
    color: #454039;
    font-size: 0.95rem;
    line-height: 1.75;
}

.voice-card__body p {
    margin: 0;
}

/* Environment */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 600px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-item {
    background: var(--white);
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 650;
    color: #e47935;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Requirements */
.requirements-list {
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.requirements-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.requirements-row:last-child {
    border-bottom: none;
}

.requirements-row dt {
    width: 30%;
    background: #ff863991;
    padding: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.9rem;
}

.requirements-row dd {
    width: 70%;
    padding: 1rem;
    font-size: 0.95rem;
}

.note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-q {
    font-weight: 700;
    color: #f47d31;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.faq-a {
    color: var(--text-color);
    padding-left: 1rem;
    border-left: 3px solid #eee;
}

/* Flow */
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .flow-steps {
        flex-direction: row;
        max-width: 100%;
        gap: 1rem;
    }
}

.flow-step {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.step-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #00a27a;
    /* Light pink number */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.step-text {
    font-weight: 600;
}

.text-sm {
    font-size: 0.8rem;
    font-weight: normal;
    display: block;
    margin-top: 0.2rem;
}

/* CTA */
.section--cta {
    /* background: var(--bg-light); */
    padding-bottom: 4rem;
}

.cta-box {
    background: var(--white);
    padding: 3rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #b8892a8a;
}

.cta-title {
    color: #e47935;
    margin-bottom: 1.5rem;
}

.cta-text {
    margin-bottom: 1rem;
}

.cta-phone-label {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.cta-phone__icon {
    font-size: 1.8rem;
}

.cta-phone__number {
    color: var(--primary-dark);
    text-decoration: none;
    transition: opacity 0.3s;
}

.cta-phone__number:hover {
    opacity: 0.8;
}

/* Contact Form */
.section--form {
    /* background: var(--bg-light); */
    padding-bottom: 3rem;
    padding-top: 1rem;
}

.form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto;
    border-top: 4px solid var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.required {
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #c5ddd0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #f6faf7;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 162, 122, 0.2);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    font-weight: 500;
}

.radio-label input[type="radio"] {
    accent-color: var(--primary-color);
    width: 1.2rem;
    height: 1.2rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
    padding-bottom: 5rem;
    /* Space for sticky footer on mobile */
}

@media (min-width: 768px) {
    .footer {
        padding-bottom: 2rem;
    }
}

/* Sticky Footer CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 253, 248, 0.97);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    animation: slideUp 0.5s ease-out;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

.sticky-cta__btn {
    display: block;
    width: 100%;
    max-width: 400px;
    background: var(--btn-primary-bg);
    color: var(--white);
    text-align: center;
    padding: 0.8rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px var(--btn-primary-shadow);
    line-height: 1.2;
    transition: transform 0.2s;
}

.sticky-cta__btn:active {
    transform: scale(0.98);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Fixed LINE Button */
.fixed-diagnosis-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.fixed-diagnosis-btn__link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: flex-start;
    background: linear-gradient(135deg, var(--btn-primary-bg-hover) 0%, var(--btn-primary-bg) 45%, #c86a28 100%);
    color: #fffef5;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px var(--btn-primary-shadow);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.3;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s, filter 0.2s, background 0.2s;
}

.fixed-diagnosis-btn__link::before {
    content: "🔍";
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
    animation: diagnosis-icon-float 2.2s ease-in-out infinite;
}

@keyframes diagnosis-icon-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.fixed-diagnosis-btn__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(228, 121, 53, 0.45);
    opacity: 1;
    filter: brightness(1.04);
    background: linear-gradient(135deg, #f5a060 0%, var(--btn-primary-bg-hover) 40%, var(--btn-primary-bg) 100%);
}

.fixed-line-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.fixed-line-btn__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #06C755;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.4);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
    line-height: 1.3;
}

.fixed-line-btn__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 199, 85, 0.5);
    opacity: 1;
}

.fixed-line-btn__icon {
    font-size: 1.5rem;
}

.fixed-line-btn__text {
    white-space: nowrap;
}

/* Mobile: Fixed at bottom */
@media (max-width: 767px) {
    .fixed-diagnosis-btn {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        padding: 0;
    }

    .fixed-diagnosis-btn__link {
        width: 100%;
        border-radius: 0;
        padding: 1rem;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .fixed-diagnosis-btn__link::before {
        font-size: 1.5rem;
    }

    .fixed-line-btn {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        padding: 0;
    }

    .fixed-line-btn__link {
        width: 100%;
        border-radius: 0;
        padding: 1rem;
        justify-content: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .fixed-line-btn__text {
        white-space: normal;
    }
}

/* Staff Comments（横長・左アイコン・左下しっぽ／暖色クリーム） */
.staff-comment {
    --comment-bg: #fffcf5;
    --comment-border: #e8e0d5;
    --comment-text: #5d524d;
    --comment-icon-bg: #f2e8e8;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--comment-bg);
    border: 1px solid var(--comment-border);
    border-radius: 16px;
    color: var(--comment-text);
    padding: 0.9rem 1.15rem 0.95rem 0.95rem;
    margin: 1rem 0 1.4rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.65;
    box-shadow: 0 2px 10px rgba(60, 40, 30, 0.06);
}

.staff-comment__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--comment-icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    line-height: 1;
}

.staff-comment__text {
    flex: 1;
    min-width: 0;
    margin: 0;
}

/* しっぽ（外枠＋塗りの二重三角） */
.staff-comment::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 24px;
    border-width: 10px 9px 0 9px;
    border-style: solid;
    border-color: var(--comment-border) transparent transparent transparent;
    width: 0;
    height: 0;
    z-index: 0;
}

.staff-comment::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 26px;
    border-width: 8px 7px 0 7px;
    border-style: solid;
    border-color: var(--comment-bg) transparent transparent transparent;
    width: 0;
    height: 0;
    z-index: 1;
}

.staff-comment--right::before {
    left: auto;
    right: 24px;
}

.staff-comment--right::after {
    left: auto;
    right: 26px;
}

/* しっぽを上向き（デフォルトの下向きと上下逆） */
.staff-comment--tail-top::before {
    bottom: auto;
    top: -10px;
    left: 24px;
    border-width: 0 9px 10px 9px;
    border-color: transparent transparent var(--comment-border) transparent;
}

.staff-comment--tail-top::after {
    bottom: auto;
    top: -8px;
    left: 26px;
    border-width: 0 7px 8px 7px;
    border-color: transparent transparent var(--comment-bg) transparent;
}

.staff-comment--tail-top.staff-comment--right::before {
    left: auto;
    right: 24px;
}

.staff-comment--tail-top.staff-comment--right::after {
    left: auto;
    right: 26px;
}

@media (max-width: 479px) {
    .staff-comment {
        align-items: flex-start;
        padding-top: 0.85rem;
    }

    .staff-comment__icon {
        margin-top: 0.12rem;
    }
}

/* Photo Guidance Placeholder */
.photo-guidance {
    background: #f0f0f0;
    border: 3px dashed #999;
    padding: 2rem;
    text-align: center;
    color: #666;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: 8px;
}

.photo-guidance__title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.photo-guidance__desc {
    font-size: 0.9rem;
}

.photo-guidance.is-small {
    min-height: 120px;
    padding: 1rem;
}

/* --------------------------------------------------------------------------
   読みやすさ・やさしいトーン（採用LP）
   -------------------------------------------------------------------------- */
body.page-reading {
    font-size: 1.0625rem;
    line-height: 1.88;
    letter-spacing: 0.03em;
    color: #3d4a43;
    background: linear-gradient(180deg, #fdfbf7 0%, #faf5ef 38%, #f4f9f6 100%);
    background-attachment: fixed;
}

.page-reading .container {
    max-width: 36.5rem;
}

.page-reading .section {
    padding: 3.5rem 0;
}

.page-reading h1,
.page-reading h2,
.page-reading h3 {
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.55;
}

.page-reading .section__title {
    font-size: 1.45rem;
    margin-bottom: 2.25rem;
    color: #2d5248;
}

.page-reading .section__subtitle {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-top: 0.35rem;
}

.page-reading .text-lead {
    line-height: 1.9;
    color: #3d4a43;
    margin-bottom: 1.25rem;
}

.page-reading .text-lead:last-child {
    margin-bottom: 0;
}

.page-reading .underline {
    text-decoration: underline;
    text-underline-offset: -0.2em;
    text-decoration-thickness: 0.42em;
    text-decoration-color: rgb(255 187 0 / 42%);
    text-decoration-skip-ink: none;
    background: none;
    padding: 0;
}

.page-reading .check-list li {
    margin-bottom: 1.15rem;
    line-height: 1.85;
    font-weight: 400;
}

/* 「こんな方にぴったり」リスト：重要語の蛍光マーカー（本文の underline より少しはっきり） */
.page-reading .check-list .underline {
    text-decoration-color: rgb(255 200 70 / 55%);
    text-decoration-thickness: 0.45em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.page-reading .message-box {
    line-height: 1.9;
    padding: 1.75rem 1.35rem;
    border-style: solid;
    border-color: rgba(0, 162, 122, 0.28);
    background: linear-gradient(160deg, #fff9f2 0%, #f4faf6 100%);
}

.page-reading .info-box {
    /* background: linear-gradient(180deg, #f6f2eb 0%, #ecf4ef 100%); */
    line-height: 1.9;
    padding: 1.65rem 1.25rem;
}

.page-reading .info-box--accent {
    /* background: linear-gradient(180deg, #fff8f0 0%, #eaf4ef 100%); */
    border: 1px solid var(--warm-line);
}

.page-reading .info-box__catch {
    font-weight: 600;
    color: #00a27a;
    margin-bottom: 0.85rem;
    line-height: 1.75;
}

.page-reading .voice-card__body > p + p {
    margin-top: 1.15em;
}

.page-reading .voice-card__body {
    line-height: 1.75;
    font-size: 0.95rem;
}

.page-reading .voice-point__title {
    font-weight: 600;
    color: #e47935;
}

.page-reading .voice-point__body {
    font-weight: 400;
    color: #3d4a43;
}

.page-reading .faq-q {
    font-weight: 600;
    line-height: 1.65;
}

.page-reading .faq-a {
    line-height: 1.88;
    border-left-color: #e4793578;
}

.page-reading .requirements-row dt {
    font-weight: 600;
}

.page-reading .requirements-row dd {
    line-height: 1.85;
}

.page-reading .hero.hero--fv .hero__title-main.hero__title-stack {
    text-shadow: none;
}

.page-reading .hero.hero--fv .hero__title-lead,
.page-reading .hero.hero--fv .hero__title-line {
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.85);
}

.page-reading .benefit-item {
    font-weight: 500;
    line-height: 1.65;
}

.page-reading .badge {
    font-weight: 600;
    padding: 0.35rem 0.9rem;
}

.page-reading .hero__title-main {
    font-weight: 700;
    line-height: 1.45;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.page-reading .hero__title-sub {
    line-height: 1.55;
}

.page-reading .hero__note {
    line-height: 1.65;
}

.page-reading .btn--large {
    padding: 1.05rem 1.5rem;
    font-weight: 600;
}

.page-reading .form-intro {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.page-reading .text-link-soft {
    color: #00a27a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-reading .text-link-soft:hover {
    color: var(--primary-dark);
}

.page-reading .feature-item {
    padding: 1.65rem 1.25rem;
}

.page-reading .feature-item__title {
    font-weight: 500;
    line-height: 1.75;
}

.page-reading .cta-title {
    font-weight: 600;
    line-height: 1.55;
}

.page-reading .cta-text {
    line-height: 1.85;
    color: var(--text-light);
}

.page-reading .cta-subphone {
    font-size: 0.95rem;
    margin-top: 0.85rem;
    color: var(--text-light);
    line-height: 1.75;
}

.page-reading .cta-subphone .text-link-soft {
    color: var(--primary-dark);
}

.page-reading .subsection__title {
    font-weight: 600;
    margin-top: 2.25rem;
}

.page-reading .schedule-list li {
    padding: 1rem 0;
}

.page-reading .flow-step .step-text {
    line-height: 1.75;
    font-weight: 500;
}

.page-reading .header__logo {
    font-weight: 600;
}

.page-reading .stack-gentle {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-reading .stack-gentle--wide {
    max-width: 100%;
    width: 100%;
    gap: 2rem;
    align-items: stretch;
}

@media (min-width: 480px) {
    body.page-reading {
        font-size: 1.07rem;
    }
}

/* --------------------------------------------------------------------------
   アットホーム・メディア枠・イラスト枠（採用LP）
   -------------------------------------------------------------------------- */
.page-reading .feature-item {
    border: 1px solid var(--warm-line);
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(90, 60, 40, 0.06);
    background: var(--warm-cream);
}

.page-reading .voice-card {
    background: #fff;
    border: 1px solid #ebe6e0;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(40, 30, 20, 0.06);
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.page-reading .voice-card__header {
    border-bottom-color: #e8e4df;
}

.page-reading .check-list li {
    background: rgba(255, 253, 248, 0.85);
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 145, 0.28);
}

.page-reading .faq-item {
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 145, 0.25);
    overflow: hidden;
}

.page-reading .cta-box {
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(90, 60, 40, 0.08);
}

.staff-comment__meta {
    display: block;
    margin-top: 0.65rem;
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

/* 画像差し替え用（16:9） */
.media-slot {
    margin: 1.25rem auto 1.75rem;
    max-width: 100%;
}

.media-slot__photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 2px 14px rgba(60, 40, 30, 0.08);
}

/* お仕事の内容：2枚を1ブロックとして横並び（狭い画面は縦積み） */
.media-slot__pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: start;
}

.media-slot__pair .media-slot__photo {
    margin: 0;
}

@media (max-width: 599px) {
    .media-slot__pair {
        grid-template-columns: 1fr;
    }
}

.media-slot__dummy {
    aspect-ratio: 16 / 9;
    width: 100%;
    background: linear-gradient(145deg, var(--warm-sand) 0%, var(--secondary-color) 55%, #e8f0ea 100%);
    border: 2px dashed rgba(180, 140, 110, 0.55);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 1rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

.media-slot__label {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.media-slot__hint {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* 「こんな方にぴったり」直下ビジュアル */
.target-section-visual {
    margin: 1.25rem auto 1.75rem;
    max-width: min(100%, 640px);
}

.target-section-visual__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 2px 14px rgba(60, 40, 30, 0.08);
}

/* 「こんな方にぴったり」イラスト枠 */
.illus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 0 auto 1.75rem;
    max-width: 440px;
}

.illus-slot {
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    background: linear-gradient(165deg, #fff8f0 0%, var(--secondary-color) 100%);
    border: 2px dashed rgba(180, 140, 110, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem;
}

.illus-slot__label {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--text-light);
}

@media (min-width: 600px) {
    .illus-grid {
        max-width: 480px;
        gap: 1.25rem;
    }

    .illus-slot__label {
        font-size: 0.85rem;
    }
}

figure.media-slot {
    margin-left: 0;
    margin-right: 0;
}

.page-reading .section__title + .staff-comment,
.page-reading .section__title + .illus-grid {
    margin-top: -0.75rem;
}

@media (max-width: 599px) {
    /* スマホFV：上＝クリーム地のコピーエリア、下＝写真（添付イメージに近い縦構成） */
    .hero.hero--fv {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
        min-height: auto;
        margin-bottom: 2rem;
    }

    .hero.hero--fv .hero__content.hero__content--fv {
        display: contents;
    }

    .hero.hero--fv .hero__bg.hero__bg--photo {
        position: relative;
        order: 2;
        width: 100%;
        min-height: min(52vh, 300px);
        flex: 1 1 auto;
        isolation: isolate;
    }

    .hero.hero--fv .hero__bg--photo .hero__img.hero__show-sm {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        transform: none;
        object-fit: cover;
        object-position: 50% 18%;
        filter: saturate(0.98);
    }

    /* スマホFV写真：白グラデ／ぼかしオーバーレイなし（写真をそのまま表示） */
    .hero.hero--fv .hero__bg--photo::before,
    .hero.hero--fv .hero__bg--photo::after {
        content: none;
    }

    .hero.hero--fv .hero__intro.hero__intro--fv {
        order: 1;
        position: relative;
        z-index: 3;
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 1.4rem 1.15rem 0.15rem;
        background: linear-gradient(180deg, #fffdfb 0%, #fff6f2 55%, #fef8f5 100%);
    }

    .hero.hero--fv .hero__intro--fv::after {
        content: '';
        display: block;
        height: 1.85rem;
        margin: 0.35rem -1.15rem 0;
        background: linear-gradient(
            180deg,
            rgba(254, 248, 245, 0) 0%,
            rgba(255, 255, 255, 0.65) 50%,
            rgba(255, 255, 255, 0.95) 100%
        );
        pointer-events: none;
    }

    .hero.hero--fv .hero__title-lead {
        /* color: #e85a9b; */
        font-weight: 700;
        text-shadow: none;
    }

    .hero.hero--fv .hero__title-line {
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    }

    .hero.hero--fv .hero__title-line--rose {
        --hero-title-line-fs: clamp(1.44rem, 5.6vw, 1.92rem);
    }

    .hero.hero--fv .hero__title-role {
        font-size: 0.68em;
        line-height: 1.22;
        margin-bottom: 0.15em;
    }

    .hero.hero--fv .hero__title-headline {
        white-space: nowrap;
        letter-spacing: -0.02em;
    }

    .hero.hero--fv .hero__cta.hero__cta--fv {
        order: 3;
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 1rem 1.15rem 1.4rem;
        background: linear-gradient(180deg, #fefcf9 0%, #faf7f2 100%);
        border-top: 1px solid rgba(90, 60, 40, 0.06);
    }
}

.page-reading .benefit-item {
    border-color: rgba(212, 175, 145, 0.35);
    background: var(--warm-cream);
    border-radius: 16px;
}

/* FVのバッジ：正円用 padding（.page-reading .badge より後で上書き） */
.page-reading .hero__badges--fv .badge {
    padding: 0.28rem 0.32rem;
}

@media (min-width: 600px) {
    .page-reading .hero__badges--fv .badge {
        padding: 0.32rem 0.4rem;
    }
}