/* ============================================
   Area Template Custom Styles (V2 Design)
   カラーパレット:
     --st-navy:    #1a2332  (メインダーク)
     --st-charcoal:#2c3e50  (サブダーク)
     --st-gold:    #c8a45c  (アクセント・金)
     --st-light:   #f7f8fa  (背景ライト)
     --st-white:   #ffffff  (ホワイト)
   ============================================ */
:root {
  --st-navy: #1a2332;
  --st-charcoal: #2c3e50;
  --st-gold: #c8a45c;
  --st-light: #f7f8fa;
  --st-white: #ffffff;
  --st-text: #333333;
  --st-text-muted: #6c757d;
  --st-border: #e2e6ea;
}

/* ---------- Body scope ---------- */
.area-page {
  color: var(--st-text);
  line-height: 1.8;
}

/* ---------- Breadcrumb ---------- */
.area-breadcrumb {
  background: var(--st-light);
  padding: 12px 0;
  font-size: 0.82rem;
}
.area-breadcrumb a {
  color: var(--st-text-muted);
  text-decoration: none;
}
.area-breadcrumb a:hover {
  color: var(--st-gold);
}
.area-breadcrumb .separator {
  color: var(--st-text-muted);
  margin: 0 8px;
}
.area-breadcrumb .current {
  color: var(--st-navy);
  font-weight: 500;
}

/* ---------- Hero Section ---------- */
.area-hero {
  background: linear-gradient(135deg, var(--st-navy) 0%, var(--st-charcoal) 100%);
  color: var(--st-white);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.area-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,164,92,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.area-hero .badge-area {
  display: inline-block;
  background: rgba(200,164,92,0.15);
  color: var(--st-gold);
  border: 1px solid rgba(200,164,92,0.3);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.area-hero h1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: center !important;
  color: var(--st-white);
}
.area-hero .hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  line-height: 1.6;
  text-align: center !important;
}
.area-hero .hero-description {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.area-hero .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}
.area-hero .trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}
.area-hero .trust-badge-item i {
  color: var(--st-gold);
  font-size: 0.9rem;
}
/* renewal.css上書き対策: hero内の全テキスト中央 */
.area-hero .text-center {
  text-align: center !important;
}
.area-hero .badge-area {
  margin-left: auto;
  margin-right: auto;
}
/* v2: Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}
.hero-stat-item {
  text-align: center;
}
.hero-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--st-gold);
  line-height: 1.2;
}
.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}
@media (min-width: 768px) {
  .area-hero { padding: 80px 0 70px; }
  .area-hero h1 { font-size: 2rem; }
  .hero-stat-number { font-size: 2.2rem; }
}

/* ---------- Section Common ---------- */
.area-section {
  padding: 50px 0;
}
.area-section.bg-light-custom {
  background: var(--st-light);
}
.area-section-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--st-navy) !important;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
  text-align: center !important;
}
.area-section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--st-gold);
  margin-top: 8px;
  border-radius: 2px;
  margin-left: auto;
  margin-right: auto;
}
.area-section-lead {
  color: var(--st-text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .area-section { padding: 70px 0; }
  .area-section-title { font-size: 1.5rem; }
}

/* ---------- Service Feature Cards ---------- */
.service-feature-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-feature-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.service-feature-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.service-feature-card .icon-wrap.coating { background: rgba(200,164,92,0.12); color: var(--st-gold); }
.service-feature-card .icon-wrap.ppf { background: rgba(26,35,50,0.08); color: var(--st-navy); }
.service-feature-card .icon-wrap.film { background: rgba(44,62,80,0.08); color: var(--st-charcoal); }
.service-feature-card h3 {
  font-size: 1.05rem !important;
  font-weight: 700;
  color: var(--st-navy) !important;
  margin-bottom: 10px;
}
.service-feature-card p {
  font-size: 0.88rem;
  color: var(--st-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
/* v2: Service card feature list */
.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.service-feature-list li {
  font-size: 0.84rem;
  color: var(--st-text);
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.6;
}
.service-feature-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--st-gold);
  font-size: 0.75rem;
  top: 7px;
}
/* v2: Service local note */
.service-local-note {
  font-size: 0.82rem;
  color: var(--st-charcoal);
  background: rgba(200,164,92,0.06);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.service-local-note i {
  color: var(--st-gold);
  margin-right: 6px;
  font-size: 0.78rem;
}
/* v2: Service detail link */
.service-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--st-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
.service-detail-link:hover {
  color: #b8943f;
  text-decoration: none;
}
.service-detail-link i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}
.service-detail-link:hover i {
  transform: translateX(3px);
}
/* v2: Service diff highlight (差別化ポイント) */
.service-diff {
  font-size: 0.82rem !important;
  font-weight: 700;
  color: var(--st-gold) !important;
  background: rgba(200,164,92,0.08);
  border-left: 3px solid var(--st-gold);
  padding: 8px 12px;
  margin-bottom: 12px;
  line-height: 1.5;
}
/* v2: Service sub link (料金・見積もり等) */
.service-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--st-text-muted);
  text-decoration: none;
  margin-left: 16px;
  transition: color 0.2s ease;
}
.service-sub-link:hover {
  color: var(--st-gold);
}
.service-sub-link i {
  font-size: 0.65rem;
}

/* ---------- Access Section ---------- */
.access-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.access-card .access-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200,164,92,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-gold);
  font-size: 0.9rem;
}
.access-card .access-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--st-navy);
  margin-bottom: 4px;
}
.access-card .access-detail {
  font-size: 0.85rem;
  color: var(--st-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.access-note-box {
  background: rgba(200,164,92,0.06);
  border-left: 3px solid var(--st-gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--st-text);
  line-height: 1.8;
  margin-top: 16px;
}
.map-embed-wrapper {
  /* v2: 地図を下揃え (親colにd-flex必要) */
  margin-top: auto;
}
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--st-border);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}
@media (min-width: 768px) {
  .map-embed iframe { height: 400px; }
}

/* ---------- Car Trends & Area Info ---------- */
.info-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
}
.info-card h3 {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: var(--st-navy) !important;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h3 i {
  color: var(--st-gold);
  font-size: 1rem;
}
.info-card p {
  font-size: 0.9rem;
  color: var(--st-text);
  line-height: 1.9;
  margin-bottom: 0;
}
/* 右カラム（概要）をstickyに */
@media (min-width: 992px) {
  .info-card-sticky {
    position: sticky;
    top: 20px;
  }
}
.popular-cars-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.popular-cars-list .car-badge {
  background: var(--st-light);
  border: 1px solid var(--st-border);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--st-charcoal);
  font-weight: 500;
}

/* ---------- Climate / Environment ---------- */
.climate-card {
  background: var(--st-navy);
  color: var(--st-white);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.climate-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200,164,92,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.climate-card h3 {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: var(--st-gold) !important;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.climate-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 0;
  position: relative;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--st-navy);
  position: relative;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  line-height: 1.6;
}
.faq-question .q-label {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--st-gold);
  color: var(--st-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.faq-question .chevron {
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.3s ease;
  color: var(--st-text-muted);
  font-size: 0.8rem;
  padding-top: 4px;
}
.faq-question:not(.collapsed) .chevron {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px 0 66px;
  font-size: 0.88rem;
  color: var(--st-text);
  line-height: 1.9;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.is-open .faq-answer {
  padding-bottom: 18px;
  max-height: 600px;
}
.faq-item.is-open .faq-question .chevron {
  transform: rotate(180deg);
}

/* ---------- Craftsman Note ---------- */
.craftsman-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}
.craftsman-card::before {
  content: "\201c";
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 4rem;
  color: rgba(200,164,92,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.craftsman-card h3 {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: var(--st-navy) !important;
  margin-bottom: 16px;
  padding-left: 0;
}
.craftsman-card p {
  font-size: 0.9rem;
  color: var(--st-text);
  line-height: 1.9;
  margin-bottom: 0;
}
.craftsman-name {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--st-text-muted);
  text-align: right;
}

/* ---------- Nearby Areas ---------- */
.nearby-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--st-navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: block;
  height: 100%;
}
.nearby-card:hover {
  border-color: var(--st-gold);
  box-shadow: 0 4px 16px rgba(200,164,92,0.12);
  color: var(--st-navy);
  text-decoration: none;
}
.nearby-card i {
  color: var(--st-gold);
  font-size: 0.8rem;
  margin-left: 6px;
}
.nearby-card .nearby-time {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--st-text-muted);
  margin-top: 4px;
}

/* ---------- CTA Section ---------- */
.area-cta {
  background: linear-gradient(135deg, var(--st-navy) 0%, var(--st-charcoal) 100%);
  color: var(--st-white);
  padding: 50px 0;
  text-align: center;
}
.area-cta h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--st-white);
}
.area-cta p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.area-cta .cta-buttons,
.area-cta-inline .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.btn-cta-primary {
  background: var(--st-gold);
  color: var(--st-white);
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-cta-primary:hover {
  background: #b8943f;
  color: var(--st-white);
  transform: translateY(-1px);
}
.btn-cta-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--st-white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.18);
  color: var(--st-white);
}
@media (min-width: 768px) {
  .area-cta { padding: 70px 0; }
  .area-cta h2 { font-size: 1.6rem; }
}

/* ---------- Inline CTA ---------- */
.area-cta-inline {
  background: var(--st-light);
  padding: 40px 0;
  text-align: center;
}
.area-cta-inline .cta-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--st-navy);
  margin-bottom: 20px;
}
.area-cta-inline .btn-cta-primary {
  background: var(--st-gold);
  color: var(--st-white);
}
.area-cta-inline .btn-cta-line {
  background: #06c755;
  color: var(--st-white);
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.area-cta-inline .btn-cta-line:hover {
  background: #05b04c;
  color: var(--st-white);
  transform: translateY(-1px);
}

/* ---------- Works Section ---------- */
.works-link-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--st-navy);
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.works-link-card:hover {
  border-color: var(--st-gold);
  box-shadow: 0 4px 16px rgba(200,164,92,0.12);
  color: var(--st-navy);
  text-decoration: none;
}
.works-link-card i {
  color: var(--st-gold);
  margin-left: 6px;
}

/* ---------- Sticky CTA (Mobile) ---------- */
.sticky-cta-mobile {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--st-navy);
  padding: 10px 12px;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.sticky-cta-mobile a {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sticky-cta-mobile .btn-tel {
  background: var(--st-white);
  color: var(--st-navy);
}
.sticky-cta-mobile .btn-line {
  background: #06c755;
  color: var(--st-white);
}
.sticky-cta-mobile .btn-mail {
  background: var(--st-gold);
  color: var(--st-white);
}
@media (min-width: 768px) {
  .sticky-cta-mobile { display: none; }
}

/* ---------- Utility ---------- */
.text-gold { color: var(--st-gold); }
.bg-navy { background: var(--st-navy); }
.mb-bottom-pad { margin-bottom: 80px; }
@media (min-width: 768px) {
  .mb-bottom-pad { margin-bottom: 0; }
}

/* ---------- Override: hide existing fixed bottom on area pages ---------- */
.area-page .phone.fixed-bottom {
  display: none !important;
}

/* ---------- Text alignment: centered blocks, left-wrapped text ---------- */
.area-section .section-header {
  text-align: center;
  margin-bottom: 32px;
}
.area-section .section-header .area-section-lead {
  margin-bottom: 0;
}

/* ============================================
   v2 新規セクション
   ============================================ */

/* ---------- Concern Cards (こんなお悩み) ---------- */
.concern-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.concern-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.concern-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200,164,92,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.concern-card h3 {
  font-size: 1rem !important;
  font-weight: 700;
  color: var(--st-navy) !important;
  margin-bottom: 10px;
  line-height: 1.5;
}
.concern-card p {
  font-size: 0.88rem;
  color: var(--st-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.concern-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.concern-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--st-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
.concern-link:hover {
  color: #b8943f;
}
.concern-link i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}
.concern-link:hover i {
  transform: translateX(3px);
}
.concern-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--st-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.concern-sub-link:hover {
  color: var(--st-gold);
}
.concern-sub-link i {
  font-size: 0.65rem;
}

/* ---------- Pricing Overview (料金の目安) ---------- */
.pricing-overview {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 28px 24px;
}
.pricing-table-mini {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.pricing-table-mini th {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--st-navy);
  padding: 10px 12px;
  border-bottom: 2px solid var(--st-gold);
  text-align: left;
}
.pricing-table-mini td {
  font-size: 0.88rem;
  color: var(--st-text);
  padding: 12px;
  border-bottom: 1px solid var(--st-border);
}
.pricing-table-mini td:nth-child(2) {
  font-weight: 700;
  color: var(--st-navy);
  white-space: nowrap;
}
.pricing-table-mini td:nth-child(3) {
  font-size: 0.82rem;
  color: var(--st-text-muted);
}
.pricing-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.btn-cta-outline {
  background: transparent;
  color: var(--st-navy);
  border: 2px solid var(--st-border);
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-cta-outline:hover {
  border-color: var(--st-gold);
  color: var(--st-gold);
  text-decoration: none;
}
@media (max-width: 575.98px) {
  .pricing-table-mini th:nth-child(3),
  .pricing-table-mini td:nth-child(3) {
    display: none;
  }
}

/* ---------- Climate Action Cards (気候対策) ---------- */
.climate-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 24px 16px;
  text-decoration: none;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.climate-action-card:hover {
  border-color: var(--st-gold);
  box-shadow: 0 4px 16px rgba(200,164,92,0.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.climate-action-card i {
  font-size: 1.4rem;
  color: var(--st-gold);
  margin-bottom: 12px;
}
.climate-action-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--st-navy);
  margin-bottom: 6px;
}
.climate-action-desc {
  font-size: 0.8rem;
  color: var(--st-text-muted);
  line-height: 1.5;
}

/* ---------- Summary Hub (施工を検討中のオーナー様へ) ---------- */
.summary-philosophy {
  text-align: center;
  margin-bottom: 28px;
}
.summary-philosophy p {
  font-size: 0.92rem;
  color: var(--st-charcoal);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  padding: 12px 20px;
  border-top: 1px solid var(--st-border);
  border-bottom: 1px solid var(--st-border);
  display: inline-block;
}
.summary-nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 22px 14px 18px;
  text-decoration: none;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.summary-nav-card:hover {
  border-color: var(--st-gold);
  box-shadow: 0 4px 16px rgba(200,164,92,0.12);
  transform: translateY(-2px);
  text-decoration: none;
}
.summary-nav-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200,164,92,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.summary-nav-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--st-navy);
  margin-bottom: 4px;
  line-height: 1.4;
}
.summary-nav-desc {
  font-size: 0.75rem;
  color: var(--st-text-muted);
  line-height: 1.4;
}

/* ---------- FAQ Link (FAQ回答内リンク) ---------- */
.faq-answer a.faq-link,
.faq-answer a {
  color: var(--st-gold);
  text-decoration: underline;
  text-decoration-color: rgba(200,164,92,0.3);
  text-underline-offset: 2px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.faq-answer a.faq-link:hover,
.faq-answer a:hover {
  color: #b8943f;
  text-decoration-color: #b8943f;
}

/* ---------- Service Card Image ---------- */
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
  width: calc(100% + 3rem);
}
@media (max-width: 767px) {
  .service-card-img {
    height: 150px;
    margin: -1rem -1rem 0.75rem -1rem;
    width: calc(100% + 2rem);
    border-radius: 10px 10px 0 0;
  }
}

/* ---------- Craftsman Photo ---------- */
.craftsman-photo {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .craftsman-photo {
    max-width: 200px;
  }
}

/* ---------- Gallery Thumbnails ---------- */
.gallery-thumb {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.gallery-thumb:hover {
  transform: scale(1.03);
}
.gallery-thumb-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

/* ============================================
   v6 新セクション: 来る価値 + 高速アクセス
   ============================================ */

/* ---------- Worth Section (遠くても来る価値) ---------- */
.worth-warning-box {
  background: #fff9f0;
  border-left: 4px solid #e8a020;
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-bottom: 36px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.worth-warning-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(232,160,32,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e8a020;
  font-size: 1.1rem;
}
.worth-warning-box h3 {
  font-size: 1rem !important;
  font-weight: 700;
  color: var(--st-navy) !important;
  margin-bottom: 8px;
}
.worth-warning-box p {
  font-size: 0.88rem;
  color: var(--st-text);
  line-height: 1.8;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .worth-warning-box {
    flex-direction: column;
    padding: 20px;
    gap: 12px;
  }
}

.worth-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.worth-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.worth-card-header {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.worth-card-header.coating { background: rgba(200,164,92,0.12); color: var(--st-gold); }
.worth-card-header.film    { background: rgba(44,62,80,0.08); color: var(--st-charcoal); }
.worth-card-header.ppf     { background: rgba(26,35,50,0.08); color: var(--st-navy); }
.worth-card h3 {
  font-size: 1.05rem !important;
  font-weight: 700;
  color: var(--st-navy) !important;
  margin-bottom: 10px;
  line-height: 1.5;
}
.worth-card p {
  font-size: 0.88rem;
  color: var(--st-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.worth-card .service-feature-list {
  margin-bottom: 16px;
}
.worth-card .service-detail-link {
  margin-top: auto;
}

/* ---------- Highway Section (高速アクセス) ---------- */
.highway-info-card {
  background: var(--st-white);
  border: 1px solid var(--st-border);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
}
.highway-info-card h3 {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: var(--st-navy) !important;
  margin-bottom: 12px;
}
.highway-info-card p {
  font-size: 0.9rem;
  color: var(--st-text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.highway-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.highway-route-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}
.highway-route-badge i {
  font-size: 0.75rem;
}
.highway-route-badge.nagoya-exp { background: #2563eb; }
.highway-route-badge.tomei      { background: #16a34a; }
.highway-route-badge.isewan     { background: #9333ea; }
@media (max-width: 767px) {
  .highway-routes {
    flex-direction: column;
  }
  .highway-route-badge {
    justify-content: center;
  }
}

.highway-daisya-card {
  background: var(--st-navy);
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  color: var(--st-white);
}
.highway-daisya-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(200,164,92,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.highway-daisya-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(200,164,92,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--st-gold);
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.highway-daisya-card h3 {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: var(--st-gold) !important;
  margin-bottom: 12px;
}
.highway-daisya-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 16px;
  position: relative;
}
.highway-daisya-points {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.highway-daisya-points li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.9);
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.5;
}
.highway-daisya-points li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--st-gold);
  font-size: 0.75rem;
  top: 9px;
}
@media (max-width: 767px) {
  .highway-daisya-card {
    padding: 24px 20px;
  }
}
