/* Night CMS 単体LP — 白基調 + ゴールド (#c9a96e / #a8884f) */
:root {
  --gold: #c9a96e;
  --gold-dark: #a8884f;
  --gold-grad: linear-gradient(90deg, #c9a96e, #e6c87d);
  --text: #1a1a1a;
  --text-sub: #555;
  --bg-alt: #f7f7f5;
  --border: #e3e3e0;
  --line-green: #06C755;
  --max: 1152px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 58px; /* スマホ固定CTAぶん */
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 16px; }
.pc-only { display: none; }

/* ---------- 共通パーツ ---------- */
.section-label {
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: .5em;
  text-align: center;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--gold-dark); }
.section-title.gold-grad {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-desc { text-align: center; color: var(--text-sub); font-size: 14px; margin-bottom: 36px; }
.note { color: #888; font-size: 12px; text-align: center; margin-top: 24px; }

.btn-primary {
  display: inline-block;
  background: var(--gold-grad);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(201, 169, 110, .35);
  transition: transform .2s, opacity .2s;
}
.btn-primary:hover { transform: scale(1.04); opacity: .92; }
.btn-line {
  display: inline-block;
  background: var(--line-green);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 6px;
  transition: filter .2s;
}
.btn-line:hover { filter: brightness(1.1); }
.cta-group { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }

/* ---------- ヘッダー ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-weight: 900; letter-spacing: .15em; color: var(--gold-dark); font-size: 18px; }
/* ヘッダーのロゴは長文タイトルのためサイズ・字間を詰める */
.header-inner .logo {
  font-size: clamp(9.6px, 2.4vw, 13.6px); /* 20%縮小 */
  letter-spacing: .03em;
  line-height: 1.4;
  color: var(--text); /* 黒 */
  flex: 1;
  padding-right: 10px;
}
.header-right { display: flex; align-items: center; gap: 14px; }
.header-tel { text-decoration: none; color: var(--text); text-align: right; line-height: 1.3; }
.header-tel .tel-number { display: block; font-weight: 700; font-size: 15px; }
.header-tel .tel-hours { display: block; font-size: 10px; color: var(--text-sub); }
.btn-header {
  background: var(--gold-grad);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
}
/* モバイルはヘッダーの電話表示を隠す(画面下の固定CTAに電話あり) */
@media (max-width: 767px) {
  .header-tel { display: none; }
  .btn-header { font-size: 12px; padding: 9px 12px; }
}

/* ---------- ヒーロー ---------- */
.hero { padding-bottom: 64px; }
.hero-top-title {
  text-align: center;
  font-size: clamp(24px, 5.6vw, 44px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .04em;
  color: var(--gold-dark); /* グラデ非対応ブラウザ用フォールバック */
  padding: 8px 16px 5px; /* 上下を大幅に圧縮 */
  line-height: 1.15;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero-top-title {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.sp-only { display: inline; }
.hero-img-wrap { max-width: var(--max); margin: 0 auto 36px; }
.hero-body { max-width: 760px; margin: 0 auto; padding: 0 16px; text-align: center; }
.hero-lead { color: var(--text-sub); font-size: 14px; margin-bottom: 20px; }
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201, 169, 110, .6);
  background: rgba(201, 169, 110, .06);
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: .25em;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-sub-catch {
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 900;
  background: linear-gradient(90deg, #ec4899, #d946ef, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}
.hero-catch {
  font-size: clamp(32px, 8vw, 60px);
  font-weight: 900;
  line-height: 1.25;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 28px;
}
.hero-price-banner, .hero-design-banner { max-width: 640px; margin: 0 auto 10px; }
.hero-note { color: var(--text-sub); font-size: 14px; margin-bottom: 26px; }

/* ヒーロー内の料金案内 */
.hero-pricing {
  max-width: 560px;
  margin: 36px auto 0;
  border: 1px solid rgba(201, 169, 110, .5);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(201, 169, 110, .08), #fff 55%);
  padding: 28px 22px;
}
.hp-free {
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 900;
  color: var(--gold-dark);
}
.hp-campaign {
  font-size: clamp(15px, 3.6vw, 19px);
  font-weight: 700;
  color: #e11d48;
  margin: 4px 0 18px;
}
.hp-plans {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}
.hp-plans li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 4px;
  border-bottom: 1px dashed #e5dccb;
  flex-wrap: wrap;
}
.hp-price {
  font-size: clamp(17px, 4.2vw, 21px);
  font-weight: 900;
  color: var(--gold-dark);
  white-space: nowrap;
}
.hp-price small { font-size: .6em; font-weight: 400; color: #888; }
.hp-plan { font-size: 14px; font-weight: 700; color: #333; }
.hp-more { font-size: 13.5px; color: var(--text-sub); margin-top: 16px; }
.hp-link { font-size: 13.5px; color: var(--text-sub); margin-top: 4px; }
.hp-link a { font-weight: 700; }

/* ヒーロー内のサポート訴求 */
.hero-support { margin-top: 36px; text-align: center; }
.hs-247 {
  display: inline-block;
  background: var(--gold-grad);
  color: #fff;
  font-size: clamp(16px, 3.8vw, 22px);
  font-weight: 900;
  letter-spacing: .08em;
  border-radius: 999px;
  padding: 6px 24px;
  margin-bottom: 12px;
}
.hs-247 span { margin-left: 6px; }
.hs-main {
  font-size: clamp(22px, 5.4vw, 34px);
  font-weight: 900;
  line-height: 1.4;
}
.hs-close {
  font-size: clamp(17px, 4vw, 24px);
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: 4px;
}

/* ---------- 便利な機能・装備 ---------- */
.equip { background: var(--bg-alt); padding: 64px 0; }
.equip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}
.equip-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px 16px 48px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
  transition: border-color .2s, box-shadow .2s;
}
.equip-card:hover { border-color: rgba(201, 169, 110, .6); box-shadow: 0 6px 16px rgba(0, 0, 0, .07); }
.equip-card::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 17px;
  color: var(--gold);
  font-weight: 900;
  font-size: 17px;
}
.equip-card dt { font-weight: 700; font-size: 15.5px; color: var(--gold-dark); margin-bottom: 4px; }
.equip-card dd { font-size: 13.5px; color: var(--text-sub); line-height: 1.7; }
@media (min-width: 768px) {
  .equip-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- 悩み ---------- */
.problems { background: var(--bg-alt); padding: 64px 0; }
.problem-list { list-style: none; display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 28px; }
.problem-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px 14px 44px;
  font-size: 14px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}
.problem-list li::before { content: "✕"; color: #e0245e; font-weight: 700; position: absolute; left: 16px; }
.problem-arrow { text-align: center; color: var(--gold-dark); font-size: 22px; font-weight: 700; margin: 28px 0 6px; }
.problem-answer { text-align: center; font-size: 20px; font-weight: 900; }
.problem-answer em { font-style: normal; color: var(--gold-dark); }

/* ---------- 特徴 ---------- */
.features { padding: 72px 0; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
.feature-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.feature-card:hover { border-color: rgba(201, 169, 110, .6); box-shadow: 0 8px 24px rgba(0, 0, 0, .07); }
.feature-card img { width: 56px; height: 56px; margin-bottom: 14px; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { color: var(--text-sub); font-size: 13.5px; }

/* ---------- 実績・信頼 ---------- */
.trust { padding: 72px 0; text-align: center; }
.trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin: 36px 0 20px;
}
.trust-stat {
  border: 2px solid var(--gold);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(201, 169, 110, .1), #fff 70%);
  padding: 26px 34px;
  min-width: 240px;
  box-shadow: 0 8px 24px rgba(201, 169, 110, .18);
}
.ts-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 2px;
}
.ts-num {
  font-size: clamp(44px, 9vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .ts-num { color: var(--gold-dark); }
}
.ts-num small { font-size: .35em; font-weight: 700; margin-left: 2px; }
.trust-close { font-size: clamp(16px, 3.6vw, 20px); font-weight: 700; }

/* ---------- AI訴求 ---------- */
.ai-appeal {
  background: linear-gradient(135deg, #fffbeb, #fff7ed, #fefce8);
  border-top: 1px solid rgba(201, 169, 110, .3);
  border-bottom: 1px solid rgba(201, 169, 110, .3);
  padding: 56px 0;
  text-align: center;
}
.ai-badge {
  display: inline-block;
  border: 1px solid rgba(201, 169, 110, .5);
  background: rgba(201, 169, 110, .1);
  color: var(--gold-dark);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3em;
  padding: 6px 18px;
  margin-bottom: 18px;
}
.ai-appeal p { max-width: 640px; margin: 10px auto 0; font-size: 14.5px; color: #444; }
.ai-appeal strong { color: var(--gold-dark); }

/* ---------- 制作例 ---------- */
.showcase { background: var(--bg-alt); padding: 72px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.showcase-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.showcase-card { text-decoration: none; display: block; }
.showcase-card .shots { display: flex; gap: 8px; align-items: stretch; }
.showcase-card .shots img:first-child { flex: 2.7; min-width: 0; object-fit: cover; object-position: top; border-radius: 8px; border: 1px solid var(--border); box-shadow: 0 4px 14px rgba(0, 0, 0, .08); }
.showcase-card .shots img:last-child { flex: 1; min-width: 0; object-fit: cover; object-position: top; border-radius: 8px; border: 1px solid var(--border); box-shadow: 0 4px 14px rgba(0, 0, 0, .08); }
.showcase-card:hover .shots img { border-color: rgba(201, 169, 110, .6); }
.showcase-card .shop-name { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; text-align: center; margin-top: 10px; color: var(--gold-dark); font-weight: 700; font-size: 14px; letter-spacing: .08em; }
.shop-industry {
  display: inline-block;
  background: rgba(201, 169, 110, .12);
  border: 1px solid rgba(201, 169, 110, .45);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 999px;
  padding: 2px 10px;
}

/* ---------- 対応業種 ---------- */
.industries { padding: 72px 0; }
/* ヒーロー画像直下に置く場合は余白を詰める */
.industries-hero { padding: 16px 0 40px; }
/* 文章型の見出しは少し小さめに */
.industries-title { font-size: clamp(17px, 3.6vw, 26px); line-height: 1.6; }
.industry-grid { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
.industry-grid li {
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  padding: 18px 8px;
  font-weight: 700;
  color: var(--gold-dark);
  transition: border-color .2s, box-shadow .2s;
}
.industry-grid li:hover { box-shadow: 0 4px 12px rgba(0, 0, 0, .1); transform: translateY(-2px); }
/* 業種ごとのカラー */
.industry-grid li:nth-child(1) { border-color: #f9a8d4; color: #db2777; background: #fdf2f8; } /* キャバクラ: ピンク */
.industry-grid li:nth-child(2) { border-color: #c4b5fd; color: #7c3aed; background: #f5f3ff; } /* クラブ: パープル */
.industry-grid li:nth-child(3) { border-color: #d8c08f; color: #a8884f; background: #faf6ee; } /* ラウンジ: ゴールド */
.industry-grid li:nth-child(4) { border-color: #fda4af; color: #e11d48; background: #fff1f2; } /* ガールズバー: ローズ */
.industry-grid li:nth-child(5) { border-color: #fcd34d; color: #d97706; background: #fffbeb; } /* スナック: オレンジ */
.industry-grid li:nth-child(6) { border-color: #93c5fd; color: #2563eb; background: #eff6ff; } /* ホストクラブ: ブルー */
.industry-grid li:nth-child(7) { border-color: #5eead4; color: #0d9488; background: #f0fdfa; } /* コンセプトカフェ: ティール */
.industry-grid li:nth-child(8) { border-color: #a5b4fc; color: #4f46e5; background: #eef2ff; } /* ボーイズバー: インディゴ */
.industry-grid li:nth-child(9) { border-color: #f0abfc; color: #c026d3; background: #fdf4ff; } /* セクキャバ: フューシャ */
.industry-grid li:nth-child(10) { border-color: #86efac; color: #16a34a; background: #f0fdf4; } /* ランパブ: グリーン */
.industry-grid li:nth-child(11) { border-color: #7dd3fc; color: #0284c7; background: #f0f9ff; } /* ゲイバー: スカイブルー */
.industry-grid li:nth-child(12) { border-color: #d1d5db; color: #4b5563; background: #f9fafb; } /* その他: グレー */

/* ---------- 料金 ---------- */
.pricing { background: var(--bg-alt); padding: 72px 0; border-top: 1px solid var(--border); }
.plan-grid { display: grid; grid-template-columns: 1fr; gap: 22px; align-items: stretch; }
.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}
.plan-card.recommended {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(201, 169, 110, .09), #fff 40%);
  box-shadow: 0 12px 32px rgba(201, 169, 110, .25);
}
.plan-reco-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 4px;
}
.plan-discount {
  position: absolute;
  top: -12px;
  right: -8px;
  background: #f43f5e;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(244, 63, 94, .4);
}
.plan-card h3 { font-size: 19px; margin-bottom: 6px; }
.plan-old { color: #aaa; text-decoration: line-through; font-size: 15px; }
.plan-price { color: var(--gold-dark); font-size: 36px; font-weight: 900; line-height: 1.2; }
.plan-price small { font-size: 11px; color: #f43f5e; font-weight: 400; margin-right: 6px; vertical-align: middle; }
.plan-price span { font-size: 13px; color: #888; font-weight: 400; margin-left: 4px; }
.plan-init { color: #888; font-size: 12px; margin-bottom: 18px; }
.plan-card ul { list-style: none; flex: 1; margin-bottom: 22px; }
.plan-card ul li { font-size: 14px; padding: 5px 0 5px 26px; position: relative; color: #333; }
.plan-card ul li::before { content: "✓"; color: var(--gold); font-weight: 700; position: absolute; left: 4px; }
.btn-plan {
  display: block;
  text-align: center;
  border: 1px solid #ccc;
  color: #444;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px;
  border-radius: 6px;
  transition: background .2s;
}
.btn-plan:hover { background: #f1f1ef; }
.btn-plan.primary { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-plan.primary:hover { background: var(--gold-dark); }
.plan-upper { text-align: center; font-size: 13.5px; color: var(--text-sub); margin-top: 28px; }
.options-box {
  background: #fff;
  border: 1px solid #d9c7f0;
  border-radius: 14px;
  max-width: 640px;
  margin: 32px auto 0;
  padding: 24px 26px;
}
.options-box h3 { text-align: center; font-size: 16px; margin-bottom: 14px; }
.options-box ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }
.options-box li { font-size: 13.5px; color: #444; }
.options-box strong { color: var(--gold-dark); }

/* ---------- 比較表 ---------- */
.comparison { padding: 72px 0; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 32px; }
.comparison table { width: 100%; min-width: 720px; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: 12px; font-size: 13.5px; }
.comparison th, .comparison td { padding: 11px 12px; text-align: left; border-bottom: 1px solid #f0f0ee; }
.comparison thead th { color: var(--text-sub); font-weight: 500; border-bottom: 1px solid var(--border); }
.comparison thead th.hl { color: var(--gold-dark); font-weight: 900; }
.comparison td:first-child { color: var(--text-sub); font-weight: 500; }
.comparison td.hl { color: var(--gold-dark); font-weight: 700; background: rgba(201, 169, 110, .05); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-alt); padding: 72px 0; border-top: 1px solid var(--border); }
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 20px 18px 48px;
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q."; color: var(--gold-dark); position: absolute; left: 20px; }
.faq summary::after { content: "+"; position: absolute; right: 20px; color: var(--gold); font-size: 20px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 20px 18px 48px; color: var(--text-sub); font-size: 14px; position: relative; }
.faq details p::before { content: "A."; color: #999; font-weight: 700; position: absolute; left: 22px; }

/* ---------- お問合せ ---------- */
.contact { padding: 72px 0; }
.contact-buttons { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 760px; margin: 36px auto 0; }
.contact-tel, .contact-line {
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  border-radius: 14px;
  padding: 28px 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);
  transition: filter .2s, transform .2s;
}
.contact-tel { background: var(--gold); }
.contact-line { background: var(--line-green); }
.contact-tel:hover, .contact-line:hover { filter: brightness(1.07); transform: translateY(-2px); }
.contact-tel .label, .contact-line .label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.contact-tel .big, .contact-line .big { display: block; font-size: 30px; font-weight: 900; line-height: 1.2; }
.contact-tel .small, .contact-line .small { display: block; font-size: 11px; opacity: .9; margin-top: 6px; }
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 36px auto;
  color: #999;
  font-size: 12px;
}
.form-divider::before, .form-divider::after { content: ""; flex: 1; height: 1px; background: #ddd; }

/* フォーム */
#inquiry-form { max-width: 640px; margin: 0 auto; }
.form-type { border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; margin-bottom: 18px; }
.form-type legend { font-weight: 700; font-size: 14px; padding: 0 8px; }
.form-type label { margin-right: 28px; font-size: 15px; cursor: pointer; }
.form-type input { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; accent-color: var(--gold); }
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.req {
  background: #e0245e;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 3px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: 2px;
}
.form-row input, .form-row textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 16px; /* iOSズーム防止 */
  font-family: inherit;
  background: #fff;
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form-consent { margin: 22px 0; font-size: 14px; }
.form-consent input { width: 18px; height: 18px; vertical-align: -3px; margin-right: 6px; accent-color: var(--gold); }
#turnstile-box { margin-bottom: 16px; }
.form-error {
  background: #fdf0f3;
  border: 1px solid #f5c2cf;
  color: #c01048;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13.5px;
  margin-bottom: 16px;
}
.btn-submit {
  display: block;
  width: 100%;
  background: var(--gold-grad);
  color: #fff;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  padding: 16px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(201, 169, 110, .35);
  transition: opacity .2s;
}
.btn-submit:hover { opacity: .9; }
.btn-submit:disabled { opacity: .55; cursor: not-allowed; }
.seo-text { color: #999; font-size: 11.5px; max-width: 760px; margin: 40px auto 0; }

/* ---------- フッター ---------- */
.footer { background: #16140f; color: #ccc; padding: 40px 0 80px; text-align: center; }
.footer .logo { color: var(--gold); margin-bottom: 16px; font-size: clamp(12px, 3vw, 15px); letter-spacing: .05em; }
.footer nav { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-bottom: 20px; }
.footer nav a { color: #bbb; font-size: 13px; text-decoration: none; }
.footer nav a:hover { color: var(--gold); }
.copyright { font-size: 11px; color: #888; }

/* ---------- スマホ固定CTA ---------- */
.fixed-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  display: flex;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, .15);
}
.fixed-cta a {
  flex: 1;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 16px 4px;
}
.fc-tel { background: #333; }
.fc-line { background: var(--line-green); }
.fc-form { background: var(--gold-grad); }

/* ---------- PC ---------- */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .pc-only { display: inline; }
  .sp-only { display: none; }
  .fixed-cta { display: none; }
  .footer { padding-bottom: 40px; }
  .problem-list { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .plan-grid { grid-template-columns: repeat(4, 1fr); }
  .plan-card { padding: 30px 20px; }
  .contact-buttons { grid-template-columns: 1fr 1fr; }
  .hero-lead { font-size: 16px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .plan-grid { grid-template-columns: 1fr 1fr; }
}
