@charset "UTF-8";
/* ===========================================
   DRAGON CAR SERVICE - 共通スタイル
   ダーク基調 × レッドアクセント / 本格プラン
   =========================================== */

/* ----- リセット ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + var(--banner-h));
  overflow-x: clip;
}
body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  color: #1d1d20;
  background: #ffffff;
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
  overflow-x: clip;
}
h1, h2, h3, h4, h5,
.btn, .nav-list a,
.service-card h3, .strength-card h3,
.spec-table th, .info-table th {
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}
h1, h2 { text-wrap: pretty; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ----- カラー変数 ----- */
:root {
  /* 明るい本体 */
  --bg: #ffffff;
  --bg-elev: #f6f5f2;
  --bg-soft: #f4f3ef;
  --border: #e6e3dc;
  --border-strong: #d4d0c5;
  --text: #1d1d20;
  --text-sub: #4a4a52;
  --text-mute: #82828c;

  /* ダーク（ヒーロー・サービスカード・フッター用） */
  --dark: #1a1a1f;
  --dark-elev: #232328;
  --dark-card: #1c1c20;
  --dark-card-hover: #2a2a30;
  --dark-border: #2c2c33;
  --dark-text: #ffffff;
  --dark-text-sub: #b3b3ba;
  --dark-text-mute: #7a7a82;

  /* アクセント */
  --red: #e11d2e;
  --red-hover: #c81527;
  --red-dim: #8a1521;
  --green-line: #06c755;
  --gold: #c8a45c;

  /* レイアウト */
  --header-h: 76px;
  --header-h-sm: 64px;
  --banner-h: 0px;
  --container: 1200px;
  --container-wide: 1320px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-card: 0 6px 20px rgba(0,0,0,.08);
  --shadow-hover: 0 10px 28px rgba(0,0,0,.15);
}

/* ===========================================
   デモバナー（Mie Web Studio 営業導線）
   =========================================== */
.demo-banner {
  position: fixed; left: 16px; bottom: 16px; z-index: 9999;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 8px 8px 14px;
  background: #0f1d3f;
  color: #faf6ee;
  border: 1.5px solid #c9a04a;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(15,29,63,0.45);
  font-family: -apple-system, 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  font-size: 12.5px;
  line-height: 1.25;
  text-align: left;
}
.demo-banner__link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #faf6ee; text-decoration: none; font-weight: 700;
}
.demo-banner__link:hover { color: #e2bc6e; }
.demo-banner__icon { font-size: 18px; line-height: 1; }
.demo-banner__text { font-size: 12.5px; line-height: 1.25; }
.demo-banner__text small {
  display: block; font-size: 10.5px; font-weight: 500;
  color: #d4b271; letter-spacing: 0.02em;
}
.demo-banner__close {
  background: rgba(250,246,238,0.12); border: none; color: #c9a04a;
  width: 24px; height: 24px; border-radius: 50%;
  cursor: pointer; font-size: 14px; line-height: 1; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.demo-banner__close:hover { background: rgba(201,160,74,0.4); color: #faf6ee; }
@media (max-width: 540px) {
  .demo-banner { left: 12px; bottom: 78px; padding: 7px 7px 7px 12px; gap: 5px; }
  .demo-banner__icon { font-size: 16px; }
  .demo-banner__text { font-size: 11.5px; }
  .demo-banner__text small { font-size: 9.5px; }
  .demo-banner__close { width: 22px; height: 22px; font-size: 13px; }
}

/* ----- 共通ユーティリティ ----- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--red); color: #fff; padding: 8px 16px; z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ----- ヘッダー ----- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex; align-items: baseline; gap: 8px;
  font-family: 'Oswald', 'Noto Sans JP', sans-serif;
  letter-spacing: .04em;
}
.brand-name {
  font-size: 22px; font-weight: 700; color: var(--text);
  line-height: 1;
}
.brand-name .sub {
  display: block;
  font-size: 10px; font-weight: 400;
  color: var(--text-mute);
  letter-spacing: .18em;
  margin-top: 4px;
}
.nav-list {
  display: flex; align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-list > li > a {
  color: var(--text);
  padding: 8px 0;
  display: inline-block;
  position: relative;
}
.nav-list > li > a:hover { color: var(--red); }
.nav-list > li > a[aria-current="page"] { color: var(--red); }
.nav-list > li > a[aria-current="page"]::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red);
}
.header-tel {
  display: flex; flex-direction: column;
  align-items: flex-end;
  font-family: 'Oswald', sans-serif;
  font-size: 18px; font-weight: 600;
  line-height: 1.1;
  color: var(--text);
}
.header-tel small {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px; font-weight: 400;
  color: var(--text-mute);
  letter-spacing: .08em;
}
.header-ctas {
  display: flex; align-items: center; gap: 8px;
}

/* ----- ボタン ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: .04em;
  transition: all .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.3;
}
.btn-primary {
  background: var(--red); color: #fff;
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(225,29,46,.35);
}
.btn-line {
  background: var(--green-line); color: #fff;
}
.btn-line:hover {
  background: #05a648;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6,199,85,.35);
}
.btn-dark {
  background: var(--dark); color: #fff; border-color: var(--dark);
}
.btn-dark:hover {
  background: #36363e;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.btn-outline-dark {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline-dark:hover {
  background: var(--bg-soft);
  border-color: var(--red);
  color: var(--red);
}
.btn-ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--red);
  color: var(--red);
}
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ----- ヒーロー（ダーク基調を維持） ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: #0a0a0b;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,11,.85) 0%, rgba(10,10,11,.55) 35%, rgba(10,10,11,.2) 60%, rgba(10,10,11,0) 100%);
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(225,29,46,.08) 0%, transparent 50%);
  z-index: 1;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: .28em;
  color: var(--red);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-tagline::before {
  content: ''; width: 40px; height: 1px; background: var(--red);
}
.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: .01em;
}
.hero h1 .accent { color: var(--red); }
.hero-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.9;
}
.hero-cta-row {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex; gap: 32px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.hero-meta strong {
  display: block;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.scroll-indicator {
  position: absolute;
  left: 24px; bottom: 24px;
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: .3em;
  color: rgba(255,255,255,.55);
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.55), transparent);
  margin: 12px auto 0;
}

/* ----- セクション共通 ----- */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head .en {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--red);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.section-head p {
  color: var(--text-sub);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}
.section-head.left { text-align: left; }
.section-head.left p { margin: 0; }

/* ----- サービスカードグリッド（白背景に黒カード） ----- */
.services-section {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  display: flex; flex-direction: column;
  color: var(--dark-text);
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.service-card-img {
  height: 180px;
  background: #1a1a1f;
  position: relative;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,15,16,.55) 100%);
}
.service-card-body {
  padding: 28px 24px;
  display: flex; flex-direction: column;
  flex-grow: 1;
}
.service-card-icon {
  width: 48px; height: 48px;
  background: rgba(225,29,46,.18);
  border: 1px solid rgba(225,29,46,.45);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--red);
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--dark-text-sub);
  line-height: 1.85;
  flex-grow: 1;
  margin-bottom: 20px;
}
.service-card .card-link {
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
}
.service-card .card-link::after {
  content: '\2192';
  transition: transform .25s ease;
}
.service-card:hover .card-link::after { transform: translateX(4px); }
.services-cta {
  text-align: center;
  margin-top: 56px;
}

/* ----- About セクション（白背景） ----- */
.about-section {
  background: var(--bg-elev);
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text .en {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--red);
  margin-bottom: 16px;
}
.about-text h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 28px;
}
.about-text > p {
  color: var(--text-sub);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.95;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.about-feature {
  text-align: center;
  padding: 24px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-feature-icon {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  background: rgba(225,29,46,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 24px;
}
.about-feature h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.about-feature p {
  font-size: 12px;
  color: var(--text-mute);
  line-height: 1.7;
}
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 520px;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
  box-shadow: var(--shadow-card);
}
.about-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-photo.tall { grid-row: span 2; }

/* ----- 強み（数字で見る・白背景） ----- */
.numbers-section {
  background: var(--bg);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.number-item {
  text-align: center;
}
.number-item .num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: .02em;
}
.number-item .num .unit {
  font-size: .4em;
  color: var(--text);
  margin-left: 6px;
  font-weight: 500;
}
.number-item .label {
  margin-top: 12px;
  color: var(--text-sub);
  font-size: 13px;
  letter-spacing: .04em;
}

/* ----- 職人感バンド ----- */
.craft-band {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
  background: #0a0a0b;
}
.craft-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.craft-band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,11,.92) 0%, rgba(10,10,11,.7) 50%, rgba(10,10,11,.4) 100%);
}
.craft-band-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.7) contrast(1.1);
}
.craft-band-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.craft-band .en {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: .28em;
  color: var(--red);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.craft-band .en::before {
  content: ''; width: 40px; height: 1px; background: var(--red);
}
.craft-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: #fff;
}
.craft-band p {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.95;
}
@media (max-width: 768px) {
  .craft-band { padding: 80px 0; }
  .craft-band h2 { font-size: 26px; }
  .craft-band-bg::after {
    background: linear-gradient(180deg, rgba(10,10,11,.85) 0%, rgba(10,10,11,.92) 100%);
  }
}

/* ----- ステップ（流れ・ライト） ----- */
.steps-section {
  background: var(--bg-elev);
}
.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.step-card .step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .15em;
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 18px;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
}

/* ----- CTA Band（赤背景） ----- */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, #b71728 100%);
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.15), transparent 50%);
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,.92);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 15px;
}
.cta-row {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
/* 赤背景上では電話ボタンを白ベースに変える */
.cta-band .btn-primary {
  background: #fff;
  color: var(--red);
}
.cta-band .btn-primary:hover {
  background: #fff;
  color: var(--red-hover);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.cta-band .btn-dark {
  background: rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.4);
}
.cta-band .btn-dark:hover {
  background: rgba(0,0,0,.55);
}

/* ----- フッター（ダーク維持） ----- */
.site-footer {
  background: #0c0c0e;
  padding: 80px 0 32px;
  color: var(--dark-text-sub);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .04em;
}
.footer-desc {
  font-size: 13px;
  color: var(--text-mute);
  line-height: 1.85;
  margin-bottom: 16px;
}
.footer-info {
  font-size: 13px;
  color: var(--dark-text-sub);
  line-height: 1.95;
}
.footer-info strong { color: #fff; }
.footer-desc {
  font-size: 13px;
  color: var(--dark-text-mute);
  line-height: 1.85;
  margin-bottom: 16px;
}
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: .15em;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 24px; height: 2px;
  background: var(--red);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px; color: var(--dark-text-sub);
}
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--dark-text-mute);
}

/* ----- ページヘッダー（下層ページ用・ダーク帯で統一感） ----- */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  background: linear-gradient(180deg, #0f0f12 0%, #1a1a20 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
/* 背景画像付きの下層ページヘッダー */
.page-hero--shaken {
  background:
    linear-gradient(180deg, rgba(15,15,18,.82) 0%, rgba(20,20,24,.7) 60%, rgba(20,20,24,.9) 100%),
    url('images/pagehero-shaken.jpg') center/cover no-repeat;
}
.page-hero--bankin {
  background:
    linear-gradient(180deg, rgba(15,15,18,.82) 0%, rgba(20,20,24,.7) 60%, rgba(20,20,24,.9) 100%),
    url('images/pagehero-bankin.jpg') center/cover no-repeat;
}
.page-hero--kaitori {
  background:
    linear-gradient(180deg, rgba(15,15,18,.82) 0%, rgba(20,20,24,.7) 60%, rgba(20,20,24,.9) 100%),
    url('images/pagehero-kaitori.jpg') center/cover no-repeat;
}
.page-hero--voice {
  background:
    linear-gradient(180deg, rgba(15,15,18,.85) 0%, rgba(20,20,24,.75) 60%, rgba(20,20,24,.9) 100%),
    url('images/voice-hero.jpg') center/cover no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; right: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(225,29,46,.18), transparent 70%);
  transform: translateY(-50%);
}
.page-hero-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.page-hero .en {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}
.page-hero h1 {
  font-size: clamp(28px, 4.5vw, 44px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex; justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 24px;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: rgba(255,255,255,.3); }

/* ----- コンテンツブロック（下層ページ・ライト） ----- */
.content-section { padding: 80px 0; background: var(--bg); }
.content-narrow { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.content-block { margin-bottom: 64px; }
.content-block h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.content-block h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 60px; height: 2px;
  background: var(--red);
}
.content-block h3 {
  font-size: 18px;
  color: var(--text);
  font-weight: 700;
  margin: 32px 0 12px;
}
.content-block p {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.95;
  margin-bottom: 16px;
}
.content-block p strong { color: var(--text); }
.content-block ul {
  list-style: none;
  padding: 0;
}
.content-block ul li {
  position: relative;
  padding-left: 24px;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 6px;
}
.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 12px; height: 2px;
  background: var(--red);
}

/* ----- 料金テーブル（ライト） ----- */
.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.price-table thead th {
  background: var(--dark);
  padding: 16px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-align: left;
}
.price-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-sub);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: var(--bg-elev); }
.price-table .price {
  font-family: 'Oswald', sans-serif;
  color: var(--red);
  font-weight: 600;
  font-size: 17px;
}
.price-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-mute);
}

/* ----- FAQ（ライト） ----- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  transition: background .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-elev); }
.faq-item summary::before {
  content: 'Q';
  font-family: 'Oswald', sans-serif;
  color: var(--red);
  font-weight: 700;
  margin-right: 8px;
}
.faq-item summary::after {
  content: '\002B';
  color: var(--red);
  font-size: 22px;
  font-weight: 300;
  margin-left: auto;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.95;
}
.faq-answer p { margin-bottom: 8px; }

/* ----- お客様の声（ライト） ----- */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.voice-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.voice-card::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--red);
  opacity: .15;
  line-height: 1;
}
.voice-card .voice-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.voice-card .voice-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(225,29,46,.1);
  border: 1px solid rgba(225,29,46,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
}
.voice-card .voice-name {
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}
.voice-card .voice-sub {
  color: var(--text-mute);
  font-size: 12px;
}
.voice-card h3 {
  color: var(--red);
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
}
.voice-card p {
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.9;
}

/* ----- フォーム（ライト） ----- */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-top: 32px;
  box-shadow: var(--shadow-card);
}
.form-row { margin-bottom: 24px; }
.form-row label {
  display: block;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.form-row label .req {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 500;
}
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .25s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,29,46,.15);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row .hint {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 6px;
}
.form-submit {
  text-align: center;
  margin-top: 32px;
}

/* ----- マップカード（about.html アクセス） ----- */
.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-card);
}
.map-card-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}
.map-card-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--red);
  margin-bottom: 6px;
}
.map-card-address {
  font-size: 18px;
  color: var(--text);
  font-weight: 700;
}
.map-card-frame { line-height: 0; }
.map-card-frame iframe {
  display: block;
  width: 100%;
  border: 0;
  filter: grayscale(.15);
}
.map-card-note {
  padding: 14px 28px;
  font-size: 12px;
  color: var(--text-mute);
  background: var(--bg-soft);
  margin: 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 768px) {
  .map-card-header { padding: 18px 20px; }
  .map-card-address { font-size: 15px; }
  .map-card-frame iframe { height: 280px; }
  .map-card-note { padding: 12px 20px; font-size: 11px; }
}

/* ----- 代表メッセージ（about.html） ----- */
.owner-message {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}
.owner-message-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 1;
}
.owner-message-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.owner-sign {
  margin-top: 24px;
  color: var(--text);
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 768px) {
  .owner-message {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .owner-message-photo {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* ----- お問い合わせカード（ライト） ----- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.contact-method {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all .3s ease;
  display: block;
  box-shadow: var(--shadow-card);
}
.contact-method:hover {
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.cm-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.cm-label {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.cm-red { color: var(--red); }
.cm-green { color: var(--green-line); }
.cm-gold { color: var(--gold); }
.cm-value {
  font-size: 22px;
  color: var(--text);
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  word-break: keep-all;
}
.cm-value.cm-jp {
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
}
.cm-sub {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 8px;
}

/* ----- 会社概要テーブル（ライト） ----- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table th {
  text-align: left;
  background: var(--bg-elev);
  padding: 18px 24px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  width: 30%;
  vertical-align: top;
}
.info-table td {
  padding: 18px 24px;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.85;
}

/* ----- 固定フローティングCTA（モバイル） ----- */
.float-cta {
  display: none;
}

/* ----- ハンバーガー（白背景なので黒ライン） ----- */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  z-index: 1100;
  position: relative;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: all .3s ease;
}
body.nav-open .hamburger span { background: var(--text); }
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===========================================
   レスポンシブ
   =========================================== */

/* タブレット 1024px以下 */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
  .about-grid { gap: 40px; }
  .nav-list { gap: 20px; }
  .nav-list > li > a { font-size: 13px; }
}

/* タブレット 900px以下 */
@media (max-width: 900px) {
  .header-tel { display: none; }
  .header-ctas .btn-line { display: none; }
}

/* スマホ寄り 768px以下 */
@media (max-width: 768px) {
  :root {
    --header-h: var(--header-h-sm);
  }
  body { font-size: 15px; }
  section { padding: 64px 0; }
  .container, .container-wide { padding: 0 20px; }

  /* ヘッダー */
  .header-inner { padding: 0 16px; }
  .brand-name { font-size: 18px; }
  .brand-name .sub { display: none; }
  .hamburger { display: flex; }
  .nav-list {
    position: fixed;
    top: 0; right: 0;
    height: 100vh; width: min(78%, 320px);
    background: #fff;
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: calc(var(--header-h-sm) + 32px) 28px 32px;
    gap: 0;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
    z-index: 1050;
    box-shadow: -8px 0 24px rgba(0,0,0,.1);
  }
  .nav-open .nav-list { transform: translateX(0); }
  .nav-list > li {
    border-bottom: 1px solid var(--border);
  }
  .nav-list > li > a {
    padding: 16px 0;
    font-size: 14px;
    display: block;
    color: var(--text);
  }
  .header-ctas {
    display: none;
  }

  /* メニュー開閉用オーバーレイ */
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.7);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
    z-index: 1040;
  }
  .nav-open .nav-overlay { opacity: 1; pointer-events: auto; }

  /* ヒーロー */
  .hero { min-height: auto; padding-top: calc(var(--header-h-sm) + 60px); padding-bottom: 80px; }
  .hero-bg::before {
    background: linear-gradient(180deg, rgba(10,10,11,.75) 0%, rgba(10,10,11,.5) 40%, rgba(10,10,11,.7) 100%);
  }
  .hero-tagline { margin-bottom: 16px; font-size: 11px; letter-spacing: .2em; }
  .hero-tagline::before { width: 28px; }
  .hero h1 { font-size: 32px; line-height: 1.25; margin-bottom: 16px; }
  .hero-lead { font-size: 14px; line-height: 1.85; margin-bottom: 28px; }
  .hero-cta-row { gap: 8px; flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn { width: 100%; padding: 14px 16px; }
  .hero-meta { gap: 20px; margin-top: 40px; padding-top: 20px; font-size: 12px; }
  .hero-meta strong { font-size: 18px; }
  .scroll-indicator { display: none; }

  /* セクション見出し */
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 24px; }
  .section-head p { font-size: 14px; }

  /* モバイルでは句読点の孤立を避けるため text-wrap 設定を解除 */
  h1, h2, h3, h4, h5 {
    text-wrap: auto;
    word-break: normal;
    overflow-wrap: break-word;
  }
  .about-text h2 {
    font-size: 23px;
    line-height: 1.45;
  }
  .cta-band h2 { font-size: 21px; }

  /* サービスグリッド */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card-body { padding: 20px; }
  .service-card-img { height: 160px; }
  .service-card h3 { font-size: 17px; }

  /* About */
  .about-section { padding: 64px 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-feature {
    display: flex; align-items: center;
    gap: 16px;
    text-align: left;
    padding: 16px;
  }
  .about-feature-icon { margin: 0; flex-shrink: 0; }
  .about-feature h4 { margin-bottom: 2px; }
  .about-photos {
    height: 360px;
    grid-template-columns: 1fr 1fr;
  }

  /* Numbers */
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* Steps */
  .steps-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .step-card { padding: 24px 20px; }

  /* CTA Band */
  .cta-band { padding: 56px 0; }
  .cta-band h2 { font-size: 22px; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }

  /* Footer */
  .site-footer { padding: 56px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Page hero */
  .page-hero { padding: calc(var(--header-h-sm) + 48px) 0 56px; }

  /* Content */
  .content-section { padding: 56px 0; }
  .content-block { margin-bottom: 40px; }

  /* Voice */
  .voices-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .voice-card { padding: 24px; }

  /* Form */
  .form-card { padding: 24px 20px; }

  /* Info table */
  .info-table th, .info-table td {
    display: block;
    width: 100%;
    padding: 12px 18px;
  }
  .info-table th {
    border-bottom: none;
    padding-bottom: 4px;
  }
  .info-table td {
    border-bottom: 1px solid var(--border);
    padding-top: 0;
  }

  /* Price table */
  .price-table { font-size: 13px; }
  .price-table thead th, .price-table tbody td {
    padding: 12px 14px;
  }

  /* フローティングCTA */
  .float-cta {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--border);
    z-index: 900;
    padding: 8px;
    gap: 6px;
    box-shadow: 0 -4px 12px rgba(0,0,0,.08);
  }
  .float-cta a {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
  }
  .float-cta .fcta-tel { background: var(--red); }
  .float-cta .fcta-line { background: var(--green-line); }
  .float-cta .fcta-mail { background: var(--dark); }
  body { padding-bottom: 64px; }
}

/* 小型スマホ 380px以下 */
@media (max-width: 380px) {
  body { font-size: 14px; }
  .container, .container-wide { padding: 0 16px; }
  .header-inner { padding: 0 12px; }
  .hero h1 { font-size: 28px; }
  .hero-lead { font-size: 13px; }
  .brand-name { font-size: 16px; }
  .float-cta a { font-size: 11px; padding: 10px 4px; }
  .section-head h2 { font-size: 22px; }
}

/* セレクション */
::selection {
  background: var(--red);
  color: #fff;
}

/* スクロールバー（Webkit） */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-elev); }
::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--red-dim); }
