/* =========================================
   レスキューGO LP スタイルシート（水色系）
   ========================================= */

/* --- CSS変数 --- */
:root {
  --navy:        #0c4a6e;
  --navy-dark:   #083451;
  --navy-mid:    #0369a1;
  --navy-light:  #0ea5e9;
  --navy-pale:   #e0f2fe;
  --sky-pale:    #f0f9ff;
  --white:       #ffffff;
  --gray-light:  #f0f9ff;
  --gray-mid:    #e0eef8;
  --gray-border: #bae6fd;
  --text-dark:   #0c2340;
  --text-mid:    #3a5a78;
  --text-light:  #5a7fa0;
  --green-line:  #06c755;
  --gold:        #f5a623;
  --font:        'Noto Sans JP', sans-serif;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 12px rgba(12,74,110,0.09);
  --shadow:      0 6px 24px rgba(12,74,110,0.13);
  --shadow-lg:   0 12px 40px rgba(12,74,110,0.20);
  --transition:  0.25s ease;
}

/* --- リセット & ベース --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  line-height: 1.85;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 72px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* --- コンテナ --- */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- セクション共通パディング --- */
.section-pad { padding: 72px 0; }

@media (max-width: 768px) {
  .section-pad { padding: 52px 0; }
}

/* --- 背景色 --- */
.bg-lightgray { background: var(--sky-pale); }

/* --- セクションラベル --- */
.section-label {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--navy-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* --- セクションタイトル --- */
.section-title {
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* --- セクションサブ --- */
.section-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.price-reference-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
  margin-bottom: 8px;
}

/* --- sp-br: スマホのみ改行 --- */
.sp-br { display: none; }
@media (max-width: 600px) { .sp-br { display: block; } }

/* ==================
   ボタン
   ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active { transform: translateY(0); }

/* ヒーロー内ボタン */
.btn-tel {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-tel:hover { background: #ddf2fd; }

.btn-line {
  background: var(--green-line);
  color: var(--white);
  border-color: var(--green-line);
}
.btn-line:hover { background: #05a548; }

/* ソリューション・最終CTA内ボタン */
.btn-tel-outline {
  background: var(--navy-mid);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-tel-outline:hover { background: var(--navy-dark); }

.btn-line-outline {
  background: var(--green-line);
  color: var(--white);
  border-color: var(--green-line);
}
.btn-line-outline:hover { background: #05a548; }

.btn-web {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(255,255,255,0.5);
}
.btn-web:hover { background: var(--navy-pale); }

.btn-lg {
  padding: 18px 32px;
  font-size: 1.05rem;
}

/* ==================
   ヘッダー
   ================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  transition: box-shadow var(--transition);
}

.header-scrolled { box-shadow: var(--shadow); }

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo-icon {
  color: var(--navy-light);
  font-size: 1.15rem;
}

.header-logo-text {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy-light);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background var(--transition), transform var(--transition);
}

.header-tel:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .header-tel span { display: none; }
  .header-tel { padding: 10px 14px; }
}

/* ==================
   ヒーロー
   ================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 40, 75, 0.93) 0%,
    rgba(3, 105, 161, 0.80) 55%,
    rgba(5, 60, 100, 0.72) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
  color: var(--white);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-brand {
  display: inline-block;
  color: #7dd3fc;
  font-size: 1.12em;
}

.hero-lead {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  line-height: 1.95;
  margin-bottom: 36px;
  opacity: 0.9;
}

.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 22px;
}

.hero-note {
  font-size: 0.83rem;
  opacity: 0.75;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

/* ==================
   悩み訴求
   ================== */
.pain { background: var(--white); }

.pain-lead-block {
  text-align: center;
  margin-bottom: 52px;
  padding: 40px 32px;
  background: var(--navy-pale);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--navy-light);
}

@media (max-width: 600px) { .pain-lead-block { padding: 28px 20px; } }

.pain-catch {
  font-size: clamp(1.55rem, 5vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 24px;
}

.pain-lead-text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 2;
}

.worry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 32px;
}

@media (min-width: 600px) { .worry-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .worry-grid { grid-template-columns: repeat(4, 1fr); } }

.worry-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.worry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--navy-light);
  background: var(--sky-pale);
}

.worry-icon {
  font-size: 1.75rem;
  color: var(--navy-light);
  margin-bottom: 10px;
}

.worry-card p {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.worry-card strong {
  color: var(--navy);
  font-weight: 700;
}

/* ==================
   解決提案
   ================== */
.solution {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.solution-title {
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 16px;
}

.solution-brand { color: #7dd3fc; }

.solution-text {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 36px;
}

.solution-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ==================
   選ばれる理由
   ================== */
.reasons { background: var(--sky-pale); }
.reasons .section-title { margin-bottom: 40px; }

.reason-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
  margin-bottom: 28px;
  border: 1px solid var(--gray-border);
}

@media (max-width: 600px) { .reason-block { padding: 24px 18px; } }

.reason-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1.5px solid var(--gray-mid);
}

.reason-num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-title {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 6px;
}

.reason-subtitle {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.reason-text {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 22px;
}

.mt-block { margin-top: 20px; }

/* 画像プレースホルダー */
.img-placeholder {
  width: 100%;
  background: var(--gray-mid);
  border: 2px dashed var(--gray-border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}

.img-placeholder i {
  font-size: 1.8rem;
  opacity: 0.45;
}

.msg-photo-placeholder {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: var(--gray-mid);
  border: 2px dashed var(--gray-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}

.msg-photo-placeholder i {
  font-size: 2rem;
  opacity: 0.45;
}

@media (max-width: 640px) {
  .msg-photo-placeholder {
    width: 120px;
    height: 120px;
  }
}

/* 店舗写真 */
.store-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 22px;
}

.store-photo-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-mid);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
}

.store-photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.store-photo-card:hover img { transform: scale(1.04); }

@media (max-width: 480px) { .store-photo-card img { height: 200px; } }

/* マップエリア */
.map-embed-wrap {
  margin-top: 4px;
}

.map-address {
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.map-address i {
  color: var(--navy-light);
}


.map-embed-wrap iframe {
  width: 100%;
  height: 350px;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 600px) {
  .map-embed-wrap iframe {
    height: 260px;
  }
}

.map-placeholder {
  background: var(--sky-pale);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.map-icon {
  font-size: 2rem;
  color: var(--navy-light);
  margin-bottom: 8px;
}

.map-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.map-sub {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-light);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}

.map-link:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

/* 声の引用ブロック */
.voice-block {
  background: var(--navy-pale);
  border-left: 4px solid var(--navy-light);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.voice-item {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.6;
}

/* 口コミ評価 */
.rating-summary {
  background: var(--navy-pale);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 1px solid var(--gray-border);
}

.rating-score-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-score {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.rating-stars {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.rating-label {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Googleレビューカード */
.review-grid {
  display: grid;
  gap: 13px;
}

@media (min-width: 640px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.review-stars {
  color: var(--gold);
  font-size: 0.72rem;
}

.review-google-icon {
  margin-left: auto;
  color: #4285f4;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.85;
}

/* 作業前見積リスト */
.estimate-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-bottom: 20px;
}

@media (max-width: 480px) { .estimate-list { grid-template-columns: 1fr; } }

.estimate-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy-pale);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--gray-border);
}

.estimate-item i {
  color: var(--navy-light);
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ==================
   料金カード
   ================== */
.price { background: var(--white); }

.price-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.price-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-border);
  overflow: hidden;
}

@media (min-width: 760px) {
  .price-card {
    grid-template-columns: 80px 180px 1fr 180px;
    grid-template-rows: 1fr;
    align-items: center;
  }
}

/* アイコン */
.pc-icon {
  background: var(--sky-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy-mid);
  padding: 20px 0;
  grid-row: 1 / 3;
}
@media (min-width: 760px) {
  .pc-icon { grid-row: 1; padding: 24px 0; font-size: 1.8rem; }
}
.pc-icon--blue  { color: #2563eb; background: #eff6ff; }
.pc-icon--cyan  { color: #0891b2; background: #ecfeff; }
.pc-icon--gray  { color: #475569; background: #f1f5f9; }
.pc-icon--navy  { color: var(--navy); background: var(--navy-pale); }
.pc-icon--brown { color: #92400e; background: #fef3c7; }
.pc-icon--steel { color: #334155; background: #f1f5f9; }

/* サービス情報 */
.pc-info {
  padding: 16px 14px 8px;
  border-bottom: 1px solid var(--gray-border);
}
@media (min-width: 760px) {
  .pc-info { padding: 20px 18px; border-bottom: none; border-right: 1px solid var(--gray-border); }
}

.pc-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 4px;
}
.pc-name small { font-size: 0.82rem; font-weight: 600; color: var(--text-mid); }

.pc-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* 内訳 */
.pc-breakdown {
  grid-column: 1 / 3;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  padding: 10px 10px;
  background: var(--sky-pale);
  border-top: 1px solid var(--gray-border);
  overflow: hidden;
}
@media (min-width: 760px) {
  .pc-breakdown {
    grid-column: auto;
    flex-wrap: nowrap;
    padding: 0 16px;
    background: transparent;
    border-top: none;
    border-right: 1px solid var(--gray-border);
    justify-content: center;
    gap: 6px;
  }
}

.pc-fee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.pc-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 20px;
  white-space: nowrap;
}
.pc-badge--blue   { background: #2563eb; color: #fff; }
.pc-badge--green  { background: #16a34a; color: #fff; }
.pc-badge--orange { background: #ea580c; color: #fff; }

.pc-amount {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}
.pc-tax { font-size: 0.65rem; font-weight: 400; color: var(--text-light); }

@media (min-width: 760px) {
  .pc-badge { font-size: 0.65rem; padding: 2px 7px; }
  .pc-amount { font-size: 0.88rem; }
  .pc-tax { font-size: 0.7rem; }
}
.pc-amount--quote { font-size: 0.78rem; color: var(--text-mid); }

.pc-sign {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-mid);
  flex-shrink: 0;
}

/* 合計 */
.pc-total {
  grid-column: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 14px 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
}
@media (min-width: 760px) {
  .pc-total { grid-column: auto; padding: 20px 16px; }
}

.pc-total-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  margin-bottom: 2px;
}

.pc-total-amount {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  font-weight: 900;
  color: #fde047;
  line-height: 1.2;
}
.pc-total-amount--quote {
  font-size: clamp(0.95rem, 3vw, 1.15rem);
  color: #fde047;
}

.pc-total-note {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* 注記 */
.price-disclaimer {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 16px 0 44px;
  padding: 12px 16px;
  background: var(--sky-pale);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--navy-light);
}

/* 3つの安心ポイント */
.price-features {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .price-features { grid-template-columns: repeat(3, 1fr); } }

.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-border);
}

.pf-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fde047, #facc15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--navy);
  flex-shrink: 0;
}
.pf-icon--blue { background: linear-gradient(135deg, #bfdbfe, #93c5fd); color: #1d4ed8; }
.pf-icon--navy { background: linear-gradient(135deg, var(--navy-mid), var(--navy)); color: #fff; }

.pf-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.pf-title strong { color: var(--navy-mid); }

.pf-text {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ==================
   修理事例
   ================== */
.cases { background: var(--sky-pale); }

.case-grid {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

@media (min-width: 640px) { .case-grid { grid-template-columns: repeat(3, 1fr); } }

.case-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1.5px solid var(--gray-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.case-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.case-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-card:hover .case-img-wrap img { transform: scale(1.05); }

.case-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy-light);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}

.case-body { padding: 20px; }

.case-symptom {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.case-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.case-text {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 14px;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-pale);
  color: var(--navy-mid);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 50px;
  border: 1px solid var(--gray-border);
}

/* ==================
   修理の流れ
   ================== */
.flow { background: var(--white); }

.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 40px auto 0;
}

.flow-step {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition), background var(--transition);
}

.flow-step:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
  border-color: var(--navy-light);
  background: var(--sky-pale);
}

.step-num-wrap {
  flex-shrink: 0;
  text-align: center;
  min-width: 44px;
}

.step-num-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--navy-light);
  letter-spacing: 0.12em;
  line-height: 1;
}

.step-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
}

.step-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-light);
  font-size: 1.05rem;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.flow-arrow {
  color: var(--navy-light);
  font-size: 1rem;
  padding: 5px 0;
  opacity: 0.5;
}

/* ==================
   代表メッセージ
   ================== */
.message { background: var(--sky-pale); }

.message-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 40px;
  margin-top: 40px;
  border: 1px solid var(--gray-border);
}

@media (max-width: 640px) {
  .message-block {
    flex-direction: column;
    padding: 28px 20px;
    align-items: center;
    text-align: center;
  }
}

.message-photo-wrap {
  flex-shrink: 0;
  text-align: center;
}

.message-photo {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--navy-pale);
  box-shadow: var(--shadow);
}

@media (max-width: 640px) { .message-photo { width: 120px; height: 120px; } }

.message-photo-label {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 600;
}

.message-headline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-mid);
}

.message-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 16px;
}

.message-list {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 640px) { .message-list { align-items: center; } }

.message-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.message-list li i { color: var(--navy-light); font-size: 0.88rem; }

/* ==================
   FAQ
   ================== */
.faq { background: var(--white); }

.faq-list {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item.faq-open {
  box-shadow: var(--shadow);
  border-color: var(--navy-light);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: background var(--transition);
}

.faq-q:hover { background: var(--sky-pale); }

.faq-q-mark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-q-text {
  flex: 1;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--navy-light);
  font-size: 0.82rem;
  transition: transform 0.3s ease;
}

.faq-open .faq-chevron { transform: rotate(180deg); }

/* FAQ回答：デフォルト非表示、is-openで表示 */
.faq-a {
  display: none;
  gap: 13px;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--gray-mid);
  background: var(--navy-pale);
}

.faq-a.is-open {
  display: flex;
  animation: slideDown 0.22s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-a-mark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-a p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.9;
  padding-top: 4px;
}

/* ==================
   対応エリア（新デザイン）
   ================== */
.area { background: var(--sky-pale); }

/* 共通カード */
.area-new-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid var(--gray-border);
}
@media (max-width: 600px) { .area-new-card { padding: 20px 16px; } }

/* ── Card 1: ネットワーク ── */
.area-new-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .area-new-top { grid-template-columns: 1fr 220px; align-items: start; }
}

.area-new-tag {
  display: inline-block;
  background: var(--navy-mid);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.area-new-title {
  font-size: clamp(1.1rem, 3.5vw, 1.45rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.55;
  margin-bottom: 16px;
}

.area-kensyu-img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 24px;
  border-radius: var(--radius);
}

.area-new-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.85;
}

.area-new-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.area-new-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.area-shield-badge {
  position: absolute;
  bottom: -12px;
  right: -8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 12px rgba(3,105,161,0.4);
  border: 2px solid rgba(255,255,255,0.5);
}
.area-shield-badge i { font-size: 1.1rem; margin-bottom: 1px; }

/* 4つの特徴 */
.area-new-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-border);
}
@media (min-width: 640px) { .area-new-feats { grid-template-columns: repeat(4, 1fr); } }

.area-feat-item {
  background: var(--sky-pale);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  border: 1px solid var(--gray-border);
}

.area-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 1rem;
  color: var(--navy-mid);
}

.area-feat-item h4 {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.4;
}

.area-feat-item p {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ── Card 2: 全国対応マップ ── */
.area-map-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 640px) {
  .area-map-card {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .area-map-left { flex: 1; }
  .area-map-right { flex-shrink: 0; width: 230px; }
}

.area-map-left { padding-right: 0; }
@media (min-width: 640px) { .area-map-left { padding-right: 24px; } }

.area-map-title {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 10px;
}

.area-map-sub {
  font-size: 0.86rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.7;
}

.area-map-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-mb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sky-pale);
  border-radius: 50px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--gray-border);
}

.area-mb-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-mid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.area-mb-red { background: #dc2626; }

.area-mb-item span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.area-map-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.area-map-img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* ── 保証バナー ── */
.area-guarantee-strip {
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  border: 1.5px solid #fde047;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.area-gs-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-mid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.area-gs-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

.area-gs-text {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.area-gs-text strong { color: var(--navy-mid); }

.area-footnote {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
}

/* ── エリア一覧カード ── */
.area-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-top: 20px;
  border: 1.5px solid var(--gray-mid);
}

@media (max-width: 600px) {
  .area-card { padding: 20px 16px; }
}

.area-card-main {
  border-color: var(--navy-light);
  border-width: 2px;
  background: var(--navy-pale);
}

.area-pref-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--gray-border);
}

.area-pref-title i {
  color: var(--navy-light);
}

.area-city-block {
  margin-bottom: 16px;
}

.area-city-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.area-cities {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.area-national-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
}

@media (min-width: 640px) {
  .area-national-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 420px) {
  .area-national-grid {
    grid-template-columns: 1fr;
  }
}

.area-national-item {
  padding: 12px 14px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-mid);
}

/* ==================
   最終CTA
   ================== */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.final-cta-title {
  font-size: clamp(1.35rem, 4vw, 1.95rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  line-height: 1.65;
  margin-bottom: 16px;
}

.final-cta-sub {
  text-align: center;
  color: rgba(255,255,255,0.82);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 36px;
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 22px;
}

.final-cta-note {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==================
   フッター
   ================== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 48px 20px 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-logo-icon { color: #7dd3fc; font-size: 1.15rem; }

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
}

.footer-address,
.footer-tel,
.footer-hours {
  font-size: 0.84rem;
  line-height: 1.85;
}

.footer-tel {
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.footer-copy {
  margin-top: 22px;
  font-size: 0.73rem;
  opacity: 0.45;
}

/* ==================
   スマホ下部追従CTA
   ================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  box-shadow: 0 -3px 20px rgba(0,0,0,0.2);
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 11px 6px;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: filter var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.sticky-btn:hover { filter: brightness(0.88); }
.sticky-btn i { font-size: 1.2rem; }

.sticky-tel  { background: var(--navy-mid); }
.sticky-line { background: var(--green-line); }
.sticky-web  { background: var(--navy); }

@media (min-width: 769px) {
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }
}
