@charset "UTF-8";

/* ==========================================================================
   1. 基本リセット & 共通スタイル
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333333;
    background-color: #e8f3fc;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.lp-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    overflow: hidden; /* 要素のはみ出しによる横スクロールを防止 */
}

/* ユーティリティクラス */
.text-center { text-align: center; }
.font-bold { font-weight: bold; }
.text-red { color: #e60012; }
.text-blue { color: #004ea2; }
.mt-auto { margin-top: auto; }
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }

/* 蛍光ペン（マーカースタイル） */
.marker-yellow {
    background: linear-gradient(transparent 60%, #ffff33 60%);
    font-weight: bold;
}

/* ==========================================================================
   2. ファーストビュー (FV) ★重なり・配置の微調整
   ========================================================================== */
.fv-section {
    padding: 40px 0 20px 0;
    background-color: #ffffff;
    position: relative;
}

/* 最上部帯キャッチコピー */
.fv-top-text {
	position: relative;
    font-size: 1.1rem;
    color: #004ea2;
    letter-spacing: 0.08em;
    font-weight: bold;
	margin: 0px 150px 30px 0px; /* 上に持ち上げつつ、左マージン(25px)で左寄りに配置 */
    z-index: 5; /* 一番手前に配置 */
}

/* 傾いた限定バナー（メインビジュアルの上に重ねるベース） */
.fv-badge-area {
    max-width: 520px;
    position: relative;
    z-index: 4; /* 一番手前に配置 */
	margin: 0px 0px 35px 25px; /* 上に持ち上げつつ、左マージン(25px)で左寄りに配置 */
}


/* メインビジュアル */
.fv-main-visual {
    margin-top: -200px; /* タイトルロゴの背景に回り込ませる */
    position: relative;
    z-index: 1;
}

/* 豊富な点検項目リスト（★サイズを縮小し、左寄りに修正） */
.fv-items-grid {
    max-width: 600px; /* 元の680pxから縮小して少し小さめに */
    margin: -85px auto 35px 25px; /* 上に持ち上げつつ、左マージン(25px)で左寄りに配置 */
    position: relative;
    z-index: 2;
}

/* 住まいのカルテ表示エリア（★右下に画像を重ねるため position: relative を設定） */
.karte-lead-box {
    background-color: #ffffff;
    border: 3px solid #004ea2;
    border-radius: 12px;
    padding: 30px 25px;
    margin: 20px 20px 45px 20px; /* 下側に画像がはみ出すスペースを考慮してマージンを下(45px)に広げます */
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(0, 78, 162, 0.1);
    text-align: left; /* テキストを左寄せに */
}

/* テキスト全体の横幅を制限し、右側の画像と重なりすぎないように調整 */
.karte-lead-title {
    color: #004ea2;
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 75%; /* 右側にカルテが来るため、テキスト幅を75%に制限 */
}

.karte-lead-desc {
    font-size: 1.1rem;
    color: #444444;
    max-width: 65%; /* 説明文も画像に被らないよう幅を制限 */
}

/* カルテ画像（★解説ボックスの右下に小さく絶対配置で重ねます） */
.karte-img-wrap {
    position: absolute;
    right: -10px;    /* ボックスの右端から少し外側にはみ出させる */
    bottom: -35px;   /* ボックスの下側から少し下にはみ出させる */
    width: 38%;      /* カンプに近い小ぶりなサイズ（約38%）に縮小 */
    max-width: 260px;
    z-index: 3;      /* ボックスの枠線より上に重ねる */
}
.karte-img-wrap img {
    width: 100%;
    height: auto;
}

/* ==========================================================================
   3. 価格セクション ★上下のテキストをコーディングで完全再現
   ========================================================================== */
.price-section {
    background-color: #1a448d; /* デザインに合わせた深みのある紺色 */
    padding: 25px 10px;
    color: #ffffff;
}

.price-container {
    max-width: 660px;
    margin: 0 auto;
}

/* 上部テキスト：「エーメゾンおうちの健康診断が」 */
.price-top-text {
    font-size: 1.6rem;         /* パッと目を引く大きめのサイズ */
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* 中央画像エリア */
.price-img-wrap {
    margin-bottom: 15px;
}
.price-img-wrap img {
    width: 100%;
    height: auto;
}

/* 下部注記テキスト：「※「クラブメゾン」入会費〜」 */
.price-sub-note {
    font-size: 0.95rem;        /* 小さすぎず読みやすい繊細なサイズ */
    color: #ffffff;
    opacity: 0.95;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   4. お悩みセクション ★左右配置と「少し重ねる」デザインを再現
   ========================================================================== */
.problems-section {
    padding: 50px 20px 0px 20px;
    background-color: #ffffff;
}

.problems-title-wrap {
    max-width: 550px;
    margin: 0 auto 35px auto;
}
.problems-title-img {
    width: 100%;
    height: auto;
}

/* 左右を並べて重ねるための親コンテナ */
.problems-overlap-container {
    display: flex;
    align-items: center;      /* 上下中央で揃える（デザインに応じて top や bottom にも変更可） */
    justify-content: center;
    max-width: 710px;
    margin: 0 auto 30px auto;
    position: relative;
}

/* 左側：イメージ画像（横幅を少しタイトにしてベースを構築） */
.problems-left-img {
    width: 48%;               /* 全体の約半分弱のサイズに設定 */
    position: relative;
    z-index: 1;               /* 背面に配置 */
}
.problems-left-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右側：チェックリスト（★左側にマイナスマージンで潜り込ませる） */
.problems-right-list {
    width: 56%;               /* 左画像と合わせて100%を超えるサイズにし、重ね代を作る */
    margin-left: -5%;         /* ★左側へ5%分マイナスさせて、左の画像の上に重ねる */
    position: relative;
    z-index: 2;               /* 左画像より前面に重ねる */
}
.problems-right-list img {
    width: 100%;
    height: auto;
    display: block;
}

/* お悩みセクションのグレーの補足テキスト */
.problems-footer-text {
    background-color: #555555;
    color: #ffffff;
    padding: 15px;
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 0;           /* ★重要：下側の余白を完全にゼロにして次の要素を引き寄せます */
}

/* お悩みセクション下部のCTAリードボタン（★下向き三角形を合成） */
.lead-trigger-btn {
    background-color: #1a448d;
    color: #ffffff;
    font-size: 1.45rem;
    line-height: 1.6;
    padding: 22px 15px 30px 15px; /* ★三角形がはみ出るため、下側の内側余白（padding-bottom）を少し広めに確保します */
    border-radius: 0;             /* ★上のグレーの箱と密着させるため上は直線、下も形状合成のため丸みをゼロにします */
    margin: 0 0 45px 0;           /* ★三角形が突き出る分、下マージンを少し広げます（45px） */
    letter-spacing: 0.05em;
    position: relative;           /* ★三角形をボタンの底辺に固定するための基準点 */
    box-shadow: 0 5px 15px rgba(26, 68, 141, 0.3);
}

/* ★新設：ボタンの下部中央に下向きの三角形を合成する記述 */
.lead-trigger-btn::after {
    content: "";
    position: absolute;
    bottom: -15px;        /* ★三角形の高さ分だけ、ボタンの下側にはみ出させます */
    left: 50%;
    transform: translateX(-50%); /* ★三角形を完全に中央寄せにします */
    width: 0;
    height: 0;
    /* CSSトリックによる三角形の生成 */
    border-style: solid;
    border-width: 15px 20px 0 20px; /* 【縦15px、横40px】のシャープな下向き三角形 */
    border-color: #1a448d transparent transparent transparent; /* ボタンと同じ青色を指定 */
    z-index: 10;          /* 最前面に表示 */
}

/* 蛍光ペン（マーカースタイル） */
.marker-yellow {
    background: linear-gradient(transparent 20%, #ffff33 20%); /* 線を少し太めにして目立たせる */
    font-weight: bold;
    color: #1a448d; /* 暗い背景の中でも文字がしっかり読めるように黒色を指定 */
    padding: 6px 2px 2px 2px; /* 文字の左右にほんの少し余白をいれて見やすく */
}

/* お悩みセクション下部のCTAリードボタン */
.lead-trigger-btn {
    background-color: #1a448d;
    color: #ffffff;
    font-size: 1.45rem; /* 視認性を高めるために少しだけサイズアップ */
    line-height: 1.6;
    padding: 22px 15px;
    margin: 35px 0;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(26, 68, 141, 0.3); /* 少し立体感をプラス */
}

/* ★新設：ボタン内の特定文字を目立たせるスタイル（案A: ゴールドイエロー） */
.lead-trigger-btn .highlight-text {
    color: #ffcc00; font-size: 1.6rem; /* 周りの文字より一回り大きくしてジャンプ率をつける */
    font-weight: 900; /* 圧倒的に太く */
    display: inline-block;
    padding: 0 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 文字に軽い影をつけて可読性をアップ */
}

/* ==========================================================================
   5. 開発ストーリー (台風エピソード) ★テキストとラジオ画像の配置
   ========================================================================== */
.story-section {
    background-color: #f4f7fa;
    padding: 40px 20px;
    margin: 0 20px 50px 20px;
    border-radius: 12px;
}

.story-header {
    font-size: 0.95rem;
    color: #444444;
    margin-bottom: 25px;
    line-height: 1.7;
}

.story-body-box {
    background-image: url('images/episod.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 35px 30px;
    border-radius: 8px;
    color: #222222;
    box-shadow: inset 0 0 0 1000px rgba(255,255,255,0.88);
}

.story-title {
    font-size: 1.25rem;
    color: #1a448d;
    margin-bottom: 25px;
    line-height: 1.5;
    border-left: 4px solid #1a448d;
    padding-left: 10px;
}

/* 前半文章のラッパー（下部に少し余白を空ける） */
.story-top-text {
    margin-bottom: 20px;
}

/* テキスト全体の共通スタイル */
.story-p {
    font-size: 0.95rem; /* 文字を少しだけ読みやすく大きく */
    line-height: 1.75;
    margin-bottom: 14px;
    text-align: left;
}
.story-top-text .story-p {
    margin-bottom: 0;
}

/* 後半部分の横並びコンテナ */
.story-flex-container {
    display: table;
    width: 100%;
    table-layout: fixed;
}

/* 左側：後半文章カラム（幅を約65%に設定して左寄りに固定） */
.story-text-col {
    display: table-cell;
    width: 60%;
    vertical-align: top; /* 画像と下辺を揃えて美しく見せる */
    padding-right: 15px;
}
.story-text-col .story-p {
    margin-bottom: 0;
}

/* 右側：ラジオ画像＆キャプションカラム */
.story-radio-col {
    display: table-cell;
    width: 35%;
    vertical-align: bottom; /* 下辺揃え */
    text-align: center;
}

.story-radio-wrap {
    width: 100%;
    margin-bottom: 8px;
}
.story-radio-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

/* キャプションスタイル */
.radio-caption {
    font-size: 0.75rem;
    color: #1a448d;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   6. 特徴・ポイントセクション ★ジグザグ配置と洗練されたシャドウの再現
   ========================================================================== */
.points-section {
    padding: 0px 20px 30px 20px;
    background-color: #ffffff;
}

.points-container {
    max-width: 850px; /* カンプの横長ボックスに合わせた最適な幅 */
    margin: 0 auto;
}

/* 各ポイントを包む白いボックス */
.point-box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 35px 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: center; /* 上下中央揃え */
    justify-content: space-between;
    /* カンプのような、うっすら青みがかった美しい立体感を出すシャドウ */
    box-shadow: 0 10px 30px rgba(0, 78, 162, 0.12);
    box-sizing: border-box;
}
.point-box:last-child {
    margin-bottom: 0;
}

/* ★配置コントロール：1と3は通常通り（テキスト左、画像右） */
.row-normal {
    flex-direction: row;
}

/* ★配置コントロール：2は反転（画像左、テキスト右） */
.row-reverse {
    flex-direction: row-reverse;
}

/* テキストエリアの幅 */
.point-text-block {
    width: 60%;
    text-align: left;
    box-sizing: border-box;
}

/* 紺色のPOINTバッジ */
.point-badge {
    display: inline-block;
    background-color: #004ea2;
    color: #ffffff;
    font-size: 0.85rem;
    padding: 3px 18px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

/* タイトルテキスト */
.point-title {
    font-size: 1.35rem;
    color: #004ea2;
    line-height: 1.45;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

/* 本文テキスト */
.point-desc {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.65;
    margin: 0;
}

/* 画像エリアの幅と角丸 */
.point-img-block {
    width: 35%;
    box-sizing: border-box;
}
.point-img-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px; /* カンプのような綺麗な角丸にカット */
}


/* ==========================================================================
   7. ステップ・フロー & クラブメゾン移行図
   ========================================================================== */
/* フローセクション全体のタイトルラッパー */
.flow-section-title {
    max-width: 680px;      /* 画像が大きすぎず綺麗に見える最適な幅に制限 */
    margin: 0 auto 40px auto; /* 中央寄せにし、下のコンテンツとの間に余白(40px)を確保 */
    padding: 0 15px;       /* 画面端にぴったりくっつかないよう左右に安全余白 */
}

/* ★画像自体のレスポンシブ対応 */
.flow-section-title img {
    width: 100%;           /* 親要素の幅（最大680px）に合わせて自動伸縮 */
    height: auto;          /* 縦横比を維持 */
    display: block;
    margin: 0 auto;
}

/* フロー全体の横幅と並び設定 */
.flow-main-wrapper {
    display: flex;
    max-width: 780px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: stretch; /* ★重要：左右のカラムの縦幅を強制的に同期させます */
}

/* ================= 左側：縦長矢印エリア ================= */
.flow-left-arrows {
    width: 12%; /* 左矢印の幅をコンパクトに設定 */
    display: flex;
    flex-direction: column;
}

/* 上半分の矢印コンテナ（ステップ1〜3の高さに100%連動） */
.arrow-group-top {
    flex: 3; /* ステップ3つ分の比率 */
    position: relative;
    padding-bottom: 25px; /* 右側ステップ間の隙間分の調整 */
}

/* 後半の矢印コンテナ（ステップ4〜5の高さに100%連動） */
.arrow-group-bottom {
    flex: 2; /* ステップ2つ分の比率 */
    position: relative;
}

/* 中央のバナーと並ぶ空間（バナーの高さに自動で合わせる） */
.arrow-spacer {
    height: 54px; /* 右側の「自動移行バナー」の高さ＋マージン分と一致させます */
    margin-bottom: 15px;
}

/* 縦長矢印画像そのものの制御 */
.vertical-arrow-img {
    width: 100%;
    height: 100%;
    object-fit: fill; /* ★重要：親の連動した高さに合わせて、画像を綺麗に変形させてフィットさせます */
    display: block;
}


/* ================= 右側：ステップエリア ================= */
.flow-right-steps {
    width: 85%; /* 右側ステップエリアの横幅 */
}

/* 個々のステップボックス */
.flow-step-box {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #004ea2;
    padding: 15px;
    margin-bottom: 25px; /* ステップ同士の隙間 */
    position: relative;
    border-radius: 4px;
}

/* ★ステップの下部に下向きのヒゲ（矢印突起）を合成 */
.flow-step-box::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 16px 0 16px;
    border-color: #004ea2 transparent transparent transparent;
    z-index: 5;
}
/* 最後のステップと、バナー直前のステップ3はヒゲを消す、または調整 */
.flow-step-box:nth-of-type(3)::after,
.flow-step-box:last-of-type::after {
    display: none;
}

/* ステップ内の画像とテキストの比率 */
.step-img-part {
    width: 28%;
    margin-right: 4%;
}
.step-img-part img {
    width: 100%;
    height: auto;
    display: block;
}

.step-text-part {
    width: 68%;
    text-align: left;
}
.step-title {
    font-size: 1.2rem;
    color: #004ea2;
    margin-bottom: 8px;
}
.step-desc {
    font-size: 0.85rem;
    color: #333333;
    line-height: 1.5;
    margin: 0;
}

/* 中央の自動移行アナウンス帯 */
.flow-transition-banner {
    background-color: #00338d;
    color: #ffffff;
    font-size: 1.05rem;
    padding: 12px 10px;
    margin-bottom: 25px;
    position: relative;
    text-align: center;
    letter-spacing: 0.05em;
    border-radius: 4px;
}
/* バナー下部の下向きヒゲ */
.flow-transition-banner::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 16px 0 16px;
    border-color: #00338d transparent transparent transparent;
    z-index: 5;
}

.clubmaison-add-title-wrap {
    max-width: 480px;
    margin: 45px auto 25px auto;
}

/* ==========================================================================
   クラブメゾン 特典カードエリア ★横並びとカンプデザインの再現
   ========================================================================== */
.club-benefits-container {
    max-width: 780px; /* フローセクション等の幅と合わせて統一感を出す */
    margin: 0 auto;
    padding: 0 15px;
}

/* 個々の特典カードボックス */
.club-benefit-card {
    display: flex;
    align-items: center;       /* 上下中央揃え（アイコンとテキストの高さを中央に） */
    background-color: #e6f2ff; /* カンプのような、うっすら綺麗な薄い水色背景 */
    border: 2px solid #004ea2; /* 視線を引き締める濃い青の枠線 */
    border-radius: 4px;
    padding: 25px 30px;
    margin-bottom: 20px;       /* カード同士の隙間 */
    box-sizing: border-box;
    text-align: left;
}
.club-benefit-card:last-child {
    margin-bottom: 0;
}

/* 左側：アイコンパーツの幅制御 */
.benefit-icon-part {
    width: 15%;                /* アイコンが大きすぎず綺麗に収まるバランス */
    margin-right: 5%;          /* 右側のテキストとの間のゆったりとした余白 */
    display: flex;
    justify-content: center;
}
.benefit-icon-part img {
    width: 100%;
    max-width: 70px;           /* アイコンの最大サイズを制限して上品に */
    height: auto;
    display: block;
}

/* 右側：テキストコンテンツパーツ */
.benefit-text-part {
    width: 80%;
}

/* カード内見出し（黄色マーカー） */
.benefit-card-title {
    font-size: 1.25rem;
    color: #004ea2;            /* エーメゾンカラーの濃い青 */
    margin-bottom: 12px;
    line-height: 1.4;
}

/* 既存の蛍光ペン指定を上書き・最適化 */
.benefit-card-title .marker-yellow {
    background: linear-gradient(transparent 40%, #ffff00 40%); /* パキッとした黄色マーカー */
    padding: 0 4px;
}

/* カード内本文 */
.benefit-card-desc {
    font-size: 0.9rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   8. ホームドクター約束（3つのNO宣言）
   ========================================================================== */
.promise-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.promise-blue-title {
    color: #1a448d;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.promise-sub-text {
    font-size: 0.9rem;
    margin-bottom: 25px;
    color: #555555;
}

.promise-border-box {
    border: 2px solid #1a448d;
    border-radius: 10px;
    padding: 30px 20px;
    background-color: #ffffff;
}

.promise-heading-no {
    color: #004ea2;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.no-icons-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 25px;
}

.no-icon-item {
    width: 32%;
}

.promise-desc-paragraph {
    font-size: 0.9rem;
    color: #444444;
    text-align: left;
    line-height: 1.7;
}

/* ==========================================================================
   9. お客様の声
   ========================================================================== */
.voice-section {
    padding: 40px 20px;
}

.section-divider-title {
    font-size: 1.45rem;
    color: #1a448d;
    border-bottom: 2px solid #1a448d;
    padding-bottom: 6px;
    margin-bottom: 35px;
    letter-spacing: 0.05em;
}

.voice-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
    text-align: left;
}

.voice-avatar {
    width: 8%;
    flex-shrink: 0;
}

.voice-bubble-text {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.6;
    background-color: #f4f7fa;
    padding: 15px 20px;
    border-radius: 8px;
    position: relative;
}

/* ==========================================================================
   10. よくあるご質問 (FAQ)
   ========================================================================== */
.faq-section {
    padding: 20px 20px 50px 20px;
}

.faq-item {
    text-align: left;
    margin-bottom: 25px;
    border-bottom: 1px dashed #dddddd;
    padding-bottom: 20px;
}

.faq-q {
    font-size: 1.1rem;
    color: #1a448d;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.faq-q-prefix {
    font-size: 1.25rem;
    margin-right: 10px;
    color: #e60012;
}

.faq-a {
    font-size: 0.95rem;
    line-height: 1.7;
    padding-left: 26px;
    color: #444444;
}

/* ==========================================================================
   11. フッター & 下部固定常時表示CTA
   ========================================================================== */
.footer-cta-area {
    background-color: #002244;
    color: #ffffff;
    padding: 40px 20px 140px 20px;
}

.footer-lead-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
    letter-spacing: 0.02em;
}

.static-cta-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    color: #333333;
    margin-bottom: 35px;
}

.static-cta-badge {
    color: #e60012;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.static-cta-btn {
    background: linear-gradient(to bottom, #ffffff 0%, #e6f2ff 100%);
    border: 3px solid #1a448d;
	color: #1a448d;
    display: block;
    padding: 16px;
    border-radius: 35px;
    font-size: 1.35rem;
    font-weight: bold;
    text-decoration: none;
    margin: 15px 0;
    box-shadow: 0 4px 0 #1a448d;
    transition: transform 0.2s, box-shadow 0.2s;
}

.static-cta-btn:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #006633;
}

.static-cta-sub {
    font-size: 0.8rem;
    color: #666666;
}

.static-tel-label {
    font-size: 0.9rem;
    margin-top: 20px;
}

.static-tel-link {
    font-size: 2rem;
    color: #1a448d;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin: 5px 0;
}

.static-tel-time {
    font-size: 0.8rem;
    color: #666666;
}

.footer-area-info {
    font-size: 1rem;
    margin-bottom: 8px;
}

.footer-area-sub {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ==========================================================================
   最下部固定：フローティングCTA（エリアテキスト・注記追加版）
   ========================================================================== */
.floating-cta-area {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98); /* テキストが増えたため、視認性を高めるよう白を少し濃く */
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.1); 
    z-index: 9999; 
    padding: 12px 0 6px 0; /* 下部に注記が入るため全体の上下余白を微調整 */
    box-sizing: border-box;
}

.floating-cta-container {
    max-width: 1050px; /* テキストの長さに合わせて横幅を少しだけ広げました */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 共通の補足・注記テキスト */
.floating-cta-area .cta-note-text {
    display: block;
    font-size: 0.75rem;
    color: #333333;
    margin-top: 5px;
}
.floating-cta-area .text-blue {
    color: #1a448d;
}

/* --- 左側：WEB申し込み側 --- */
.cta-web-block {
    width: 55%; /* テキストが綺麗に収まるよう幅を55%に微調整 */
    text-align: center;
}

/* ★追加：拠点・エリアメッセージ */
.cta-area-text {
    display: block;
    font-size: 0.85rem;
    color: #cc0000; /* 地域密着の重要なアピールのため、パッと目を引く赤色（または紺色）がおすすめです */
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}

.cta-sub-text {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

/* カンプ通りの角丸グラデーション風ボタン */
.cta-btn-link {
    display: block;
    width: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, #e6f2ff 100%);
    border: 3px solid #1a448d;
    color: #1a448d;
    font-size: 1.5rem;
    padding: 8px 15px; /* 高さを少しコンパクトに調整 */
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(26, 68, 141, 0.15);
    transition: all 0.2s ease;
    text-align: center;
}
.cta-btn-link span {
    font-size: 1.15rem;
}
.cta-btn-link:hover {
    background: linear-gradient(to bottom, #e6f2ff 0%, #cce4ff 100%);
    transform: translateY(-1px);
}

/* --- 右側：お電話申し込み側 --- */
.cta-tel-block {
    width: 40%;
    text-align: center;
}
.cta-tel-badge {
    display: inline-block;
    background-color: #1a448d;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 3px 20px;
    border-radius: 20px;
    margin-bottom: 2px;
}
.cta-tel-number {
    display: block;
    font-size: 2.3rem;
    color: #000000;
    text-decoration: none;
    line-height: 1.1;
    pointer-events: none;
}

/* ★追加：最下部の全体共通注記（その他の地域〜） */
.cta-bottom-notice {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: #666663;
    margin-top: 8px;
    border-top: 1px dashed #dddddd; /* 上にうっすら破線を入れて区切ることでスッキリ見せます */
    padding-top: 4px;
}

/* ★最下部までスクロールした際にフッターが隠れないためのクッション */
body {
    /* PC版のフローティングCTAの高さ（約120px〜140px）に合わせた底面余白 */
    padding-bottom: 140px !important; 
}
/* ==========================================================================
   12. レスポンシブ対応 (スマートフォン用レイアウト調整)
   ========================================================================== */
@media screen and (max-width: 640px) {
    /* スマホ画面サイズに合わせて重なり具合（ネガティブマージン）を最適に縮小 */
    .fv-top-text {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .fv-badge-area {
        max-width: 100%;
    }
    .fv-logo-area {
        max-width: 85%;
        margin-top: -15px;
    }
    .fv-main-visual {
        margin-top: -200px;
	    margin-bottom: 50px;

    }
    .fv-items-grid {
        margin-top: -20px;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
@media screen and (max-width: 640px) {
    /* 〜 既存のスタイル 〜 */

    .karte-lead-box {
        margin: 0 12px 35px 12px;
        padding: 20px 15px;
        display: flex;
        flex-direction: column; /* ★中身を上から下に縦並びにする */
        align-items: center;    /* 中央寄せ */
    }
    
    .karte-lead-title {
        font-size: 1.15rem;
        max-width: 100%;
        text-align: left;       /* タイトルは左寄せ */
        width: 100%;
        margin-bottom: 12px;
    }
    
    .karte-lead-desc {
        font-size: 0.95rem;
        max-width: 100%;
        text-align: left;       /* 説明文も左寄せ */
        width: 100%;
        margin-bottom: 15px;    /* 下の画像との隙間 */
    }
    
    .karte-img-wrap {
        position: static;       /* ★絶対配置を解除 */
        width: 70%;             /* ★スマホ画面でしっかり見えるように少し大きめに表示 */
        max-width: 240px;
        margin: 0 auto -35px auto; /* ★下側だけボックスから少しはみ出させる */
    }

    /* 〜 既存のスタイル 〜 */
}
    
    .problems-main-box {
        flex-direction: column;
    }
    .problems-main-box > img {
        width: 100%;
    }
    .problems-side-img {
        width: 60%;
        margin-top: 10px;
    }
    
    .story-section {
        margin: 0 10px 40px 10px;
        padding: 25px 15px;
    }
    .story-body-box {
        padding: 15px;
    }
    
    .flow-flex-container {
        flex-direction: column;
        gap: 20px;
    }
    .flow-left-arrow-col {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    .arrow-img-box {
        width: 48%;
    }
    .flow-right-steps-col {
        width: 100%;
    }
    .step-inner-flex {
        flex-direction: column;
        text-align: center;
    }
    .step-img-part {
        width: 45%;
    }
    .step-text-part {
        width: 100%;
        text-align: center;
    }
    
    .no-icons-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .no-icon-item {
        width: 65%;
    }
    
    .voice-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .voice-avatar {
        width: 20%;
    }
    
    .floating-cta-bar {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }
    .floating-btn-web, .floating-btn-tel {
        width: 100%;
        padding: 11px;
        font-size: 0.95rem;
    }
    .footer-cta-area {
        padding-bottom: 160px;
    }
}


@media screen and (max-width: 640px) {
    /* 〜 他のスマホ用スタイル 〜 */

    /* スマホ用のお悩みセクションレイアウト切り替え */
    .problems-overlap-container {
        flex-direction: column;  /* 縦並び（上下）に変更 */
        align-items: center;
        padding: 0 10px;
    }
    .problems-left-img {
        width: 75%;              /* スマホ画面で見やすい適度な大きさに調整 */
        margin-bottom: -15px;    /* ★下のリスト画像と上下で少し重ねるためのマイナスマージン */
        z-index: 1;
    }
    .problems-right-list {
        width: 100%;             /* リストは文字を読ませるため横幅いっぱいに広げる */
        margin-left: 0;          /* 左右のマイナスマージンをリセット */
        z-index: 2;
    }

    /* 〜 他のスマホ用スタイル 〜 */
}
@media screen and (max-width: 640px) {
    /* 〜 既存のスタイル 〜 */

    .lead-trigger-btn {
        font-size: 1.1rem;
        padding: 16px 10px;
    }
    .lead-trigger-btn .highlight-text {
        font-size: 1.2rem; /* スマホでも綺麗に1行に収まるサイズに微調整 */
        padding: 0 2px;
    }

    /* 〜 既存のスタイル 〜 */
}
@media screen and (max-width: 640px) {
    /* 〜 他のスマホ用スタイル 〜 */

    .lead-trigger-btn {
        font-size: 1.1rem;
        padding: 16px 10px 24px 10px; /* スマホ用も下部パディングを広めに */
        margin-bottom: 15px;          /* スマホ用の下部余白 */
    }
    
    /* スマホ画面に合わせて三角形のサイズを少しだけ小ぶりに微調整（必要に応じて） */
    .lead-trigger-btn::after {
        border-width: 12px 16px 0 16px;
        bottom: -12px;
    }

    /* 〜 他のスマホ用スタイル 〜 */
}

@media screen and (max-width: 640px) {
    /* 〜 他のスマホ用スタイル 〜 */

    /* スマホでは改行をリセットして読みやすくする */
    .story-body-box br {
        display: none;
    }
    
    .story-flex-container {
        display: block;
    }
    .story-text-col {
        display: block;
        width: 100%;
        padding-right: 0;
        margin-bottom: 25px;
    }
    .story-radio-col {
        display: block;
        width: 65%;
        margin: 0 auto;
    }
    .story-p {
        font-size: 0.9rem;
        line-height: 1.6;
        text-align: justify;
    }

    /* 〜 他のスマホ用スタイル 〜 */
}

@media screen and (max-width: 640px) {
    /* 〜 他のスマホ用スタイル 〜 */

    /* スマホ用のポイントセクション最適化 */
    .points-section {
        padding: 40px 10px;
    }
    .point-box {
        /* 反転レイアウト（row-reverse）も含め、スマホでは一律「縦並び（上から下）」にリセット */
        flex-direction: column-reverse; 
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    .point-text-block {
        width: 100%;
        margin-top: 20px; /* 上に配置される画像との間の余白 */
    }
    .point-title {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    .point-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .point-img-block {
        width: 85%; /* スマホ画面で程よい大きさになるよう調整 */
        margin: 0 auto;
    }

    /* 〜 他のスマホ用スタイル 〜 */
}

@media screen and (max-width: 640px) {
    /* 〜 他のスマホ用スタイル 〜 */

    .flow-section-title {
        margin-bottom: 25px; /* スマホでは下のコンテンツとの隙間を少し狭くして間延びを防ぐ */
    }

    /* 〜 他のスマホ用スタイル 〜 */
}

@media screen and (max-width: 640px) {
    /* 〜 他のスマホ用スタイル 〜 */

    .flow-main-wrapper {
        display: block; /* 縦並び構造に戻す */
    }
    .flow-left-arrows {
        display: none; /* スマホ画面では縦長の巨大な矢印は隠してスッキリさせる */
    }
    .flow-right-steps {
        width: 100%; /* ステップを画面いっぱいに広げて文字を読ませる */
    }
    .flow-step-box {
        flex-direction: column; /* ステップ内も画像が上、文字が下に */
        text-align: center;
        padding: 20px 15px;
    }
    .step-img-part {
        width: 50%;
        margin-right: 0;
        margin-bottom: 12px;
    }
    .step-text-part {
        width: 100%;
    }
    .step-title {
        font-size: 1.1rem;
        text-align: center;
    }
    .flow-transition-banner {
        font-size: 0.85rem;
        padding: 10px 5px;
    }

    /* 〜 他のスマホ用スタイル 〜 */
}
@media screen and (max-width: 640px) {
    /* 〜 他のスマホ用スタイル 〜 */

    /* 特典カードのスマホ最適化 */
    .club-benefit-card {
        flex-direction: column; /* 縦並びに変更 */
        text-align: center;      /* スマホでは中央寄せで綺麗に見せる */
        padding: 20px 15px;
    }
    .benefit-icon-part {
        width: 25%;              /* スマホ画面に合わせてアイコン比率を調整 */
        margin-right: 0;
        margin-bottom: 15px;     /* 下のテキストとの間の隙間 */
    }
    .benefit-text-part {
        width: 100%;
    }
    .benefit-card-title {
        font-size: 1.05rem;      /* スマホで見やすい文字サイズに微調整 */
        line-height: 1.4;
    }
    .benefit-card-desc {
        font-size: 0.85rem;
        text-align: justify;     /* 本文は左右端を揃えて読みやすく */
    }

    /* 〜 他のスマホ用スタイル 〜 */
}

@media screen and (max-width: 640px) {
    /* 〜 既存のスマホ用スタイル 〜 */

    /* スマホ用フローティングCTAの最適化 */
    .floating-cta-area {
        padding: 6px 0 4px 0;
    }
    .floating-cta-container {
        padding: 0 8px;
    }
    .floating-cta-area .cta-note-text,
    .floating-cta-area .cta-sub-text,
    .floating-cta-area .cta-area-text {
        display: none; /* ボタンの押しやすさを最優先するため、上部の長文テキストは非表示に */
    }
    
    .cta-web-block {
        width: 49%;
    }
    .cta-btn-link {
        font-size: 0.85rem;
        padding: 10px 2px;
        border: 2px solid #1a448d;
    }
    .cta-btn-link span {
        font-size: 0.85rem;
        display: block;
    }
    
    .cta-tel-block {
        width: 49%;
    }
    .cta-tel-badge {
        font-size: 0.65rem;
        padding: 2px 8px;
    }
    .cta-tel-number {
        font-size: 1.15rem;
        color: #ffffff;
        background-color: #00a854;
        padding: 8px 2px;
        border-radius: 50px;
        pointer-events: auto;
        box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    }
    
    /* ★スマホ用追加：その他の地域への注記 */
    .cta-bottom-notice {
        font-size: 0.65rem; /* スマホ画面に合わせて文字を極小に */
        margin-top: 4px;
        padding-top: 2px;
        border-top: none;   /* スマホでは線を無くしてシンプルに */
        color: #555555;
    }
    
    /* フローティングエリアが高くなった分、bodyの底マージンを調整 */
    body {
        padding-bottom: 85px;
    }

    /* 〜 既存のスマホ用スタイル 〜 */
}