/* ============================================
   高砂だるま整骨院 交通事故LP スタイルシート
   高砂市交通事故むち打ち治療.com
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --red-light: #e74c3c;
  --yellow: #f1c40f;
  --green-line: #06c755;
  --green-line-dark: #05a847;
  --white: #ffffff;
  --off-white: #fafaf8;
  --beige: #f5f0e8;
  --beige-dark: #ede5d5;
  --text-dark: #2c2c2c;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e0d8cc;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  padding-bottom: 80px; /* sticky footer space */
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.sp-only { display: none; }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.warning-label { background: #e67e22; }
.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--text-dark);
}
.white-text { color: var(--white); }
.accent-red { color: var(--red); }
.accent-yellow { color: var(--yellow); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.header-clinic-name {
  display: flex;
  flex-direction: column;
}
.clinic-name-main {
  font-size: 16px;
  font-weight: 900;
  color: var(--red);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.clinic-name-sub {
  font-size: 11px;
  color: var(--text-mid);
  font-weight: 500;
}
.header-cta {
  display: flex;
  gap: 10px;
}
.btn-tel-header, .btn-line-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-tel-header {
  background: var(--red);
  color: var(--white);
}
.btn-line-header {
  background: var(--green-line);
  color: var(--white);
}
.btn-tel-header:hover, .btn-line-header:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.btn-icon { font-size: 18px; }
.btn-text small { font-size: 10px; font-weight: 400; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.78) 0%,
    rgba(150,40,27,0.65) 60%,
    rgba(0,0,0,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  color: var(--white);
}
.hero-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-badge {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.hero-badge.accent {
  background: var(--red);
  border-color: var(--red);
}
.hero-title {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-title-accent {
  color: var(--yellow);
  font-size: 1.1em;
}
.hero-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}
.hero-subtitle strong { color: var(--yellow); }

/* Stats */
.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.stat-item {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 14px 20px;
  text-align: center;
  min-width: 120px;
}
.stat-num {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1.1;
}
.stat-num small { font-size: 0.5em; font-weight: 700; }
.stat-zero { font-size: 1.2em; }
.stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  line-height: 1.3;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-tel-hero, .btn-line-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  line-height: 1.4;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.btn-tel-hero {
  background: var(--red);
  color: var(--white);
}
.btn-tel-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,0.5); }
.btn-line-hero {
  background: var(--green-line);
  color: var(--white);
}
.btn-line-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,199,85,0.4); }
.btn-tel-icon, .btn-line-icon { font-size: 24px; }
.btn-tel-hero small, .btn-line-hero small { font-size: 12px; font-weight: 400; opacity: 0.9; }

/* Feature tags */
.hero-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.feature-tag {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

/* ============================================
   URGENT ALERT
   ============================================ */
.urgent-alert {
  background: #c0392b;
  padding: 14px 0;
}
.urgent-text {
  color: var(--white);
  font-size: clamp(13px, 1.5vw, 15px);
  text-align: center;
  line-height: 1.5;
}

/* ============================================
   WORRIES SECTION
   ============================================ */
.worries {
  background: var(--beige);
  padding: 80px 0;
}
.worries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.worry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.worry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.worry-img-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.worry-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.worry-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
}
.worry-text strong { color: var(--red); }

.worries-solution {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  border: 2px solid var(--red);
}
.solution-text {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.5;
}
.solution-text strong { color: var(--red); }
.solution-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-tel-mid, .btn-line-mid {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-tel-mid { background: var(--red); color: var(--white); }
.btn-line-mid { background: var(--green-line); color: var(--white); }
.btn-tel-mid:hover, .btn-line-mid:hover { transform: translateY(-2px); opacity: 0.9; }

/* ============================================
   REASONS SECTION
   ============================================ */
.reasons {
  background: var(--white);
  padding: 80px 0;
}
.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.reason-item {
  position: relative;
}
.reason-number {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 80px;
  font-weight: 900;
  color: rgba(192,57,43,0.08);
  line-height: 1;
  z-index: 0;
  font-style: italic;
}
.reason-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.reason-item-reverse .reason-content {
  grid-template-columns: 1.4fr 1fr;
}
.reason-item-reverse .reason-img-col { order: 2; }
.reason-item-reverse .reason-text-col { order: 1; }

.reason-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.reason-title {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.4;
  color: var(--text-dark);
  border-left: 4px solid var(--red);
  padding-left: 14px;
}
.reason-sub {
  display: block;
  font-size: 0.7em;
  font-weight: 700;
  color: var(--text-mid);
  margin-top: 4px;
}
.reason-sub.accent-red { color: var(--red); }
.reason-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.reason-desc strong { color: var(--text-dark); font-weight: 700; }
.reason-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.r-badge {
  background: var(--beige);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.r-badge.accent {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ============================================
   DANGER SECTION
   ============================================ */
.danger {
  background: linear-gradient(135deg, #2c0a0a 0%, #5a1010 50%, #2c0a0a 100%);
  padding: 80px 0;
}
.danger .section-header { margin-bottom: 40px; }
.danger-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}
.danger-lead {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.danger-list {
  margin-bottom: 28px;
}
.danger-list li {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.danger-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 900;
}
.danger-warning-box {
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.danger-warning-title {
  color: var(--yellow);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 10px;
}
.danger-warning-box p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.7;
}
.danger-warning-box strong { color: var(--yellow); }
.danger-cta-box {
  text-align: center;
}
.danger-cta-text {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
}
.danger-cta-text strong { color: var(--yellow); }
.btn-tel-danger {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(192,57,43,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-tel-danger:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(192,57,43,0.6); }
.danger-img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.danger-img-caption {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-top: 12px;
}

/* ============================================
   FLOW SECTION
   ============================================ */
.flow {
  background: var(--beige);
  padding: 80px 0;
}
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.flow-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  position: relative;
}
.flow-step-num {
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.flow-step-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.flow-step-title {
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.flow-step-desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.6;
}
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 20px;
  font-weight: 900;
  padding: 0 4px;
  padding-top: 60px;
}
.flow-note {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  border-left: 4px solid var(--red);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============================================
   CLINIC PHOTOS
   ============================================ */
.clinic-photos {
  background: var(--white);
  padding: 80px 0;
}
.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.photo-item.large {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}
.photo-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.photo-item.large img { height: 320px; }
.photo-item:hover img { transform: scale(1.04); }
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 20px 12px 10px;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
  background: var(--beige);
  padding: 80px 0;
}
.review-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.rating-stars {
  color: #f39c12;
  font-size: 22px;
  letter-spacing: 2px;
}
.rating-score {
  font-size: 24px;
  font-weight: 900;
  color: var(--text-dark);
}
.rating-count { font-size: 14px; font-weight: 400; color: var(--text-light); }
.rating-link {
  font-size: 13px;
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.review-stars { color: #f39c12; font-size: 16px; letter-spacing: 2px; }
.review-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.4;
}
.review-body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.review-note {
  font-size: 10px;
  color: var(--text-light);
  line-height: 1.4;
}
.review-tag {
  display: inline-block;
  background: var(--beige);
  border: 1px solid var(--border);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}
.reviews-more {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-reviews-more, .btn-google-reviews {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-reviews-more { background: var(--red); color: var(--white); }
.btn-google-reviews { background: var(--white); color: var(--text-dark); border: 2px solid var(--border); }
.btn-reviews-more:hover, .btn-google-reviews:hover { opacity: 0.85; transform: translateY(-1px); }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  background: var(--white);
  padding: 80px 0;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--beige); }
.faq-q-icon {
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-q-text { flex: 1; line-height: 1.5; }
.faq-toggle {
  font-size: 22px;
  font-weight: 400;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 20px 66px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--beige);
}
.faq-a-icon {
  background: var(--beige-dark);
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 20px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  padding-top: 20px;
}
.faq-answer p strong { color: var(--text-dark); }

/* ============================================
   ACCESS SECTION
   ============================================ */
.access {
  background: var(--beige);
  padding: 80px 0;
}
.access-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.access-info-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.access-info-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 10px;
}
.access-info-block p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
.access-note {
  font-size: 12px !important;
  color: var(--text-light) !important;
  margin-top: 6px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.hours-table th, .hours-table td {
  padding: 8px 12px;
  border: 1px solid var(--border);
  text-align: center;
}
.hours-table th { background: var(--beige); font-weight: 700; font-size: 13px; }
.holiday-row td { color: var(--text-light); }
.hours-note {
  font-size: 12px !important;
  color: var(--text-light) !important;
  margin-top: 8px;
}
.access-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.btn-tel-access, .btn-line-access {
  display: block;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-tel-access { background: var(--red); color: var(--white); }
.btn-line-access { background: var(--green-line); color: var(--white); }
.btn-tel-access:hover, .btn-line-access:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-tel-access strong, .btn-line-access strong { font-size: 18px; }
.access-gbp { margin-top: 4px; }
.btn-gbp {
  display: block;
  background: var(--white);
  border: 2px solid var(--border);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}
.btn-gbp:hover { border-color: var(--red); color: var(--red); }
.access-map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  padding: 80px 0;
}
.final-cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.final-cta-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.final-cta-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}
.final-cta-sub {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-tel-final, .btn-line-final {
  display: block;
  padding: 20px 36px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  min-width: 240px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-tel-final {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-tel-final:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.btn-line-final {
  background: var(--green-line);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-line-final:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(6,199,85,0.4); }
.btn-tel-final strong, .btn-line-final strong { font-size: 20px; display: block; }
.btn-tel-final small, .btn-line-final small { font-size: 11px; opacity: 0.8; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.8);
  padding: 50px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 12px;
}
.footer-clinic-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-address {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-tel { font-size: 14px; font-weight: 700; }
.footer-tel a { color: var(--yellow); }
.footer-links h4, .footer-hours h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--yellow); }
.footer-hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin-bottom: 12px;
}
.footer-hours-table td {
  padding: 5px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-hours-table td:first-child { font-weight: 700; color: var(--white); }
.footer-parking { font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-site-name { font-size: 12px; color: rgba(255,255,255,0.5); }

/* ============================================
   STICKY FOOTER CTA
   ============================================ */
.sticky-footer-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  height: 72px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-tel, .sticky-line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1.3;
  transition: opacity 0.2s;
}
.sticky-tel { background: var(--red); color: var(--white); }
.sticky-line { background: var(--green-line); color: var(--white); }
.sticky-tel:hover, .sticky-line:hover { opacity: 0.9; }
.sticky-icon { font-size: 22px; }
.sticky-text { font-size: 13px; }
.sticky-text strong { font-size: 15px; }

/* ============================================
   RESPONSIVE - TABLET (max 900px)
   ============================================ */
@media (max-width: 900px) {
  .sp-only { display: inline; }
  .worries-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-content,
  .reason-item-reverse .reason-content {
    grid-template-columns: 1fr;
  }
  .reason-item-reverse .reason-img-col { order: 0; }
  .reason-item-reverse .reason-text-col { order: 0; }
  .reason-photo { height: 220px; }
  .danger-content { grid-template-columns: 1fr; }
  .danger-img-block { text-align: center; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .access-content { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logo-block { grid-column: 1 / -1; }
  .photos-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-item.large { grid-column: 1 / -1; }
}

/* ============================================
   RESPONSIVE - MOBILE (max 600px)
   ============================================ */
@media (max-width: 600px) {
  body { font-size: 15px; }
  .header-inner { padding: 8px 14px; }
  .logo-img { width: 40px; height: 40px; }
  .clinic-name-main { font-size: 12px; }
  .clinic-name-sub { font-size: 10px; }
  .btn-tel-header, .btn-line-header { padding: 6px 10px; font-size: 11px; }
  .btn-icon { font-size: 15px; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 40px 16px 100px; }
  .hero-stats { gap: 10px; }
  .stat-item { min-width: 80px; padding: 10px 12px; }
  .hero-cta-group { flex-direction: column; }
  .btn-tel-hero, .btn-line-hero { width: 100%; justify-content: center; padding: 14px 20px; }

  .worries { padding: 60px 0; }
  .worries-grid { grid-template-columns: 1fr; gap: 14px; }
  .worry-card { display: flex; align-items: center; gap: 16px; text-align: left; padding: 16px; }
  .worry-img-wrap { width: 70px; height: 70px; flex-shrink: 0; }

  .reasons { padding: 60px 0; }
  .reasons-list { gap: 40px; }
  .reason-number { font-size: 60px; }

  .danger { padding: 60px 0; }
  .flow { padding: 60px 0; }
  .flow-steps { flex-direction: column; align-items: center; }
  .flow-step { max-width: 100%; width: 100%; }
  .flow-arrow { transform: rotate(90deg); padding: 0; }

  .clinic-photos { padding: 60px 0; }
  .photos-grid { grid-template-columns: 1fr; }
  .photo-item.large { grid-column: auto; }

  .reviews { padding: 60px 0; }
  .reviews-grid { grid-template-columns: 1fr; }

  .faq { padding: 60px 0; }
  .faq-answer { padding-left: 24px; }

  .access { padding: 60px 0; }
  .final-cta { padding: 60px 0; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .btn-tel-final, .btn-line-final { width: 100%; max-width: 320px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .solution-cta { flex-direction: column; align-items: center; }
  .btn-tel-mid, .btn-line-mid { width: 100%; max-width: 300px; text-align: center; }
}

/* ============================================
   FAQ OPEN ANIMATION
   ============================================ */
.faq-answer {
  animation: none;
}
.faq-answer:not([hidden]) {
  animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeInUp 0.8s ease-out; }

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
