/* ===== もりもと接骨院 — デザイントークン（白ベース＋コーラルアクセント） ===== */
:root {
  --coral:    #c94b2f;   /* 既存サイト #F16041 を落ち着かせた版 — アクセントのみ */
  --coral-dk: #a03522;
  --coral-lt: #fdf0ec;
  --orange:   #e8622a;   /* CTAボタン用 */
  --orange-dk:#c44e1e;
  --brown:    #3d1f10;   /* テキスト・見出し用ダーク — 背景には使わない */
  --bg:       #ffffff;
  --bg2:      #f9f6f5;   /* ごく薄いウォームグレー */
  --bg3:      #fdf0ec;   /* ごく薄いピーチ — 補足情報のみ */
  --border:   #e8d5cf;
  --text:     #2c1a14;
  --text2:    #7a5c52;
  --white:    #ffffff;
  --green:    #38a169;
  --radius:   8px;
  --shadow:   0 2px 12px rgba(0,0,0,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  padding-top: 60px;
}
a { text-decoration: none; color: inherit; }

/* ===== HEADER ===== */
header {
  position: fixed; top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  z-index: 100;
  box-shadow: 0 1px 0 var(--border), 0 2px 8px rgba(0,0,0,0.06);
}
.header-logo { display: flex; flex-direction: column; gap: 1px; line-height: 1.2; }
.header-logo .tagline { font-size: 0.58rem; color: var(--text2); letter-spacing: 0.06em; }
.header-logo .name { font-size: 1.05rem; color: var(--brown); font-weight: 700; letter-spacing: 0.04em; }

.pc-nav { display: flex; align-items: center; gap: 20px; }
.pc-nav a { color: var(--text2); font-size: 0.82rem; transition: color 0.2s; }
.pc-nav a:hover { color: var(--coral); }
.pc-nav .nav-cta {
  background: var(--coral); color: var(--white);
  padding: 7px 14px; border-radius: var(--radius); font-size: 0.78rem; font-weight: 700;
}
.pc-nav .nav-cta:hover { background: var(--coral-dk); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--brown); transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: var(--white); z-index: 99;
  flex-direction: column; padding: 8px 0 16px;
  border-top: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 24px; color: var(--text); font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.mobile-menu .nav-cta-sp { margin: 12px 20px 0; background: var(--coral); color: var(--white); border-radius: var(--radius); text-align: center; border-bottom: none; padding: 12px; font-weight: 700; }

@media (max-width: 768px) { .pc-nav { display: none; } .hamburger { display: flex; } }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #fff8f6 0%, #fdf0ec 100%);
  color: var(--brown); text-align: center; padding: 56px 20px 52px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-badge {
  display: inline-block; background: var(--coral); color: var(--white);
  font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  margin-bottom: 16px; letter-spacing: 0.06em; position: relative;
}
.hero-title { font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 900; line-height: 1.2; margin-bottom: 10px; position: relative; letter-spacing: 0.02em; color: var(--brown); }
.hero-sub { font-size: 0.88rem; color: var(--text2); margin-bottom: 28px; position: relative; line-height: 1.9; }
.hero-rule { width: 40px; height: 3px; background: var(--coral); margin: 0 auto 24px; position: relative; border-radius: 2px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white);
  padding: 13px 24px; border-radius: var(--radius); font-size: 0.88rem; font-weight: 700;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--orange-dk); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--brown);
  padding: 12px 22px; border-radius: var(--radius); border: 1.5px solid var(--border); font-size: 0.88rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--coral); color: var(--coral); }
.btn-coral {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: var(--white);
  padding: 13px 24px; border-radius: var(--radius); font-size: 0.88rem; font-weight: 700;
  transition: background 0.2s;
}
.btn-coral:hover { background: var(--coral-dk); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--brown);
  padding: 13px 28px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 700;
  transition: background 0.2s;
}
.btn-white:hover { background: var(--bg3); }
.btn-map {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--coral); border: 1.5px solid var(--coral);
  padding: 10px 18px; border-radius: var(--radius); font-size: 0.82rem;
  transition: background 0.2s, color 0.2s;
}
.btn-map:hover { background: var(--coral); color: var(--white); }

/* ===== SECTIONS ===== */
.section-inner { max-width: 680px; margin: 0 auto; padding: 52px 20px; }
.section-label { font-size: 0.62rem; letter-spacing: 0.25em; color: var(--coral); margin-bottom: 8px; text-transform: uppercase; font-weight: 700; }
.section-title { font-size: clamp(1.3rem, 4vw, 1.75rem); font-weight: 900; letter-spacing: 0.02em; margin-bottom: 16px; color: var(--brown); line-height: 1.3; }
.section-rule { width: 36px; height: 3px; background: var(--coral); margin-bottom: 28px; border-radius: 2px; }
.section-desc { font-size: 0.88rem; color: var(--text2); line-height: 2.1; margin-bottom: 28px; }
section:nth-child(even) { background: var(--bg2); }

.page-hero { background: linear-gradient(160deg, #fff8f6 0%, #fdf0ec 100%); color: var(--brown); text-align: center; padding: 44px 20px 38px; border-bottom: 1px solid var(--border); }
.page-hero .section-label { color: var(--coral); margin-bottom: 10px; }
.page-hero .section-title { color: var(--brown); margin-bottom: 0; }

/* ===== SYMPTOMS ===== */
.symptom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 24px; }
@media (min-width: 480px) { .symptom-grid { grid-template-columns: repeat(3, 1fr); } }
.symptom-item {
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 14px 12px; text-align: center; font-size: 0.82rem; line-height: 1.6;
}
.symptom-icon { font-size: 1.5rem; display: block; margin-bottom: 6px; }

/* ===== TREATMENT CARDS ===== */
.treatment-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.treatment-item {
  background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--coral);
  border-radius: var(--radius); padding: 20px 18px;
  box-shadow: var(--shadow);
}
.treatment-item h3 { font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 6px; }
.treatment-item p { font-size: 0.82rem; color: var(--text2); line-height: 1.9; }
.treatment-tag {
  display: inline-block; background: var(--coral-lt); color: var(--coral);
  font-size: 0.65rem; font-weight: 700; padding: 2px 8px; border-radius: 3px; margin-bottom: 8px;
}

/* ===== FLOW ===== */
.flow-list { display: flex; flex-direction: column; gap: 0; }
.flow-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.flow-item:last-child { border-bottom: none; }
.flow-num {
  width: 34px; height: 34px; min-width: 34px; border-radius: 50%;
  background: var(--coral); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; margin-top: 2px;
}
.flow-content h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; color: var(--brown); }
.flow-content p { font-size: 0.82rem; color: var(--text2); line-height: 1.9; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; align-items: flex-start; gap: 12px; padding: 16px 4px; cursor: pointer; font-size: 0.88rem; font-weight: 700; }
.q-mark { color: var(--coral); font-size: 1.1rem; font-weight: 900; min-width: 20px; line-height: 1.4; }
.faq-a { display: none; padding: 0 4px 16px 32px; font-size: 0.82rem; color: var(--text2); line-height: 1.9; }
.faq-item.open .faq-a { display: block; }

/* ===== INFO BOX ===== */
.info-box {
  background: var(--bg3); border-left: 4px solid var(--coral); border-radius: var(--radius);
  padding: 14px 16px; font-size: 0.84rem; line-height: 1.9; margin-bottom: 24px; color: var(--text2);
}
.info-box strong { color: var(--text); }

/* ===== HOURS TABLE ===== */
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-bottom: 20px; }
.hours-table th { background: var(--brown); color: var(--white); padding: 10px 12px; text-align: center; font-weight: 500; }
.hours-table td { padding: 10px 12px; border: 1px solid var(--border); text-align: center; background: var(--white); }
.hours-table td.circle { color: var(--coral); font-weight: 700; }
.hours-table td.triangle { color: var(--orange); font-weight: 700; }
.hours-table td.cross { color: var(--text2); }
.hours-table td.holiday { color: var(--text2); background: #f5f5f5; }
.hours-table th.holiday { background: #4a5568; }
.hours-table .hours-label { text-align: left; background: var(--bg2); font-size: 0.78rem; line-height: 1.4; padding: 8px 10px; }
.hours-table .hours-label small { display: block; color: var(--text2); font-size: 0.68rem; }

.access-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-bottom: 20px; }
.access-table th { background: var(--brown); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 400; white-space: nowrap; width: 90px; vertical-align: top; }
.access-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.8; background: var(--white); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--brown); color: var(--white); text-align: center; padding: 52px 20px; }
.cta-lead { font-size: 0.62rem; letter-spacing: 0.3em; color: var(--coral-lt); margin-bottom: 12px; font-weight: 700; }
.cta-section h2 { font-size: clamp(1.2rem, 4vw, 1.6rem); font-weight: 900; margin-bottom: 28px; }

/* ===== FOOTER ===== */
footer {
  background: #1e0e08; color: rgba(255,255,255,0.55); text-align: center;
  padding: 36px 20px 90px; font-size: 0.8rem; line-height: 2.0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-name { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.footer-tel { font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.footer-address { font-size: 0.75rem; margin-bottom: 16px; }
.footer-note { font-size: 0.68rem; color: rgba(255,255,255,0.25); line-height: 1.9; }

/* ===== FIXED CTA ===== */
.fixed-cta { position: fixed; bottom: 0; left: 0; right: 0; display: flex; z-index: 98; height: 54px; }
.fixed-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 0.82rem; font-weight: 700; }
.cta-form { background: var(--coral); color: var(--white); }
.cta-form:hover { background: var(--coral-dk); }
.cta-tel-btn { background: var(--orange); color: var(--white); }
.cta-tel-btn:hover { background: var(--orange-dk); }

/* ===== POINT CARDS ===== */
.point-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
@media (min-width: 480px) { .point-grid { grid-template-columns: repeat(2, 1fr); } }
.point-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 16px; box-shadow: var(--shadow); }
.point-num { font-size: 0.65rem; color: var(--coral); font-weight: 700; letter-spacing: 0.1em; margin-bottom: 6px; }
.point-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--brown); }
.point-card p { font-size: 0.8rem; color: var(--text2); line-height: 1.8; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: var(--coral-lt); border: 1px solid var(--border); border-left: 4px solid var(--coral);
  border-radius: var(--radius); padding: 20px 18px; margin-bottom: 20px; color: var(--text);
}
.highlight-box strong { color: var(--brown); }
.highlight-box .label { font-size: 0.7rem; letter-spacing: 0.15em; color: var(--coral); margin-bottom: 6px; }
.highlight-box .value { font-size: clamp(1.4rem, 4vw, 1.8rem); font-weight: 900; color: var(--brown); }
.highlight-box .note { font-size: 0.75rem; color: var(--text2); margin-top: 4px; }
