/*
Theme Name: Eco-Eco Style LP
Description: 産廃処理コンサルティング「エコエコstyle」専用ランディングページテーマ
Version: 1.0
Author: Eco-Eco Style
*/

/* -----------------------------------------------------------
   0. カラー変数定義（CSS変数）
----------------------------------------------------------- */
:root {
    --primary-color: #004a7f;    /* メインカラー（信頼の青） */
    --accent-color: #2a9d8f;     /* アクセントカラー（エコ・改善の緑） */
    --text-color: #334155;       /* 基本文字色（ダークグレー） */
    --text-muted: #64748b;       /* 補足文字色（グレー） */
    --text-light: #94a3b8;       /* 薄い文字色（コピーライト等） */
    --bg-white: #fff;            /* 白背景 */
    --bg-light: #f8fafc;         /* 薄いグレー背景 */
    --bg-gray: #f1f5f9;          /* 境界線・パーツ用グレー背景 */
    --border-color: #e2e8f0;     /* 標準の境界線 */
    --border-dark: #cbd5e1;      /* フォーム等のやや濃い境界線 */
    --alert-color: #e11d48;      /* 警告・必須アイコンの赤 */
    --alert-bg: #fee2e2;         /* 警告背景の薄赤 */
    --alert-border: #ef4444;     /* 警告左線の赤 */
}

/* -----------------------------------------------------------
   1. 基本設定 & リセット
----------------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* 共通パーツ */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
}

/* フレックス・グリッド設定 */
.flex-container {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

/* -----------------------------------------------------------
   2. 各ブロックのデザイン (P01 - P12)
----------------------------------------------------------- */

/* P01: ヒーローエリア */
.block-p01 {
	background-image: url(https://eco-eco.style/wp-content/uploads/2026/06/top-main.webp);
    color: var(--bg-white);
    padding: 0 0 120px;
    text-align: center;
	background-color: var(--primary-color);
    background-blend-mode: multiply;
}

.block-p01 .sub-lead {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.block-p01 .site-title {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--bg-white);
}
/* ロゴエリア全体の調整 */
.header-logo-area {
    padding: 20px 0;
    text-align: left; /* ロゴを左寄せにする場合 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* ヒーローエリア内での薄い境界線 */
    margin-bottom: 40px;
	background-color: white;
}

/* ロゴ画像のサイズ制限 */
.site-logo img {
    max-height: 50px; /* ロゴの高さをお好みのサイズに制限 */
    width: auto;
}
.catch-phrase-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    display: inline-block;
}

.catch-phrase-box h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--bg-white);
}

/* P02: お悩み */
.block-p02 { background-color: var(--bg-light); }
.pain-list ul { list-style: none; }
.pain-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.pain-list li i { color: var(--alert-color); margin-right: 10px; }

.warning-box {
    margin-top: 50px;
    background: var(--alert-bg);
    border-left: 5px solid var(--alert-border);
    padding: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 1.3rem;
}

/* P03: 選ばれる理由 */
.reason-card {
    background: var(--bg-white);
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-bottom: 5px solid var(--accent-color);
}
.reason-card i { font-size: 3rem; color: var(--accent-color); margin-bottom: 20px; }
.reason-card h3 { color: var(--primary-color); margin-bottom: 15px; }

/* P04: 料金表 */
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
}
.price-table th, .price-table td {
    padding: 20px;
    border: 1px solid var(--border-color);
}
.price-table thead th {
    background-color: var(--primary-color);
    color: var(--bg-white);
}
.price-table tbody th {
    background-color: var(--bg-gray);
    width: 30%;
}
.price-table .price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.3rem;
    text-align: right;
}
.note { text-align: center; margin-top: 20px; font-weight: bold; color: var(--accent-color); }

/* P05: 事例 & P06: 思想 */
.case-card, .idea-card {
    background: var(--bg-gray);
    padding: 30px;
    border-radius: 10px;
}
.idea-card { text-align: center; position: relative; padding-top: 50px; }
.idea-card .num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
}

/* P07: プロフィール */
.profile-image { flex: 0 0 350px; }
.profile-image img { border-radius: 20px; border: 10px solid var(--bg-gray); }
.profile-details h3 { font-size: 2rem; margin-bottom: 15px; }
.kana { font-size: 1rem; color: var(--text-muted); font-weight: normal; }
.check-list { list-style: none; margin-top: 20px; }
.check-list li { margin-bottom: 10px; }
.check-list i { color: var(--accent-color); margin-right: 10px; }

/* P08: 保管場所メッセージ (Bleed) */
.bleed-layout { gap: 0; align-items: stretch; background: var(--primary-color); color: var(--bg-white); }
.message-text { flex: 1; padding: 80px; display: flex; flex-direction: column; justify-content: center; }
.message-image { flex: 1; }
.message-image img { width: 100%; height: 100%; object-fit: cover; }

/* -----------------------------------------------------------
   Contact Section (レイアウト安定化版)
----------------------------------------------------------- */
.block-contact { 
    background-color: var(--bg-light); 
}

.contact-lead-box { 
    text-align: center; 
    margin-bottom: 50px; 
}

.contact-lead-box .lead { 
    font-size: 1.4rem; 
    font-weight: bold; 
    margin-bottom: 10px; 
}

.reply-note { 
    color: var(--accent-color); 
    font-weight: bold; 
}

/* PC環境（993px以上）でのレイアウト制御 */
@media (min-width: 993px) {
    .block-contact .flex-container {
        display: flex;
        align-items: flex-start; /* 上揃えにして、右が伸びても左が中央に寄らないようにします */
        gap: 50px; /* ブロック間の余白 */
    }

    /* ★左側ブロック：幅を 350px に固定し、絶対に縮ませない設定 */
    .contact-left {
        flex: 0 0 350px; /* 0(伸ばさない) 0(縮ませない) 350px(基準幅) */
        max-width: 350px;
    }

    /* ★右側ブロック：残りのスペースをすべて使い、自由に伸びる設定 */
    .contact-right {
        flex: 1; 
        min-width: 0; /* フレックスアイテムのはみ出し防止用のおまじない */
    }
}

.menu-example, .direct-info {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.direct-info p { 
    margin-bottom: 10px; 
}

.direct-info i { 
    color: var(--accent-color); 
    width: 25px; 
}

/* フォームのラッパー */
.form-wrapper { 
    background: var(--bg-white); 
    padding: 40px; 
    border-radius: 12px; 
    border: 2px solid var(--border-color); 
}

/* -----------------------------------------------------------
   スマホ環境（992px以下）でのレイアウト
----------------------------------------------------------- */
@media (max-width: 992px) {
    .block-contact .flex-container {
        flex-direction: column; /* 縦並びにする */
        gap: 30px;
    }
    
    .contact-left, .contact-right {
        width: 100%; /* 横幅いっぱいに広げる */
    }
}

/* -----------------------------------------------------------
   FAQ Section (よくある質問ブロック)
----------------------------------------------------------- */
.block-faq {
    background-color: var(--bg-light); /* 背景を少し薄いグレーに */
}

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

/* 各質問のカード全体 */
.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
}

/* 質問のヘッダー部分（summary） */
.faq-question {
    padding: 22px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    list-style: none; /* デフォルトの三角アイコンを消す */
}

/* Chrome等のブラウザ向けに標準の三角アイコンを消す */
.faq-question::-webkit-details-marker {
    display: none;
}

/* Qアイコン */
.faq-question .q-icon {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

/* 質問テキスト */
.faq-question h3 {
    font-size: 1.15rem;
    color: var(--text-color);
    margin: 0;
    font-weight: bold;
    flex-grow: 1;
    padding-right: 30px; /* ＋ボタンとの被り防止 */
}

/* ＋ボタンの実装（CSSで綺麗なプラスとマイナスを作る） */
.faq-question .toggle-icon {
    position: absolute;
    right: 30px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ＋ボタンの横線 */
.faq-question .toggle-icon::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
}

/* ＋ボタンの縦線 */
.faq-question .toggle-icon::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 16px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
}

/* detailsが開いているとき（open属性があるとき）のスタイルチェンジ */
.faq-item[open] {
    border-color: var(--accent-color);
}

/* 開いている時は、縦線を回転させてマイナス（横線一本）にする */
.faq-item[open] .faq-question .toggle-icon::after {
    transform: rotate(90deg);
}
.faq-item[open] .faq-question .toggle-icon::before {
    transform: rotate(90deg);
}

/* 回報部分（最初非表示、展開時に表示） */
.faq-answer {
    padding: 22px 30px;
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
}

/* Aアイコン */
.faq-answer .a-icon {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-right: 15px;
    flex-shrink: 0;
}

/* 回答テキスト */
.faq-answer p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.7;
}

/* 下部のクロージングメッセージ */
.faq-closing-message {
    max-width: 800px;
    margin: 50px auto 0;
    background-color: var(--bg-white);
    border: 2px solid var(--accent-color); /* エコの緑でアクセント */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-sizing: border-box;
}

.faq-closing-message p {
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.7;
}

/* レスポンシブ対応（スマホ時） */
@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
    }
    .faq-question h3 {
        font-size: 1rem;
    }
    .faq-question .toggle-icon {
        right: 20px;
    }
    .faq-answer {
        padding: 18px 20px;
    }
    .faq-answer p {
        font-size: 0.95rem;
    }
    .faq-closing-message {
        padding: 20px;
    }
    .faq-closing-message p {
        font-size: 1rem;
        text-align: left; /* スマホでは左寄せで読みやすく */
    }
}

/* -----------------------------------------------------------
   Flow of Consultation (ご相談の流れブロック)
----------------------------------------------------------- */
.block-flow {
    background-color: var(--bg-white);
}

/* ステップを並べるコンテナ */
.flow-steps {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 各ステップのカード */
.flow-step {
    width: 100%;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 24px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    box-sizing: border-box;
}

/* 「業務開始」のみテーマのメインカラーで強調 */
.flow-step.highlights {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.flow-step.highlights .step-number {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.flow-step.highlights h3 {
    color: var(--bg-white);
}

/* カード内のヘッダーレイアウト（番号とテキストを横並び） */
.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ステップ番号バッジ */
.step-number {
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.2rem;
    font-weight: bold;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 各ステップのタイトルテキスト */
.step-header h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 0;
}

/* 補足説明（ステップ1の「電話・フォーム」等） */
.step-detail {
    margin-top: 10px;
    margin-left: 64px; /* 番号バッジの幅とgapの合計分インデント */
    font-size: 1.1rem;
    color: var(--text-muted);
}

.flow-step.highlights .step-detail {
    color: rgba(255, 255, 255, 0.9);
}

/* 流れを繋ぐ矢印アイコン部分 */
.flow-arrow {
    padding: 15px 0;
    text-align: center;
    color: var(--accent-color); /* エコを象徴するグリーン */
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: flowPulse 2s infinite ease-in-out; /* 視線誘導の静かなアニメーション */
}

@keyframes flowPulse {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(4px); opacity: 1; }
}

/* 下部の注意事項・ご案内文 */
.flow-note {
    max-width: 750px;
    margin: 50px auto 0;
    background-color: var(--bg-gray);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-sizing: border-box;
}

.flow-note p {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 8px;
    line-height: 1.6;
}

.flow-note p:last-child {
    margin-bottom: 0;
    color: var(--primary-color); /* 日程案内のみメインカラーで強調 */
}

/* レスポンシブ調整（スマホ時） */
@media (max-width: 768px) {
    .flow-step {
        padding: 20px;
    }
    .step-header {
        gap: 15px;
    }
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .step-header h3 {
        font-size: 1.1rem;
    }
    .step-detail {
        margin-left: 51px;
        font-size: 0.95rem;
    }
    .flow-note {
        padding: 20px;
    }
    .flow-note p {
        font-size: 1rem;
        text-align: left; /* スマホでは左寄せにして読みやすく */
    }
}

/* -----------------------------------------------------------
   Form Styling (Contact Form 7 実際の出力構造に対応)
----------------------------------------------------------- */
.form-wrapper { 
    background: var(--bg-white); 
    padding: 40px; 
    border-radius: 12px; 
    border: 2px solid var(--border-color); 
}

.form-wrapper h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.4rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
}

/* Contact Form 7 が自動生成する p タグの不要なブラウザ余白をリセット */
.wpcf7-form p {
    margin: 0;
    padding: 0;
}

/* フォーム全体のリスト構造 */
#mail_Form {
    width: 100%;
}

/* 各項目のラベルが入る dt */
#mail_Form dt {
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 1rem;
}

/* 必須マークの自動付与（クラス名 required に反応） */
#mail_Form dt .title.required::after {
    content: " [必須]";
    color: var(--alert-color);
    font-size: 0.8rem;
    vertical-align: middle;
}

/* 各項目の入力エリアを包む dd */
#mail_Form dd {
    margin-bottom: 24px;
    margin-left: 0; /* デフォルトのインデントをリセット */
}

/* Contact Form 7 のコントロールを包むラッパー要素 */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* 入力フィールド全般（CF7が書き出す実際のクラス名に対応） */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-select,
.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-gray);
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-sizing: border-box; /* パディングを含めたサイズ計算 */
}

/* 入力フィールドのフォーカス時（選択時）の演出 */
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-select:focus,
.wpcf7-form-control.wpcf7-textarea:focus {
    border-color: var(--accent-color);
    background-color: var(--bg-white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.1);
}

/* お問い合わせ内容（テキストエリア）の高さ調整 */
.wpcf7-form-control.wpcf7-textarea {
    height: 150px;
    resize: vertical;
}

/* 不正送信防止クイズ部分のスタイル */
#mail_Form .submit-quiz {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: bold;
    line-height: 1.6;
}

/* クイズ部分のラベルと入力欄の個別調整 */
#mail_Form .submit-quiz label {
    display: block;
    margin-top: 10px;
}

#mail_Form .submit-quiz .wpcf7-quiz-label {
    display: inline-block;
    margin-right: 10px;
    color: var(--primary-color);
}

#mail_Form .submit-quiz .quiz {
    display: inline-block;
    width: auto;
    max-width: 160px;
    text-align: center;
    padding: 8px 12px;
    background-color: var(--bg-white);
}

/* 送信ボタンの親要素（pタグ）の調整 */
#mail_Form p[align="center"] {
    text-align: center;
    margin-top: 20px;
    position: relative;
}

/* 送信ボタンのスタイル */
#mail_Form .submit {
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 1.2rem;
    font-weight: bold;
    padding: 14px 60px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(42, 157, 143, 0.2);
    width: auto;
    display: inline-block;
}

#mail_Form .submit:hover {
    background-color: #218376; /* アクセントカラーを少し濃くした色 */
    transform: translateY(-2px);
}

#mail_Form .submit:active {
    transform: translateY(0);
}

/* CF7特有のスピナー（送信中のぐるぐるアイコン）の位置調整 */
.wpcf7-spinner {
    position: absolute;
    margin: 0 0 0 10px;
    bottom: 15px;
}

.form-footer-note { 
    margin-top: 20px; 
    font-size: 0.9rem; 
    color: var(--text-muted); 
    text-align: center;
}

/* -----------------------------------------------------------
   Contact Form 7 特有のシステム用スタイル（エラー表示など）
----------------------------------------------------------- */
/* バリデーションエラーメッセージ */
.wpcf7-not-valid-tip {
    color: var(--alert-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    text-align: left;
}

/* 送信完了・エラー等の結果メッセージボックス */
.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px !important;
    border-radius: 6px !important;
    font-size: 0.95rem;
    text-align: center;
}

/* -----------------------------------------------------------
   Footer
----------------------------------------------------------- */
.block-p12 { background-color: var(--accent-color); padding: 100px 0 40px; border-top: 1px solid var(--border-color);	background-image: url(https://eco-eco.style/wp-content/uploads/2026/06/top-main.webp);background-blend-mode:multiply; }
.final-quote { text-align: center; max-width: 900px; margin: 0 auto 60px; }
.main-msg { font-size: 1.5rem; font-weight: bold; color: white; margin-bottom: 30px; }
.sub-msg { font-size: 1.2rem; margin-bottom: 30px; color: white;}
.closing-msg { font-size: 1.8rem; font-weight: bold; color: white; line-height: 1.4; }
.copyright { text-align: center; font-size: 0.9rem; color: var(--text-light); margin-top: 40px; }

/* -----------------------------------------------------------
   3. レスポンシブ対応
----------------------------------------------------------- */

@media (max-width: 992px) {
    .grid-4cols, .grid-3cols { grid-template-columns: repeat(2, 1fr); }
    .flex-container { flex-direction: column; }
    .profile-image { flex: 0 0 auto; text-align: center; }
    .bleed-layout { flex-direction: column; }
    .message-text { padding: 40px 20px; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .block-p01 .site-title { font-size: 2rem; }
    .block-p01 .sub-lead { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .grid-4cols, .grid-3cols, .grid-2cols { grid-template-columns: 1fr; }
    .price-table tbody th { width: 40%; font-size: 0.9rem; }
    .price-table td { font-size: 0.9rem; }
    .pc-only { display: none; }
    .catch-phrase-box h2 { font-size: 1.3rem; }
	
}
/* -----------------------------------------------------------
   Smooth Scroll Settings (スムーズスクロール設定)
----------------------------------------------------------- */
html {
    scroll-behavior: smooth; /* ★クリック時にぬるっと優しくスクロールさせます */
}

/* -----------------------------------------------------------
   Fixed CTA Button (追従固定CTAボタン - PC用デフォルト)
----------------------------------------------------------- */
.fixed-cta-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; /* 他のどのコンテンツよりも最前面に表示 */
    transition: all 0.3s ease;
}

.fixed-cta-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent-color); /* エコエコstyleの緑色 */
    color: var(--bg-white);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(42, 157, 143, 0.4); /* 緑色の柔らかい影 */
    border: 2px solid var(--bg-white);
    transition: all 0.3s ease;
}

.fixed-cta-btn a i {
    font-size: 1.3rem;
}

/* PCホバー時のインタラクション */
.fixed-cta-btn a:hover {
    background-color: #218376; /* 少し濃い目の緑 */
    transform: translateY(-3px); /* 浮き上がる演出 */
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.6);
}

/* -----------------------------------------------------------
   レスポンシブ対応（スマホ用：画面最下部に帯状に固定）
----------------------------------------------------------- */
@media (max-width: 768px) {
    .fixed-cta-btn {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        padding: 10px 15px;
        background-color: rgba(255, 255, 255, 0.95); /* 背後を少し透けさせた白 */
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08); /* 上部への薄い影 */
        border-top: 1px solid var(--border-color);
        box-sizing: border-box;
    }

    .fixed-cta-btn a {
        width: 100%;
        padding: 14px 20px;
        font-size: 1.05rem;
        box-shadow: none;
        border: none;
    }

    .fixed-cta-btn a:hover {
        transform: none; /* スマホではホバーの浮き上がりを無効化 */
    }

    /* スマホで最下部のボタンがフッターなどのコンテンツに被って隠れないように、ページ全体に余白を作る */
    body {
        padding-bottom: 80px; /* 固定バーの高さ分だけ下に余白を追加 */
    }
}