/* ===== LINE PAGE専用スタイル ===== */
    :root {
      --line-green: #06C755;
      --line-green-dim: rgba(6,199,85,0.12);
      --line-green-border: rgba(6,199,85,0.3);
    }

    /* 問題提起リスト */
    .problem-list { display:flex; flex-direction:column; gap:12px; margin-top:32px; }
    .problem-list-item {
      display:flex; align-items:flex-start; gap:14px;
      background:rgba(255,255,255,0.04); border:1px solid var(--border);
      border-radius:12px; padding:16px 20px; transition:border-color 0.3s;
    }
    .problem-list-item:hover { border-color:var(--line-green-border); }
    .problem-list-item .pi-icon { font-size:18px; color:var(--line-green); margin-top:2px; flex-shrink:0; }
    .problem-list-item p { margin:0; font-size:15px; line-height:1.6; }

    /* 統計カード */
    .line-stat-grid {
      display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
      gap:20px; margin-top:32px; position:relative; z-index:1;
    }
    .line-stat-card {
      background:var(--line-green-dim); border:1px solid var(--line-green-border);
      border-radius:16px; padding:28px 20px; text-align:center;
    }
    .line-stat-card .ls-num { font-size:clamp(24px,3.5vw,36px); font-weight:800; color:var(--line-green); line-height:1.2; }
    .line-stat-card .ls-label { font-size:13px; color:rgba(255,255,255,0.7); margin-top:8px; line-height:1.5; }

    /* 統計セクション見出し */
    #why-line .section-label { color:var(--line-green) !important; background:var(--line-green-dim) !important; border-color:var(--line-green-border) !important; }
    #why-line .section-title { color:#fff !important; }

    /* 業種タグ */
    .industry-tags { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; position:relative; z-index:1; justify-content:center; }
    .industry-tag {
      background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15);
      border-radius:999px; padding:8px 18px; font-size:13px;
      display:flex; align-items:center; gap:6px; color:rgba(255,255,255,0.85);
    }
    .industry-tag i { color:var(--line-green); }

    /* サービス詳細グリッド */
    .service-detail-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:28px; margin-top:40px; }
    .service-detail-card {
      background:rgba(255,255,255,0.04); border:1px solid var(--border);
      border-radius:20px; padding:32px 28px; transition:border-color 0.3s,transform 0.3s;
    }
    .service-detail-card:hover { border-color:var(--line-green-border); transform:translateY(-4px); }
    .service-detail-card .sdc-num { font-size:12px; font-weight:700; color:var(--line-green); letter-spacing:0.1em; margin-bottom:12px; }
    .service-detail-card h3 { font-size:18px; font-weight:700; margin-bottom:16px; line-height:1.4; }
    .service-detail-card > p { font-size:14px; line-height:1.8; color:var(--text-muted); margin-bottom:20px; }

    /* リッチメニューテーブル */
    .rm-table-wrap { overflow-x:auto; margin-top:16px; border-radius:10px; border:1px solid var(--border); }
    .rm-table { width:100%; border-collapse:collapse; font-size:13px; min-width:320px; }
    .rm-table th { background:var(--line-green-dim); color:var(--line-green); padding:10px 14px; text-align:left; border-bottom:1px solid var(--line-green-border); font-weight:600; }
    .rm-table td { padding:10px 14px; border-bottom:1px solid var(--border); color:var(--text-muted); vertical-align:top; }
    .rm-table tr:last-child td { border-bottom:none; }
    .rm-table tr:hover td { background:rgba(255,255,255,0.02); }

    /* 自動応答例 */
    .auto-reply-list { display:flex; flex-direction:column; gap:10px; margin-top:16px; }
    .auto-reply-item { background:rgba(255,255,255,0.05); border-radius:10px; padding:14px 16px; font-size:13px; line-height:1.7; }
    .auto-reply-item strong { color:var(--line-green); display:block; margin-bottom:4px; }

    /* ステップ配信シナリオ */
    .scenario-wrap { background:rgba(255,255,255,0.03); border:1px solid var(--border); border-radius:16px; padding:24px 20px; margin-top:20px; }
    .scenario-title { font-size:12px; font-weight:700; color:var(--line-green); margin-bottom:20px; letter-spacing:0.08em; }
    .scenario-steps { display:flex; flex-direction:column; }
    .scenario-step { display:flex; gap:14px; }
    .scenario-step-line { display:flex; flex-direction:column; align-items:center; flex-shrink:0; width:32px; }
    .scenario-step-dot { width:32px; height:32px; border-radius:50%; background:var(--line-green); color:#fff; font-size:10px; font-weight:700; display:flex; align-items:center; justify-content:center; }
    .scenario-step-bar { width:2px; flex:1; background:var(--line-green-border); margin:4px 0; min-height:16px; }
    .scenario-step:last-child .scenario-step-bar { display:none; }
    .scenario-step-content { padding-bottom:16px; flex:1; min-width:0; }
    .scenario-step-day { font-size:11px; font-weight:700; color:var(--line-green); margin-bottom:6px; }
    .scenario-step-msg { background:rgba(255,255,255,0.05); border-radius:10px; padding:10px 14px; font-size:12px; line-height:1.7; color:var(--text-muted); }

    /* 集客導線フロー */
    .flow-wrap { margin-top:20px; }
    .flow-steps { display:flex; flex-direction:column; }
    .flow-step { display:flex; align-items:stretch; gap:16px; }
    .flow-step-left { display:flex; flex-direction:column; align-items:center; flex-shrink:0; width:40px; }
    .flow-step-circle { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,var(--line-green),#00a346); color:#fff; font-size:14px; font-weight:800; display:flex; align-items:center; justify-content:center; }
    .flow-step-line { width:2px; flex:1; background:var(--line-green-border); margin:4px 0; min-height:16px; }
    .flow-step:last-child .flow-step-line { display:none; }
    .flow-step-right { padding-bottom:20px; flex:1; min-width:0; }
    .flow-step-right h4 { font-size:14px; font-weight:700; margin:8px 0 4px; line-height:1.4; }
    .flow-step-right p { font-size:12px; color:var(--text-muted); line-height:1.6; margin:0; }

    /* メリットカード */
    .merit-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:40px; }
    .merit-card { background:rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:20px; padding:36px 24px; text-align:center; transition:border-color 0.3s,transform 0.3s; }
    .merit-card:hover { border-color:var(--line-green-border); transform:translateY(-4px); }
    .merit-icon { display:flex; justify-content:center; align-items:center; font-size:48px; margin-bottom:20px; line-height:1; width:100%; }
    .merit-card h3 { font-size:17px; font-weight:700; margin-bottom:14px; }
    .merit-card p { font-size:14px; color:var(--text-muted); line-height:1.8; margin:0; }

    /* 比較テーブル */
    .compare-table-wrap { overflow-x:auto; margin-top:32px; border-radius:16px; border:1px solid var(--border); }
    .compare-table { width:100%; border-collapse:collapse; font-size:14px; min-width:500px; }
    .compare-table th { padding:16px 20px; text-align:center; font-weight:700; font-size:14px; border-bottom:2px solid var(--border); background:rgba(255,255,255,0.03); }
    .compare-table th:first-child { text-align:left; }
    .compare-table th.th-cm { background:var(--line-green-dim); color:var(--line-green); }
    .compare-table td { padding:14px 20px; border-bottom:1px solid var(--border); vertical-align:middle; }
    .compare-table td:first-child { font-weight:600; font-size:13px; color:var(--text-muted); }
    .compare-table td:not(:first-child) { text-align:center; font-size:13px; }
    .compare-table tr:last-child td { border-bottom:none; }
    .compare-table .td-cm { background:rgba(6,199,85,0.05); }
    .ct-good { color:var(--line-green); font-weight:700; }
    .ct-bad { color:var(--text-muted); opacity:0.6; }

    /* 料金プラン */
    .plan-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:40px; }
    .plan-card { background:rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:20px; padding:32px 24px; display:flex; flex-direction:column; transition:border-color 0.3s,transform 0.3s; position:relative; overflow:hidden; }
    .plan-card:hover { border-color:var(--border-cyan); transform:translateY(-4px); }
    .plan-card.plan-featured { border-color:var(--line-green); background:var(--line-green-dim); }
    .plan-card.plan-featured:hover { border-color:var(--line-green); box-shadow:0 0 30px rgba(6,199,85,0.2); }
    .plan-badge { position:absolute; top:16px; right:16px; background:var(--line-green); color:#fff; font-size:11px; font-weight:700; padding:4px 10px; border-radius:999px; line-height:1.4; }
    .plan-tag { font-size:11px; font-weight:700; color:var(--cyan); letter-spacing:0.1em; margin-bottom:8px; }
    .plan-featured .plan-tag { color:var(--line-green); }
    .plan-name { font-size:20px; font-weight:800; margin-bottom:6px; color:var(--text); }
    .plan-price { font-size:clamp(22px,3vw,28px); font-weight:800; color:var(--text); margin-bottom:4px; line-height:1.2; }
    .plan-price span { font-size:13px; font-weight:400; color:var(--text-muted); margin-left:2px; }
    .plan-target { font-size:12px; color:var(--text-muted); margin:12px 0 20px; padding-bottom:20px; border-bottom:1px solid var(--border); line-height:1.6; }
    .plan-features { list-style:none !important; padding:0 !important; margin:0 0 24px !important; display:flex; flex-direction:column; gap:10px; flex:1; }
    .plan-features li { font-size:13px; display:flex !important; align-items:flex-start !important; gap:10px; line-height:1.5; color:var(--text-muted); }
    .plan-features li::before { display:none !important; }
    .plan-features li i { color:var(--line-green); flex-shrink:0; margin-top:3px; font-size:12px; }

    /* 制作の流れ */
    .flow-process { margin-top:40px; display:flex; flex-direction:column; max-width:720px; margin-left:auto; margin-right:auto; }
    .fp-step { display:grid; grid-template-columns:64px 1fr; gap:20px; padding-bottom:32px; position:relative; }
    .fp-step::before { content:''; position:absolute; left:31px; top:64px; bottom:0; width:2px; background:linear-gradient(to bottom,var(--line-green-border),transparent); }
    .fp-step:last-child::before { display:none; }
    .fp-num { width:56px; height:56px; border-radius:50%; border:2px solid var(--line-green); color:var(--line-green); font-size:16px; font-weight:800; display:flex; align-items:center; justify-content:center; flex-shrink:0; background:var(--line-green-dim); position:relative; z-index:1; }
    .fp-body { padding-top:4px; }
    .fp-body h3 { font-size:17px; font-weight:700; margin-bottom:8px; }
    .fp-body p { font-size:14px; color:var(--text-muted); line-height:1.8; margin:0; }
    .fp-duration { display:inline-block; font-size:11px; font-weight:700; background:var(--line-green-dim); color:var(--line-green); border:1px solid var(--line-green-border); border-radius:999px; padding:3px 12px; margin-bottom:10px; }

    /* FAQ */
    .faq-list-line { display:flex; flex-direction:column; margin-top:40px; }
    .faq-item-line { border-bottom:1px solid var(--border); }
    .faq-item-line:first-child { border-top:1px solid var(--border); }
    .faq-q-line { width:100%; background:none; border:none; text-align:left; padding:20px 0; font-size:15px; font-weight:600; color:var(--text); cursor:pointer; display:flex; align-items:flex-start; gap:12px; line-height:1.6; }
    .fq-badge { flex-shrink:0; width:26px; height:26px; border-radius:50%; background:var(--line-green-dim); color:var(--line-green); font-size:13px; font-weight:800; display:flex; align-items:center; justify-content:center; }
    .fq-text { flex:1; }
    .fq-icon { flex-shrink:0; width:22px; height:22px; border-radius:50%; border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:11px; color:var(--text-muted); margin-top:2px; transition:transform 0.3s,background 0.3s,color 0.3s; }
    .faq-q-line[aria-expanded="true"] .fq-icon { transform:rotate(45deg); background:var(--line-green-dim); border-color:var(--line-green); color:var(--line-green); }
    .faq-a-line { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
    .faq-a-line-inner { padding:0 0 20px 40px; font-size:14px; color:var(--text-muted); line-height:1.9; }

    /* 注意事項 / CTAチェック */
    .notice-line { background:rgba(255,255,255,0.03); border:1px solid var(--border); border-radius:12px; padding:20px 24px; font-size:13px; color:var(--text-muted); line-height:2; margin-top:40px; }
    .notice-line strong { color:var(--text); }
    .cta-check-list { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin:24px 0; }
    .cta-check { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); border-radius:999px; padding:8px 18px; font-size:13px; display:flex; align-items:center; gap:8px; white-space:nowrap; }
    .cta-check i { color:var(--line-green); }

    /* レスポンシブ */
    @media (max-width:1024px) {
      .plan-grid { grid-template-columns:repeat(2,1fr); }
      .plan-card-full { grid-column:1/-1; }
    }
    @media (max-width:768px) {
      .service-detail-grid { grid-template-columns:1fr; }
      .merit-grid { grid-template-columns:1fr; }
      .plan-grid { grid-template-columns:1fr; }
      .plan-card-full { grid-column:auto; }
      .fp-step { grid-template-columns:52px 1fr; gap:16px; }
      .fp-step::before { left:25px; top:56px; }
      .fp-num { width:44px; height:44px; font-size:14px; }
      .compare-table th,.compare-table td { padding:12px 14px; }
      .cta-check-list { justify-content:flex-start; }
    }
