/* =================================================== */
/* ========== 0. 基本リセット＆フォント設定 ========== */
/* =================================================== */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333; /* 基本の文字色は濃いグレー */
    background-color: #FFF;
    line-height: 1.7; /* 行間を少し広げて読みやすく */
    scroll-behavior: smooth; /* スムーススクロールをCSSで指定 */
}
/* 背景固定（SPメニュー表示時） */
body.no-scroll {
    overflow: hidden;
}

/* =================================================== */
/* ========== ① ファーストビュー（文字中央・画像分離Ver） ========== */
/* =================================================== */

.fv-new {
    /* (1) 画像を背景全体に使う */
    position: relative;
    width: 100%;
    min-height: 100vh; /* 画面の高さに合わせる */
    padding-top: 80px; /* ヘッダーの高さ分 */
    box-sizing: border-box;
    display: flex; /* 中身を中央寄せするためにflexboxを使う */
    flex-direction: column; /* 要素を縦に並べる */
    justify-content: center; /* 縦方向の中央寄せ */
    align-items: center; /* 横方向の中央寄せ */
    text-align: center; /* テキストも中央寄せ */
    overflow: hidden; /* 背景画像のはみ出し対策 */

    /* (2) 【最重要】背景画像の指定 */
    background-color: #333; /* 画像読み込み失敗時の色 */
    background-image: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), /* ← 暗いフィルター！ */
        url('img/fv-bg2.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* 画面いっぱいに広げる */
    background-attachment: fixed; /* スクロールしても背景を固定 */
}

/* テキストエリア */
.fv-content {
    width: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* 中身を中央寄せ */
    padding: 60px 5%; 
    box-sizing: border-box;
    color: #fff; /* 文字はダークチャコール
     #fff? */
    text-align: center; /* テキストも中央寄せ */
    flex-shrink: 0; /* 縮まないように */
}

/* --- ここから下は、FVの中身のスタイル --- */

/* (1) メインキャッチコピー */
.fv-catchcopy-atsukisan {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 0 0 30px 0;
    color: #f5f5f5;
    position: relative; /* 下のラインのため */
    max-width: 600px;
    margin-left: auto; /* 中央寄せ */
    margin-right: auto; /* 中央寄せ */
}
/* キャッチコピー上部のラベル */
.fv-heading-label {
    display: inline-block;
    background-color: #FFD700; /* 金色 */
    color: #1F1F1F; /* 黒文字 */
    font-size: 0.9rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 5px;
    margin-bottom: 15px;

}
/* キャッチコピー「審査に落ちた」部分 */
.fv-heading-main {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 15px;
}
/* キャッチコピー「最後に辿り着く不動産」部分 */
.fv-catchcopy-atsukisan .highlight-main {
    color: #FFD700; /* 【変更】赤色！ */
    font-size: 3.5rem; 
    display: block;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 0 10px rgba(255,215,0,0.5); /* 金色に影 */
}
.fv-catchcopy-atsukisan .highlight-main::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    height: 5px; 
    margin: 15px 20px;
    background: linear-gradient(to right, #FFD700 80%, rgba(255,215,0,0) 100%); /* 【変更】金色グラデーション */
    border-radius: 2px;
}


/* (2) 実績・権威性バッジ */
.fv-badges-atsukisan {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    max-width: 640px;
    width: 100%;
    margin-left: auto; /* 中央寄せ */
    margin-right: auto; /* 中央寄せ */
}
.badge-item-atsukisan {
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 10px;
    padding: 15px 20px;
    border-top: 5px solid #FFD700; /* 金色 */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    text-align: left;
}
.badge-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
    display: block;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.badge-body {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    height: 3em; 
}
.badge-no1-red { /* 【変更】赤色用のクラス */
    font-size: 2.5rem;
    font-weight: 900;
    color: #E60012; /* 赤色 */
    font-family: Impact, sans-serif;
    margin-right: 5px;
}
.badge-unit {
    font-size: 1rem;
    font-weight: 700;
}
.badge-item-atsukisan:last-child .badge-no1 {
    font-size: 2.0rem; 
    color: #E60012; /* 【変更】「歓迎」も赤にする！ */
    position: relative;
    top: -5px;
}

/* (3) 強みリスト */
.fv-strength-list {
    list-style-type: none;
    padding: 0;
    margin: 0 auto 30px auto; /* 中央寄せ */
    display: inline-block; 
    text-align: left; 
    background-color: rgba(255, 255, 255, 0.4);
    padding: 15px 25px;
    border-radius: 10px;
}
.fv-strength-list li {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    padding: 5px 0;
}

/* (4) CTAボタン（LINE風） */
.fv-cta {
    text-align: center;
}
.cta-button.line-green {
    display: inline-block;
    background-color: #06C755;
    color: white;
    border-radius: 50px;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border-bottom: 5px solid #05A347;
    position: relative;
    transition: all 0.2s ease;
}
.cta-button.line-green:hover {
    transform: translateY(2px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    border-bottom-width: 3px;
}
.line-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 8px;
}
.cta-main-text {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}
.cta-sub-text {
    font-size: 1.1rem;
    display: block;
    margin-top: 5px;
}
.arrow-right {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg);
}
.fv-cta .cta-note {
    font-size: 0.9rem;
    margin-top: 10px;
    color:#f5f5f5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7); /* 影をつけて見やすく */
}


/* =================================================== */
/* ========== ② 共通セクション設定 ========== */
/* =================================================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #1F1F1F; /* 基本のタイトル色はダークチャコール */
}
.section-subtitle {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}
.highlight {
    color: #FFD700; /* 【変更】金色！ */
}
.sp-only { 
    display: none;
}

/* =================================================== */
/* ========== ③ 共感パート（悩み） ========== */
/* =================================================== */
.problem {
    padding: 60px 0;
    background-color: #ffffff; 
}
.problem-list {
    list-style-type: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 40px auto;
}
.problem-list li {
    font-size: 1.1rem;
    font-weight: 700;
    background-color: #F5F5F5; /* オフホワイト */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid #FFD700; /* 【変更】金色 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.check-icon {
    color: #FFD700; /* 【変更】金色 */
    margin-right: 10px;
    font-weight: 900;
}
.problem-solution {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
}
.problem-solution .strong {
    font-size: 2rem;
    font-weight: 900;
    color: #E60012; /* 【変更】ここは赤で強調！ */
    display: inline-block;
    padding: 0 10px;
    border-bottom: 3px solid #E60012; /* 【変更】赤色 */
}

/* =================================================== */
/* ========== ③-B 実績・権威性（Authority） ========== */
/* =================================================== */
.authority {
    padding: 60px 0;
    background: #1F1F1F; /* ダークチャコール */
    color: #F5F5F5; /* オフホワイト */
    text-align: center;
}
.section-title.text-white {
    color: #F5F5F5; /* オフホワイト */
}
.section-subtitle.text-white {
    color: #F5F5F5; /* オフホワイト */
    font-weight: 700; 
    opacity: 0.9; 
}
.highlight-white {
    color: #FFD700; /* 【変更】金色！ */
    text-shadow: 0 0 10px rgba(255,215,0,0.5); /* 軽く光らせる */
}

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

.authority-item {
    background-color: rgba(255, 255, 255, 0.05); /* うっすら白 */
    color: #F5F5F5; 
    border: 1px solid #333;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.authority-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.authority-number-red { /* 【変更】赤色用のクラス */
    font-size: 4.5rem;
    font-weight: 900;
    color: #E60012; /* 【変更】赤色 */
    font-family: Impact, sans-serif;
    line-height: 1;
}
.authority-unit-red { /* 【変更】赤色用のクラス */
    font-size: 1.2rem;
    font-weight: 700;
    color: #E60012; /* 【変更】赤色 */
    margin-left: 5px;
}
.authority-icon {
    display: block;
    margin-bottom: 15px;
}
.authority-icon img {
    height: 60px; /* アイコンの高さを揃える */
}

.authority-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F5F5F5; /* オフホワイト */
    margin-top: 10px;
    height: 3em; /* 高さを揃える */
}

/* =================================================== */
/* ========== ④ 審査を通す “理由” (Reason) ========== */
/* =================================================== */
.reason-section {
    padding: 60px 0;
    background-color: #F5F5F5; /* オフホワイト */
}

.reason-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.reason-item-new {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.reason-icon-new {
    display: inline-block;
    background-color: #FFFBF0; /* 【変更】薄い金色 */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    border: 2px solid #FFD700; /* 【変更】金色 */
}
.reason-icon-new img {
    height: 50px;
    width: 50px;
}

.reason-title-new {
    font-size: 1.25rem;
    font-weight: 900;
    color: #1F1F1F;
    height: 3em; 
}

.reason-text-new {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 15px;
    text-align: left; 
}


/* =================================================== */
/* ========== ⑤ お客様の声（実例） ========== */
/* =================================================== */
.voice {
    padding: 60px 0;
    background-color: #FFFFFF; /* 白 */
}

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

.voice-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.voice-header {
    display: flex;
    align-items: center;
    padding: 20px;
}

.voice-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #FFD700; /* 【変更】金色 */
}

.voice-profile {
    display: flex;
    flex-direction: column;
}

.voice-name {
    font-size: 1rem;
    font-weight: 700;
}

.voice-job {
    font-size: 0.8rem;
    color: #777;
}

.voice-body {
    padding: 0 20px 20px 20px;
}

.voice-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #1F1F1F; 
    padding: 10px;
    background-color: #FFFBF0; /* 【変更】薄い金色 */
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}

.voice-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* =================================================== */
/* ========== ⑥ ご利用の流れ ========== */
/* =================================================== */
.flow {
    padding: 60px 0;
    background-color: #Fff; /* オフホワイト */
}

.flow-list {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 50px auto 0 auto;
    border-left: 2px dashed #FFD700; /* 【変更】金色 */
}

.flow-item {
    display: flex;
    position: relative;
    padding-left: 40px;
    padding-bottom: 50px;
}

.flow-item::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 10px;
    width: 20px;
    height: 20px;
    background-color: #FFD700; /* 【変更】金色 */
    border-radius: 50%;
    border: 3px solid #FFFFFF; /* 【変更】白で抜く */
    box-shadow: 0 0 0 3px #FFD700; /* 【変更】金色 */
}
.flow-list li:last-child {
    padding-bottom: 0;
}
.flow-list li:last-child::after {
    display: none;
}
.flow-icon {
    width: 80px;
    height: 80px;
    background-color: #FFFBF0; /* 【変更】薄い金色 */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 25px;
    border: 2px solid #FFD700; /* 【変更】金色 */
}
.flow-icon img {
    width: 40px;
    height: 40px;
}
.flow-content {
    flex: 1;
}
.flow-step {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFD700; /* 【変更】金色 */
}
.flow-title {
    font-size: 1.4rem;
    font-weight: 900;
    margin: 5px 0 10px 0;
}
.flow-text {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
.flow-cta {
    text-align: center;
    margin-top: 50px;
}

/* =================================================== */
/* ========== ⑦ 他社比較（差別化） ========== */
/* =================================================== */
.comparison {
    padding: 60px 0;
    background-color: #F5F5F5; /* 白背景 */
}

.comparison-table-wrapper {
    max-width: 800px;
    margin: 40px auto 0 auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden; /* 角丸を効かせるため */
}

.comparison-table {
    width: 100%;
    border-collapse: collapse; /* ボーダーを重ねる */
}

.comparison-table th,
.comparison-table td {
    padding: 20px 15px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

/* テーブルヘッダー */
.comparison-table thead th {
    background-color: #F5F5F5; /* オフホワイト */
    font-size: 1.1rem;
    font-weight: 900;
    color: #1F1F1F;
    border-bottom: 2px solid #ddd;
}
.comparison-table thead th.ours {
    background-color: #FFD700; /* 金色 */
    color: #1F1F1F;
    font-size: 1.2rem;
}

/* テーブルボディ */
.comparison-table tbody th {
    font-weight: 700;
    text-align: left;
    background-color: #F9F9F9;
    border-right: 1px solid #ddd;
    width: 30%; /* 項目列の幅 */
}

.comparison-table tbody td {
    border-top: 1px solid #ddd;
    width: 35%; /* 残りの幅を均等に */
}

.comparison-table tbody td.ours-cell {
    background-color: #FFFBF0; /* 薄い金色 */
    font-weight: 900;
    font-size: 1.1rem;
    color: #1F1F1F;
}
.comparison-table tbody td.strong-red {
    color: #E60012; /* 赤色で強調 */
    font-size: 1.2rem;
}

/* =================================================== */
/* ========== ⑦ よくある質問（FAQ） ========== */
/* =================================================== */
.faq {
    padding: 60px 0;
    background-color: #F5F5F5; /* 【変更】オフホワイト */
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
}

.faq-item {
    background-color: white;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    overflow: hidden;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question {
    list-style: none;
}
.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #FFD700; /* 【変更】金色 */
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}
.faq-item[open] > .faq-question::after {
    content: '−';
    transform: translateY(-50%);
}
.q-icon {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFD700; /* 【変更】金色 */
    margin-right: 15px;
}

.faq-answer {
    padding: 0 20px 20px 20px;
    display: flex;
    font-size: 0.95rem;
    line-height: 1.7;
    background-color: #fdfdfd;
    border-top: 1px solid #eee;
}
.a-icon {
    font-size: 1.5rem;
    font-weight: 900;
    color: #E60012;
    margin-right: 15px;
}
.faq-answer p {
    margin: 0;
    flex: 1;
}

/* =================================================== */
/* ========== ⑧ クロージングCTA ========== */
/* =================================================== */
.closing-cta {
    padding: 60px 0;
    background: #1F1F1F; /* ダークチャコール */
    color: #F5F5F5; /* オフホワイト */
    text-align: center;
}
.closing-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.5;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}
.highlight-white {
    color: #FFD700; /* 【変更】金色！ */
    text-shadow: 0 0 10px rgba(255,215,0,0.5);
}
.closing-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.cta-button.cta-large .cta-main-text {
    font-size: 2rem;
}
.cta-button.cta-large .line-icon {
    width: 35px;
    height: 35px;
}
.cta-button.cta-large .cta-sub-text {
    font-size: 1.2rem;
}
.cta-button.cta-large {
    padding: 20px 50px;
}

/* =================================================== */
/* ========== ⑨ フッター ========== */
/* =================================================== */
.footer {
    padding: 40px 0;
    background-color: #1F1F1F; /* ダークチャコール */
    color: #aaa;
    text-align: center;
}
.footer-links {
    list-style-type: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer-links li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.8rem;
}
.footer-links li a:hover {
    color: #FFD700; /* 金色 */
}
.copyright {
    font-size: 0.8rem;
    margin: 0;
}


/* =================================================== */
/* ========== ⑩ スマホ対応（全体） ========== */
/* =================================================== */
@media (max-width: 768px) {
    /* --- 基本設定（スマホ用） --- */
    .container {
        padding: 0 15px; /* 余白を少し減らす */
    }
    .section-title {
        font-size: 1.8rem; /* タイトルを小さく */
        margin-bottom: 15px;
    }
    .section-subtitle {
        font-size: 0.9rem; /* サブタイトルを小さく */
        margin-bottom: 30px;
    }
    .sp-only { 
        display: block;
    }


    /* --- FV (スマホ) --- */
    .fv-new {
        padding-top: 60px; /* ヘッダーの高さ考慮 */
        background-position: center 30%; /* 顔を避けて上の方を写す */
        background-attachment: scroll; /* スマホでは背景固定を解除 */
    }
    .fv-content {
        padding: 30px 5%; /* パディング調整 */
    }

    .fv-catchcopy-atsukisan {
        font-size: 1.8rem; /* FVキャッチコピーを小さく */
        margin-bottom: 20px; 
    }
    .fv-heading-label {
        font-size: 0.8rem; /* ラベルも小さく */
        padding: 4px 12px;
        margin-bottom: 10px;
    }
    .fv-heading-main {
        font-size: 1.8rem; /* 「審査に落ちた人」を小さく */
        margin-bottom: 10px; 
    }
    .fv-catchcopy-atsukisan .highlight-main {
        font-size: 2.1rem; /* 【修正】「最後に辿り着く不動産」をさらに小さく！ */
        line-height: 1.2; /* 【追加】行の高さを調整して1行になりやすく */
    }
    .fv-catchcopy-atsukisan .highlight-main::after {
        height: 3px;
        max-width: 250px; /* 【修正】線もさらに短く！ */
    }

    .fv-badges-atsukisan {
        flex-direction: column; /* 縦積みに */
        gap: 15px;
        width: 100%;
    }
    .badge-item-atsukisan {
        width: auto;
        padding: 12px 15px; /* パディング調整 */
    }
    .badge-title {
        font-size: 0.8rem; /* バッジタイトルを小さく */
    }
    .badge-body {
        height: auto;
        margin-bottom: 5px;
    }
    .badge-no1-red { /* バッジの中の数字も小さく */
        font-size: 2rem; 
    }
    .badge-unit {
        font-size: 0.9rem; /* 単位も小さく */
    }
    .badge-item-atsukisan:last-child .badge-no1 {
        font-size: 1.6rem; /* 「歓迎」も小さく */
        top: -3px;
    }
    .fv-strength-list {
        padding: 10px 15px;
        font-size: 0.9rem; /* 強みリストの文字も小さく */
    }
    .fv-strength-list li {
        font-size: 0.9rem;
    }
    .cta-button.line-green {
        padding: 12px 30px; /* CTAボタンも小さく */
    }
    .cta-main-text {
        font-size: 1.4rem; /* CTAボタンのメインテキスト */
    }
    .line-icon {
        width: 25px;
        height: 25px;
    }
    .cta-sub-text {
        font-size: 0.9rem; /* CTAボタンのサブテキスト */
    }
    .fv-cta .cta-note {
        font-size: 0.8rem;
    }


    /* --- 悩みセクション (スマホ) --- */
    .problem-list li {
        font-size: 0.95rem; /* 文字を小さく */
        padding: 12px 15px;
    }
    .problem-solution {
        font-size: 1.1rem; /* 解答を小さく */
    }
    .problem-solution .strong {
        font-size: 1.4rem; /* 強調部分を小さく */
    }

    /* --- 権威性セクション (スマホ) --- */
    .authority-grid {
        grid-template-columns: 1fr; /* 1カラムに */
        gap: 20px;
    }
    .authority-item {
        padding: 20px 15px;
    }
    .authority-number-red {
        font-size: 3.5rem; /* 数字を小さく */
    }
    .authority-unit-red {
        font-size: 1rem;
    }
    .authority-icon img {
        height: 40px;
    }
    .authority-title {
        font-size: 1rem;
        height: auto;
    }

    /* --- 理由セクション (スマホ) --- */
    .reason-grid-new {
        grid-template-columns: 1fr; /* 1カラムに */
        gap: 20px;
    }
    .reason-item-new {
        padding: 20px 15px;
    }
    .reason-icon-new {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    .reason-icon-new img {
        width: 40px;
        height: 40px;
    }
    .reason-title-new {
        font-size: 1.1rem;
        height: auto;
    }
    .reason-text-new {
        font-size: 0.9rem;
    }

    /* --- お客様の声セクション (スマホ) --- */
    .voice-grid {
        grid-template-columns: 1fr; /* 1カラムに */
        gap: 20px;
    }
    .voice-header {
        padding: 15px;
    }
    .voice-icon {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }
    .voice-name {
        font-size: 0.95rem;
    }
    .voice-job {
        font-size: 0.75rem;
    }
    .voice-body {
        padding: 0 15px 15px 15px;
    }
    .voice-title {
        font-size: 1.0rem;
        padding: 8px;
    }
    .voice-text {
        font-size: 0.9rem;
    }

    /* --- ご利用の流れセクション (スマホ) --- */
    .flow-list {
        margin-top: 30px;
    }
    .flow-item {
        padding-left: 25px;
        padding-bottom: 40px;
    }
    .flow-item::before {
        left: -8px;
        width: 16px;
        height: 16px;
        top: 8px;
    }
    .flow-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
    .flow-icon img {
        width: 25px;
        height: 25px;
    }
    .flow-step {
        font-size: 0.8rem;
    }
    .flow-title {
        font-size: 1.1rem;
    }
    .flow-text {
        font-size: 0.9rem;
    }

    /* --- 他社比較セクション (スマホ) --- */
    .comparison-table-wrapper {
        border: none;
        box-shadow: none;
        margin-top: 30px;
    }
    .comparison-table thead {
        display: none;
    }
    .comparison-table tbody,
    .comparison-table tr,
    .comparison-table td,
    .comparison-table th {
        display: block;
        width: 100% !important;
        box-sizing: border-box;
    }
    .comparison-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    .comparison-table tbody th {
        text-align: center;
        font-size: 1rem;
        padding: 15px;
    }
    .comparison-table tbody td {
        padding-top: 10px;
        padding-bottom: 15px;
        font-size: 0.95rem;
    }
    .comparison-table tbody td.ours-cell {
        font-size: 1.05rem;
    }
    .comparison-table tbody td.strong-red {
        font-size: 1.1rem;
    }
    .comparison-table tbody td:first-of-type::after {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.9rem;
        bottom: -15px;
    }

    /* --- FAQセクション (スマホ) --- */
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    .faq-question::after {
        font-size: 1.5rem;
        right: 15px;
    }
    .q-icon, .a-icon {
        font-size: 1.2rem;
        margin-right: 10px;
    }
    .faq-answer {
        padding: 0 15px 15px 15px;
        font-size: 0.9rem;
    }

    /* --- クロージングCTAセクション (スマホ) --- */
    .closing-title {
        font-size: 1.8rem;
    }
    .closing-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .cta-button.cta-large .cta-main-text {
        font-size: 1.4rem;
    }
    .cta-button.cta-large .line-icon {
        width: 26px;
        height: 26px;
    }
    .cta-button.cta-large .cta-sub-text {
        font-size: 1rem;
    }
    .cta-button.cta-large {
        padding: 15px 40px;
    }

    /* --- フッター (スマホ) --- */
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    .footer-links li a {
        font-size: 0.75rem;
    }
    .copyright {
        font-size: 0.75rem;
    }

    /* --- ヘッダー (スマホ) --- */
    .header-logo a {
        font-size: 1rem;
    }
    .header-nav {
        display: none; /* PCメニューを非表示 */
    }
    .hamburger-menu {
        display: block; /* ハンバーガーメニューを表示 */
        right: 15px; /* 位置調整 */
        top: 15px;
    }
    .hamburger-menu.is-open {
        right: calc(15px + 80%); /* メニューが開いたら左に寄せる */
    }
    .mobile-nav {
        width: 80%; /* スライドメニューの幅 */
        padding-top: 80px; /* ヘッダーの高さ考慮 */
    }
    .mobile-nav li a {
        font-size: 1rem;
        padding: 12px 20px;
    }
    .mobile-nav-cta {
        padding: 20px;
    }
}


/* =================================================== */
/* ========== ⑪ ヘッダー（チャコール ✖️ 金） ========== */
/* =================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1F1F1F; /* リッチな濃いグレー */
    border-bottom: 2px solid #FFD700; /* 金色のライン */
    padding: 10px 0;
    z-index: 1000;
}
.header-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 900;
    color: #FFD700; /* ロゴを金色に */
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5); 
}
.header-nav {
    flex-grow: 1; 
    display: flex;
    justify-content: center;
}
.header-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}
.header-nav li a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    position: relative;
    padding: 5px 0;
    color: #F5F5F5; /* メニューの文字はオフホワイト */
    transition: color 0.3s;
}
.header-nav li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700; /* 金色 */
    transition: width 0.3s;
}
.header-nav li a:hover {
    color: #FFD700; /* ホバーで文字も金色に */
}
.header-nav li a:hover::after {
    width: 100%;
}
.header-cta .cta-button.cta-small {
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    border-bottom-width: 3px;
}
.line-icon-small {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 5px;
}


/* =================================================== */
/* ========== ⑫ ハンバーガー（チャコール ✖️ 金） ========== */
/* =================================================== */
.hamburger-menu {
    display: none; 
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1002;
}
.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    transition: all 0.3s ease;
    background-color: #FFD700; /* ハンバーガーの線も金色に */
}
.hamburger-menu.is-open {
    position: fixed; 
    right: 20px;
    top: 10px;
}
.hamburger-menu.is-open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.mobile-nav {
    display: none; 
    position: fixed;
    top: 0;
    left: -100%; 
    width: 80%;
    height: 100%;
    z-index: 1001; 
    transition: left 0.4s ease;
    padding-top: 100px;
    background-color: #1F1F1F;
    border-right: 1px solid #FFD700;
    box-shadow: 2px 0 10px rgba(255, 215, 0, 0.2);
}
.mobile-nav.is-open {
    left: 0;
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav li a {
    display: block;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #F5F5F5; /* メニュー文字はオフホワイト */
    border-bottom: 1px solid #333; /* 濃いグレーの線 */
    transition: all 0.3s;
}
.mobile-nav li a:hover {
    color: #1F1F1F; /* ホバーで黒文字に */
    background-color: #FFD700; /* 金色背景 */
}
.mobile-nav-cta {
    padding: 30px;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}


/* =================================================== */
/* ========== ⑬ スマホ対応（ヘッダー） ========== */
/* =================================================== */
@media (max-width: 768px) {
    /* PC用のメニューとボタンを非表示 */
    .pc-nav {
        display: none;
    }
    
    /* ハンバーガーボタンを表示 */
    .hamburger-menu {
        display: block;
    }
    
    /* SP用スライドメニューを表示 */
    .mobile-nav {
        display: block;
    }
    
    /* ヘッダーロゴの調整 */
    .header-logo a {
        font-size: 1.1rem;
    }
}