/* ============================================
   ふくよか整骨院 公式サイト（試作版）
   Target: 産後ママに振り切ったポジショニング
   ============================================ */

:root {
  --color-bg: #FBF6EF;
  --color-bg-warm: #F5EBDC;
  --color-card: #FFFFFF;
  --color-text: #2C231D;
  --color-text-sub: #6B5D52;
  --color-text-mute: #9A8B7F;
  --color-primary: #D9826B;      /* コーラル（メイン） */
  --color-primary-deep: #B86347; /* コーラル濃い */
  --color-accent: #3D332B;       /* 深いブラウン（信頼） */
  --color-cream: #FFF8EF;
  --color-line: #06C755;          /* LINE公式カラー */
  --color-line-dark: #04A346;
  --color-border: #E8DCC9;
  --shadow-sm: 0 2px 8px rgba(61, 51, 43, 0.06);
  --shadow-md: 0 6px 20px rgba(61, 51, 43, 0.08);
  --shadow-lg: 0 12px 40px rgba(61, 51, 43, 0.10);
  --radius: 12px;
  --radius-lg: 24px;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt";
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-primary);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.sec-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 38px; font-weight: 700;
  line-height: 1.5; letter-spacing: 0.02em;
  color: var(--color-accent);
  margin-bottom: 20px;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-break: strict;
}
.sec-title em { font-style: normal; color: var(--color-primary); }
.sec-lead {
  font-size: 16px; color: var(--color-text-sub);
  line-height: 2.0; max-width: 720px;
  margin-bottom: 48px;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(251, 246, 239, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  z-index: 100;
  transition: all 0.3s var(--ease-out);
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #D9826B 0%, #C77D5F 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700; font-size: 20px;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.3; }
.logo__ja { font-family: 'Zen Maru Gothic', sans-serif; font-size: 16px; font-weight: 700; color: var(--color-accent); }
.logo__en { font-family: 'Inter', sans-serif; font-size: 9px; letter-spacing: 0.2em; color: var(--color-text-mute); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__list { display: flex; gap: 28px; list-style: none; }
.nav__list a {
  font-size: 14px; font-weight: 500;
  color: var(--color-text-sub);
  transition: color 0.2s;
}
.nav__list a:hover { color: var(--color-primary); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--color-line);
  color: #fff !important;
  padding: 10px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.25);
  transition: all 0.3s var(--ease-out);
}
.nav__cta::before {
  content: ''; width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 5.85 2 10.5c0 2.7 1.5 5.1 3.85 6.7-.15.6-.55 2-.65 2.3-.1.4.15.4.3.3.1-.1 1.5-1 2.2-1.5 1.3.3 2.65.5 4.3.5 5.52 0 10-3.85 10-8.5S17.52 2 12 2z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.nav__cta:hover { background: var(--color-line-dark); transform: translateY(-1px); }

.nav__toggle {
  display: none; width: 30px; height: 24px;
  flex-direction: column; justify-content: space-between;
}
.nav__toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--color-accent); border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 100px;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(251, 246, 239, 0.78) 0%,
    rgba(251, 246, 239, 0.55) 50%,
    rgba(217, 130, 107, 0.18) 100%);
  z-index: 1;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurns 24s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, -1%); }
}

.hero__inner {
  position: relative; z-index: 2;
  padding: 60px 24px;
  width: 100%;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  padding: 8px 18px; border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--color-primary-deep);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero__badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--color-primary); border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 60px; font-weight: 700;
  line-height: 1.4; letter-spacing: 0.01em;
  color: var(--color-accent);
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(255, 255, 255, 0.5);
  word-break: keep-all;
}
.hero__title-line {
  display: block;
  white-space: nowrap;
}
.hero__title em {
  font-style: normal; color: var(--color-primary);
  position: relative; display: inline-block;
}
.hero__title em::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 14px; background: rgba(217, 130, 107, 0.18);
  z-index: -1;
}
.hero__lead {
  font-size: 17px; line-height: 2.1;
  color: var(--color-text);
  max-width: 600px;
  margin-bottom: 40px;
  font-weight: 500;
}
.hero__lead strong { color: var(--color-primary-deep); font-weight: 700; }

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 700;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}
.btn--line {
  background: var(--color-line);
  color: #fff;
  box-shadow: 0 8px 28px rgba(6, 199, 85, 0.35);
}
.btn--line:hover {
  background: var(--color-line-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(6, 199, 85, 0.45);
}
.btn--line::before {
  content: ''; width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 5.85 2 10.5c0 2.7 1.5 5.1 3.85 6.7-.15.6-.55 2-.65 2.3-.1.4.15.4.3.3.1-.1 1.5-1 2.2-1.5 1.3.3 2.65.5 4.3.5 5.52 0 10-3.85 10-8.5S17.52 2 12 2z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.btn--phone {
  background: #fff;
  color: var(--color-accent);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}
.btn--phone:hover { border-color: var(--color-primary); color: var(--color-primary); }
.btn--phone strong { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: 0.04em; }

.hero__assurance {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  border-left: 3px solid var(--color-primary);
  padding: 14px 22px; border-radius: 8px;
  font-size: 14px; color: var(--color-text);
  box-shadow: var(--shadow-sm);
  max-width: 540px;
}
.hero__assurance strong { color: var(--color-primary-deep); font-weight: 700; }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.25em;
  color: var(--color-text-sub);
  animation: scrollCue 2s ease-in-out infinite;
}
@keyframes scrollCue {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ============================================
   Section common
   ============================================ */
.section { padding: 100px 0; position: relative; }
.section--warm { background: var(--color-bg-warm); }
.section--accent { background: var(--color-accent); color: #fff; }
.section--accent .sec-title { color: #fff; }
.section--accent .eyebrow { color: rgba(255, 255, 255, 0.7); }
.section--accent .sec-lead { color: rgba(255, 255, 255, 0.85); }

/* ============================================
   Reasons (3つの理由)
   ============================================ */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.reason {
  background: var(--color-card);
  padding: 44px 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.reason:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.reason__num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 60px; font-weight: 700;
  color: rgba(217, 130, 107, 0.12);
  line-height: 1;
}
.reason__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #FFE8DC 0%, #FBD2BD 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}
.reason__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 14px;
  line-height: 1.55;
}
.reason__desc {
  font-size: 14.5px; color: var(--color-text-sub);
  line-height: 2.0;
}

/* ============================================
   Message (院長メッセージ)
   ============================================ */
.message {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.message__media {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.message__media img { width: 100%; height: 100%; object-fit: cover; }
.message__media::after {
  content: '';
  position: absolute;
  bottom: -32px; right: -32px;
  width: 60%; height: 60%;
  background: var(--color-primary);
  opacity: 0.12;
  border-radius: var(--radius-lg);
  z-index: -1;
}
.message__body p {
  font-size: 16px;
  line-height: 2.15;
  color: var(--color-text);
  margin-bottom: 24px;
}
.message__sign {
  display: inline-block;
  margin-top: 14px;
  padding: 12px 28px;
  background: var(--color-cream);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 4px 4px 0;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  color: var(--color-accent);
}

/* ============================================
   Services
   ============================================ */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service {
  background: var(--color-card);
  border-radius: var(--radius);
  padding: 32px 32px;
  display: flex; gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  border: 1px solid var(--color-border);
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service--featured {
  background: linear-gradient(135deg, #FFEDDF 0%, #FFD9C2 100%);
  border-color: var(--color-primary);
}
.service--featured .service__title { color: var(--color-primary-deep); }
.service__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--color-cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.service--featured .service__icon { background: rgba(255, 255, 255, 0.6); }
.service__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
  line-height: 1.55;
}
.service__title .badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
  vertical-align: middle;
}
.service__desc {
  font-size: 13.5px; color: var(--color-text-sub);
  line-height: 1.9;
}

/* ============================================
   LINE Reservation (主役セクション)
   ============================================ */
.line-section {
  background: linear-gradient(135deg, #06C755 0%, #04A346 100%);
  color: #fff;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.line-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(255,255,255,0.08) 0%, transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(255,255,255,0.06) 0%, transparent 35%);
}
.line-section > * { position: relative; }
.line-section .eyebrow { color: rgba(255, 255, 255, 0.85); }
.line-section .sec-title { color: #fff; }
.line-section .sec-lead { color: rgba(255, 255, 255, 0.9); }

.line-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  margin-top: 32px;
}
.line-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  color: var(--color-text);
}
.line-card p {
  font-size: 15.5px;
  line-height: 2.0;
  margin-bottom: 20px;
  color: var(--color-text);
}
.line-card p:last-of-type { margin-bottom: 0; }
.line-card strong {
  background: rgba(6, 199, 85, 0.12);
  color: var(--color-line-dark);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.line-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 4px;
}
.line-step {
  background: linear-gradient(135deg, #06C755 0%, #04A346 100%);
  color: #fff;
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.2);
}
.line-step__num {
  display: inline-block;
  width: 26px; height: 26px;
  background: #fff;
  color: var(--color-line-dark);
  border-radius: 50%;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  line-height: 26px;
  margin-bottom: 10px;
}
.line-step__icon {
  font-size: 24px; margin-bottom: 6px;
}
.line-step__title { font-size: 12.5px; font-weight: 700; line-height: 1.55; }

.line-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff;
  color: var(--color-line-dark);
  padding: 18px 38px;
  border-radius: 100px;
  font-size: 16px; font-weight: 700;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s var(--ease-out);
}
.line-btn:hover { transform: translateY(-2px); }
.line-btn::before {
  content: '';
  width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2306C755'%3E%3Cpath d='M12 2C6.48 2 2 5.85 2 10.5c0 2.7 1.5 5.1 3.85 6.7-.15.6-.55 2-.65 2.3-.1.4.15.4.3.3.1-.1 1.5-1 2.2-1.5 1.3.3 2.65.5 4.3.5 5.52 0 10-3.85 10-8.5S17.52 2 12 2z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.line-qr {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}
.line-qr__img {
  width: 100%; max-width: 220px;
  aspect-ratio: 1; margin: 0 auto 16px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #ccc;
}
.line-qr__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--color-line-dark);
  margin-bottom: 6px;
}
.line-qr__desc {
  font-size: 12px; color: var(--color-text-sub);
  line-height: 1.7;
}

.line-hook {
  background: linear-gradient(135deg, #FBF6EF 0%, #F5EBDC 100%);
  border-radius: 12px;
  padding: 18px 24px;
  margin-top: 22px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  text-align: center;
  color: var(--color-primary-deep);
  border-left: 4px solid var(--color-primary);
}
.line-hook strong { font-weight: 700; color: var(--color-primary-deep); }

/* ============================================
   Insurance (健康保険)
   ============================================ */
.insurance-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.insurance__column h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}
.insurance__column ul { list-style: none; padding: 0; }
.insurance__column li {
  font-size: 14.5px; color: var(--color-text-sub);
  line-height: 2.05;
  padding-left: 26px;
  position: relative;
  margin-bottom: 6px;
}
.insurance__column.ok li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--color-primary);
  font-weight: 700;
}
.insurance__column.ng li::before {
  content: '×';
  position: absolute; left: 0; top: 0;
  color: var(--color-text-mute);
  font-weight: 700;
}

/* ============================================
   Access
   ============================================ */
.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.access__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-warm);
}
.access__media img { width: 100%; height: 100%; object-fit: cover; }

.access-map {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, #FBF0E2 0%, #F5E2C9 100%),
    repeating-linear-gradient(0deg, rgba(217,130,107,0.06) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(217,130,107,0.06) 0 1px, transparent 1px 32px);
  background-blend-mode: normal, multiply, multiply;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.access-map:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.access-map:active { transform: translateY(-1px); }
.access-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(217,130,107,0.18) 0%, transparent 25%),
    radial-gradient(circle at 30% 70%, rgba(217,130,107,0.08) 0%, transparent 18%),
    radial-gradient(circle at 75% 30%, rgba(217,130,107,0.08) 0%, transparent 18%);
}
.access-map::after {
  content: '📍';
  position: absolute;
  top: 20%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 56px;
  filter: drop-shadow(0 6px 12px rgba(217, 130, 107, 0.35));
}
.access-map__inner {
  position: relative; z-index: 1;
  text-align: center;
  padding: 24px;
  margin-top: 110px;
}
.access-map__label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.3em;
  color: var(--color-primary-deep);
  margin-bottom: 8px; font-weight: 700;
}
.access-map__city {
  display: block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.access-map__note {
  font-size: 13px; color: var(--color-text-sub);
  line-height: 1.8; margin-bottom: 16px;
}
.access-map__btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 12px 26px; border-radius: 100px;
  box-shadow: 0 6px 18px rgba(217, 130, 107, 0.35);
  letter-spacing: 0.04em;
}
.access-info {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  box-shadow: var(--shadow-sm);
}
.access-info h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 6px;
}
.access-info__addr {
  font-size: 15px; color: var(--color-text-sub);
  margin-bottom: 24px;
}
.access-info__tel {
  font-family: 'Inter', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--color-primary-deep);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin-top: 16px;
}
.hours-table th, .hours-table td {
  border: 1px solid var(--color-border);
  padding: 10px 8px;
  text-align: center;
}
.hours-table thead th {
  background: var(--color-bg-warm);
  font-weight: 700;
  color: var(--color-accent);
}
.hours-table th:first-child {
  background: var(--color-cream);
  text-align: left;
  padding-left: 14px;
  white-space: nowrap;
}
.hours-table td.closed { color: var(--color-text-mute); }
.hours-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--color-text-sub);
  line-height: 1.85;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  max-width: 880px; margin: 0 auto;
}
.faq-item {
  background: var(--color-card);
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.faq-item > summary {
  padding: 22px 32px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 64px;
  font-family: 'Zen Maru Gothic', sans-serif;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::before {
  content: 'Q';
  display: inline-block;
  width: 28px; height: 28px;
  margin-right: 14px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  text-align: center; line-height: 28px;
  font-family: 'Inter', sans-serif; font-size: 13px;
  vertical-align: middle;
}
.faq-item > summary::after {
  content: '＋';
  position: absolute; right: 28px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; color: var(--color-primary);
  transition: transform 0.3s var(--ease-out);
}
.faq-item[open] > summary::after { content: '−'; }
.faq-item__body {
  padding: 4px 32px 26px 74px;
  font-size: 14.5px; color: var(--color-text-sub);
  line-height: 2.0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-accent);
  color: rgba(255, 255, 255, 0.85);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px; color: #fff;
  margin-bottom: 6px;
}
.footer__roman {
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
}
.footer__info { font-size: 13.5px; line-height: 2.0; }
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px; font-weight: 700;
}
.footer ul { list-style: none; padding: 0; }
.footer li { margin-bottom: 8px; font-size: 13.5px; }
.footer li a { color: rgba(255, 255, 255, 0.85); }
.footer li a:hover { color: var(--color-primary); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Mobile fixed CTA
   ============================================ */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 10px 12px;
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  gap: 8px;
}
.mobile-cta a {
  flex: 1;
  padding: 14px;
  text-align: center;
  border-radius: 100px;
  font-size: 14px; font-weight: 700;
}
.mobile-cta__line {
  background: var(--color-line); color: #fff;
  flex: 1.8;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.mobile-cta__tel { background: var(--color-bg-warm); color: var(--color-accent); }

/* ============================================
   Reveal animations
   ============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
  .hero__bg img { animation: none; }
}
html.no-js .reveal,
html.no-js .reveal-stagger > * { opacity: 1; transform: none; }
@media print {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .hero__bg img { animation: none !important; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .reasons { grid-template-columns: 1fr 1fr; }
  .reason:last-child { grid-column: 1 / -1; max-width: 540px; margin: 0 auto; }
  .message, .access-grid, .line-grid, .insurance-card { grid-template-columns: 1fr; gap: 40px; }
  .insurance-card { padding: 40px 36px; }
  .hero__title { font-size: 48px; }
}

@media (max-width: 768px) {
  .nav__list, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__list,
  .nav.is-open .nav__cta { display: flex; }
  .nav.is-open {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px;
    gap: 20px;
  }
  .nav.is-open .nav__list { flex-direction: column; align-items: flex-start; gap: 16px; width: 100%; }
  .reasons, .services { grid-template-columns: 1fr; }
  .reason:last-child { grid-column: 1; }
  .line-steps { grid-template-columns: 1fr; gap: 10px; }
  .hero__title { font-size: 36px; }
  .hero__lead { font-size: 15px; }
  .section { padding: 64px 0; }
  .sec-title { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 96px; }
  .footer { padding-bottom: 110px; }

  /* Hero タイトルをSPでは小さく */
  .hero__title { font-size: 30px; line-height: 1.5; }
  .hero__title-line { white-space: nowrap; }

  /* アクセス地図カードをSPでは縦長アスペクト解除＋十分な高さ確保 */
  .access-map {
    aspect-ratio: auto;
    min-height: 320px;
    padding: 28px 16px 24px;
  }
  .access-map::after {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    margin-bottom: 8px;
    font-size: 56px;
  }
  .access-map__inner { margin-top: 0; padding: 0 8px; }
  .access-map__city { font-size: 20px; }
  .access-map__btn { padding: 12px 24px; font-size: 13px; display: inline-block; }

  /* アクセス情報の最下部に余白を確保（固定CTAとの干渉防止） */
  .access-info { padding-bottom: 32px; }
  .hours-note { margin-bottom: 8px; }
  .access-info { padding: 32px 24px; }
  .insurance-card { padding: 32px 24px; }
  .hours-table { font-size: 11.5px; }
  .hours-table th, .hours-table td { padding: 8px 4px; }
}
