/* ============================================
   ショウドウ引越社 - メインスタイルシート v2
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #004098;
  --primary-dk: #002d6e;
  --primary-lt: #1a62be;
  --secondary:  #004098;
  --sky:        #00bfff;
  --sky-lt:     #5dd4ff;
  --line-green: #06C755;
  --line-dk:    #05a847;
  --accent:     #f5a623;
  --text:       #222222;
  --text-light: #666666;
  --bg:         #ffffff;
  --bg-gray:    #f4f6fb;
  --bg-dark:    #050e1f;
  --bg-navy:    #001a40;
  --border:     #dde4f0;
  --shadow:     0 4px 24px rgba(0,64,152,0.10);
  --radius:     10px;
  --font:       'Noto Sans JP', 'Hiragino Kaku Gothic Pro', 'Meiryo', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.7; font-size: 15px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

.section-title {
  font-size: 2rem; font-weight: 900; color: var(--primary);
  text-align: center; margin-bottom: 0.4em; letter-spacing: 0.03em;
}
.section-title span { color: var(--sky); }
.section-sub { text-align: center; color: var(--text-light); margin-bottom: 3rem; font-size: 0.93rem; }

/* ============================================
   ヘッダー
   ============================================ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,64,152,0.12);
  transition: all 0.3s;
}

.header-top {
  background: var(--primary);
  padding: 6px 0;
}
.header-top .container {
  display: flex; justify-content: flex-end; gap: 24px;
  font-size: 0.82rem; color: rgba(255,255,255,0.85);
}
.header-top a { color: rgba(255,255,255,0.85); }
.header-top a:hover { color: #fff; }

.header-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; max-width: 1160px; margin: 0 auto;
}

.logo { display: flex; align-items: center; }
.logo img { height: 46px; width: auto; }

nav ul { display: flex; gap: 2px; align-items: center; }
nav ul li a {
  padding: 8px 13px; font-size: 0.87rem; font-weight: 600;
  color: var(--primary); border-radius: 5px; transition: all 0.2s;
}
nav ul li a:hover { color: var(--sky); background: #f0f6ff; }
nav ul li.active a { color: var(--sky); }

/* ドロップダウンメニュー */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " ▾"; font-size: 0.75em; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 8px 28px rgba(0,64,152,0.15);
  border-radius: 10px;
  min-width: 160px;
  display: none;
  z-index: 200;
  padding: 8px 0;
  border: 1px solid rgba(0,64,152,0.1);
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px; left: 50%; transform: translateX(-50%);
  border-width: 0 6px 6px; border-style: solid;
  border-color: transparent transparent #fff;
}
.has-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu li a {
  display: block !important;
  padding: 9px 18px !important;
  font-size: 0.86rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  white-space: nowrap;
  background: none !important;
  border-radius: 0 !important;
}
.dropdown-menu li a:hover { background: #f0f6ff !important; color: var(--primary) !important; }

.btn-quote-header {
  background: var(--primary) !important;
  color: #fff !important; padding: 10px 20px !important;
  border-radius: 30px !important; font-weight: 700 !important;
  font-size: 0.87rem !important; transition: background 0.2s !important;
}
.btn-quote-header:hover { background: var(--primary-lt) !important; }

.btn-checklist-header {
  background: linear-gradient(135deg, #00bfff, #1a90e8) !important;
  color: #fff !important; padding: 10px 18px !important;
  border-radius: 30px !important; font-weight: 700 !important;
  font-size: 0.85rem !important; transition: background 0.2s !important;
}
.btn-checklist-header:hover { opacity: 0.85 !important; }

/* LINE ヘッダーボタン */
.btn-line-header {
  background: var(--line-green) !important;
  color: #fff !important; padding: 10px 18px !important;
  border-radius: 30px !important; font-weight: 700 !important;
  font-size: 0.85rem !important; display: flex !important;
  align-items: center !important; gap: 6px !important;
}
.btn-line-header:hover { background: var(--line-dk) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }

/* ============================================
   フローティングLINEボタン
   ============================================ */
.line-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}

.line-float-btn {
  width: 62px; height: 62px;
  background: var(--line-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(6,199,85,0.45);
  cursor: pointer;
  transition: all 0.25s;
  border: 3px solid rgba(255,255,255,0.3);
  position: relative;
}
.line-float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(6,199,85,0.55); }
.line-float-btn svg { width: 34px; height: 34px; fill: #fff; }

.line-float-qr {
  position: absolute;
  bottom: 70px; right: 0;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  display: none;
  width: 180px;
  text-align: center;
}
.line-float-qr.open { display: block; }
.line-float-qr img { width: 150px; height: 150px; margin: 0 auto 8px; }
.line-float-qr p { font-size: 0.75rem; color: var(--text-light); line-height: 1.5; }

.line-float-label {
  background: var(--line-green);
  color: #fff; font-size: 0.68rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  white-space: nowrap;
}

/* ============================================
   ヒーロー
   ============================================ */
#hero {
  margin-top: 96px;
  position: relative; overflow: hidden;
  min-height: 580px; display: flex; align-items: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #f0f8ff 0%, #fafcff 60%, #ffffff 100%);
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(0,130,255,0.08) 0%, transparent 38%),
    radial-gradient(circle at 12% 78%, rgba(0,64,152,0.06) 0%, transparent 32%);
}

.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 50px; align-items: center;
  max-width: 1160px; margin: 0 auto;
  padding: 60px 20px;
}

/* ヒーロー 会社名バナー（モバイル専用・絶対配置） */
.hero-company-banner {
  display: none; /* デスクトップでは非表示、モバイルで表示 */
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 4; text-align: center;
  padding: 14px 20px 12px;
  background: rgba(255,255,255,0.92);
  border-bottom: 2px solid rgba(0,64,152,0.12);
  pointer-events: none;
}
.hcb-ja {
  font-size: 1.4rem; font-weight: 900; color: var(--primary);
  letter-spacing: 0.04em;
}
.hcb-sep {
  color: rgba(0,64,152,0.3); font-size: 1.2rem;
  margin: 0 8px; vertical-align: middle;
}
.hcb-type {
  font-size: 0.85rem; font-weight: 700; color: var(--text-light);
  vertical-align: middle;
}

/* デスクトップ：ヒーロー内の会社名見出し */
.hero-company-heading {
  margin-bottom: 16px;
}
.hch-name {
  display: block; font-size: 1.95rem; font-weight: 900;
  color: var(--primary); letter-spacing: 0.03em; line-height: 1.2;
}
.hch-sub {
  font-size: 0.8rem; font-weight: 700; color: var(--text-light);
  letter-spacing: 0.06em; margin-top: 3px; display: block;
}

.hero-text .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,64,152,0.08);
  border: 1px solid rgba(0,64,152,0.25);
  color: var(--primary); font-size: 0.8rem; font-weight: 700;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 2.8rem; font-weight: 900; color: #002060;
  line-height: 1.25; margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-text h1 em { font-style: normal; color: var(--primary); }

.hero-text .catch {
  font-size: 1.05rem; font-weight: 700;
  color: #c05a00; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}

.hero-text p {
  color: #475569; font-size: 0.95rem;
  margin-bottom: 32px; line-height: 1.85;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; font-weight: 700;
  padding: 14px 32px; border-radius: 50px; font-size: 0.97rem;
  transition: all 0.25s; box-shadow: 0 4px 18px rgba(0,64,152,0.4);
}
.btn-primary:hover { background: var(--primary-lt); transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,64,152,0.5); }

.btn-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--line-green); color: #fff; font-weight: 700;
  padding: 14px 28px; border-radius: 50px; font-size: 0.97rem;
  transition: all 0.25s; box-shadow: 0 4px 18px rgba(6,199,85,0.4);
}
.btn-line:hover { background: var(--line-dk); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  border: 2px solid var(--primary); color: var(--primary); font-weight: 600;
  padding: 12px 26px; border-radius: 50px; font-size: 0.93rem; transition: all 0.25s;
}
.btn-secondary:hover { background: var(--primary); color: #fff; }

/* ヒーロー右：フォーム */
.hero-form-card {
  background: rgba(255,255,255,0.97);
  border-radius: 16px; padding: 34px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}
.hero-form-card h3 {
  font-size: 1.2rem; font-weight: 800; color: var(--primary);
  margin-bottom: 4px; text-align: center;
}
.hero-form-card .sub { font-size: 0.8rem; color: var(--text-light); text-align: center; margin-bottom: 22px; }

.form-row { margin-bottom: 13px; }
.form-row label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.form-row input, .form-row select {
  width: 100%; border: 1.5px solid var(--border); border-radius: 6px;
  padding: 10px 13px; font-size: 0.88rem; font-family: var(--font);
  color: var(--text); outline: none; transition: border-color 0.2s; background: #fff;
}
.form-row input:focus, .form-row select:focus { border-color: var(--sky); }

.btn-form {
  width: 100%; background: var(--primary); color: #fff; border: none;
  border-radius: 8px; padding: 14px; font-size: 0.97rem; font-weight: 700;
  font-family: var(--font); cursor: pointer; transition: background 0.2s; margin-top: 6px;
}
.btn-form:hover { background: var(--primary-lt); }

/* ============================================
   実績バー
   ============================================ */
#stats { background: var(--primary); padding: 22px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
  text-align: center; padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-num span { font-size: 0.95rem; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.75rem; margin-top: 5px; letter-spacing: 0.02em; }

/* ============================================
   キャラクター紹介バナー
   ============================================ */
#character-banner {
  background: linear-gradient(135deg, #f0f6ff 0%, #e0eeff 100%);
  padding: 50px 0;
  border-bottom: 3px solid var(--sky);
}
.character-inner {
  display: flex; align-items: center; gap: 50px;
  max-width: 900px; margin: 0 auto;
}
.character-img {
  width: 200px; height: 200px; flex-shrink: 0;
  object-fit: contain; filter: drop-shadow(0 8px 24px rgba(0,64,152,0.2));
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.character-text h2 { font-size: 1.6rem; font-weight: 900; color: var(--primary); margin-bottom: 10px; }
.character-text h2 span { color: var(--sky); }
.character-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; }
.character-text .price-appeal {
  display: inline-block; background: var(--primary); color: #fff;
  font-size: 1rem; font-weight: 800; padding: 10px 24px;
  border-radius: 8px; margin-top: 16px;
}
.character-text .price-appeal span { color: var(--sky-lt); font-size: 1.3rem; }

/* ============================================
   サービス
   ============================================ */
#services { padding: 80px 0; background: var(--bg-gray); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.service-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,64,152,0.16); }

.service-card-img {
  height: 180px; position: relative; overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,64,152,0.35));
}
.service-card-img-icon {
  position: absolute; bottom: 12px; left: 16px;
  font-size: 1.6rem;
}

.service-card-img.plain {
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.service-card-img.c-navy  { background: linear-gradient(135deg, #1a9dd9, #0080d4); }
.service-card-img.c-sky   { background: linear-gradient(135deg, #00bfff, #0080cc); }
.service-card-img.c-teal  { background: linear-gradient(135deg, #48d597, #1dd1a1); }
.service-card-img.c-purple{ background: linear-gradient(135deg, #7b5ea7, #4a2a8a); }
.service-card-img.c-steel { background: linear-gradient(135deg, #6dd5ed, #48d597); }
.service-card-img.c-gold  { background: linear-gradient(135deg, #f39c12, #c47d0e); }

.service-card-body { padding: 22px; }
.service-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.service-card-body p  { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.service-card-link { font-size: 0.83rem; font-weight: 600; color: var(--sky); display: flex; align-items: center; gap: 4px; }
.service-card-link:hover { text-decoration: underline; }

/* ============================================
   選ばれる理由
   ============================================ */
#reasons { padding: 80px 0; background: #fff; }
.reasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.reason-item {
  text-align: center; padding: 30px 18px;
  border-radius: 12px; border: 2px solid var(--border);
  transition: all 0.25s;
}
.reason-item:hover { border-color: var(--sky); background: #f0f8ff; transform: translateY(-4px); }
.reason-icon { font-size: 2.8rem; margin-bottom: 14px; display: block; }
.reason-num {
  display: inline-block; background: var(--primary); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 10px; letter-spacing: 0.08em;
}
.reason-item h3 { font-size: 0.97rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.reason-item p  { font-size: 0.83rem; color: var(--text-light); line-height: 1.7; }

/* ============================================
   トラック紹介（実車両）
   ============================================ */
#fleet {
  padding: 80px 0;
  background: linear-gradient(135deg, #e8f4ff 0%, #f0faff 100%);
  position: relative; overflow: hidden;
}
#fleet::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../images/slider1.jpg') center/cover no-repeat;
  opacity: 0.06;
}
.fleet-inner { position: relative; z-index: 1; }
.fleet-inner .section-title { color: var(--primary); }
.fleet-inner .section-title span { color: var(--sky); }
.fleet-inner .section-sub { color: var(--text-light); }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fleet-card {
  border-radius: 12px; overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.fleet-card img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform 0.4s; }
.fleet-card:hover img { transform: scale(1.05); }
.fleet-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 55%, transparent 100%);
}
.fleet-card-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px 16px;
}
.fleet-card-text h4 {
  color: #fff; font-size: 1.05rem; font-weight: 800; margin-bottom: 5px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.fleet-card-text p  {
  color: rgba(255,255,255,0.9); font-size: 0.8rem; line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

.fleet-stats {
  display: flex; gap: 32px; justify-content: center;
  margin-top: 48px; flex-wrap: wrap;
}
.fleet-stat {
  text-align: center; color: var(--primary);
  border: 1px solid rgba(0,191,255,0.5);
  border-radius: 12px; padding: 22px 32px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}
.fleet-stat-num { font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.fleet-stat-label { font-size: 0.82rem; color: var(--text-light); margin-top: 6px; }

/* ============================================
   料金プラン
   ============================================ */
#pricing { padding: 80px 0; background: var(--bg-gray); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.pricing-card {
  background: #fff; border-radius: 12px; padding: 34px 26px;
  box-shadow: var(--shadow); text-align: center; position: relative;
  border: 2px solid transparent; transition: all 0.25s;
}
.pricing-card:hover { border-color: var(--sky); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--primary); transform: scale(1.03); }
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; font-size: 0.74rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.pricing-price { font-size: 0.83rem; color: var(--text-light); margin-bottom: 4px; }
.pricing-price strong { font-size: 2.3rem; color: var(--primary); font-weight: 900; letter-spacing: -0.03em; }
.pricing-price span { font-size: 0.82rem; color: var(--text-light); }
.pricing-note { font-size: 0.73rem; color: var(--text-light); margin-bottom: 22px; }
.pricing-features { text-align: left; margin-bottom: 26px; }
.pricing-features li {
  padding: 7px 0; border-bottom: 1px solid var(--border);
  font-size: 0.86rem; display: flex; align-items: center; gap: 8px;
}
.pricing-features li::before { content: "✓"; color: var(--sky); font-weight: 700; flex-shrink: 0; }
.btn-price {
  display: block; width: 100%; text-align: center; padding: 12px;
  border-radius: 50px; font-weight: 700; font-size: 0.88rem;
  background: var(--primary); color: #fff; transition: all 0.2s;
}
.btn-price:hover { background: var(--primary-lt); transform: translateY(-2px); }

/* ============================================
   引越しの流れ
   ============================================ */
#flow { padding: 80px 0; background: #fff; }
.flow-steps {
  display: flex; gap: 0; counter-reset: step;
  flex-wrap: wrap; justify-content: center;
}
.flow-step {
  flex: 1; min-width: 160px; max-width: 190px;
  text-align: center; position: relative; padding: 18px 10px;
}
.flow-step::after {
  content: "▶"; position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%); color: var(--sky); font-size: 1.1rem;
}
.flow-step:last-child::after { display: none; }
.flow-circle {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; margin: 0 auto 14px;
}
.flow-num { display: block; font-size: 0.7rem; font-weight: 700; color: var(--sky); margin-bottom: 5px; letter-spacing: 0.1em; }
.flow-step h4 { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.flow-step p  { font-size: 0.78rem; color: var(--text-light); }

/* ============================================
   お客様の声
   ============================================ */
#testimonials { padding: 80px 0; background: var(--bg-gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card {
  background: #fff; border-radius: 12px; padding: 26px 22px;
  box-shadow: var(--shadow); position: relative;
  border-top: 4px solid var(--primary);
}
.testimonial-card::before {
  content: "\201C"; position: absolute; top: 14px; left: 18px;
  font-size: 3.5rem; color: var(--sky); opacity: 0.2;
  line-height: 1; font-family: Georgia, serif;
}
.testimonial-stars { color: var(--accent); font-size: 0.97rem; margin-bottom: 10px; }
.testimonial-text { font-size: 0.88rem; line-height: 1.8; color: var(--text); margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; color: #fff; flex-shrink: 0;
}
.testimonial-info .name { font-size: 0.87rem; font-weight: 700; color: var(--primary); }
.testimonial-info .meta { font-size: 0.77rem; color: var(--text-light); }

/* 口コミ リデザイン（t-* クラス） */
.t-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem; font-weight: 800;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}
.t-name { font-size: 0.9rem; font-weight: 700; color: var(--primary); }
.t-route { font-size: 0.78rem; color: var(--text-light); margin-top: 2px; }
.t-type {
  font-size: 0.72rem; font-weight: 600; color: #fff;
  background: var(--primary); border-radius: 20px;
  padding: 2px 8px; display: inline-block; margin-top: 4px;
}
.t-stars {
  color: var(--accent); font-size: 1rem; margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.t-score {
  font-size: 0.82rem; font-weight: 700; color: var(--text);
}
.t-text {
  font-size: 0.86rem; line-height: 1.85; color: var(--text);
  margin-bottom: 14px;
}
.t-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.t-tags span {
  font-size: 0.72rem; font-weight: 600; color: var(--primary);
  background: #e8f2ff; border-radius: 20px; padding: 3px 10px;
  border: 1px solid var(--border);
}

/* 総合評価バー */
.testimonials-summary {
  display: flex; gap: 40px; align-items: center;
  background: linear-gradient(135deg, #f0f6ff, #e8f2fd);
  border-radius: 14px; padding: 28px 36px; margin-top: 36px;
  border: 2px solid var(--border);
}
.ts-overall { text-align: center; flex-shrink: 0; }
.ts-score {
  font-size: 3.2rem; font-weight: 900; color: var(--primary);
  line-height: 1;
}
.ts-stars-big { color: var(--accent); font-size: 1.3rem; margin: 4px 0; }
.ts-count { font-size: 0.8rem; color: var(--text-light); font-weight: 600; }
.ts-bars { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.ts-bar-row {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.83rem; color: var(--text);
}
.ts-bar-row > span:first-child { min-width: 90px; font-weight: 600; }
.ts-bar {
  flex: 1; height: 10px; background: #dde8f5; border-radius: 10px; overflow: hidden;
}
.ts-bar div {
  height: 100%; background: linear-gradient(90deg, var(--primary), var(--sky));
  border-radius: 10px; transition: width 1s ease;
}
.ts-val { min-width: 28px; font-weight: 700; color: var(--primary); font-size: 0.82rem; }

/* ============================================
   対応エリア
   ============================================ */
#area { padding: 80px 0; background: #fff; }
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.area-map {
  background: linear-gradient(135deg, #e8f0ff, #c5d6ff);
  border-radius: 12px; height: 340px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--primary); position: relative; overflow: hidden;
}
.area-map-text { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.area-prefectures { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; margin-top: 18px; }
.pref-tag {
  background: var(--bg-gray); border: 1px solid var(--border); border-radius: 4px;
  padding: 6px 8px; font-size: 0.8rem; text-align: center; color: var(--primary);
  transition: all 0.2s;
}
.pref-tag:hover, .pref-tag.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================================
   LINEセクション
   ============================================ */
#line-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #047a35 0%, #06C755 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
#line-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.line-inner { position: relative; z-index: 1; }
.line-inner h2 { font-size: 1.9rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
.line-inner p { color: rgba(255,255,255,0.9); font-size: 0.95rem; margin-bottom: 24px; }

/* おすすめバッジ */
.line-section-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.2); color: #fff;
  font-size: 0.78rem; font-weight: 800;
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 14px; border: 1px solid rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ステップフロー */
.line-step-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.line-step {
  background: rgba(255,255,255,0.18); border-radius: 12px;
  padding: 12px 14px; text-align: center; color: #fff;
  position: relative; min-width: 90px;
}
.line-step.line-step-done {
  background: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.6);
}
.step-num {
  display: block; font-size: 0.65rem; font-weight: 900;
  background: rgba(255,255,255,0.3); border-radius: 50%;
  width: 20px; height: 20px; line-height: 20px;
  margin: 0 auto 6px; text-align: center;
}
.step-text { font-size: 0.75rem; font-weight: 700; line-height: 1.5; }
.line-step-arrow { font-size: 1.2rem; color: rgba(255,255,255,0.7); font-weight: 900; }

/* LINEセクション内CTAボタン */
.line-cta-buttons {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 36px;
}
.line-btn-checklist {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #04a84f;
  font-weight: 800; font-size: 0.97rem;
  padding: 15px 30px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.2s;
}
.line-btn-checklist:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); color: #04a84f; }
.line-btn-direct {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.2); color: #fff;
  font-weight: 700; font-size: 0.92rem;
  padding: 15px 26px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.line-btn-direct:hover { background: rgba(255,255,255,0.35); transform: translateY(-2px); color: #fff; }

.line-card-wrap { display: flex; gap: 32px; justify-content: center; align-items: center; flex-wrap: wrap; }
.line-qr-card {
  background: #fff; border-radius: 16px; padding: 24px 28px;
  text-align: center; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.line-qr-card img { width: 150px; height: 150px; margin: 0 auto 12px; }
.line-qr-card p { font-size: 0.85rem; color: var(--text-light); }
.line-qr-card strong { color: var(--line-green); font-size: 0.95rem; }
.line-benefits { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.line-benefit {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.15); border-radius: 10px;
  padding: 14px 20px; color: #fff; backdrop-filter: blur(4px);
}
.line-benefit .icon { font-size: 1.8rem; flex-shrink: 0; }
.line-benefit h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.line-benefit p { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

/* ============================================
   CTA
   ============================================ */
#cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #1a7dd4 0%, #00bfff 100%);
  text-align: center;
}
#cta h2 { font-size: 1.95rem; font-weight: 900; color: #fff; margin-bottom: 10px; }
#cta p { color: rgba(255,255,255,0.9); font-size: 0.97rem; margin-bottom: 30px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--primary); font-weight: 700;
  padding: 15px 34px; border-radius: 50px; font-size: 0.97rem;
  transition: all 0.25s; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-cta-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--line-green); color: #fff; font-weight: 700;
  padding: 15px 32px; border-radius: 50px; font-size: 0.97rem;
  transition: all 0.25s; box-shadow: 0 4px 16px rgba(6,199,85,0.4);
}
.btn-cta-line:hover { background: var(--line-dk); transform: translateY(-3px); }
.btn-cta-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.7); color: #fff; font-weight: 600;
  padding: 13px 28px; border-radius: 50px; font-size: 0.93rem; transition: all 0.25s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ============================================
   フッター（明るい・清潔感）
   ============================================ */
#footer {
  background: #fff;
  border-top: 4px solid var(--primary);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e0eaf8;
}

.footer-brand .footer-logo { height: 44px; width: auto; margin-bottom: 14px; }
.footer-brand .brand-name  { font-size: 1.15rem; font-weight: 900; color: var(--primary); margin-bottom: 3px; }
.footer-brand .company-name{ font-size: 0.79rem; color: var(--text-light); margin-bottom: 12px; }
.footer-brand p { font-size: 0.83rem; line-height: 1.85; margin-bottom: 18px; color: var(--text-light); }
.footer-contact-info { display: flex; flex-direction: column; gap: 4px; }
.footer-contact-info .tel { font-size: 1.45rem; font-weight: 900; color: var(--primary); letter-spacing: -0.02em; }
.footer-contact-info .tel-label { font-size: 0.75rem; color: var(--text-light); }

.footer-col h4 {
  font-size: 0.87rem; font-weight: 700; color: var(--primary);
  margin-bottom: 14px; padding-bottom: 8px;
  border-bottom: 2px solid var(--sky);
  display: inline-block;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.footer-col ul li a {
  font-size: 0.83rem; color: var(--text-light);
  transition: color 0.2s; display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: "›"; color: var(--sky); font-weight: 700; }
.footer-col ul li a:hover { color: var(--primary); }

/* フッター 下部バー */
.footer-bottom {
  background: var(--primary);
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.7);
  max-width: 100%;
}
.footer-bottom .container-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }

/* フッターSNS・バッジ帯 */
.footer-mid {
  background: var(--bg-gray);
  padding: 22px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e0eaf8;
}
.footer-mid-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.footer-badge {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 14px;
  font-size: 0.8rem; font-weight: 600; color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,64,152,0.07);
}
.footer-badge .icon { font-size: 1.2rem; }
.footer-line-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--line-green); border-radius: 10px;
  padding: 10px 18px; color: #fff; font-weight: 700; font-size: 0.87rem;
}
.footer-line-box img { width: 32px; height: 32px; }

/* ============================================
   対応エリア（リデザイン）
   ============================================ */
#area { padding: 80px 0; background: #fff; }

/* ============================================
   対応エリア（リニューアル）
   ============================================ */
.area-pattern-wrap {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px;
  align-items: center; margin-bottom: 28px;
}
.area-pattern-card {
  background: #fff; border-radius: 18px; padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(0,64,152,0.10); border: 2px solid var(--border);
  transition: box-shadow 0.2s;
}
.area-pattern-card:hover { box-shadow: 0 8px 32px rgba(0,64,152,0.16); }
.area-pattern-from { border-top: 4px solid var(--sky); }
.area-pattern-to   { border-top: 4px solid var(--line-green); }
.area-pattern-label {
  font-size: 0.7rem; font-weight: 800; color: var(--text-light);
  letter-spacing: 0.08em; margin-bottom: 10px;
}
.area-pattern-title {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.area-kanto-badge {
  background: var(--primary); color: #fff;
  font-size: 1rem; font-weight: 900;
  padding: 6px 16px; border-radius: 30px;
}
.area-pattern-to .area-kanto-badge {
  background: var(--line-green);
}
.area-arrow {
  font-size: 1.4rem; font-weight: 900; color: var(--text-light);
}
.area-dest {
  font-size: 0.9rem; font-weight: 700; color: var(--text);
}
.area-pattern-card p {
  font-size: 0.83rem; color: var(--text-light); line-height: 1.7;
  margin-bottom: 14px;
}
.area-pref-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.chip {
  background: var(--bg-gray); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 4px 12px;
  font-size: 0.76rem; font-weight: 600; color: var(--text);
}
.chip.main {
  background: #e8f4ff; border-color: var(--sky); color: var(--primary);
}
.area-pattern-divider {
  font-size: 0.85rem; font-weight: 800; color: var(--text-light);
  text-align: center; white-space: nowrap;
  background: var(--bg-gray); border-radius: 30px; padding: 8px 14px;
}

/* 拠点情報バー */
.area-base-info {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: linear-gradient(135deg, #f0f6ff, #e8f0fb);
  border-radius: 14px; padding: 18px 22px;
  border-left: 4px solid var(--primary);
}
.area-base-icon { font-size: 1.8rem; flex-shrink: 0; }
.area-base-icon-img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.area-base-detail { flex: 1; font-size: 0.85rem; color: var(--text); line-height: 1.8; }
.area-base-name { font-weight: 800; color: var(--primary); font-size: 0.92rem; }
.area-base-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--line-green), #04a84f);
  color: #fff; font-weight: 700; font-size: 0.85rem;
  padding: 10px 20px; border-radius: 30px;
  box-shadow: 0 4px 14px rgba(6,199,85,0.35);
  white-space: nowrap; transition: all 0.2s;
}
.area-base-btn:hover { opacity: 0.88; transform: translateY(-1px); color: #fff; }

/* 古いタブ・グリッドCSS（後方互換のため残す） */
.area-address-row {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.84rem; color: var(--text); margin-bottom: 7px;
}
.area-address-row .label { font-weight: 700; color: var(--primary); flex-shrink: 0; min-width: 40px; }

/* ============================================
   荷物リスト（チェックリスト）CTA バナー
   ============================================ */
.checklist-banner {
  background: linear-gradient(135deg, #e8f4ff 0%, #f0f8ff 100%);
  border: 2px solid var(--sky);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex; align-items: center; gap: 32px;
  margin: 60px auto; max-width: 900px;
}
.checklist-banner-icon { font-size: 4rem; flex-shrink: 0; }
.checklist-banner-text h3 { font-size: 1.3rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.checklist-banner-text p  { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.checklist-banner .btn-primary { font-size: 0.95rem; padding: 13px 28px; }

/* ============================================
   ページヒーロー（内部ページ）
   ============================================ */
.page-hero {
  margin-top: 96px;
  background: linear-gradient(135deg, #1a90e8 0%, #00bfff 100%);
  padding: 60px 0; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero h1 { position: relative; font-size: 2.1rem; font-weight: 900; color: #fff; margin-bottom: 8px; }
.page-hero p   { position: relative; color: rgba(255,255,255,0.8); font-size: 0.93rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 14px; font-size: 0.78rem; color: rgba(255,255,255,0.45); position: relative; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: #fff; }

/* ============================================
   会社概要テーブル
   ============================================ */
.company-table { width: 100%; border-collapse: collapse; font-size: 0.91rem; }
.company-table th, .company-table td { padding: 15px 20px; border-bottom: 1px solid var(--border); text-align: left; }
.company-table th { width: 220px; background: #f0f6ff; font-weight: 600; color: var(--primary); font-size: 0.87rem; }
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }

.office-photos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto;
}
.office-photo-item img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: 10px; box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.office-photo-item img:hover { transform: scale(1.02); }
.office-photo-item p {
  text-align: center; font-size: 0.83rem; color: var(--text-light);
  margin-top: 8px; font-weight: 600;
}
@media (max-width: 640px) {
  .office-photos-grid { grid-template-columns: 1fr; }
}

/* ============================================
   お問い合わせ
   ============================================ */
.required-badge { background: var(--primary); color: #fff; font-size: 0.67rem; padding: 2px 7px; border-radius: 3px; }
.optional-badge { background: #aaa; color: #fff; font-size: 0.67rem; padding: 2px 7px; border-radius: 3px; }

/* ============================================
   モバイルナビ
   ============================================ */
.mobile-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.55); z-index: 2000; }
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  position: absolute; top: 0; right: 0; width: 280px; height: 100%;
  background: #fff; padding: 80px 30px 30px;
  display: flex; flex-direction: column; gap: 4px; overflow-y: auto;
}
.mobile-nav-inner a { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); font-weight: 600; color: var(--primary); font-size: 1rem; }
.mobile-nav-close { position: absolute; top: 20px; right: 20px; font-size: 1.5rem; cursor: pointer; color: var(--text); background: none; border: none; }

/* ============================================
   スクロールトップ
   ============================================ */
.scroll-top {
  position: fixed; bottom: 100px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,64,152,0.4);
  opacity: 0; transform: translateY(20px); transition: all 0.3s; z-index: 890; border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-lt); transform: translateY(-3px); }

/* ============================================
   アニメーション
   ============================================ */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* モバイル固定CTAバー デフォルト非表示（768px以下で上書き） */
.mobile-cta-bar { display: none; }

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 1024px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-top { display: none; }
  nav { display: none; }
  .hamburger { display: flex; }
  #hero { padding: 40px 0; min-height: auto; }

  /* ヒーロー：スマホではフォームを上・テキストを下に */
  .hero-content {
    grid-template-columns: 1fr;
    padding: 80px 16px 30px; /* 上部バナー分 + 左右余白 */
    gap: 24px;
    width: 100%; /* flex子要素がオーバーフローしないよう固定 */
  }
  /* フォームカードを先に表示・オーバーフロー防止 */
  .hero-form-card { order: -1; width: 100%; min-width: 0; padding: 24px 20px; }
  .hero-cta-card { padding: 20px 16px; }
  .hero-company-banner { display: block; } /* モバイルで表示 */
  .hero-company-heading { display: none; } /* モバイルで非表示 */
  .hero-text h1 { font-size: 1.7rem; }
  .hero-text p { font-size: 0.88rem; }
  .hero-buttons { gap: 10px; }
  .hero-buttons a { font-size: 0.88rem; padding: 12px 18px; }

  /* stats グリッド2列 */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { border-right: 1px solid rgba(255,255,255,0.2); border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* character */
  .character-inner { flex-direction: column; text-align: center; }

  /* services グリッド1列 */
  .services-grid { grid-template-columns: 1fr; }

  /* reasons グリッド2列 */
  .reasons-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .reason-item { padding: 20px 14px; }

  /* fleet グリッド1列 */
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-stats { grid-template-columns: repeat(2, 1fr); }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .flow-step::after { display: none; }
  .area-wrap { grid-template-columns: 1fr; }
  .area-pattern-wrap { grid-template-columns: 1fr; }
  .area-pattern-divider { padding: 6px 20px; text-align: center; }
  .area-base-info { flex-direction: column; text-align: center; }
  .area-base-btn { width: 100%; justify-content: center; }
  .line-card-wrap { flex-direction: column; }
  .line-step-flow { gap: 6px; }
  .line-step { min-width: 72px; padding: 10px 10px; }
  .step-text { font-size: 0.7rem; }
  .line-cta-buttons { flex-direction: column; align-items: center; }
  .line-btn-checklist, .line-btn-direct { width: 100%; max-width: 340px; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* section padding 縮小 */
  section { padding: 40px 0; }
  .section-title { font-size: 1.5rem; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .line-float { bottom: 86px; right: 16px; }

  /* hero steps */
  .hero-steps { gap: 4px; }
  .hero-step { min-width: 62px; padding: 10px 8px; }
  .hero-step-icon { font-size: 1.25rem; }
  .hero-step-label { font-size: 0.68rem; }

  /* testimonials summary */
  .testimonials-summary { flex-direction: column; gap: 20px; padding: 20px; }
  .ts-bar-row > span:first-child { min-width: 75px; }

  /* モバイル固定CTAバー */
  .mobile-cta-bar {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 950; background: #fff;
    box-shadow: 0 -3px 16px rgba(0,0,0,0.15);
    padding: 8px 10px;
    gap: 6px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
  .mobile-cta-bar a {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2px; border-radius: 10px; font-weight: 700;
    font-size: 0.72rem; padding: 9px 4px;
    text-align: center; line-height: 1.3; white-space: nowrap;
  }
  .mobile-cta-bar .mcta-icon {
    font-size: 1.1rem; line-height: 1;
  }
  .mobile-cta-bar .mcta-tel {
    background: var(--primary); color: #fff;
  }
  .mobile-cta-bar .mcta-line {
    background: var(--line-green); color: #fff;
  }
  .mobile-cta-bar .mcta-form {
    background: linear-gradient(135deg, #06C755, #04a84f); color: #fff;
    flex: 1.4; /* 見積もりボタンを少し広く */
  }
  /* フローティングLINEボタンはCTAバーと重複するので非表示 */
  .line-float { display: none; }
  /* 固定バー分のスペース */
  body { padding-bottom: 68px; }
}

/* ============================================
   スマホ極小（480px以下）
   ============================================ */
@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.45rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   入力フィールド共通（iOSズーム防止 + 最低タップ高さ）
   ============================================ */
input, select, textarea {
  font-size: 16px;
  min-height: 48px;
}

/* モバイル固定CTAバー（デフォルト非表示 → メディアクエリで上書き済み） */

/* ============================================
   ヒーローフォームカード追加スタイル
   ============================================ */
.hero-form-card .req {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
}

.hero-form-checklist-banner {
  background: #e0f7ff;
  border: 1.5px solid var(--sky);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 14px 0 10px;
  font-size: 0.82rem;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-form-checklist-link {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  background: #fff;
  border: 1.5px solid var(--sky);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
  transition: background 0.2s;
  align-self: flex-start;
}
.hero-form-checklist-link:hover {
  background: var(--sky);
  color: #fff;
}

.btn-form-hero {
  font-size: 1.05rem;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,64,152,0.3);
  letter-spacing: 0.02em;
}

.hero-success-msg {
  background: #e6f9ee;
  border: 2px solid #2ecc71;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #1a7a3c;
  margin-top: 10px;
  line-height: 1.6;
}

/* ============================================
   ヒーロー CTAカード
   ============================================ */
.hero-cta-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(0,64,152,0.18);
  text-align: center;
  position: relative;
  border: 2px solid #e8f5e9;
}
/* LINEおすすめバッジ */
.hero-cta-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--line-green), #04a84f);
  color: #fff; font-size: 0.75rem; font-weight: 800;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.hero-cta-card .hero-cta-icon {
  font-size: 2.6rem; margin-bottom: 8px;
}
.hero-cta-card h3 {
  font-size: 1.3rem; font-weight: 900;
  color: var(--primary); margin-bottom: 12px; line-height: 1.35;
}
/* ①→②→③ フロー */
.hero-cta-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; flex-wrap: wrap; margin-bottom: 16px;
}
.hero-cta-flow span {
  font-size: 0.78rem; font-weight: 700; color: #fff;
  background: var(--primary); border-radius: 20px; padding: 4px 10px;
}
.hero-cta-flow .arrow {
  font-size: 0.8rem; font-weight: 900; color: var(--text-light);
  background: none; padding: 0;
}
.hero-cta-points {
  text-align: left; margin: 0 auto 20px;
  display: inline-block;
}
.hero-cta-points li {
  font-size: 0.88rem; color: var(--text);
  padding: 3px 0; font-weight: 600;
}
/* ボタン: LINEグリーン */
.btn-cta-checklist {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%;
  background: linear-gradient(135deg, var(--line-green), #04a84f);
  color: #fff; font-weight: 800; font-size: 1.05rem;
  padding: 16px 20px; border-radius: 12px;
  text-align: center; letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(6,199,85,0.45);
  transition: all 0.2s; margin-bottom: 14px;
}
.btn-cta-checklist:hover {
  background: linear-gradient(135deg, #04a84f, #038a40);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(6,199,85,0.55);
  color: #fff;
}
.hero-cta-sub {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
}
.hero-cta-sub a {
  font-size: 0.82rem; font-weight: 700;
  color: var(--primary); display: flex;
  align-items: center; gap: 4px;
  text-decoration: underline;
}
.hero-cta-sub a:hover { color: var(--sky); }

/* ヒーロー 3ステップビジュアル */
.hero-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin: 16px 0 20px;
}
.hero-step {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  background: #f4f8ff; border-radius: 12px; padding: 12px 14px;
  border: 2px solid var(--border); min-width: 72px; position: relative;
}
.hero-step-done {
  background: linear-gradient(135deg, #e8fff2, #d4f7e4);
  border-color: #06C755;
}
.hero-step-num {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: 0.65rem; font-weight: 800;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-step-done .hero-step-num { background: var(--line-green); }
.hero-step-icon {
  font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  height: 28px;
}
.hero-step-label {
  font-size: 0.72rem; font-weight: 700; color: var(--primary);
  text-align: center; line-height: 1.35;
}
.hero-step-done .hero-step-label { color: #04913f; }
.hero-step-arrow {
  font-size: 1.5rem; color: var(--text-light); font-weight: 900; line-height: 1;
}
