/*
Theme Name: Rakutoko Seikotsuin
Theme URI: https://rakutoko-seikotsuin.com
Author: Rakutoko Team
Description: らくとこ整骨院のオリジナルWordPressテーマ
Version: 1.0.0
Text Domain: rakutoko
*/

/* ============================
   CSS Variables / Design System
   ============================ */
:root {
  --primary: #00BDB1;
  --primary-dark: #009E94;
  --primary-light: #E0F7F5;
  --primary-pale: #F0FBFA;
  --white: #FFFFFF;
  --accent: #F19298;
  --accent-dark: #D97A80;
  --accent-light: #FDE8EA;
  --text-dark: #2D3436;
  --text-body: #444B4E;
  --text-light: #6B7B7D;
  --text-muted: #9EADAF;
  --bg-cream: #FEFCF9;
  --bg-gray: #F5F6F7;
  --bg-primary-soft: #F0FBFA;
  --border-color: #E2E8E8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: .3s ease;
  --transition-slow: .5s ease;
  --font-main: 'Noto Sans JP', sans-serif;
  --font-round: 'Zen Maru Gothic', sans-serif;
  --max-width: 1100px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-round);
  color: var(--text-dark);
  line-height: 1.4;
  font-weight: 700;
}

/* ============================
   Utility
   ============================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--bg-cream {
  background: var(--bg-cream);
}

.section--bg-gray {
  background: var(--bg-gray);
}

.section--bg-primary-soft {
  background: var(--bg-primary-soft);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header__label {
  display: inline-block;
  font-size: .8rem;
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header__title {
  font-size: 1.75rem;
  position: relative;
  padding-bottom: 20px;
}

.section-header__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.section-header__subtitle {
  font-size: .95rem;
  color: var(--text-light);
  margin-top: 16px;
  font-weight: 400;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.font-round { font-family: var(--font-round); }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-round);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,189,177,.3);
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,189,177,.4);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(241,146,152,.3);
}

.btn--accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241,146,152,.4);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 24px;
  font-size: .85rem;
}

.btn--line {
  background: #06C755;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(6,199,85,.3);
}

.btn--line:hover {
  background: #05A848;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6,199,85,.4);
}

.btn--hotpepper {
  background: #E4572E;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(228,87,46,.3);
}

.btn--hotpepper:hover {
  background: #C9441E;
  color: var(--white);
  transform: translateY(-2px);
}

.btn--tel {
  background: var(--primary);
  color: var(--white);
}

.btn--tel:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================
   Header
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  height: 64px;
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo__img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.scrolled .site-logo__img {
  height: 32px;
}

.site-logo__text {
  font-family: var(--font-round);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.site-logo__sub {
  display: block;
  font-size: .65rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: .05em;
}

/* Navigation */
.global-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.global-nav__link {
  display: block;
  padding: 8px 14px;
  font-size: .85rem;
  color: var(--text-body);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.global-nav__link:hover,
.global-nav__link.active {
  color: var(--primary);
  background: var(--primary-pale);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: .82rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   Hero Section
   ============================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--white) 50%, var(--accent-light) 100%);
}

.hero__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.3) 50%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 60px 0;
  margin-right: 250px;
}

.hero__label {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: .05em;
}

.hero__title {
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero__title span {
  color: var(--primary);
}

.hero__desc {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.9;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Decorative shapes */
.hero__deco {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}

.hero__deco--1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  bottom: -100px;
  left: -100px;
}

.hero__deco--2 {
  width: 160px;
  height: 160px;
  background: var(--accent);
  top: 120px;
  right: 10%;
}

/* ============================
   Worry / Problem Section
   ============================ */
.worry-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.worry-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.worry-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
}

.worry-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.worry-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.worry-item__icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.worry-item__text {
  font-family: var(--font-round);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ============================
   Reason / Feature Cards
   ============================ */
.reason-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.reason-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.reason-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.reason-card__body {
  padding: 28px;
}

.reason-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 50%;
  margin-bottom: 12px;
}

.reason-card__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.reason-card__text {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Full width reason (page-reason) */
.reason-detail {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

.reason-detail:last-child {
  border-bottom: none;
}

.reason-detail.reverse {
  flex-direction: row-reverse;
}

.reason-detail__img {
  flex: 0 0 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.reason-detail__img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.reason-detail__content {
  flex: 1;
}

.reason-detail__num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: 12px;
}

.reason-detail__num span {
  font-size: 2rem;
  line-height: 1;
}

.reason-detail__title {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.reason-detail__text {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* ============================
   Menu / Price Section
   ============================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.menu-card {
  background: linear-gradient(160deg, var(--primary-pale) 0%, var(--white) 30%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.menu-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.menu-card__img {
  display: none;
}

.menu-card__body {
  padding: 32px 28px 28px;
}

.menu-card__tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.menu-card__title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.menu-card__desc {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.menu-card__price {
  font-family: var(--font-round);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th,
.price-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: .9rem;
}

.price-table thead {
  background: var(--primary);
  color: var(--white);
}

.price-table thead th {
  font-weight: 600;
  font-family: var(--font-round);
}

.price-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table tbody tr:nth-child(even) {
  background: var(--bg-primary-soft);
}

.price-table tbody tr:hover {
  background: var(--primary-light);
}

.price-table .price {
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-round);
}

.price-note {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  font-size: .85rem;
  color: var(--text-light);
  border-left: 4px solid var(--primary);
}

/* ============================
   Testimonial
   ============================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-card__stars {
  color: #F5A623;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}

.testimonial-card__author {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================
   CTA Section
   ============================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #00968C 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.cta-section__title {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section__text {
  font-size: .95rem;
  opacity: .9;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================
   Access / Map Section
   ============================ */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.access-info__table {
  width: 100%;
  border-collapse: collapse;
}

.access-info__table th,
.access-info__table td {
  padding: 12px 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.access-info__table th {
  width: 120px;
  color: var(--primary);
  font-weight: 600;
  font-family: var(--font-round);
}

.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.access-map iframe {
  width: 100%;
  height: 360px;
  border: none;
}

/* ============================
   Page Header (Sub Pages)
   ============================ */
.page-header {
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--white) 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.page-header__title {
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-header__sub {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.page-breadcrumb-bar {
  padding: 12px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb {
  font-size: .8rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb__sep {
  margin: 0 8px;
  opacity: .5;
}

ol.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

/* ============================
   About / Staff Section
   ============================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-intro__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-intro__img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-intro__content h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.about-intro__content p {
  font-size: .95rem;
  line-height: 2;
  color: var(--text-body);
}

.philosophy-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.philosophy-item {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.philosophy-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.philosophy-item__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-item__icon img {
  width: 32px;
  height: 32px;
}

.philosophy-item__title {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.philosophy-item__text {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-grid__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-grid__item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-grid__item:hover img {
  transform: scale(1.05);
}

/* ============================
   SEO Landing Page Styles
   ============================ */
.seo-hero {
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--white) 50%, var(--accent-light) 100%);
  padding: 120px 0 60px;
  position: relative;
}

.seo-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.seo-hero__content h1 {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.seo-hero__content h1 span {
  color: var(--primary);
}

.seo-hero__lead {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 24px;
}

.seo-hero__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.seo-hero__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.symptom-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.symptom-box__title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}

.symptom-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.symptom-list li {
  position: relative;
  padding-left: 24px;
  font-size: .9rem;
  line-height: 1.8;
}

.symptom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.approach-steps {
  counter-reset: step;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-color);
  counter-increment: step;
}

.approach-step:last-child {
  border-bottom: none;
}

.approach-step__num {
  flex: 0 0 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.1rem;
}

.approach-step__content {
  flex: 1;
}

.approach-step__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.approach-step__text {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================
   FAQ Accordion
   ============================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-round);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--primary-pale);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-question__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question__icon {
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-item.active .faq-question__icon svg {
  stroke: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer__inner {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* ============================
   Contact Page
   ============================ */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.contact-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card__icon--line {
  background: #E8F9EE;
}

.contact-card__icon--tel {
  background: var(--primary-light);
}

.contact-card__icon--hotpepper {
  background: #FDE8E2;
}

.contact-card__icon svg,
.contact-card__icon img {
  width: 32px;
  height: 32px;
}

.contact-card__title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-card__desc {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.contact-hours {
  margin-top: 48px;
}

.hours-table {
  width: 100%;
  max-width: 600px;
  margin: 24px auto 0;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hours-table th,
.hours-table td {
  padding: 12px 16px;
  text-align: center;
  font-size: .85rem;
  border-bottom: 1px solid var(--border-color);
}

.hours-table thead {
  background: var(--primary);
  color: var(--white);
}

.hours-table thead th {
  font-weight: 600;
}

.hours-table .closed {
  color: var(--accent);
  font-weight: 600;
}

/* ============================
   Footer
   ============================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-info__name {
  font-family: var(--font-round);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-info__text {
  font-size: .85rem;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-nav__title {
  font-family: var(--font-round);
  font-size: .9rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-nav__list li {
  margin-bottom: 8px;
}

.footer-nav__list a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}

.footer-nav__list a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

.footer-copyright {
  margin: 0;
}

.footer-legal-nav {
  display: flex;
  gap: 16px;
}

.footer-legal-nav a {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal-nav a:hover {
  color: var(--primary);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo__img {
  height: 44px;
  width: auto;
}

/* Fixed Footer CTA (Mobile) */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -2px 12px rgba(0,0,0,.1);
  z-index: 999;
  display: none;
  padding: 10px 16px;
}

.fixed-cta__inner {
  display: flex;
  gap: 8px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius-md);
  font-family: var(--font-round);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  transition: var(--transition);
}

.fixed-cta__btn--line {
  background: #06C755;
}

.fixed-cta__btn--tel {
  background: var(--primary);
}

.fixed-cta__btn--hp {
  background: #E4572E;
}

/* ============================
   Animations
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .5s ease, transform .5s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animation */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.stagger > *.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .15s; }
.stagger > *:nth-child(4) { transition-delay: .2s; }
.stagger > *:nth-child(5) { transition-delay: .25s; }
.stagger > *:nth-child(6) { transition-delay: .3s; }

/* ============================
   Front Page: Worry 5-item grid override
   ============================ */
#worry .worry-list {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* ============================
   Concept Section (らくとこの考え方)
   ============================ */
.concept-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}

.concept-text__body {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 2;
}

.concept-steps .approach-steps {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

/* ============================
   Worry Menu Grid (お悩み別メニュー)
   ============================ */
.worry-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.worry-menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 20px 24px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.worry-menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.worry-menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  color: var(--text-dark);
}

.worry-menu-card:hover::before {
  opacity: 1;
}

.worry-menu-card__icon {
  width: 64px;
  height: 64px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
  transition: var(--transition);
}

.worry-menu-card:hover .worry-menu-card__icon {
  background: var(--primary-light);
}

.worry-menu-card__title {
  font-family: var(--font-round);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.5;
}

.worry-menu-card__desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.worry-menu-card__link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-round);
}

/* ============================
   Flow Steps (施術の流れ)
   ============================ */
.flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 40px;
}

.flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.flow-step__num {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.flow-step__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 12px;
}

.flow-step__title {
  font-family: var(--font-round);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.flow-step__desc {
  font-size: .78rem;
  color: var(--text-light);
  line-height: 1.7;
}

.flow-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  font-size: 1.6rem;
  color: var(--primary);
  opacity: .4;
  flex-shrink: 0;
  width: 24px;
}

/* ============================
   Hours CTA Section (営業時間・予約導線)
   ============================ */
.hours-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hours-summary__title {
  font-family: var(--font-round);
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.hours-summary__desc {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.9;
}

.hours-table-wrap .hours-table {
  margin: 0;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 1024px) {
  .reason-detail {
    flex-direction: column;
    gap: 24px;
  }
  .reason-detail.reverse {
    flex-direction: column;
  }
  .reason-detail__img {
    flex: none;
    width: 100%;
  }
  .about-intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .seo-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .access-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .concept-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hours-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .section {
    padding: 56px 0;
  }

  .section-header__title {
    font-size: 1.4rem;
  }

  .hero {
    min-height: 500px;
    padding: 100px 0 56px;
  }

  .hero__bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .hero__bg::after {
    background: linear-gradient(180deg, rgba(254,252,249,.93) 0%, rgba(254,252,249,.82) 55%, rgba(254,252,249,.50) 100%);
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .hero__title {
    font-size: 1.6rem;
  }

  .hero__buttons {
    justify-content: center;
  }

  /* Mobile nav */
  .global-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .global-nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-color);
    gap: 4px;
  }

  .global-nav.active .global-nav__link {
    padding: 12px 16px;
    font-size: .95rem;
  }

  /* Grid adjustments */
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .philosophy-list {
    grid-template-columns: 1fr;
  }

  .symptom-list {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .page-header__title {
    font-size: 1.5rem;
  }

  /* Fixed CTA */
  .fixed-cta {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .reason-list {
    grid-template-columns: 1fr;
  }

  /* Worry Menu: 2列に */
  .worry-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Flow Steps: 縦積みに */
  .flow-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .flow-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
  }

  .flow-step__num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .flow-step__icon {
    display: none;
  }

  .flow-step__arrow {
    display: none;
  }

  .hero__deco {
    display: none;
  }

  .cta-section__title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 1.35rem;
  }

  .btn--lg {
    padding: 14px 32px;
    font-size: .95rem;
  }

  /* Worry Menu: 1列に */
  .worry-menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   腰痛ケアページ専用スタイル (page-low-back-pain.php)
   ========================================================================== */

/* FV: チェックリスト */
.seo-hero__checks {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-hero__checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--text-body);
}

.seo-hero__checks li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--primary);
  border-radius: 50%;
  color: white;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1;
}

/* 悩みチェック: 下部テキスト */
.symptom-cta-text {
  text-align: center;
  margin-top: 28px;
  font-size: .95rem;
  color: var(--text-light);
  font-weight: 500;
}

/* 通いやすさセクション: アイコングリッド（産後ページ等で使用） */
.feature-icons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.feature-icons li {
    flex: 1 1 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 32px 24px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-body);
    border: 1px solid var(--border-color);
}

.feature-icons li .feature-icon-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--primary-pale);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 14px;
}
.feature-icons li .feature-icon-emoji svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.feature-icons li strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 8px;
}

/* Section 3: 腰痛が続く背景 — 2カラムレイアウト */
.lp-bg-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.lp-bg-section__text p {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}

.lp-bg-section__text p:last-of-type {
  margin-bottom: 0;
}

.lp-bg-section__img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Section 5: メディカルパーソナル導線 */
.mp-cta-block {
  background: white;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
  padding: 44px 56px;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.mp-cta-block__label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 6px 22px;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-family: var(--font-round);
  font-weight: 700;
  margin-bottom: 20px;
}

.mp-cta-block__text {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 28px;
  font-size: .975rem;
}

/* PC改行補助 */
.pc-br { display: inline; }

/* ==========================================================================
   レスポンシブ: 腰痛ケアページ
   ========================================================================== */

@media (max-width: 768px) {
  .lp-bg-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* SP: 画像を先に表示 */
  .lp-bg-section__img {
    order: -1;
  }

  .mp-cta-block {
    padding: 32px 24px;
  }

  .pc-br { display: none; }
}

/* ==========================================================================
   メディカルパーソナルページ専用スタイル (page-medical-personal.php)
   ========================================================================== */

/* FV: アイキャッチラベル */
.seo-hero__eyecatch {
  display: inline-block;
  font-size: .8rem;
  color: var(--primary-dark);
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 10px;
  font-family: var(--font-round);
}

/* ---- Section 2: 対象者カードグリッド ---- */
.mp-target-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.mp-target-card {
  flex: 1 1 180px;
  max-width: 210px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  padding: 28px 20px;
  text-align: center;
}

.mp-target-card__emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--primary-pale);
  border-radius: 50%;
  color: var(--primary);
  margin: 0 auto 12px;
}
.mp-target-card__emoji svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.mp-target-card__title {
  font-family: var(--font-round);
  font-size: .925rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.5;
}

.mp-target-card__text {
  font-size: .825rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ---- Section 3: なぜ必要か — 2カラムレイアウト ---- */
.mp-cycle-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}

.mp-cycle-text p {
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 16px;
}

.mp-cycle-text p:last-of-type {
  margin-bottom: 0;
}

/* サイクル図 */
.mp-cycle-diagram {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mp-cycle-item {
  background: var(--bg-primary-soft);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  border: 1px solid var(--primary-light);
}

.mp-cycle-item--pain  { background: #fff0f1; border-color: #f8c4c7; }
.mp-cycle-item--treat { background: var(--bg-primary-soft); border-color: var(--primary-light); }
.mp-cycle-item--habit { background: #fffbea; border-color: #f5e49a; }
.mp-cycle-item--load  { background: #fff0f1; border-color: #f8c4c7; }

.mp-cycle-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 auto 4px;
}
.mp-cycle-item__icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.mp-cycle-item--pain  .mp-cycle-item__icon { background: rgba(248,193,198,0.35); color: #C4616A; }
.mp-cycle-item--treat .mp-cycle-item__icon { background: var(--primary-light);    color: var(--primary); }
.mp-cycle-item--habit .mp-cycle-item__icon { background: #fef3c7;                 color: #b45309; }
.mp-cycle-item--load  .mp-cycle-item__icon { background: rgba(248,193,198,0.35); color: #C4616A; }

.mp-cycle-item strong {
  display: block;
  font-family: var(--font-round);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.mp-cycle-item p {
  font-size: .8rem;
  color: var(--text-light);
  margin: 0;
}

.mp-cycle-arrow {
  text-align: center;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1;
  margin: 2px 0;
}

.mp-cycle-break {
  margin-top: 12px;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: .875rem;
  line-height: 1.6;
}

.mp-cycle-break strong {
  font-family: var(--font-round);
}

/* ---- Section 4: プログラム内容 ---- */
.mp-program-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.mp-program-confirm {
  text-align: center;
}

.mp-program-confirm__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 44px;
  border-radius: var(--radius-full);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.mp-program-confirm__text {
  color: var(--text-body);
  font-size: .95rem;
  line-height: 1.75;
}

.mp-program-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mp-program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 28px;
  border-top: 4px solid var(--primary);
}

.mp-program-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  color: var(--primary);
  margin-bottom: 12px;
}
.mp-program-card__icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.mp-program-card__title {
  font-family: var(--font-round);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.mp-program-card__text {
  color: var(--text-body);
  line-height: 1.85;
  font-size: .95rem;
  margin-bottom: 20px;
}

.mp-program-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mp-program-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--text-body);
}

.mp-program-card__list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--primary);
  border-radius: 50%;
  color: white;
  font-size: .65rem;
  font-weight: 700;
}

/* ---- Section 5: 比較表 ---- */
.mp-compare-wrap {
  margin-top: 40px;
  overflow-x: auto; /* SP横スクロール対応 */
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.mp-compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--white);
}

.mp-compare-table th,
.mp-compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  text-align: left;
  vertical-align: middle;
  font-size: .925rem;
}

.mp-compare-table thead th {
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: .95rem;
}

.mp-compare-table thead .col-mp-head {
  background: var(--primary-dark);
}

.mp-compare-table tbody tr:nth-child(even) {
  background: var(--bg-cream);
}

.mp-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.mp-compare-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.mp-compare-table .col-mp {
  color: var(--primary-dark);
  font-weight: 600;
}

/* ---- Section 6: 利用シーンカード ---- */
.mp-scene-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.mp-scene-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 28px;
  border-top: 4px solid var(--primary);
}

.mp-scene-card__emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.mp-scene-card__emoji svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.mp-scene-card__title {
  font-family: var(--font-round);
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.mp-scene-card__text {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.85;
}

/* ==========================================================================
   レスポンシブ: メディカルパーソナルページ
   ========================================================================== */

@media (max-width: 1024px) {
  .mp-cycle-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .mp-target-card {
    flex: 1 1 calc(50% - 10px);
    max-width: none;
  }

  .mp-program-cols {
    grid-template-columns: 1fr;
  }

  .mp-scene-cards {
    grid-template-columns: 1fr;
  }

  .mp-compare-table th,
  .mp-compare-table td {
    padding: 10px 14px;
    font-size: .875rem;
  }

  .mp-program-confirm__badge {
    font-size: .925rem;
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .mp-target-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ==========================================================================
   成長痛ケアページ（/growing-pains/）
   ========================================================================== */

/* --- 親御さんの悩み：6カードグリッド --- */
.worries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.worry-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.worry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.worry-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--primary-pale);
  border-radius: var(--radius-md);
  color: var(--primary);
  margin: 0 auto 12px;
}
.worry-card__icon svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.worry-card__text {
  font-size: .925rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.65;
}

/* --- 注意ブロック：共通 --- */
.notice-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.notice-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.notice-block__icon svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}
.notice-block--warning .notice-block__icon { background: #fef3c7; color: #b45309; }
.notice-block--danger  .notice-block__icon { background: #fee2e2; color: #dc2626; }

.notice-block__body {
  flex: 1;
}

.notice-block__title {
  font-family: var(--font-round);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.notice-block__text {
  font-size: .95rem;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 24px;
}

.notice-block__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.notice-block__list li {
  font-size: .925rem;
  color: var(--text-dark);
  font-weight: 600;
  padding-left: 22px;
  position: relative;
}

.notice-block__list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-size: .6rem;
  top: 5px;
}

.notice-block__note {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 8px;
}

/* 注意ブロック：警告（黄色） */
.notice-block--warning {
  background: #FFFBEB;
  border: 2px solid #F59E0B;
  border-left-width: 6px;
}

.notice-block--warning .notice-block__title {
  color: #92400E;
}

/* 注意ブロック：危険（赤） */
.notice-block--danger {
  background: #FEF2F2;
  border: 2px solid #EF4444;
  border-left-width: 6px;
}

.notice-block--danger .notice-block__title {
  color: #991B1B;
}

/* --- アプローチ：4ステップ（横並び） --- */
.gp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gp-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.gp-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-round);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.gp-step__title {
  font-family: var(--font-round);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}

.gp-step__text {
  font-size: .875rem;
  color: var(--text-body);
  line-height: 1.85;
}

/* --- 自宅でのサポート：3カード --- */
.home-care-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.home-care-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.home-care-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary-pale);
  border-radius: 50%;
  color: var(--primary);
  margin: 0 auto 14px;
}
.home-care-card__icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.home-care-card__title {
  font-family: var(--font-round);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.home-care-card__text {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.85;
}

.home-care-note {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 24px;
}

/* ==========================================================================
   レスポンシブ: 成長痛ケアページ
   ========================================================================== */

@media (max-width: 1024px) {
  .gp-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .worries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .notice-block {
    flex-direction: column;
    padding: 28px 24px;
    gap: 16px;
  }

  .notice-block__list {
    grid-template-columns: 1fr;
  }

  .gp-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gp-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding: 20px;
  }

  .gp-step__num {
    margin: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .home-care-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .worries-grid {
    grid-template-columns: 1fr;
  }

  .notice-block__title {
    font-size: 1.05rem;
  }
}

/* ==========================================================================
   ドロップダウンナビゲーション
   ========================================================================== */

/* 親要素ラッパー */
.global-nav__dropdown-wrap {
  position: relative;
}

/* リンク＋矢印を横並びにするラベル */
.global-nav__dropdown-label {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* 下矢印アイコン */
.global-nav__dropdown-arrow {
  transition: transform .25s ease;
  flex-shrink: 0;
}

/* ドロップダウンリスト（通常は非表示） */
.global-nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 32px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 164px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  list-style: none;
  padding: 8px 0;
  z-index: 200;
}

/* PC: ホバーで表示 */
@media (min-width: 769px) {
  /* ホバー途切れ防止: リンクとドロップダウンの32px隙間を不可視要素で埋める */
  .global-nav__dropdown-wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    width: calc(100% + 40px);
    height: 32px;
  }

  .global-nav__dropdown-wrap:hover .global-nav__dropdown {
    display: block;
    animation: dropdown-in .18s ease;
  }
  .global-nav__dropdown-wrap:hover .global-nav__dropdown-arrow {
    transform: rotate(180deg);
  }
}

@keyframes dropdown-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ドロップダウン各リンク */
.global-nav__dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: .875rem;
  color: var(--text-body);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.global-nav__dropdown-link:hover {
  color: var(--primary);
  background: var(--primary-pale);
}


/* ==========================================================================
   レスポンシブ: ドロップダウンナビゲーション（モバイル）
   ========================================================================== */

@media (max-width: 768px) {
  /* モバイルオーバーレイ内でドロップダウン親を全幅に */
  .global-nav.active .global-nav__dropdown-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* モバイルでは絶対配置せず縦展開・常時表示 */
  .global-nav.active .global-nav__dropdown {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--border-color);
    border-radius: 0;
    padding: 4px 0;
    background: var(--bg-gray);
    min-width: auto;
    width: 100%;
    animation: none;
  }

  .global-nav.active .global-nav__dropdown-link {
    padding: 10px 32px;
    font-size: .9rem;
  }
}

/* ============================
   お悩み・症状別ハブページ
   ============================ */

/* --- ヒーロー --- */
.symptoms-hero {
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--bg-cream) 100%);
  padding: 80px 0 64px;
  text-align: center;
}

.symptoms-hero__inner {
  max-width: 700px;
  margin: 0 auto;
}

.symptoms-hero__label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.symptoms-hero__title {
  font-family: var(--font-round);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.35;
}

.symptoms-hero__subtitle {
  font-size: .97rem;
  color: var(--text-body);
  line-height: 1.9;
}

/* --- カードグリッド --- */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* --- 各カード --- */
.symptom-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  text-decoration: none;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.symptom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.symptom-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.symptom-card:hover::before {
  opacity: 1;
}

/* --- カードヘッダー（アイコン＋タイトル） --- */
.symptom-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.symptom-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--primary-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.symptom-card:hover .symptom-card__icon {
  background: var(--primary-light);
}

.symptom-card__label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.symptom-card__title {
  font-family: var(--font-round);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.45;
  margin: 0;
}

/* --- 説明文 --- */
.symptom-card__desc {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-color);
}

/* --- チェックリスト --- */
.symptom-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.symptom-card__list li {
  position: relative;
  padding-left: 22px;
  font-size: .875rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 6px;
}

.symptom-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  background: var(--primary-pale);
  border: 2px solid var(--primary);
  border-radius: 50%;
}

/* --- CTAテキスト --- */
.symptom-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-round);
  font-size: .875rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.symptom-card:hover .symptom-card__cta {
  color: var(--primary-dark);
  gap: 10px;
}

/* --- 迷ったらCTA --- */
.symptoms-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px;
  background: var(--primary-pale);
  border-radius: var(--radius-lg);
}

.symptoms-cta__text {
  font-size: .97rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 28px;
}

.symptoms-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .symptoms-hero {
    padding: 56px 0 48px;
  }

  .symptoms-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .symptom-card {
    padding: 24px 20px 20px;
  }

  .symptom-card__header {
    gap: 12px;
  }

  .symptom-card__icon {
    width: 52px;
    height: 52px;
  }

  .symptom-card__title {
    font-size: 1.05rem;
  }

  .symptoms-cta__btns {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   サイトマップページ
   ========================================================================== */

.sitemap-section {
  padding: 64px 0;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list__item {
  border-bottom: 1px solid var(--border-color);
}

.sitemap-list__item:last-child {
  border-bottom: none;
}

.sitemap-list__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 4px;
  color: var(--text-body);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--transition);
}

.sitemap-list__link:hover {
  color: var(--primary);
}

.sitemap-list__icon {
  flex-shrink: 0;
  color: var(--primary);
}

.sitemap-list--child {
  padding-left: 28px;
  border-top: 1px solid var(--border-color);
}

.sitemap-list--child .sitemap-list__link {
  font-size: .9rem;
  font-weight: 400;
  color: var(--text-light);
  padding: 10px 4px;
}

.sitemap-list--child .sitemap-list__link:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sitemap-section {
    padding: 48px 0;
  }
}
