/* =================================================
フォント設定
================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Shippori+Mincho:wght@700&display=swap');

/* =================================================
カラーパレット（変数定義）
================================================== */
:root {
    --color-main: #002D5B;     /* メインカラー: 深藍 */
    --color-accent: #A98E63;    /* アクセント: 鈍い黄金 */
    --color-text: #2F2F2F;      /* テキスト: 墨色 */
    --color-background: #F5F5F0;/* 背景: 生成り色 */
    --color-white: #FFFFFF;     /* 白 */
}


/* =================================================
基本設定
================================================== */
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    line-height: 1.8;
    color: var(--color-text); /* 早速変数を適用 */
    background-color: var(--color-white); /* 早速変数を適用 */
    overflow-x: hidden;
}
*::before,
*::after {
  box-sizing: border-box;
}

/* =================================================
タイポグラフィ設定
================================================== */
/* 主要な見出しのフォントを明朝体に統一 */
.section__title,
.interview-headline__title,
.story-section__title,
.final-action-cta__title,
.closing-statement__text {
    font-family: 'Shippori Mincho', serif;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
}

/* 汎用クラス */
.section {
    padding: 80px 20px;
}
.section__inner {
    max-width: 900px;
    margin: 0 auto;
}
.section__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}
/* =================================================
SP/PCでの表示切り替え用クラス
================================================== */

/* PC表示（769px以上）で、sp-onlyクラスを非表示にする */
.sp-only {
    display: none;
}

/* =================================================
レスポンシブ設定
================================================== */
@media (max-width: 768px) {
    /* ...既存のスタイル... */

    /* SP表示（768px以下）で、sp-onlyクラスを表示する */
    .sp-only {
        display: block;
    }

    /* ...既存のスタイル... */
}
/* =================================================
ヘッダー
================================================== */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}

.header__logo {
    margin: 0;
    line-height: 0; /* 画像下の余分な余白を削除 */
}
.header__logo a {
    display: inline-block;
}
.header__logo img {
    max-width: 4.5em; /* ヘッダーの高さに合わせて調整 */
    width: auto;
}

.header__button {
    background-color: var(--color-accent); /* 変更 */
    color: var(--color-white);      /* 変更 */
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    transition: opacity 0.3s;
}

.header__button:hover {
    opacity: 0.8;
}

/* =================================================
① ファーストビュー（FV）【最終リニューアル版】
================================================== */
.fv-reloaded {
    position: relative;
    width: 100%;
    min-height: 700px;
    padding: 120px 20px;
    display: flex;
    align-items: center;
    background-image: url('0207.jpg'); /* 田中健さんの画像を指定 */
    background-size: cover;
    background-position: center 70%;
    color: #fff;
    box-sizing: border-box;
}

.fv-reloaded__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 50, 60, 0.6);
    backdrop-filter: blur(3px);
}

.fv-reloaded__inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.fv-reloaded__content-grid {
    display: grid;
    grid-template-columns: 55% 1fr;
    align-items: center;
    gap: 40px;
}

/* --- テキストエリア --- */
.fv-reloaded__text-area {
    text-align: left;
}
.fv-reloaded__text-area .fv__catch-copy {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.6;
    margin: 0;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 25px;
}
.fv__catch-copy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
}
.fv__catch-copy .catch-copy__supporter {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

/* --- 6つの効果グリッド --- */
.fv__benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}
.fv__benefits-grid .benefit-item {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 10px;
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.fv__benefits-grid .benefit-item i {
    color: var(--color-accent);
}

/* --- 価格とボタン --- */
.fv__price-box {
    margin-bottom: 25px;
}
.fv__price-box .price-box__text {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}
.fv__price-box .price-box__amount {
    font-family: 'Lato', sans-serif;
    font-size: 2.2em; /* 24pxの2.2倍 */
    color: color: var(--color-accent);
    margin: 0 5px;
}
.fv__price-box .price-box__unit {
    font-size: 1em; /* 24px */
}
.fv__price-box .price-box__tax {
    font-size: 0.7em; /* 24pxの0.7倍 */
    font-weight: 400;
}
.fv__note {
    font-size: 12px;
    opacity: 0.8;
}

.fv__button {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white); /* ボタンの文字色は白に */
    font-size: 20px;
    font-weight: 900;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.fv__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* --- 画像エリア --- */
.fv-reloaded__image-area {
    text-align: center;
}
.fv__product-package {
    max-width: 100%;
    width: 400px; /* パッケージの基準サイズ */
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.3));
}

/* =================================================
レスポンシブ設定
================================================== */
/* PC表示（769px以上）でのみ、改行を無効にする */
@media (min-width: 769px) {
    .no-wrap {
        white-space: nowrap;
    }
}

@media (max-width: 900px) {
    .fv-reloaded__content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }
    .fv-reloaded__text-area {
    }
    .fv__catch-copy::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .fv__benefits-grid {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .fv-reloaded {
        padding: 80px 20px;
    }
    .fv__catch-copy {
        font-size: 30px !important;
    }
    .fv__benefits-grid .benefit-item {
        grid-template-columns: repeat(2, 1fr);
        font-size: 16px;
    }
    .fv__price-box .price-box__text {
        font-size: 20px;
    }
    .fv__button {
        font-size: 18px;
        padding: 12px 35px;
    }
}

/* =================================================
② 有名人セクション【リニューアル版】
================================================== */
.celebrity-interview {
    background-color: #fff;
}
.celebrity-interview__inner {
    max-width: 1100px;
}

.interview-headline {
    text-align: center;
    margin-bottom: 60px;
}
.interview-headline__title {
    font-family: 'Shippori Mincho', serif;
    font-size: 40px;
    margin: 0 0 15px 0;
}
.interview-headline__subtitle {
    font-size: 18px;
    margin: 0;
}

.interview-content-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* ▼▼▼ 画像エリアのスタイル ▼▼▼ */
.interview-photo-area {
    /* 【修正点】ここから3行を追記 */
    position: sticky;
    top: 120px; /* ヘッダーの高さなどを考慮した上部からの距離 */
    align-self: flex-start; /* 追従の基準を要素の上端にする */

    border: 1px solid #e9ecef;
    border-radius: 8px;
    background-color: var(--color-background);
}
.interview-photo-area img {
    width: 100%;
    border-radius: 8px;
    display: block; /* 下の隙間を消す */
    min-height: 400px;
}
/* ▲▲▲ ここまで ▲▲▲ */


.interview-text-area {
    position: relative;
}

.interview-pull-quote {
    font-family: 'Shippori Mincho', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.6;
    color: var(--color-main);
    margin-bottom: 40px;
    position: relative;
    padding-left: 60px;
}
.interview-pull-quote::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 100px;
    color: var(--color-background);
    z-index: -1;
}

.interview-qa:not(:last-child) {
    margin-bottom: 30px;
}

.interview-question {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    padding-left: 1.5em;
    position: relative;
}
.interview-question::before {
    content: 'Q.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-main);
}

.interview-answer {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin: 0;
    padding-left: 1.5em;
}

/* =================================================
レスポンシブ設定 (Celebrity Interviewセクション)
================================================== */
@media (max-width: 900px) {
    .interview-content-grid {
        grid-template-columns: 1fr;
    }
    .interview-photo-area {
        position: static; /* SPでは追従を解除 */
        max-width: 400px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .interview-headline__title {
        font-size: 26px;
    }
    .interview-headline__subtitle {
        font-size: 16px;
    }
    .interview-pull-quote {
        font-size: 32px;
        padding-left: 45px;
    }
    .interview-pull-quote::before {
        font-size: 80px;
        top: -5px;
    }
}

/* =================================================
CTAセクション【レイアウト・配色改善版】
================================================== */
/* ▼▼▼ 修正 ▼▼▼ */
.cta-light {
    background-color: var(--color-background);
}
.cta-light .cta__inner {
    max-width: 900px;
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.cta-lead-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 auto 40px;
    color: #333;
}

.cta-light .cta__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* ▼▼▼ 修正（クラス名を .image-area__product-photo に変更し、スタイルを調整） ▼▼▼ */
.image-area__product-photo {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}
/* ▼▼▼▼▼ 画像エリアのスタイル ▼▼▼▼▼ */
.cta-light .cta__image-area {
    flex: 0 0 45%;
    position: relative;
    background-image: url('bkg.png');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 20px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1.48;
    overflow: hidden; /* はみ出した要素を隠す */
}

.image-area__product-photo {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.image-area__seal {
    position: absolute;
    top: 20px;
    left: 20px; /* 左上に変更 */
    width: 150px;
    height: 150px;
    background: var(--color-main), 
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    border: 3px solid #fff;
}
.image-area__seal i {
    font-size: 50px;
    margin-bottom: 5px;
}
.image-area__seal span {
    font-size: 20px;
}
/* ▼▼▼ 装飾文字のスタイル（新規追加） ▼▼▼ */
.image-area__deco-text {
    position: absolute;
    bottom: 25px;
    right: 25px;
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}
.deco-text__brand {
    display: block;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
}
.deco-text__product {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* ▲▲▲▲▲ ここまで ▲▲▲▲▲ */
.cta-light .cta__text-area {
    flex: 1;
    text-align: center;
}

/* --- 配色変更：見出しエリア --- */
.cta__headline-wrapper {
    position: relative;
    margin-bottom: 40px;
    padding: 10px;
}
.headline__tag {
    position: absolute;
    transform: translateX(-30%) rotate(-15deg);
    background-color: var(--color-main); 
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 3px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
    top: -50px;
}
.headline__text {
    font-size: 52px;
    font-weight: 900;
    color: #333;
    margin: 0;
    line-height: 1.4;
    padding-top: 10px; /* タグと重ならないように */
    text-align: center;
}

/* --- 配色変更：タイマー --- */
.cta__timer-wrapper {
    background: var(--color-main); /* 変更 */
    border-radius: 8px;
    padding: 15px 5px 15px 5px;
    margin-bottom: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.timer__lead {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.5;
}
.timer__box {
    color: var(--color-white);
    font-family: 'Lato', 'Noto Sans JP', sans-serif;
    font-weight: 700;
}
.timer__unit {
    font-size: 32px;
}
.timer__unit:not(:last-child) {
    margin-right: 15px;
}
.timer__unit span {
    display: inline-block;
    min-width: 50px;
}
.timer__end-message {
    color: var(--color-white);
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
}

/* --- 配色変更：価格表示 --- */
.cta__price-area {
    background-color: var(--color-background); /* 薄い青緑 */
    border: 3px solid var(--color-main); /* 青緑系に変更 */
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.price__discount-badge {
    background-color: var(--color-main); 
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--color-main); /* 青緑系に変更 */
}
.discount__percentage {
    font-size: 36px;
    font-family: 'Lato', sans-serif;
}
.discount__label {
    font-size: 14px;
}
.price__details {
    text-align: left;
}
.price__regular {
    font-size: 18px;
    color: #555;
    text-decoration: line-through;
}
.price__special {
    display: flex;
    align-items: baseline;
    color: var(--color-main); /* 濃い青緑に変更 */
    line-height: 1;
    margin: 0;
}
.price__label, .price__currency, .price__tax-note {
    font-size: 18px;
    font-weight: 700;
    margin-right: 5px;
}
.price__amount {
    font-size: 64px;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    margin-right: 5px;
}
.price__recurring-note {
    font-size: 13px;
    color: #555;
    margin: 10px 0 0 0;
    text-align: center;
}

/* --- 配色変更：購入ボタン --- */
.cta__button-wrapper {
    margin: 25px 0;
}
.cta__button {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 50px;
    box-shadow: 0 8px 15px var(--color-accent);
    transition: all 0.3s ease;
    padding: 15px 30px;
    border: 2px solid #fff;
}
.cta__button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px var(--color-main);
}
.button__text-main {
    display: block;
    font-size: 24px;
    font-weight: 700;
}
.button__text-sub {
    display: block;
    font-size: 14px;
    opacity: 0.9;
    margin-top: 2px;
}

/* --- リスク低減 --- */
.cta__notes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
.cta__note-item {
    position: relative;
    padding-left: 20px;
}
.cta__note-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border-bottom: 2px solid var(--color-main);
    border-right: 2px solid var(--color-main);
}

/* =================================================
レスポンシブ設定
================================================== */
@media (max-width: 768px) {
    .section {
        padding: 60px 20px;
    }
    .cta-light .cta__inner {
        padding: 20px;
    }
    .headline__tag {
        top: -35px;
        font-size: 22px;
        transform: translateX(50%) rotate(-10deg);

    }
    .headline__text {
        font-size: 26px;
    }
    .image-area__seal {
        width: 120px;
        height: 120px;
    }
    .timer__unit {
        font-size: 28px;
    }
    .timer__unit:not(:last-child) {
        margin-right: 8px;
    }
    .timer__unit span {
        min-width: 38px;
    }
    .cta__price-area {
        flex-direction: column;
        gap: 10px;
    }
    .price__details {
        text-align: center;
    }
    .price__amount {
        font-size: 50px;
    }
    .button__text-main {
        font-size: 18px;
    }
    .button__text-sub {
        font-size: 12px;
    }
    /* ▼▼▼ 新規追加 ▼▼▼ */
    .cta-light .cta__content-wrapper {
        flex-direction: column;
    }
    .cta-light .cta__image-area {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 30px;
        padding: 0; /* この一行を追加して、SPでの不要な余白を削除 */
        aspect-ratio: 1 / 1.7;
    }
    .price__discount-badge {
    margin: 15px 15px -15px 15px;
    }
}
/* =================================================
レスポンシブ設定
================================================== */
/* ... 既存のスタイルの後などに、以下を追記 ... */

/* ▼▼▼【追記】タブレット向け調整 (900px以下 & 769px以上) ▼▼▼ */
@media (max-width: 900px) and (min-width: 769px) {
  /* CTAセクションの内側余白を減らす */
  .cta-light .cta__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  /* 画像とテキストの間の隙間を減らす */
  .cta-light .cta__content-wrapper {
    gap: 20px;
  }
  .headline__tag {
    transform: translateX(50%) rotate(-15deg);
    top: -70px
  }
}
/* =================================================
④ 悩みへの共感・問題提起 セクション【リニューアル案】
================================================== */

/* 既存の .problem-agitation スタイルはそのまま活かす */
.problem-agitation {
    background-color: #2c3e50;
    color: #fff;
}
.problem-agitation__inner {
    max-width: 800px;
}
.problem-agitation__title-box {
    text-align: center;
    margin-bottom: 50px;
}
.title-box__label {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}
.title-box__main {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}
.text-highlight {
    color: var(--color-accent); 
}
.text-highlight2 {
    color: var(--color-accent); 
    font-size: 70px;
}
.text-emphasis {
    font-weight: 700;
    color: var(--color-background); 
}


/* --- ▼▼▼ ここからリニューアル用のスタイル ▼▼▼ --- */

/* 2. 「建前と本音」カードブロック */
.dialogue-cards-block {
    margin-bottom: 60px;
}
.dialogue-cards-block__lead {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
}
.dialogue-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dialogue-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
}
.dialogue-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-background);
    margin-bottom: 20px;
}
.dialogue-card__header i {
    font-size: 20px;
}

.surface-text {
    font-size: 20px;
    margin: 0 0 15px 0;
    line-height: 1.7;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
}

.truth-text {
    margin: 15px 0 0 0;
    font-size: 16px;
    color: #ccc;
    position: relative;
    padding-left: 25px;
}
.truth-text::before {
    content: '↳';
    position: absolute;
    left: 0;
    top: 0;
    color: color: var(--color-accent);
    font-size: 20px;
    font-weight: bold;
}


/* 3. 「悪影響」ブロック */
.impact-block {
    margin-top: 60px;
}
.impact-block__title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    line-height: 1.6;
}
.impact-block__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.impact-item {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    display: flex; /* Flexboxに変更 */
    flex-direction: column; /* 縦並び */
    align-items: center; /* 中央揃え */
    gap: 15px;
}

.impact-item__icon {
    font-size: 36px;
    margin-bottom: 5px;
    line-height: 1;
}

.impact-item__content {
    /* この要素はレイアウトのためだけなので、特にスタイルは不要 */
}

.impact-item__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.impact-item__text {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}
/* ▼▼▼ 追記するCSS ▼▼▼ */

/* 悩みへの共感・問題提起 セクションの画像 */
.problem-agitation__image {
    margin: 40px auto 50px; /* 上下に余白を設定 */
    text-align: center;
}

.problem-agitation__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* 角を少し丸める */
    border: 1px solid rgba(255, 255, 255, 0.1); /* 背景に馴染むように薄い枠線を追加 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* 少しリッチな影を追加 */
}

/* =================================================
レスポンシブ設定 (Problem-agitationリニューアル案)
================================================== */
@media (max-width: 768px) {
    .title-box__main {
        font-size: 28px;
    }
    .dialogue-cards-grid {
        grid-template-columns: 1fr; /* SPでは縦並び */
    }
    .surface-text {
        font-size: 18px;
    }
    .truth-text {
        font-size: 15px;
    }
    .impact-block__title {
        font-size: 28px;
    }
    .impact-block__list {
        grid-template-columns: 1fr; /* SPでは縦並び */
    }
    .impact-item {
        flex-direction: row; /* SPでは横並び */
        text-align: left;
        gap: 20px;
    }
    .impact-item__icon {
        font-size: 32px;
    }
    .impact-item__text {
        font-size: 16px;
    }
}
/* =================================================
⑤ 肌による印象の違い セクション
================================================== */
.impression-by-skin {
    background-color: #fff;
}
.impression-by-skin__inner {
    max-width: 900px;
}
.impression-by-skin__title {
    text-align: center;
}
.impression-by-skin__lead {
    font-size: 18px;
    text-align: center;
    line-height: 1.8;
    margin: -30px 0 50px 0;
}

/* --- 比較ブロック --- */
.comparison-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
}
/* VSマークの装飾 */
.comparison-block::after {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--color-main);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px var(--color-main);
}

.comparison-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}
.comparison-card__title {
    font-size: 22px;
    text-align: center;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid;
}
.comparison-card--negative .comparison-card__title {
    color: #888;
    border-bottom-color: #ccc;
}
.comparison-card--positive .comparison-card__title {
    color: var(--color-main);
    border-bottom-color: var(--color-main);
}

.comparison-card__image-wrapper {
    position: relative;
}
.comparison-card__image-wrapper img {
    width: 100%;
    border-radius: 5px;
}

/* --- 画像上のラベル --- */
.image-label {
    position: absolute;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.comparison-card--positive .image-label {
    background-color: var(--color-main);
}

/* ラベルごとの位置設定 */
.image-label--wrinkle { top: 15%; left: 5%; }
.image-label--spot { top: 45%; right: 5%; }
.image-label--sag { bottom: 10%; left: 10%; }

.image-label--firmness { top: 15%; right: 5%; }
.image-label--glow { top: 45%; left: 5%; }
.image-label--clarity { bottom: 10%; right: 10%; }

/* --- 結論ブロック --- */
.impression-conclusion {
    margin-top: 60px;
    padding: 30px;
    background-color: var(--color-background);
    border-radius: 8px;
    text-align: center;
}
.impression-conclusion__text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0;
}
.text-emphasis--positive {
    background: linear-gradient(transparent 60%, var(--color-white) 60%);
    font-weight: 700;
    color: var(--color-accent);
}
/* =================================================
⑤ 肌による印象の違い セクション【キーポイント追記】
================================================== */

/* ▼▼▼ 追記するCSS ▼▼▼ */
.key-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0 50px;
    text-align: center;
}

.key-point-item {
    background-color: var(--color-background);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px 20px;
}

.key-point__icon {
    font-size: 32px;
    color: var(--color-main);
    margin-bottom: 15px;
}

.key-point__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.key-point__text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: center;
}


/* =================================================
レスポンシブ設定 (Impressionセクションへの追記)
================================================== */
@media (max-width: 768px) {
    /* ▼▼▼ 追記するCSS ▼▼▼ */
    .key-points {
        grid-template-columns: 1fr; /* SPでは縦並び */
        margin: 30px 0 40px;
    }
}
/* =================================================
レスポンシブ設定 (Impressionセクション)
================================================== */
@media (max-width: 768px) {
    .impression-by-skin__lead {
        font-size: 16px;
    }
    .comparison-block {
        grid-template-columns: 1fr; /* 縦並び */
        gap: 50px;
    }
    .comparison-block::after {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    .comparison-card__title {
        font-size: 20px;
    }
    .impression-conclusion {
        margin-top: 50px;
        padding: 25px 20px;
    }
    .impression-conclusion__text {
        font-size: 18px;
    }
}

/* =================================================
⑥ 諦めへの共感と否定 セクション【リニューアル案】
================================================== */

/* 既存の .reassurance__doubt-block スタイルはそのまま活かす */
.reassurance__doubt-block {
    display: inline-block;
    margin-bottom: 30px; /* 少し余白を調整 */
}
.doubt-block__text {
    background-color: #fff;
    border: 1px solid #e9ecef;
    padding: 30px 10px;
    border-radius: 50px;
    font-size: 18px;
    color: #868e96;
    margin: 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.doubt-block__text:not(:last-child) {
    margin-bottom: 15px;
}

/* ▼▼▼ ここからリニューアル用のスタイル ▼▼▼ */

/* 2. 共感の言葉 */
.reassurance__empathy {
    font-size: 18px;
    text-align: center;
    margin: 0 0 30px 0;
}

/* 3. 核心のメッセージブロック */
.reassurance__message-core {
    background-color: var(--color-background); /* 変更 */
    border: 1px solid var(--color-accent);      /* 変更 (2pxでもOK) */
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
}

.message-core__title {
    font-size: 32px;
    line-height: 1.6;
    font-weight: 700;
    margin: 0 0 25px 0;
}

.message-core__text {
    font-size: 22px;
    line-height: 1.8;
    margin: 0;
}

/* =================================================
レスポンシブ設定 (Reassuranceリニューアル案)
================================================== */
@media (max-width: 768px) {
    .doubt-block__text {
        font-size: 16px;
    }
    .reassurance__empathy {
        font-size: 16px;
    }
    .reassurance__message-core {
        padding: 30px 20px;
    }
    .message-core__title {
        font-size: 24px;
    }
    .message-core__text {
        font-size: 18px;
    }
}

/* =================================================
⑦ 解決策の提示（新習慣） セクション
================================================== */
.solution-habit {
    background-color: #fff;
}
.solution-habit__inner {
    max-width: 800px;
    text-align: center;
}

.solution-habit__title {
    margin: 0 auto 40px;
}
.solution-habit__title .title__sub {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 10px;
}
.solution-habit__title .title__main {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
}
.solution-habit__title .text-highlight {
    color: var(--color-accent);
}

.solution-habit__product-image {
    margin-bottom: 30px;
}
.solution-habit__product-image img {
    border-radius: 50%;
    box-shadow: 0 10px 30px var(--color-accent);
    text-align: center;
    max-width: 50%;
}

.solution-habit__lead {
    font-size: 18px;
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto 50px;
}

.key-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.key-feature-item {
    text-align: center;
}
.key-feature-item__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border: 3px solid var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-background);
}

.key-feature-item__icon i {
    font-size: 40px; /* アイコンの大きさを指定 */
    color: var(--color-accent);   /* アイコンの色を指定 */
}

.key-feature-item__text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}


/* =================================================
レスポンシブ設定 (Solution-habitセクション)
================================================== */
@media (max-width: 768px) {
    .solution-habit__title .title__sub {
    font-size: 26px;
    }
    .solution-habit__title .title__main {
        font-size: 26px;
    }
    .solution-habit__product-image img {
        width: 200px;
    }
    .solution-habit__lead {
        font-size: 16px;
    }
    .key-features {
        grid-template-columns: repeat(2, 1fr); /* SPでは2x2のグリッドに */
        gap: 30px 15px;
    }
    .key-feature-item__icon {
        width: 80px;
        height: 80px;
    }
    .key-feature-item__icon i {
        font-size: 32px; /* SPでのアイコンの大きさ */
    }
}

/* =================================================
⑧ 1ヶ月試すべき理由（ターンオーバー）セクション
================================================== */
.turnover-section {
    background-color: var(--color-background);
}
.turnover-section__inner {
    max-width: 800px;
    text-align: center;
}

.turnover-section__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}
.turnover-section__title .text-highlight {
    color: var(--color-main);
}

.turnover-section__lead {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 auto 50px;
}

.turnover-diagram {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}
.turnover-diagram__image {
    flex: 0 0 40%;
}
.turnover-diagram__image img {
    border-radius: 8px;
    width: 100%;
}

.turnover-diagram__text {
    flex: 1;
    text-align: left;
}
.diagram-text__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 15px;
}
.diagram-text__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
}
.diagram-text__description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
.diagram-text__description:not(:last-child) {
    margin-bottom: 1em;
}

.turnover-conclusion {
    margin-top: 50px;
    background-color: var(--color-background);
    border-radius: 8px;
    padding: 30px;
}
.turnover-conclusion__text {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0;
}


/* =================================================
レスポンシブ設定 (Turnoverセクション)
================================================== */
@media (max-width: 768px) {
    .turnover-section__title {
        font-size: 28px;
    }
    .turnover-section__lead {
        font-size: 16px;
    }
    .turnover-diagram {
        flex-direction: column;
        padding: 25px;
        gap: 25px;
    }
    .diagram-text__title {
        font-size: 20px;
    }
    .turnover-conclusion {
        padding: 25px;
    }
    .turnover-conclusion__text {
        font-size: 18px;
    }
}

/* =================================================
⑨ 誕生の物語 セクション
================================================== */
.story-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--color-background);
}
.story-section__inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* --- 1. セクションタイトル --- */
.story-section__headline {
    text-align: center;
    margin-bottom: 80px;
}
.story-section__title {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 15px 0;
}
.story-section__subtitle {
    font-size: 18px;
    color: #555;
    margin: 0;
}
.story-section__subtitle::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--color-background);
    margin: 0 auto 15px;
}


/* --- 2. ストーリー共通ブロック --- */
.story-block {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 100px;
}
.story-block--realization {
    flex-direction: row-reverse;
}
.story-block__image {
    flex: 0 0 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    aspect-ratio: 4 / 3;
    background-color: #e9ecef; /* 画像がない場合の背景色 */
}
.story-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-block__text-content {
    flex: 1;
}
.story-block__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 25px 0;
}
.story-block__text {
    font-size: 16px;
    line-height: 1.9;
}

/* 引用(プルクオート)のスタイル */
.story-block__pull-quote {
    border-left: 4px solid var(--color-main);
    padding-left: 25px;
    margin: 30px 0;
}
.story-block__pull-quote p {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
}

/* --- 3. 3つの約束 --- */
.story-promises {
    margin-bottom: 100px;
}
.story-promises__title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}
.story-promises__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.promise-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}
.promise-card__icon {
    font-size: 40px;
    color: var(--color-main);
    margin-bottom: 20px;
}
.promise-card__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}
.promise-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* --- 4. 結論ブロック --- */
.story-conclusion {
    position: relative;
    padding: 80px 30px;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    font-size: 40px;
    color: #fff;
    background-color: var(--color-background);
}
/* 最終的に画像が決まったら、下のコメントを解除してURLを指定してください */
/*
.story-conclusion {
    background-image: url('ここに竹林などの画像URL');
    background-size: cover;
    background-position: center;
}
*/
.story-conclusion__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
}
.story-conclusion__text-content {
    position: relative;
    z-index: 1;
}
.story-conclusion__text {
    font-family: 'Shippori Mincho', serif;
    line-height: 1.8;
    margin: 0 0 30px 0;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}
.story-conclusion__brand-message {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    margin: 0;
}


/* =================================================
レスポンシブ設定 (Storyセクション)
================================================== */
@media (max-width: 768px) {
    .story-section__headline {
        margin-bottom: 60px;
    }
    .story-section__subtitle {
        font-size: 16px;
    }
    .story-block,
    .story-block--realization {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    .story-block__title {
        font-size: 26px;
    }
    .story-block__pull-quote p {
        font-size: 20px;
    }

    .story-promises__title {
        font-size: 26px;
    }
    .story-promises__grid {
        grid-template-columns: 1fr;
    }
    .story-conclusion {
        padding: 60px 20px;
    }
    .story-conclusion__brand-message {
        font-size: 18px;
    }
    .story-conclusion__text {
        font-size: 18px;
    }

}


/* =================================================
⑨⑩ 商品設計セクション
================================================== */
.product-design {
    background-color: #fff;
}
.design-part:not(:last-child) {
    margin-bottom: 100px;
}
.design-part__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 20px;
}
.design-part__lead {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 auto 50px;
    text-align: center;
}
.design-part__note {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* --- パート1：有効成分 --- */
.active-ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.ingredient-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
}
/* ▼▼▼▼▼ ここからが修正箇所です ▼▼▼▼▼ */
.ingredient-card__header {
    padding: 25px 20px;
    border-bottom: 1px solid #e9ecef;
    text-align: center; /* 全体を中央揃え */
}
.ingredient-card__structure {
    height: 60px;
    width: auto;
    margin: 0 auto 20px; /* 中央揃えと下に余白 */
}
/* ▲▲▲▲▲ ここまでが修正箇所です ▲▲▲▲▲ */

.title-group__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-main);
}
.title-group__name {
    font-size: 22px;
    margin: 0;
}
.ingredient-card__body {
    padding: 25px;
    flex-grow: 1;
}
.ingredient-card__benefit {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: var(--color-main);
    font-weight: 700;
}
.ingredient-card__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* --- パート2：サポート成分 --- */
.support-ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.support-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background-color: #fff;
    display: flex;
    flex-direction: column;
}
.support-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #868e96;
    font-size: 14px;
    text-align: center;
}
.support-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.support-card__image-wrapper::before {
    content: attr(alt);
    position: absolute;
    padding: 10px;
    line-height: 1.5;
}
.support-card__image:not([src=""]) + .support-card__image-wrapper::before,
img[src=""]:not(:hover) + .support-card__image-wrapper::before,
img:not([src]) + .support-card__image-wrapper::before {
    display: block;
}
img[src] + .support-card__image-wrapper::before {
    display: none;
}
.support-card__body {
    padding: 25px;
    flex-grow: 1;
}
.support-card__title {
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 700;
}
.support-card__text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* --- パート3：心地よさの技術 --- */
.comfort-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.comfort-card {
    background-color: var(--color-background);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
}
.comfort-card__icon {
    font-size: 32px;
    color: var(--color-main);
    margin-bottom: 15px;
}
.comfort-card__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}
.comfort-card__text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
.comfort-card--checklist .check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 2.0;
}
.check-list li {
    text-align: left;
}
.check-list i {
    color: var(--color-main);
    margin-right: 10px;
    width: 1.2em;
    text-align: center;
}
/* =================================================
⑨⑩ 商品設計セクション【大タイトル追加】
================================================== */

/* ▼▼▼ 追記するCSS ▼▼▼ */

/* セクション全体のヘッドライン */
.product-design__headline {
    text-align: center;
    margin-bottom: 80px; /* 各パートまでの余白 */
}

/* サブタイトル（既存の汎用クラスがあればそれでもOK） */
.section__subtitle {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 20px;
}

/* 各パートのタイトルの連番 */
.design-part__title {
    /* 既存のスタイルに以下を追加 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.design-part__number {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-main);
    font-family: 'Lato', sans-serif;
    background-color: var(--color-background);
    padding: 4px 12px;
    border-radius: 50px;
}

/* 既存の.design-part__titleのスタイルを調整 */
.design-part__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 20px;
}
/* ▲▲▲ 追記ここまで ▲▲▲ */


/* =================================================
レスポンシブ設定 (Product-designへの追記)
================================================== */
@media (max-width: 768px) {
    /* ▼▼▼ 追記するCSS ▼▼▼ */
    .product-design__headline {
        margin-bottom: 60px;
    }
    .section__subtitle {
        font-size: 16px;
    }
    /* ▲▲▲ 追記ここまで ▲▲▲ */
}

/* =================================================
レスポンシブ設定 (Product-designセクション)
================================================== */
@media (max-width: 768px) {
    .design-part__title {
        font-size: 26px;
    }
    .design-part__lead {
        font-size: 16px;
    }
    .active-ingredients-grid,
    .support-ingredients-grid,
    .comfort-tech-grid {
        grid-template-columns: 1fr;
    }
    .title-group__name {
        font-size: 20px;
    }
    .comfort-card--checklist .check-list {
        font-size: 15px;
    }
}

/* =================================================
⑫cta-2
レスポンシブ設定 (CTAセクションの追記分)
================================================== */
/* @media (max-width: 768px) の中に、以下のルールを追加してください */
.cta-lead-title {
    font-size: 26px;
    margin-bottom: 50px;
}

/* =================================================
⑬ 実感のお声（お客様レビュー）セクション
================================================== */
.testimonials {
    background-color: var(--color-background);
}
.testimonials__inner {
    max-width: 1000px;
}
.testimonials__title {
    margin-bottom: 60px;
}
.testimonials__title .title__sub {
    display: block;
    font-weight: 700;
    color: var(--color-main);
    margin-bottom: 10px;
}
.testimonials__title .title__main {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.5;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.card__profile-icon {
    font-size: 40px;
    color: #ced4da;
}
.profile-info__name {
    font-size: 16px;
    font-weight: 700;
    display: block;
}
.profile-info__demographic {
    font-size: 14px;
    color: #868e96;
    display: block;
}

.card__rating {
    margin-bottom: 15px;
    color: color: var(--color-accent);
    font-size: 18px;
}

.card__headline {
    font-size: 20px;
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-main);
    font-weight: 700;
    line-height: 1.6;
}

.card__body {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    flex-grow: 1; /* カードの高さを揃えるため */
}

/* =================================================
レスポンシブ設定 (Testimonialsセクション)
================================================== */
@media (max-width: 900px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials__title .title__main {
        font-size: 28px;
    }
    .card__headline {
        font-size: 18px;
    }
}

/* =================================================
⑭ シンプルなCTAセクション
================================================== */
.simple-cta {
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}
.simple-cta__inner {
    max-width: 800px;
    text-align: center;
}

.simple-cta__title {
    font-size: 38px;
    font-weight: 700;
    margin: 0 auto 40px;
}

.simple-cta__button-wrapper {
    margin-bottom: 30px;
}

.simple-cta__button {
    display: inline-block;
    width: 100%;
    max-width: 600px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 26px;
    font-weight: 700;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 137, 123, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.simple-cta__button::after {
    content: '›';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    opacity: 0.7;
    transition: right 0.3s ease;
}
.simple-cta__button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 137, 123, 0.5);
}
.simple-cta__button:hover::after {
    right: 20px;
}


.simple-cta__notes {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #555;
}
.simple-cta__notes .note-item i {
    color: var(--color-main);
    margin-right: 8px;
}


/* =================================================
レスポンシブ設定 (Simple CTAセクション)
================================================== */
@media (max-width: 768px) {
    .simple-cta__title {
        font-size: 28px;
    }
    .simple-cta__button {
        font-size: 20px;
        padding: 20px;
    }
    .simple-cta__notes {
        font-size: 14px;
        gap: 20px;
    }
}

/* =================================================
⑭ 最終CTA（申込フォーム風）セクション
================================================== */
.final-cta {
    background-color: #e9ecef; /* 少し背景色をつけてフォームを際立たせる */
}
.final-cta__inner {
    max-width: 700px;
}

.form-container {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-header {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--color-background);
    border-bottom: 1px solid #dee2e6;
}
.form-header__title {
    font-size: 28px;
    margin: 0 0 10px 0;
}
.form-header__subtitle {
    font-size: 15px;
    color: #555;
    margin: 0;
}

.form-body {
    padding: 30px;
}
.form-section-title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #868e96;
    margin: 0 0 20px 0;
    position: relative;
}
.form-section-title::before,
.form-section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #dee2e6;
}
.form-section-title::before { left: 0; }
.form-section-title::after { right: 0; }


.order-summary {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 30px;
}
.summary__product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 0 150px;
}
.summary__product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
}
.summary__product-name {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    margin: 0;
}
.summary__pricing {
    flex: 1;
}
.pricing-list {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e9ecef;
}
.pricing-list__item {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    padding: 10px 0;
}
.pricing-list__item dt {
    color: #555;
}
.pricing-list__item--discount dd {
    color: #e60012;
}
.pricing-list__item--total {
    font-weight: 700;
    font-size: 18px;
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
    margin-top: 10px;
}
.pricing-list__item--total dd {
    color: var(--color-main);
    font-size: 32px;
    line-height: 1;
}
.pricing-unit {
    font-size: 18px;
    margin: 0 3px;
}
.pricing-tax {
    font-size: 14px;
    font-weight: 400;
}
.pricing-note {
    font-size: 14px;
    color: #555;
    text-align: right;
    margin: 10px 0 0 0;
}

.payment-methods {
    text-align: center;
    font-size: 32px;
    color: var(--color-main);
    margin-bottom: 30px;
}
.payment-methods i:not(:last-child) {
    margin-right: 10px;
}

/* 新しく作ったクレジットカードのグループ */
.credit-card-group {
    gap: 10px;             /* アイコン同士の間隔 */
}

.payment-method-logo {
    height: 50px; /* 他のアイコンの高さに合わせて調整 */
    width: auto;  /* 高さに合わせて幅は自動調整 */
}

.form-action {
    padding: 30px;
    background-color: var(--color-background);
    text-align: center;
}
.form-action__button {
    display: inline-block;
    width: 100%;
    background-color: var(--color-accent); /* 変更 */
    color: var(--color-white);      /* 変更 */
    font-size: 24px;
    font-weight: 700;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 15px var(--color-accent);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.form-action__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px var(--color-accent);
}
.form-action__note {
    font-size: 14px;
    color: #555;
    margin: 15px 0 0 0;
}

.form-footer {
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: #868e96;
}
.form-footer__security {
    margin-bottom: 15px;
}
.form-footer__security i {
    margin-right: 5px;
}
.form-footer__guarantees span:not(:last-child) {
    margin-right: 20px;
}


/* =================================================
レスポンシブ設定 (Final CTAセクション)
================================================== */
@media (max-width: 768px) {
    .form-header__title { font-size: 22px; }
    .form-header__subtitle { font-size: 14px; }
    .order-summary {
        flex-direction: column;
        gap: 20px;
    }
    .summary__product {
        flex: 0 0 auto;
    }
    .summary__pricing {
        width: 100%;
    }
    .form-action__button { font-size: 20px; }
}

/* =================================================
⑮ よくあるご質問セクション
================================================== */
.faq-section {
    background-color: #fff;
}
.faq-section__inner {
    max-width: 800px;
}
.faq-section__title {
    margin-bottom: 50px;
}

.faq-list {
    border-top: 1px solid #e9ecef;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text);
}
.faq-item__question span {
    flex: 1;
    padding-right: 20px;
}
.faq-item__question i {
    color: var(--color-main);
    font-size: 20px;
    transition: transform 0.3s ease;
}

/* 答えが開いた時の「＋」アイコンの回転 */
.faq-item.is-open .faq-item__question i {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out; /* paddingのtransitionは不要なので削除 */
    background-color: var(--color-background);
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    /* paddingは内側のpタグに移動 */
}
.faq-item__answer p {
    margin: 0;
    padding: 30px; /* 上下左右に均等な余白を設定 */
}

/* =================================================
レスポンシブ設定 (FAQセクション)
================================================== */
@media (max-width: 768px) {
    .faq-item__question {
        font-size: 16px;
    }
}

/* =================================================
⑯ クロージングセクション
================================================== */
.closing-statement {
    position: relative;
    padding: 120px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-image: url('https://via.placeholder.com/1920x1080/555555/ffffff?text=田中健さんの魅力的な写真');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* 背景を固定し、パララックス効果を演出 */
}

.closing-statement__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent);
}

.closing-statement__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.closing-statement__text {
    font-family: 'Shippori Mincho', serif;
    font-size: 42px;
    line-height: 1.8;
    margin: 0 0 30px 0;
    text-shadow: 1px 1px 15px rgba(0,0,0,0.5);
}

.closing-statement__brand-name {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    letter-spacing: 4px;
    margin: 0;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
}

/* =================================================
レスポンシブ設定 (Closingセクション)
================================================== */
@media (max-width: 768px) {
    .closing-statement {
        padding: 80px 20px;
        background-attachment: scroll; /* SPではパララックスを解除 */
    }
    .closing-statement__text {
        font-size: 20px;
    }
    .closing-statement__brand-name {
        font-size: 20px;
        letter-spacing: 2px;
    }
}

/* =================================================
⑰ 最終CTAセクション
================================================== */
.final-action-cta {
    background: var(--color-white); /* 変更 */
    padding-top: 80px;
    padding-bottom: 80px;
}
.final-action-cta__inner {
    max-width: 800px;
    text-align: center;
}

.final-action-cta__title {
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}
.final-action-cta__subtitle {
    font-size: 18px;
    margin: 10px 0 40px 0;
    opacity: 0.9;
}

.final-action-cta__button-wrapper {
    margin-bottom: 40px;
}
.final-action-cta__button {
    display: inline-block;
    width: 100%;
    max-width: 650px;
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    padding: 20px;
    border: none;
    cursor: pointer;
    animation: pulse-animation 2s infinite;
    box-sizing: border-box; /* ▼▼▼ この1行を追記 ▼▼▼ */
}
@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.final-action-cta__button:hover {
    animation-play-state: paused; /* ホバー時はアニメーションを止める */
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.final-action-cta__button .button-main-text {
    display: block;
    font-size: 26px;
    font-weight: 900;
}
.final-action-cta__button .button-sub-text {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 5px;
    color: var(--color-white);
}
.button-campaign-note {
    font-size: 14px;
    margin: 20px 0 0 0;
    opacity: 0.9;
}

.final-action-cta__benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}
.final-action-cta__benefits .benefit-item i {
    color: var(--color-accent);
    margin-right: 8px;
}


/* =================================================
レスポンシブ設定 (Final Action CTAセクション)
================================================== */
@media (max-width: 768px) {
    .final-action-cta__title {
        font-size: 24px;
    }
    .final-action-cta__subtitle {
        font-size: 16px;
    }
    .final-action-cta__button .button-main-text {
        font-size: 20px;
    }
    .final-action-cta__benefits {
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
        max-width: 90%; /* 画面からはみ出さないように */
        margin-left: auto;
        margin-right: auto;
    }
}

/* =================================================
⑱ 商品概要セクション
================================================== */
.product-summary {
    background-color: var(--color-background);
    padding-top: 80px;
    padding-bottom: 80px;
}
.product-summary__inner {
    max-width: 900px;
}
.product-summary__title {
    margin-bottom: 40px;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dee2e6;
}

.summary-table th,
.summary-table td {
    border: 1px solid #dee2e6;
    padding: 20px;
    text-align: left;
    vertical-align: top;
}

.summary-table th {
    background-color: #fff;
    font-weight: 700;
    width: 25%;
}

.summary-table td {
    background-color: #fff;
    line-height: 1.8;
}

/* =================================================
レスポンシブ設定 (Product Summaryセクション)
================================================== */
@media (max-width: 768px) {
    .summary-table,
    .summary-table tbody,
    .summary-table tr,
    .summary-table td,
    .summary-table th {
        display: block;
        width: 100%;
        box-sizing: border-box; /* ▼▼▼ この1行を追記 ▼▼▼ */
    }
    .summary-table thead {
        display: none;
    }
    .summary-table tr {
        margin-bottom: 15px;
        border: 1px solid #dee2e6;
    }
    .summary-table td {
        border: none;
        border-top: 1px solid #e9ecef;
        text-align: left;
    }
    .summary-table th {
        border: none;
        font-size: 16px;
        text-align: left;
    }
}

/* =================================================
フッター
================================================== */
.footer-container {
    background-color: rgba(0, 0, 0, 0.4);
    color: var(--color-background);
    padding: 60px 20px;
}

.footer-container__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}
.footer-logo img {
    max-width: 200px;
    height: auto;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-nav__link {
    color: var(--color-background);
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}
.footer-nav__link:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 12px;
    margin: 0;
}

/* =================================================
レスポンシブ設定 (フッター)
================================================== */
@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}