/* ============================================================
   換気生活 愛知県特化LP - aichi.css
   ============================================================ */

:root {
  --aichi-blue:   #1a6fc4;
  --aichi-blue-d: #0d4f9a;
  --aichi-orange: #e85c0d;
  --aichi-red:    #d32f2f;
  --aichi-bg:     #f5f8fd;
  --aichi-bg2:    #eef3fb;
  --text-main:    #1a1a1a;
  --text-sub:     #555;
  --border:       #d0dce8;
  --white:        #fff;
  --shadow:       0 4px 16px rgba(0,0,0,.10);
  --shadow-sm:    0 2px 8px rgba(0,0,0,.07);
}

/* ---------- 共通 ---------- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--aichi-blue);
  background: var(--aichi-bg2);
  border: 1px solid var(--aichi-blue);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.section-heading-aichi {
  text-align: center;
  margin-bottom: 40px;
}
.section-heading-aichi h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text-main);
  margin: 8px 0 12px;
  line-height: 1.4;
}
.section-heading-aichi h2 strong { color: var(--aichi-blue); }
.section-heading-aichi p {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.7;
}
.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   FIRST VIEW
   ============================================================ */
.fv-aichi {
  background: linear-gradient(135deg, #0d4f9a 0%, #1a6fc4 50%, #2196f3 100%);
  padding: 30px 20px 30px;
  display: flex;
  align-items: stretch;
  gap: 30px;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}
.fv-left {
  flex: 1 1 55%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 600px;
}
.fv-region-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  width: fit-content;
}
.fv-region-badge::before { content: '📍'; margin-right: 5px; }
.fv-left h1 {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.35;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
  margin: 0;
}
.fv-h1-accent { color: #ffe082; font-style: normal; }
.fv-sub {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.9);
  margin: 0;
}
.fv-symptoms { display: flex; flex-wrap: wrap; gap: 6px; }
.fv-symptoms span {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--white);
  white-space: nowrap;
}
.fv-cta-wrap { display: flex; gap: 12px; flex-wrap: wrap; }
.fv-btn-mail, .fv-btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 20px;
  transition: transform .15s, box-shadow .15s;
  min-width: 200px;
}
.fv-btn-mail:hover, .fv-btn-tel:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.fv-btn-mail {
  background: var(--aichi-orange);
  color: var(--white);
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(232,92,13,.5);
}
.fv-btn-tel {
  background: var(--white);
  color: var(--aichi-blue-d);
  font-size: 18px;
  border: 2px solid rgba(255,255,255,.6);
}
.fv-btn-tel .tel-hours {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-sub);
  margin-top: 2px;
}
.fv-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.fv-badges .badge {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 11px;
  color: rgba(255,255,255,.9);
  text-align: center;
  line-height: 1.4;
}
.fv-badges .badge strong {
  display: block;
  font-size: 14px;
  color: #ffe082;
  font-weight: 800;
}
.fv-right {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.fv-category-grid {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  padding: 16px;
}
.fv-category-grid h3 {
  color: rgba(255,255,255,.85);
  font-size: 12px;
  letter-spacing: .1em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.fv-category-grid .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.fv-category-grid .grid-item {
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}
.fv-category-grid .icon { font-size: 22px; }
.fv-category-grid .name { font-size: 12px; font-weight: 700; color: var(--white); }
.fv-category-grid .symptom { font-size: 10px; color: rgba(255,255,255,.75); }
.fv-staff { display: flex; justify-content: center; }
.fv-staff img {
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

/* ============================================================
   症状別セクション
   ============================================================ */
.symptom-section {
  background: var(--aichi-bg);
  padding: 70px 20px;
  text-align: center;
}
.symptom-section .section-title {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text-main);
  margin: 8px 0 10px;
  line-height: 1.4;
}
.symptom-section .section-title strong { color: #d32f2f; }
.symptom-section .section-desc {
  color: var(--text-sub);
  font-size: 14px;
  margin-bottom: 36px;
}
.symptom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.symptom-card {
  background: var(--white);
  border-radius: 12px;
  padding: 18px 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-areas:
    "icon title"
    "desc desc"
    "link link";
  column-gap: 14px;
  row-gap: 8px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text-main);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--aichi-blue);
}
.symptom-card .s-icon { grid-area: icon; display: flex; align-items: center; justify-content: center; margin: 0; }
.symptom-card .s-icon img { width: 48px; height: 48px; object-fit: contain; display: block; }
.symptom-card .s-title { grid-area: title; font-size: 16px; font-weight: 800; color: var(--aichi-blue-d); line-height: 1.3; align-self: center; text-align: left; }
.symptom-card .s-desc { grid-area: desc; font-size: 13px; line-height: 1.7; color: var(--text-sub); }
.symptom-card .s-link { grid-area: link; font-size: 13px; font-weight: 700; color: var(--aichi-orange); }
.symptom-card .s-link::after { content: ' →'; }

/* ============================================================
   価格目安セクション
   ============================================================ */
.price-section { background: var(--white); padding: 70px 20px; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.price-card {
  border: 2px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.price-card .pc-icon {
  background: var(--aichi-bg2);
  text-align: center;
  padding: 20px;
  font-size: 40px;
  border-bottom: 1px solid var(--border);
}
.price-card .pc-photo {
  background: #fff;
  border-bottom: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.price-card .pc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.price-card .pc-body { padding: 16px; }
.price-card .pc-name { font-size: 14px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.price-card .pc-price { font-size: 28px; font-weight: 900; color: #d32f2f; line-height: 1.2; }
.price-card .pc-price span { font-size: 14px; font-weight: 500; color: var(--text-sub); }
.price-card .pc-note { font-size: 12px; color: var(--text-sub); margin-top: 8px; line-height: 1.6; }
.price-cta-box {
  background: linear-gradient(135deg, #0d4f9a, #1a6fc4);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}
.price-cta-box .pct-text p { font-size: 18px; font-weight: 800; margin: 0 0 4px; display: flex; align-items: center; gap: 8px; }
.pct-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}
.pct-ico img { width: 20px; height: 20px; display: block; }
.price-cta-box .pct-text small { font-size: 13px; opacity: .85; }
.pct-btn {
  display: inline-block;
  background: var(--aichi-orange);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.pct-btn:hover { background: #c0460a; transform: translateY(-2px); }

/* ============================================================
   相談手順セクション
   ============================================================ */
.flow-section { background: var(--aichi-bg); padding: 70px 20px; }
/* ===== 流れ：縦タイムライン（STEP丸バッジ＋テキストメイン） ===== */
.flow-steps {
  display: block;
  max-width: 900px;
  margin: 0 auto 50px;
  position: relative;
}
.flow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 20px;
  align-items: start;
  position: relative;
  padding-bottom: 36px;
}
.flow-step:last-child { padding-bottom: 0; }
/* 縦の点線（バッジ中心を通る） */
.flow-step::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -4px;
  width: 2px;
  border-left: 2px dotted #b9c7d6;
}
.flow-step:last-child::before { display: none; }
.flow-step .step-badge {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--aichi-blue);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.flow-step .step-badge .step-label { font-size: 9px; font-weight: 700; letter-spacing: .5px; opacity: .95; }
.flow-step .step-badge .step-no { font-size: 20px; font-weight: 800; margin-top: 2px; }
.flow-step .step-body { padding-top: 4px; text-align: left; }
.flow-step .step-title { font-size: 21px; font-weight: 800; color: #2b3a4a; margin-bottom: 12px; }
.flow-step .step-desc { font-size: 15px; color: var(--text-sub); line-height: 1.85; }
.flow-step .step-desc a { color: var(--aichi-blue); font-weight: 700; text-decoration: none; }
.flow-step .step-desc a:hover { text-decoration: underline; }
.flow-cta-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.flow-cta-card {
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.flow-cta-card.mail { background: var(--aichi-blue-d); color: var(--white); }
.flow-cta-card.tel { background: var(--white); border: 2px solid var(--aichi-blue); color: var(--text-main); }
.flow-cta-card .cta-icon { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; margin: 0 auto 12px; border-radius: 50%; }
.flow-cta-card .cta-icon img { width: 34px; height: 34px; display: block; }
.flow-cta-card.mail .cta-icon { background: rgba(255,255,255,.14); }
.flow-cta-card.tel .cta-icon { background: rgba(26,111,196,.1); }
.flow-cta-card .cta-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.flow-cta-card.mail .cta-title { color: #ffe082; }
.flow-cta-card.tel .cta-title { color: var(--aichi-blue-d); }
.flow-cta-card .cta-desc { font-size: 13px; line-height: 1.7; margin-bottom: 16px; opacity: .9; }
.flow-cta-card .cta-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s;
}
.flow-cta-card .cta-btn:hover { transform: translateY(-2px); }
.flow-cta-card.mail .cta-btn { background: var(--aichi-orange); color: var(--white); }
.flow-cta-card.tel .cta-btn { background: var(--aichi-blue); color: var(--white); }

/* ============================================================
   愛知施工事例セクション
   ============================================================ */
.aichi-works-section { background: var(--white); padding: 70px 20px; }
.aichi-works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.aichi-work-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .15s;
}
.aichi-work-card:hover { box-shadow: var(--shadow); }
.wc-head {
  background: var(--aichi-blue);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.wc-area { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 600; }
.wc-title { font-size: 16px; font-weight: 800; color: var(--white); }
.wc-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.wc-tag {
  display: inline-block;
  background: #fff3e0;
  border: 1px solid #ffb74d;
  color: #e65100;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}
.wc-reason { font-size: 13px; color: var(--text-sub); line-height: 1.7; }
.wc-reaction {
  font-size: 13px;
  color: var(--text-main);
  line-height: 1.7;
  background: var(--aichi-bg);
  border-left: 3px solid var(--aichi-blue);
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  font-style: italic;
}
.unique-strength-box {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--aichi-blue) 0%, var(--aichi-blue-d) 100%);
  border-radius: 14px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(13,79,154,.25);
}
.us-title { font-size: clamp(18px, 2.5vw, 24px); font-weight: 900; color: #ffd54f; margin-bottom: 10px; line-height: 1.4; }
.us-desc { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.95); margin-bottom: 14px; }
.us-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.us-tags span {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
}
.us-cta { flex-shrink: 0; }
.us-cta a {
  display: inline-block;
  background: var(--aichi-orange);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.us-cta a {
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  border: 2px solid rgba(255,255,255,.9);
}
.us-cta a:hover { background: #c0460a; transform: translateY(-2px); }

/* ============================================================
   サービスセクション（対応範囲・Aichiスタイル）
   ============================================================ */
.service-aichi { background: var(--white); padding: 64px 20px; }
.service-aichi .inner { max-width: 1080px; margin: 0 auto; }
.service-cards {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-cards li {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(13,79,154,.10);
  border: 1px solid #e6eef7;
  transition: transform .15s, box-shadow .15s;
}
.service-cards li:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(13,79,154,.18);
}
.service-cards figure { margin: 0; }
.service-cards figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.service-cards figcaption {
  display: block;
  padding: 16px 18px 20px;
  text-align: center;
}
.service-cards .sc-name {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--aichi-blue-d);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.service-cards .sc-name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: var(--aichi-orange);
}
.service-cards .sc-desc {
  display: block;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-sub);
}
@media screen and (max-width: 768px) {
  .service-aichi { padding: 44px 16px; }
  .service-cards {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
  }
  .service-cards figure img { height: 180px; }
  .service-cards .sc-name { font-size: 18px; }
}

/* ============================================================
   MV直下：対応エリア帯（地図）
   ============================================================ */
.area-hero-section { background: var(--white); padding: 40px 20px 10px; }
.area-hero-section .inner { max-width: 1080px; margin: 0 auto; }
.area-hero {
  display: flex; align-items: center; gap: 36px;
  background: linear-gradient(135deg, var(--aichi-bg) 0%, var(--aichi-bg2) 100%);
  border: 1px solid var(--aichi-blue);
  border-radius: 16px;
  padding: 28px 32px;
}
.area-hero-map { flex: 0 0 300px; margin: 0; }
.area-hero-map img { width: 100%; border-radius: 10px; box-shadow: var(--shadow-sm); display: block; }
.area-hero-text { flex: 1; }
.area-hero-label {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .15em;
  color: var(--aichi-blue); margin-bottom: 6px;
}
.area-hero-title { font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: var(--text-main); line-height: 1.3; margin-bottom: 12px; }
.area-hero-title strong { color: var(--aichi-blue); }
.area-hero-speed {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--aichi-blue) 0%, var(--aichi-blue-d) 100%);
  border-radius: 10px; padding: 8px 16px; margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.area-hero-speed-main { font-size: clamp(16px, 2vw, 19px); font-weight: 900; color: #fff; letter-spacing: .02em; }
.area-hero-speed-main strong { color: #ffd54f; font-size: 1.25em; margin: 0 1px; }
.area-hero-speed-sub { font-size: clamp(14px, 1.6vw, 16px); font-weight: 800; color: #fff; }
.area-hero-speed-sub strong { color: #ffd54f; margin: 0 1px; }
.area-hero-desc { font-size: 14px; line-height: 1.8; color: var(--text-sub); margin-bottom: 16px; }
.area-hero-points { display: flex; flex-wrap: wrap; gap: 12px; }
.area-hero-points li {
  display: inline-flex; align-items: center;
  background: var(--white); border: 1px solid var(--aichi-blue);
  color: var(--aichi-blue-d); border-radius: 999px;
  padding: 8px 18px; font-size: 14px; font-weight: 700;
}
.area-hero-points li strong { color: var(--aichi-orange); margin: 0 2px; }

/* ============================================================
   対応エリアセクション
   ============================================================ */
.aichi-area-section { background: var(--aichi-bg); padding: 70px 20px; }
.area-intro { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 40px; }
.area-intro.no-map { display: block; }
.area-map { flex: 0 0 300px; }
.area-map img { width: 100%; border-radius: 10px; box-shadow: var(--shadow-sm); }
.area-text { flex: 1; }
.area-text h3 { font-size: 20px; font-weight: 800; color: var(--aichi-blue-d); margin-bottom: 12px; }
.area-text p { font-size: 14px; line-height: 1.8; color: var(--text-sub); margin-bottom: 10px; }
.area-text small { font-size: 12px; color: #888; }
.area-cities h3 { font-size: 17px; font-weight: 800; color: var(--text-main); margin-bottom: 8px; }
.cities-lead { font-size: 13px; color: var(--text-sub); margin-bottom: 14px; }
.cities-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.city-tag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--text-main);
}
.city-tag.highlight {
  background: var(--aichi-blue);
  border-color: var(--aichi-blue);
  color: var(--white);
  font-weight: 700;
}

/* ============================================================
   FAQセクション
   ============================================================ */
.faq-section { background: var(--white); padding: 70px 20px; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .15s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { border-color: var(--aichi-blue); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  background: var(--white);
  user-select: none;
}
.faq-item.open .faq-q { background: var(--aichi-bg2); }
.q-mark {
  width: 28px;
  height: 28px;
  background: var(--aichi-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.q-text { flex: 1; font-size: 15px; font-weight: 700; color: var(--text-main); line-height: 1.5; }
.q-arrow { font-size: 12px; color: var(--aichi-blue); transition: transform .2s; flex-shrink: 0; }
.faq-item.open .q-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 16px 20px 16px 60px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  background: #fafcff;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   スマホ固定フッターCTA
   ============================================================ */
.sp-fixed-foot-aichi {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 64px;
  box-shadow: 0 -2px 12px rgba(0,0,0,.2);
}
.sp-fixed-foot-aichi a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  padding: 6px 4px;
}
.sp-fixed-foot-aichi .sp-mail { background: var(--aichi-orange); }
.sp-fixed-foot-aichi .sp-tel  { background: var(--aichi-blue-d); }
.sp-fixed-foot-aichi .sp-line { background: #06c755; }
.sp-fixed-foot-aichi .sp-icon  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  line-height: 1;
}
.sp-fixed-foot-aichi .sp-icon img { width: 16px; height: 16px; display: block; }
.sp-fixed-foot-aichi .sp-label { font-size: 12px; font-weight: 800; }
.sp-fixed-foot-aichi .sp-sub   { font-size: 9px; opacity: .9; }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1024px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .symptom-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .fv-aichi { flex-direction: column; padding: 20px 16px 24px; min-height: auto; gap: 20px; }
  .fv-left { max-width: 100%; }
  .fv-left h1 { font-size: 24px; }
  .fv-cta-wrap { flex-direction: column; }
  .fv-btn-mail, .fv-btn-tel { min-width: 100%; }
  .fv-right { flex: none; }
  .fv-staff { display: none; }
  .fv-badges { justify-content: center; }
  .symptom-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .price-cta-box { flex-direction: column; text-align: center; padding: 20px; }
  .price-cta-box .pct-text p { justify-content: center; }
  .flow-steps { max-width: 100%; }
  .flow-step { grid-template-columns: 48px 1fr; column-gap: 14px; padding-bottom: 28px; }
  .flow-step::before { left: 23px; top: 48px; }
  .flow-step .step-badge { width: 48px; height: 48px; }
  .flow-step .step-badge .step-label { font-size: 8px; }
  .flow-step .step-badge .step-no { font-size: 17px; }
  .flow-step .step-title { font-size: 18px; margin-bottom: 8px; }
  .flow-step .step-desc { font-size: 14px; line-height: 1.8; }
  .flow-cta-pair { grid-template-columns: 1fr; }
  .aichi-works-grid { grid-template-columns: 1fr; }
  .unique-strength-box { flex-direction: column; padding: 24px 20px; text-align: center; }
  .us-tags { justify-content: center; }
  .area-intro { flex-direction: column; }
  .area-map { flex: none; width: 100%; }
  .area-hero { flex-direction: column; gap: 20px; padding: 22px 18px; }
  .area-hero-map { flex: none; width: 100%; max-width: 360px; margin: 0 auto; }
  .area-hero-text { text-align: center; }
  .area-hero-speed { display: flex; justify-content: center; width: 100%; }
  .area-hero-points { justify-content: center; }
  .faq-a { padding-left: 20px; }
  .symptom-section, .price-section, .flow-section,
  .aichi-works-section, .aichi-area-section, .faq-section { padding: 48px 16px; }
  main { padding-bottom: 64px; }
  .sp-fixed-foot-aichi { display: flex !important; }
}
@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   既存CSSの上書き（FV内のh1はheaderのh1スタイルを無効化）
   ============================================================ */
.fv-aichi h1 {
  width: auto !important;
  max-height: none !important;
  margin-right: 0 !important;
  font-size: clamp(24px, 3.5vw, 40px) !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.25) !important;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 820px) {
  .fv-aichi h1 { width: auto !important; }
}
@media screen and (max-width: 768px) {
  .fv-aichi h1 {
    width: auto !important;
    font-size: 22px !important;
    margin-right: 0 !important;
  }
}


/* ============================================================
   FIRST VIEW V2（画像メインビジュアル版）
   ============================================================ */
.fv-aichi-v2 {
  background: linear-gradient(180deg, #eaf3fc 0%, #f5f8fd 100%);
  padding: 18px 16px 26px;
  width: 100% !important;
  max-width: 100% !important;
}
/* 視覚的に隠すがSEO/アクセシビリティ用に残すh1 */
.fv-v2-h1 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.fv-v2-mv {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(13,79,154,.18);
  line-height: 0;
}
.fv-v2-mv img {
  width: 100%;
  height: auto;
  display: block;
}
.fv-v2-cta {
  max-width: 1100px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.fv-v2-cta a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: transform .12s, box-shadow .12s;
  position: relative;
}
.fv-v2-cta .fv-btn-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}
.fv-v2-cta .fv-btn-ico img { width: 26px; height: 26px; display: block; }
.fv-v2-cta .fv-btn-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fv-v2-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.24);
}
.fv-v2-cta .btn-main {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}
.fv-v2-cta .btn-sub {
  font-size: 12px;
  font-weight: 600;
  opacity: .95;
}
.fv-v2-cta .fv-btn-mail {
  background: linear-gradient(180deg, #ff8a2b 0%, var(--aichi-orange) 100%);
}
.fv-v2-cta .fv-btn-tel {
  background: linear-gradient(180deg, #2f86d8 0%, var(--aichi-blue-d) 100%);
}
.fv-v2-cta .fv-btn-line {
  background: linear-gradient(180deg, #2bca5a 0%, #06a64a 100%);
}
.fv-v2-cta .fv-btn-mail::after {
  content: "今すぐ";
  position: absolute;
  top: -9px;
  right: 12px;
  background: var(--aichi-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.fv-v2-symptoms {
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.fv-v2-symptoms span {
  background: #fff;
  border: 2px solid var(--aichi-blue);
  border-radius: 30px;
  padding: 14px 26px;
  font-size: 20px;
  font-weight: 800;
  color: var(--aichi-blue-d);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 767px) {
  .fv-aichi-v2 { padding: 12px 12px 20px; }
  .fv-v2-mv { border-radius: 12px; box-shadow: 0 4px 16px rgba(13,79,154,.16); }
  .fv-v2-cta {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }
  .fv-v2-cta a { padding: 14px 14px; flex-direction: row; gap: 10px; justify-content: flex-start; }
  .fv-v2-cta .fv-btn-ico { width: 40px; height: 40px; }
  .fv-v2-cta .fv-btn-ico img { width: 24px; height: 24px; }
  .fv-v2-cta .btn-main { font-size: 17px; }
  .fv-v2-cta .btn-sub { font-size: 11px; }
  .fv-v2-symptoms { gap: 10px; margin-top: 20px; }
  .fv-v2-symptoms span { font-size: 16px; padding: 11px 18px; border-width: 2px; }
}


/* ============================================================
   Google口コミセクション（②）
   ============================================================ */
.aichi-review-section { background: var(--aichi-bg); padding: 70px 20px; }
.aichi-review-section .inner { max-width: 1080px; margin: 0 auto; }

.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 30px;
  max-width: 560px;
  margin: 0 auto 36px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.rs-google { text-align: center; line-height: 1.3; }
.rs-google .g-logo {
  display: block;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 22px;
  background: linear-gradient(90deg,#4285F4 0 25%,#EA4335 25% 50%,#FBBC05 50% 75%,#34A853 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rs-google .g-label { font-size: 12px; color: var(--text-sub); }
.rs-score { font-size: 52px; font-weight: 800; color: #fb9c0c; line-height: 1; }
.rs-stars-wrap { text-align: left; }
.rs-stars { color: #fbbc05; font-size: 24px; letter-spacing: 2px; }
.rs-count { font-size: 13px; color: var(--text-sub); margin-top: 4px; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.rv-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rv-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--aichi-blue);
  color: #fff; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rv-meta { display: flex; flex-direction: column; flex: 1; }
.rv-author { font-weight: 700; font-size: 14px; color: var(--text-main); }
.rv-time { font-size: 11px; color: #999; }
.rv-g {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 1px solid #e0e0e0;
  font-family: Arial, sans-serif; font-weight: 700; font-size: 13px; color: #4285F4;
  display: flex; align-items: center; justify-content: center;
}
.rv-stars { color: #fbbc05; font-size: 16px; letter-spacing: 1px; margin-bottom: 8px; }
.rv-text { font-size: 13px; line-height: 1.8; color: var(--text-sub); }
.review-note { text-align: center; margin-top: 22px; }
.review-note small { color: #999; font-size: 12px; }

/* ============================================================
   施工事例：動的反映カード（③）
   ============================================================ */
.aichi-works-grid.dynamic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.aichi-work-card.linked {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.aichi-work-card.linked:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.wc-photo { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #eee; }
.wc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aichi-work-card.linked .wc-head { padding: 14px 16px 6px; display: flex; flex-direction: column; gap: 6px; }
.aichi-work-card.linked .wc-title { font-size: 15px; font-weight: 700; color: var(--text-main); line-height: 1.5; }
.aichi-work-card.linked .wc-date { font-size: 12px; color: #999; }
.wc-more {
  margin-top: auto;
  padding: 10px 16px 16px;
  font-size: 13px; font-weight: 700; color: var(--aichi-blue);
}

/* ---------- 施工事例「もっと見る」 ---------- */
.aichi-work-card.is-extra { display: none; }
.aichi-works-grid.is-expanded .aichi-work-card.is-extra { display: flex; }
.works-more-wrap { text-align: center; margin-top: 28px; margin-bottom: 56px; }
.works-more-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-width: 240px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--aichi-blue-d);
  border: 2px solid var(--aichi-blue);
  border-radius: 999px;
  font-size: 15px; font-weight: 800;
  cursor: pointer;
  transition: background .15s, color .15s, transform .15s;
}
.works-more-btn:hover { background: var(--aichi-blue); color: var(--white); transform: translateY(-2px); }
.works-more-btn .wmb-arrow { font-size: 11px; transition: transform .2s; }
.works-more-btn[aria-expanded="true"] .wmb-arrow { transform: rotate(180deg); }

/* ---------- レスポンシブ（口コミ・事例） ---------- */
@media (max-width: 900px) {
  .review-grid, .aichi-works-grid.dynamic { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .review-grid, .aichi-works-grid.dynamic { grid-template-columns: 1fr; }
  .review-summary { gap: 14px; padding: 18px; }
  .rs-score { font-size: 42px; }
}


/* ===== ReviewsOnMyWebsite ウィジェット ラッパー ===== */
.aichi-review-section .rw-widget-wrap{
	max-width: 1100px;
	margin: 32px auto 0;
	width: 100%;
}
.aichi-review-section .rw-widget-wrap rw-widget-slider{
	display: block;
	width: 100%;
}
@media screen and (max-width: 767px){
	.aichi-review-section .rw-widget-wrap{
		margin-top: 20px;
	}
}


/* ===== 口コミ フォールバック表示 ===== */
.rw-fallback{ display:none; max-width:1080px; margin:32px auto 0; }
.rw-fb-summary{
	display:flex; align-items:center; justify-content:center; gap:16px;
	margin-bottom:24px; flex-wrap:wrap;
}
.rw-fb-google img{ height:28px; display:block; }
.rw-fb-score{ display:flex; align-items:baseline; gap:8px; }
.rw-fb-num{ font-size:34px; font-weight:900; color:var(--aichi-blue-d); line-height:1; }
.rw-fb-stars{ color:#fbbc04; font-size:20px; letter-spacing:1px; }
.rw-fb-count{ font-size:13px; color:var(--text-sub); }
.rw-fb-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.rw-fb-card{
	background:var(--white); border:1px solid var(--border); border-radius:12px;
	padding:20px 22px; box-shadow:var(--shadow-sm); text-align:left;
}
.rw-fb-card .rw-fb-stars{ font-size:16px; margin-bottom:10px; }
.rw-fb-text{ font-size:13px; line-height:1.8; color:var(--text-main); margin:0 0 12px; }
.rw-fb-name{ font-size:12px; font-weight:700; color:var(--text-sub); margin:0; }
.rw-fb-note{ font-size:11px; color:#999; text-align:center; margin-top:18px; line-height:1.7; }
@media screen and (max-width:767px){
	.rw-fb-cards{ grid-template-columns:1fr; gap:14px; }
}


/* ============================================================
   電話番号・CTAボタンのテキスト化（画像置き換え）
   ============================================================ */

/* ---------- ヘッダー電話ボタン ---------- */
.hdr-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--aichi-blue);
  border-radius: 8px;
  padding: 6px 18px;
  text-decoration: none;
  line-height: 1.2;
  transition: background .2s;
}
.hdr-tel:hover { background: var(--aichi-blue-d); }
.hdr-tel-label {
  font-size: 11px;
  color: #fff;
  font-weight: 700;
}
.hdr-tel-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-tel-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
}
.hdr-tel-ico { font-style: normal; font-size: 18px; }
.hdr-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
  margin-right: 6px;
}
.hdr-ico img { width: 16px; height: 16px; display: block; }

/* ---------- CV-1 / CV-2 内のCTAボタン群 ---------- */
.cv-btns {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}
.cv-btns li { list-style: none; flex: 1 1 200px; max-width: 320px; }
.cv-btns a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 16px;
  text-decoration: none;
  line-height: 1.25;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .15s, filter .15s;
}
.cv-btns a:hover { transform: translateY(-2px); box-shadow: var(--shadow); filter: brightness(1.03); }
.cv-btn-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.cv-btn-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.cv-btn-num {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
}
.cv-btn-num i { font-style: normal; font-size: 20px; }
.cv-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  flex-shrink: 0;
}
.cv-ico img { width: 20px; height: 20px; display: block; }
.cv-btn-main {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cv-btn-main i { font-style: normal; font-size: 18px; }
.cv-btn-tel  { background: var(--aichi-blue); }
.cv-btn-mail { background: var(--aichi-orange); }
.cv-btn-line { background: #06c755; }

@media (max-width: 767px) {
  .hdr-tel { padding: 4px 10px; }
  .hdr-tel-label { font-size: 9px; }
  .hdr-tel-num { font-size: 16px; }
  .hdr-tel-ico { font-size: 14px; }
  /* style.css の .cv-1 ul （49%托2列）を上書きして縦1列・中央寄せに */
  .cv-1 ul.cv-btns { flex-wrap: nowrap; flex-direction: column; gap: 10px; justify-content: center; }
  .cv-1 ul.cv-btns li,
  .cv-1 ul.cv-btns li:first-child { width: 100%; max-width: 100%; flex: 1 1 100%; margin: 0; }
  .cv-btns a { text-align: center; align-items: center; justify-content: center; width: 100%; }
  .cv-btn-label { text-align: center; width: 100%; }
  .cv-btn-row { justify-content: center; }
  .cv-btn-num { font-size: 24px; }
  .cv-btn-main { font-size: 17px; justify-content: center; }
}

/* ============================================================
   下取りキャンペーンバナー（テキスト再現）
   ============================================================ */
.campaign-banner {
  max-width: 760px;
  margin: 28px auto;
  padding: 28px 24px 22px;
  background: linear-gradient(180deg, #fffdf7 0%, #fdf8ec 100%);
  border: 6px solid;
  border-image: linear-gradient(135deg, #e6c66a, #c9a13b, #f0d98a, #c9a13b) 1;
  border-radius: 4px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow);
}
.campaign-chance {
  font-size: 26px;
  font-weight: 800;
  color: #333;
  letter-spacing: .04em;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
.campaign-chance::before,
.campaign-chance::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 3px;
  height: 28px;
  background: #f5c518;
}
.campaign-chance::before { left: -18px; transform: rotate(-20deg); }
.campaign-chance::after  { right: -18px; transform: rotate(20deg); }
.campaign-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 6px 0 14px;
  flex-wrap: wrap;
}
.campaign-badge {
  background: #2b2b2b;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.campaign-amount {
  font-size: 76px;
  font-weight: 800;
  color: var(--aichi-red);
  line-height: 1;
  font-family: "Times New Roman", "Yu Mincho", serif;
}
.campaign-yen {
  font-size: 38px;
  font-weight: 800;
  color: #2b2b2b;
  align-self: flex-end;
  margin-bottom: 6px;
}
.campaign-ribbon {
  display: inline-block;
  background: var(--aichi-red);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  padding: 10px 46px;
  position: relative;
  margin: 6px 0 14px;
  letter-spacing: .03em;
}
.campaign-ribbon::before,
.campaign-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  border: 22px solid var(--aichi-red);
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.campaign-ribbon::before { left: -22px; border-left-color: transparent; }
.campaign-ribbon::after  { right: -22px; border-right-color: transparent; }
.campaign-deadline {
  font-size: 24px;
  font-weight: 700;
  color: #2b2b2b;
}
.campaign-deadline strong { color: var(--aichi-red); }

@media (max-width: 767px) {
  .campaign-banner { margin: 18px 12px; padding: 22px 14px 18px; }
  .campaign-chance { font-size: 20px; }
  .campaign-badge { width: 60px; height: 60px; font-size: 20px; }
  .campaign-amount { font-size: 50px; }
  .campaign-yen { font-size: 26px; }
  .campaign-ribbon { font-size: 17px; padding: 8px 30px; }
  .campaign-ribbon::before, .campaign-ribbon::after { border-width: 17px; }
  .campaign-ribbon::before { left: -17px; }
  .campaign-ribbon::after { right: -17px; }
  .campaign-deadline { font-size: 17px; }
}

/* ---------- ヘッダー メール / LINE テキストボタン ---------- */
.hdr-mail, .hdr-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 6px 16px;
  text-decoration: none;
  line-height: 1.2;
  height: 100%;
  transition: filter .2s, transform .15s;
}
.hdr-mail:hover, .hdr-line:hover { filter: brightness(1.05); transform: translateY(-1px); }
.hdr-mail { background: var(--aichi-orange); }
.hdr-line { background: #06c755; }
.hdr-cta-label { font-size: 10px; color: #fff; font-weight: 700; }
.hdr-cta-main {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hdr-cta-main i { font-style: normal; font-size: 14px; }
.hdr-mail .hdr-ico, .hdr-line .hdr-ico { background: rgba(255,255,255,.22); }

@media (max-width: 767px) {
  .hdr-cta-label { font-size: 8px; }
  .hdr-cta-main { font-size: 11px; }
  .hdr-cta-main i { font-size: 12px; }
  .hdr-mail, .hdr-line { padding: 4px 8px; }
}

/* ============================================================
   スマホ ヘッダーCTAレイアウト最適化（テキストボタン対応・上書き）
   ============================================================ */
@media screen and (max-width: 768px) {
  /* style.css のアイコン前提レイアウトを解除 */
  header {
    height: auto;
    padding-left: 0.6rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  header .wrap {
    flex: 1;
    align-items: center;
    gap: 0.4rem;
  }
  header .wrap > div:first-child { display: none; } /* header-txt画像はSPで非表示 */

  header ul {
    flex: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 4px;
    height: auto;
    align-items: stretch;
  }
  header ul li,
  header ul li:nth-child(1) {
    width: auto;
    min-width: 0;
  }
  header ul li:not(:last-child) { margin-right: 0; }
  header ul li a {
    width: auto;
    height: auto;
  }

  /* テキストボタン本体（モバイル） */
  .hdr-tel, .hdr-mail, .hdr-line {
    width: 100%;
    height: 100%;
    padding: 5px 4px;
    border-radius: 7px;
    box-sizing: border-box;
  }
  .hdr-tel-label {
    font-size: 9px;
    line-height: 1.1;
    white-space: nowrap;
    text-align: center;
  }
  .hdr-tel-num {
    font-size: 13px;
    white-space: nowrap;
    gap: 2px;
    justify-content: center;
  }
  .hdr-tel-ico { font-size: 12px; }

  /* メール・LINEはアイコンのみのコンパクト表示（ラベルは非表示） */
  .hdr-mail, .hdr-line {
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .hdr-cta-label { display: none; }
  .hdr-cta-main {
    font-size: 0;        /* テキスト本体を隠してアイコンのみ表示 */
    gap: 0;
    justify-content: center;
    width: 100%;
  }
  .hdr-cta-main i { font-style: normal; font-size: 24px; line-height: 1; }
  .hdr-mail .hdr-ico, .hdr-line .hdr-ico {
    width: 34px; height: 34px; margin-right: 0;
  }
  .hdr-mail .hdr-ico img, .hdr-line .hdr-ico img { width: 22px; height: 22px; }
}

@media screen and (max-width: 360px) {
  header ul { grid-template-columns: 1.5fr 1fr 1fr; }
  .hdr-tel-num { font-size: 12px; }
  .hdr-tel-label { font-size: 8px; }
}

/* ============================================================
   症状下 CV-2 のCTAボタンをスマホで縦1列・中央寄せに統一
   （style.css の .cv-2 .wrap-2 > ul li{width:49%} を上書き）
   ============================================================ */
@media (max-width: 767px) {
  .cv-2 .wrap-2 > ul.cv-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .cv-2 .wrap-2 > ul.cv-btns li,
  .cv-2 .wrap-2 > ul.cv-btns li:first-child {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
    margin: 0;
  }
  .cv-2 .wrap-2 > ul.cv-btns a {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}
