/* =====================================================
   日の出都市開発 解体専門サイト 共通スタイル
   配色: 紺(ベース) × 朝焼けオレンジ/金(アクセント) ※ロゴ準拠
   ===================================================== */
:root {
  --navy: #1c2a47;
  --navy-2: #263859;
  --navy-3: #33466e;
  --red: #9e1b2b;
  --orange: #e87722;
  --gold: #e8a520;
  --cream: #fdf6ec;
  --ink: #22293a;
  --ink-2: #4a5265;
  --line: #dfe3ea;
  --bg: #ffffff;
  --bg-alt: #f5f7fa;
  --ok: #0f7b4d;
  --sunrise-grad: linear-gradient(135deg, #9e1b2b 0%, #d4541e 55%, #e8a520 100%);
  --shadow: 0 2px 14px rgba(28, 42, 71, 0.10);
  --shadow-lg: 0 8px 30px rgba(28, 42, 71, 0.16);
  --radius: 12px;
  --maxw: 1080px;
  --header-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
html, body { overflow-x: clip; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-3); }
ul, ol { padding-left: 1.4em; }
strong { font-weight: 700; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.only-sp { display: none; }
@media (max-width: 900px) { .only-pc { display: none; } .only-sp { display: block; } }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; gap: 16px;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }
.brand-copy { font-size: 11px; color: var(--ink-2); line-height: 1.35; white-space: nowrap; }
.brand-copy b { display: block; color: var(--navy); font-size: 12px; }
.gnav { margin-left: auto; }
.gnav ul { display: flex; gap: 4px; list-style: none; padding: 0; }
.gnav a {
  display: block; padding: 8px 10px; font-size: 13.5px; font-weight: 500;
  color: var(--ink); text-decoration: none; border-radius: 8px; white-space: nowrap;
}
.gnav a:hover, .gnav a.active { background: var(--bg-alt); color: var(--navy); }
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }
.header-tel { text-align: right; text-decoration: none; color: var(--navy); line-height: 1.2; white-space: nowrap; }
.header-tel .num { font-size: 20px; font-weight: 900; letter-spacing: 0.02em; }
.header-tel .note { font-size: 10.5px; color: var(--ink-2); }
.btn-header {
  background: var(--sunrise-grad); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 14px; padding: 10px 18px; border-radius: 999px;
  box-shadow: var(--shadow); white-space: nowrap;
}
.menu-btn {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; flex-shrink: 0; position: relative;
}
.menu-btn span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: var(--navy);
  transition: 0.25s;
}
.menu-btn span:nth-child(1) { top: 14px; }
.menu-btn span:nth-child(2) { top: 21px; }
.menu-btn span:nth-child(3) { top: 28px; }
body.nav-open .menu-btn span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
body.nav-open .menu-btn span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* 帯コピーはヘッダーに十分な余白がある超ワイド時のみ表示（ナビとの重なり防止） */
@media (max-width: 1399px) { .brand-copy { display: none; } }
@media (max-width: 1200px) {
  .gnav { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 900px) {
  .header-cta .btn-header { display: none; }
}
@media (max-width: 560px) { .header-tel .num { font-size: 17px; } }

/* モバイルドロワー */
.drawer {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
  background: #fff; overflow-y: auto; padding: 20px 20px 120px;
}
body.nav-open .drawer { display: block; }
.drawer .drawer-group { margin-bottom: 18px; }
.drawer .drawer-title { font-size: 12px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.drawer ul { list-style: none; padding: 0; }
.drawer a {
  display: block; padding: 11px 6px; border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 15px;
}
.drawer a::before { content: "› "; color: var(--gold); font-weight: 900; }

/* ---------- ヒーロー（トップ） ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--navy);
}
.hero .hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 40%; opacity: 0.92;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(15, 24, 45, 0.86) 0%, rgba(15, 24, 45, 0.55) 45%, rgba(15, 24, 45, 0.18) 100%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  padding: 72px 20px 60px;
}
.hero .area-tag {
  display: inline-block; background: var(--gold); color: var(--navy); font-weight: 700;
  font-size: 13px; padding: 4px 14px; border-radius: 999px; margin-bottom: 14px;
}
.hero h1 { font-size: clamp(26px, 4.6vw, 44px); font-weight: 900; line-height: 1.45; letter-spacing: 0.02em; }
.hero h1 .accent { color: #ffd77a; }
.hero .hero-lead { margin-top: 14px; font-size: clamp(14px, 2vw, 17px); font-weight: 500; max-width: 620px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.hero-badges li {
  list-style: none; background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 5px 12px; border-radius: 999px; font-size: 12.5px; font-weight: 500;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-weight: 700; border-radius: 12px; cursor: pointer;
  padding: 15px 26px; font-size: 16px; line-height: 1.3; border: 0;
  transition: transform 0.15s, box-shadow 0.15s; text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--tel { background: #fff; color: var(--navy); box-shadow: var(--shadow); }
.btn--tel .tel-num { font-size: 20px; font-weight: 900; }
.btn--tel small { display: block; font-size: 11px; font-weight: 500; color: var(--ink-2); }
.btn--primary { background: var(--sunrise-grad); color: #fff; box-shadow: var(--shadow); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, 0.7); }
.btn--line { background: #06c755; color: #fff; }
.btn--sim { background: var(--gold); color: var(--navy); }
.btn small { font-weight: 500; }

/* ---------- セクション共通 ---------- */
.sec { padding: 64px 0; }
.sec--alt { background: var(--bg-alt); }
.sec--navy { background: var(--navy); color: #fff; }
.sec--cream { background: var(--cream); }
.sec-head { text-align: center; margin-bottom: 36px; }
.sec-head .en { color: var(--gold); font-weight: 700; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; }
.sec-head h2 { font-size: clamp(22px, 3.4vw, 32px); font-weight: 900; color: var(--navy); line-height: 1.5; margin-top: 4px; }
.sec--navy .sec-head h2 { color: #fff; }
.sec-head .lead { margin-top: 10px; color: var(--ink-2); font-size: 15px; }
.sec--navy .sec-head .lead { color: #cfd6e4; }

/* ---------- グリッド・カード ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
}
a.card { text-decoration: none; color: inherit; transition: transform 0.18s, box-shadow 0.18s; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card-body { padding: 18px 20px 20px; flex: 1; }
.card-body h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; font-weight: 700; }
.card-body p { font-size: 14px; color: var(--ink-2); }
.card .more { margin-top: auto; padding: 0 20px 16px; font-size: 13.5px; font-weight: 700; color: var(--orange); }

/* 番号つきカード（不安・理由） */
.num-card { position: relative; padding: 26px 22px 22px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.num-card .num {
  font-size: 30px; font-weight: 900; color: var(--gold); line-height: 1;
  font-family: Georgia, serif;
}
.num-card h3, .num-card h2 { font-size: 17px; color: var(--navy); margin: 8px 0 8px; }
.num-card p { font-size: 14px; color: var(--ink-2); }

/* ---------- テーブル ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.tbl { width: 100%; border-collapse: collapse; background: #fff; font-size: 14.5px; min-width: 560px; }
table.tbl th, table.tbl td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
table.tbl thead th { background: var(--navy); color: #fff; font-weight: 700; }
table.tbl tbody th { background: var(--bg-alt); font-weight: 700; width: 30%; }
table.tbl .em { color: var(--red); font-weight: 700; }
.tbl-note { font-size: 12.5px; color: var(--ink-2); margin-top: 8px; }

/* 料金表 */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .price-cards { grid-template-columns: 1fr; } }
.price-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 22px; text-align: center; border-top: 4px solid var(--gold); }
.price-card h3 { color: var(--navy); font-size: 17px; }
.price-card .unit { font-size: 13px; color: var(--ink-2); }
.price-card .price { font-size: 15px; color: var(--ink-2); margin: 8px 0 4px; }
.price-card .price b { font-size: 30px; color: var(--red); font-weight: 900; }
.price-card .price small { font-size: 13px; }
.price-card p { font-size: 13px; color: var(--ink-2); text-align: left; }

/* ---------- CTAバンド ---------- */
.cta-band { background: var(--navy); color: #fff; padding: 52px 0; }
.cta-band .inner { max-width: 860px; margin: 0 auto; padding: 0 20px; text-align: center; }
.cta-band h2 { font-size: clamp(20px, 3vw, 27px); font-weight: 900; line-height: 1.6; }
.cta-band p { margin-top: 8px; color: #cfd6e4; font-size: 14.5px; }
.cta-band .buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 24px; }
.cta-band .btn { min-width: 250px; }
.cta-tel-note { font-size: 12px; color: #aab4c8; margin-top: 12px; }

/* ---------- パンくず ---------- */
.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 0; font-size: 12.5px; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--ink-2); }
.breadcrumb a { color: var(--ink-2); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .current { color: var(--navy); font-weight: 500; }

/* ---------- ページヘッダー（下層） ---------- */
.page-head { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 100%); color: #fff; padding: 46px 0 40px; position: relative; overflow: hidden; }
.page-head::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  background: var(--sunrise-grad); opacity: 0.25; border-radius: 50%;
}
.page-head h1 { font-size: clamp(23px, 3.6vw, 34px); font-weight: 900; line-height: 1.5; position: relative; }
.page-head .sub { margin-top: 8px; color: #ffd77a; font-weight: 700; font-size: 14px; position: relative; }
.page-head .desc { margin-top: 10px; color: #cfd6e4; font-size: 14.5px; max-width: 760px; position: relative; }

/* ---------- 見出し ---------- */
.h3-bar { font-size: 19px; color: var(--navy); font-weight: 900; border-left: 5px solid var(--gold); padding-left: 12px; margin: 34px 0 16px; line-height: 1.5; }
.h4-plain { font-size: 16px; color: var(--navy); font-weight: 700; margin: 22px 0 10px; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border-radius: 10px; box-shadow: var(--shadow); margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 16px 44px 16px 18px; font-weight: 700;
  color: var(--navy); position: relative; font-size: 15px; line-height: 1.6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q."; color: var(--orange); font-weight: 900; margin-right: 8px; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--gold); font-weight: 400; transition: 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .a { padding: 0 18px 18px; font-size: 14.5px; color: var(--ink-2); }
.faq-item .a::before { content: "A."; color: var(--navy); font-weight: 900; margin-right: 8px; }

/* ---------- 流れ（ステップ） ---------- */
.step-list { counter-reset: step; list-style: none; padding: 0; }
.step-list > li {
  position: relative; padding: 20px 20px 20px 74px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); margin-bottom: 14px;
}
.step-list > li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 18px; top: 20px; width: 42px; height: 42px;
  background: var(--sunrise-grad); color: #fff; font-weight: 900; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.step-list h3 { font-size: 16.5px; color: var(--navy); margin-bottom: 4px; }
.step-list p { font-size: 14px; color: var(--ink-2); }
.step-list .tag { display: inline-block; background: var(--cream); color: var(--red); font-size: 11.5px; font-weight: 700; border-radius: 4px; padding: 1px 8px; margin-left: 8px; vertical-align: middle; }

/* ---------- 注意ボックス・ポイント ---------- */
.note-box { background: var(--cream); border: 1.5px solid var(--gold); border-radius: 10px; padding: 18px 20px; font-size: 14.5px; margin: 18px 0; }
.note-box .ttl { font-weight: 900; color: var(--red); margin-bottom: 6px; font-size: 15px; }
.warn-box { background: #fdf0f0; border: 1.5px solid #e3a6a6; border-radius: 10px; padding: 18px 20px; font-size: 14.5px; margin: 18px 0; }
.warn-box .ttl { font-weight: 900; color: var(--red); margin-bottom: 6px; }
.point-box { background: #eef4fb; border-left: 5px solid var(--navy-3); border-radius: 6px; padding: 16px 18px; font-size: 14.5px; margin: 18px 0; }

/* ---------- 口コミ ---------- */
.review-band { text-align: center; }
.review-band .stars { color: var(--gold); font-size: 28px; letter-spacing: 4px; }
.review-band .score { font-size: 40px; font-weight: 900; color: var(--navy); }
.review-band .src { font-size: 12.5px; color: var(--ink-2); }

/* ---------- 比較表（第三の選択肢） ---------- */
.compare { min-width: 640px; }
.compare th, .compare td { text-align: center; }
.compare td.hl { background: var(--cream); font-weight: 700; color: var(--navy); }
.compare .mark-good { color: var(--ok); font-weight: 900; }
.compare .mark-bad { color: var(--ink-2); }

/* ---------- シミュレーター ---------- */
.sim-wrap { max-width: 860px; margin: 0 auto; }
.sim-step { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 22px; margin-bottom: 18px; }
.sim-step .sim-q { font-weight: 900; color: var(--navy); font-size: 16.5px; margin-bottom: 14px; }
.sim-step .sim-q .stepnum { display: inline-block; background: var(--navy); color: #fff; font-size: 12px; border-radius: 4px; padding: 2px 8px; margin-right: 8px; vertical-align: middle; }
.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.choice-grid label {
  border: 2px solid var(--line); border-radius: 10px; padding: 12px 10px; text-align: center;
  cursor: pointer; font-weight: 700; font-size: 14.5px; color: var(--ink); background: #fff;
  transition: 0.15s; user-select: none;
}
.choice-grid label small { display: block; font-weight: 500; font-size: 11.5px; color: var(--ink-2); }
.choice-grid input {
  /* キーボード操作を保つため display:none にしない（視覚的にのみ隠す） */
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.choice-grid label { position: relative; }
.choice-grid input:checked + span { color: var(--navy); }
.choice-grid label:has(input:checked) { border-color: var(--orange); background: var(--cream); box-shadow: 0 0 0 2px rgba(232, 119, 34, 0.15); }
.choice-grid label:has(input:focus-visible) { outline: 2px solid var(--orange); outline-offset: 2px; }
.sim-slider { display: flex; align-items: center; gap: 16px; }
.sim-slider input[type="range"] { flex: 1; accent-color: var(--orange); height: 32px; }
.sim-size-view { min-width: 150px; text-align: center; background: var(--bg-alt); border-radius: 10px; padding: 8px 10px; }
.sim-size-view b { font-size: 26px; color: var(--navy); }
.sim-size-view small { display: block; color: var(--ink-2); font-size: 12px; }
.sim-result {
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px 24px;
  text-align: center; box-shadow: var(--shadow-lg);
}
.sim-result .lbl { color: #ffd77a; font-weight: 700; font-size: 14px; }
.sim-result .range { font-size: clamp(30px, 6vw, 44px); font-weight: 900; line-height: 1.3; margin: 6px 0; }
.sim-result .range small { font-size: 0.55em; font-weight: 700; }
.sim-result .fuzoku { font-size: 14px; color: #cfd6e4; margin-top: 4px; }
.sim-result .hojo { background: rgba(232, 165, 32, 0.16); border: 1px solid var(--gold); border-radius: 8px; padding: 10px 14px; font-size: 13.5px; margin: 14px auto 0; max-width: 560px; color: #ffe9b8; }
.sim-disclaimer { font-size: 12px; color: var(--ink-2); margin-top: 14px; text-align: left; }
.sim-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 18px; }

/* ---------- 事例 ---------- */
.case-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.case-card .case-img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.case-card .case-body { padding: 18px 20px 20px; }
.case-card .case-tag { display: inline-block; background: var(--navy); color: #fff; font-size: 12px; border-radius: 4px; padding: 2px 10px; }
.case-card h3 { font-size: 17px; color: var(--navy); margin: 8px 0 6px; }
.case-card .case-price { font-size: 15px; }
.case-card .case-price b { font-size: 24px; color: var(--red); }
.case-card .case-note { font-size: 12px; color: var(--ink-2); margin-top: 6px; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery figure img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; border-radius: 8px; }
.gallery figcaption { font-size: 11.5px; color: var(--ink-2); margin-top: 3px; }

/* ---------- フッター ---------- */
.site-footer { background: var(--navy); color: #cfd6e4; padding: 54px 0 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 34px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { background: #fff; display: inline-block; border-radius: 8px; padding: 8px 12px; }
.footer-brand img { height: 36px; width: auto; }
.site-footer h4 { color: #fff; font-size: 14px; margin-bottom: 10px; border-left: 3px solid var(--gold); padding-left: 8px; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer a { color: #cfd6e4; text-decoration: none; font-size: 13.5px; }
.site-footer a:hover { color: #ffd77a; }
.footer-info p { margin-top: 12px; font-size: 13px; line-height: 1.9; }
.footer-permits { font-size: 11.5px; color: #9aa6bd; margin-top: 10px; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.14); margin-top: 40px; padding: 18px 0 calc(18px + 74px); text-align: center; font-size: 12px; color: #9aa6bd; }
@media (min-width: 901px) { .footer-bottom { padding-bottom: 18px; } }

/* ---------- スマホ下部固定CTA ---------- */
.fixed-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1001;
  display: none; gap: 0; box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.18);
}
.fixed-cta a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 9px 4px 8px; text-decoration: none; font-weight: 900; font-size: 14px; line-height: 1.25;
}
.fixed-cta a small { font-size: 10px; font-weight: 500; }
.fixed-cta .f-tel { background: #fff; color: var(--navy); border-top: 3px solid var(--gold); }
.fixed-cta .f-form { background: var(--sunrise-grad); color: #fff; }
.fixed-cta .f-line { background: #06c755; color: #fff; }
@media (max-width: 900px) { .fixed-cta { display: flex; } body { padding-bottom: 62px; } }

/* ---------- 表示アニメーション（translateYのみ・横溢れ防止） ---------- */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.on { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ---------- フォーム ---------- */
.form-table { width: 100%; }
.form-row { margin-bottom: 20px; }
.form-row label.lbl { display: block; font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 15px; }
.req { background: var(--red); color: #fff; font-size: 11px; border-radius: 4px; padding: 1px 8px; margin-left: 8px; vertical-align: middle; font-weight: 700; }
.opt { background: #8b94a8; color: #fff; font-size: 11px; border-radius: 4px; padding: 1px 8px; margin-left: 8px; vertical-align: middle; font-weight: 700; }
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 8px; padding: 12px 14px;
  font-size: 16px; font-family: inherit; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--orange); border-color: var(--orange); }
.form-hint { font-size: 12.5px; color: var(--ink-2); margin-top: 4px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }

/* ---------- その他 ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.two-col img { border-radius: var(--radius); box-shadow: var(--shadow); }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; padding: 0; list-style: none; }
.badge-row li { background: var(--bg-alt); border: 1px solid var(--line); color: var(--navy); font-size: 12.5px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.src-note { font-size: 11.5px; color: var(--ink-2); }
.update-date { display: inline-block; background: var(--bg-alt); border-radius: 4px; padding: 2px 10px; font-size: 12px; color: var(--ink-2); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; }
.link-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 800px) { .link-cards { grid-template-columns: 1fr; } }
.link-cards a {
  display: block; background: #fff; border: 1.5px solid var(--line); border-radius: 10px;
  padding: 16px 18px; text-decoration: none; color: var(--navy); font-weight: 700; font-size: 14.5px;
  transition: 0.15s;
}
.link-cards a:hover { border-color: var(--orange); background: var(--cream); }
.link-cards a small { display: block; font-weight: 500; color: var(--ink-2); font-size: 12px; margin-top: 3px; }
