:root {
  --color-bg: #FFFBF7;
  --color-bg-soft: #FDF2EC;
  --color-bg-section: #FFFFFF;
  --color-bg-purple: #F5F1FA;
  --color-primary: #ECBCC0;
  --color-primary-deep: #D49AA0;
  --color-accent: #C2D9CD;
  --color-accent-deep: #A4C0B3;
  --color-purple: #B8A5DB;
  --color-purple-deep: #9A85C8;
  --color-text: #5A524C;
  --color-text-soft: #9C928A;
  --color-line: #F6EAE0;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(90, 82, 76, 0.04);
  --shadow-md: 0 12px 36px rgba(90, 82, 76, 0.06);
  --container: 1120px;
  --container-narrow: 760px;
  --font-heading: "Zen Maru Gothic", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
}

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 247, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--color-primary-deep);
}
.logo small {
  display: block;
  font-size: 10px;
  color: var(--color-text-soft);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 2px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--color-primary-deep); }
.nav-links ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 24px;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px;
  border: none; transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-align: center;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(236, 188, 192, 0.35);
}
.btn-primary:hover {
  background: var(--color-primary-deep);
  transform: translateY(-1px);
  color: #fff;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary-deep);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn-lg { padding: 16px 36px; font-size: 16px; }
.menu-toggle { display: none; background: none; border: none; padding: 8px; }
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text); margin: 5px 0; border-radius: 2px;
}

/* ========== Brand Banner (「からだにいいこと」公式) ========== */
.brand-banner {
  background: linear-gradient(90deg, #C9605E 0%, #E8806A 50%, #C9605E 100%);
  color: #fff;
  padding: 12px 0;
  position: relative;
}
.brand-banner::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border: 8px solid transparent;
  border-top-color: #C9605E;
}
.brand-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.brand-banner-eng {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 13px;
  opacity: 0.85;
  letter-spacing: 0.1em;
}
.brand-banner-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.5);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.brand-banner-logo:hover {
  border-bottom-color: #fff;
  color: #fff;
}
.brand-banner-logo strong {
  font-size: 19px;
  letter-spacing: 0.04em;
}
.brand-banner-sep {
  background: #fff;
  color: #C9605E;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.brand-banner-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (max-width: 540px) {
  .brand-banner { padding: 10px 0; }
  .brand-banner-inner { gap: 8px; font-size: 12px; }
  .brand-banner-eng { display: none; }
  .brand-banner-logo { font-size: 15px; }
  .brand-banner-text { font-size: 11px; }
}

/* Logo in header - emphasize 「からだにいいこと」公式 */
.logo small .logo-pill {
  display: inline-block;
  background: #C9605E;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.logo .logo-main {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

/* Hero v4 brand mark above tags */
.hero-v4-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-v4-brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: 0 6px 18px rgba(154, 78, 76, 0.15);
  width: fit-content;
  border-left: 4px solid #C9605E;
}
.hero-v4-brand-eng {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 11px;
  color: var(--color-text-soft);
  letter-spacing: 0.18em;
}
.hero-v4-brand-jp {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #C9605E;
  letter-spacing: 0.04em;
}

/* ========== Hero v4 (フルブリード写真＋オーバーレイ) ========== */
.hero-v4 {
  position: relative;
  width: 100%;
  min-height: 720px;
  height: 88vh;
  max-height: 880px;
  overflow: hidden;
  isolation: isolate;
}
.hero-v4-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-v4-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hero-v4-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.75) 0%, rgba(248, 232, 222, 0.60) 30%, rgba(238, 215, 200, 0.55) 70%, rgba(220, 195, 180, 0.65) 100%),
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(255, 255, 255, 0.25), transparent 70%);
  pointer-events: none;
}
.hero-v4-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 32px 24px 32px;
  gap: 24px;
}
@media (max-width: 540px) {
  .hero-v4-container { padding: 24px 16px; }
}

/* タグストリップ */
.hero-v4-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: flex-start;
}
.hero-v4-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  color: #C9605E;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(154, 78, 76, 0.18);
}
.hero-v4-tag small {
  font-size: 10px;
  margin-left: 6px;
  background: #FFE5DC;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}

/* メインコンテンツ */
.hero-v4-content {
  align-self: center;
  max-width: 720px;
  color: #fff;
}
.hero-v4-mini-badge {
  display: inline-block;
  background: var(--color-purple-deep);
  color: #fff;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(154, 133, 200, 0.45);
}
.hero-v4-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin: 0 0 32px;
  color: var(--color-text);
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.60);
}
.hero-v4-title span { display: block; }
.hero-v4-title em {
  font-style: normal;
  color: #C9605E;
  font-weight: 700;
  position: relative;
}
.hero-v4-title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 6px;
  height: 14px;
  background: rgba(255, 224, 220, 0.85);
  z-index: -1;
  border-radius: 100px;
}
.hero-v4-title span:nth-child(2) {
  margin-top: 6px;
}
.hero-v4-title span:nth-child(2) em {
  background: linear-gradient(135deg, #C9605E 0%, #B8484E 100%);
  color: #fff;
  -webkit-text-fill-color: #fff;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(184, 72, 78, 0.35);
}
.hero-v4-title span:nth-child(2) em::after { display: none; }
.hero-v4-subtitle {
  font-size: 16px;
  line-height: 2.0;
  color: var(--color-text);
  margin: 24px 0 32px;
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.50);
  letter-spacing: 0.04em;
}

/* CTA */
.hero-v4-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-v4-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  color: #C9605E;
  padding: 18px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  box-shadow: 0 12px 32px rgba(154, 78, 76, 0.40);
}
.hero-v4-btn:hover {
  background: #FFF5F2;
  color: #B84F4D;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(154, 78, 76, 0.50);
}
.hero-v4-btn-arrow {
  width: 28px; height: 28px;
  background: #FFE0DC;
  color: #C9605E;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s;
}
.hero-v4-btn:hover .hero-v4-btn-arrow { transform: translateX(4px); }
.hero-v4-btn-sub {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--color-text);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-v4-btn-sub:hover { color: #C9605E; border-bottom-color: #C9605E; }

.hero-v4-notes {
  font-size: 11px;
  line-height: 1.85;
  color: var(--color-text-soft);
  margin: 0;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.50);
}

/* 下部コーナー */
.hero-v4-corner {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  padding: 10px 24px 10px 12px;
  box-shadow: 0 8px 24px rgba(154, 78, 76, 0.30);
  width: fit-content;
}
.hero-v4-corner-koto {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-v4-corner-koto img {
  width: 90%;
  object-fit: contain;
  object-position: center 30%;
}
.hero-v4-corner-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-v4-corner-text small {
  font-size: 10px;
  color: var(--color-text-soft);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.hero-v4-corner-text strong {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text);
  font-weight: 700;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .hero-v4 { min-height: 640px; height: auto; }
  .hero-v4-title { font-size: clamp(28px, 8vw, 40px); }
  .hero-v4-bg img { object-position: center 15%; }
}
@media (max-width: 540px) {
  .hero-v4 { min-height: 560px; }
  .hero-v4-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-v4-btn { justify-content: center; }
  .hero-v4-btn-sub { text-align: center; }
  .hero-v4-corner { padding: 8px 18px 8px 8px; }
  .hero-v4-corner-koto { width: 40px; height: 40px; }
  .hero-v4-tags { gap: 6px; }
  .hero-v4-tag { font-size: 11px; padding: 6px 12px; }
}

/* ========== Hero v3 (シンプル・画像主役) - 旧版 ========== */
.hero-v3 {
  position: relative;
  background: linear-gradient(180deg, #FFF8F2 0%, #FCEAE0 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-v3::before, .hero-v3::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-v3::before {
  width: 500px; height: 500px;
  background: rgba(236, 188, 192, 0.40);
  top: -150px; right: -150px;
}
.hero-v3::after {
  width: 400px; height: 400px;
  background: rgba(184, 165, 219, 0.20);
  bottom: -150px; left: -100px;
}

.hero-v3-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-v3-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--color-primary-deep);
  font-weight: 700;
  margin: 0 0 24px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(212, 154, 160, 0.30);
  border-radius: 100px;
}

.hero-v3-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin: 0 0 32px;
  color: var(--color-text);
}
.hero-v3-title em {
  font-style: normal;
  color: var(--color-primary-deep);
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.hero-v3-title em::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 14px;
  background: rgba(236, 188, 192, 0.50);
  z-index: -1;
  border-radius: 100px;
}

.hero-v3-lead {
  font-size: 16px;
  line-height: 2.1;
  color: var(--color-text);
  margin: 0 0 40px;
  max-width: 480px;
}

.hero-v3-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-v3-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-primary-deep);
  color: #fff;
  padding: 18px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(212, 154, 160, 0.40);
}
.hero-v3-btn span {
  display: inline-block;
  transition: transform 0.2s;
}
.hero-v3-btn:hover {
  background: #B8848A;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 154, 160, 0.50);
  color: #fff;
}
.hero-v3-btn:hover span { transform: translateX(4px); }
.hero-v3-btn-sub {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--color-text);
  padding-bottom: 4px;
  transition: color 0.2s;
}
.hero-v3-btn-sub:hover { color: var(--color-primary-deep); border-bottom-color: var(--color-primary-deep); }

.hero-v3-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-v3-image::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, #fff 0%, rgba(255, 255, 255, 0) 65%);
  border-radius: 50%;
}
.hero-v3-image img {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(154, 78, 76, 0.18));
  animation: kotoFloat 5s ease-in-out infinite;
}

/* Trust Band */
.trust-band {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-line);
}
.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-band-item {
  text-align: center;
  border-right: 1px solid var(--color-line);
  padding: 4px 8px;
}
.trust-band-item:last-child { border-right: none; }
.trust-band-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary-deep);
  margin-bottom: 4px;
}
.trust-band-item span {
  font-size: 12px;
  color: var(--color-text-soft);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .hero-v3 { padding: 56px 0 72px; }
  .hero-v3-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-v3-image { order: -1; max-width: 320px; margin: 0 auto; }
  .hero-v3-image img { max-width: 280px; }
  .hero-v3-title { font-size: clamp(28px, 8vw, 40px); }
  .trust-band-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 8px; }
  .trust-band-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 540px) {
  .hero-v3-cta { flex-direction: column; align-items: stretch; }
  .hero-v3-btn { justify-content: center; }
  .hero-v3-btn-sub { text-align: center; }
}

/* ========== Hero v2 (Editorial / Magazine style) - 旧版（保持） ========== */
.hero-v2 {
  position: relative;
  background: linear-gradient(180deg, #FFFBF7 0%, #FBEEE6 60%, #F8E0D5 100%);
  overflow: hidden;
  padding: 80px 0 0;
}
.hero-v2-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-v2-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-v2-blob-1 {
  width: 480px; height: 480px;
  background: rgba(236, 188, 192, 0.45);
  top: -120px; right: -100px;
}
.hero-v2-blob-2 {
  width: 360px; height: 360px;
  background: rgba(184, 165, 219, 0.30);
  bottom: 100px; left: -120px;
}
.hero-v2-blob-3 {
  width: 280px; height: 280px;
  background: rgba(194, 217, 205, 0.30);
  top: 40%; right: 30%;
}
.hero-v2-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

/* Eyebrow */
.hero-v2-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-v2-eyebrow-num {
  font-family: "Playfair Display", "Zen Maru Gothic", serif;
  font-size: 18px;
  font-style: italic;
  color: var(--color-primary-deep);
  font-weight: 700;
}
.hero-v2-eyebrow-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--color-text-soft);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding-left: 50px;
}
.hero-v2-eyebrow-label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 36px; height: 1px;
  background: var(--color-text-soft);
}

/* Title */
.hero-v2-title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0 0 32px;
  color: var(--color-text);
}
.hero-v2-line { display: block; }
.hero-v2-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--color-primary-deep) 0%, #C97778 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Lead */
.hero-v2-lead {
  font-size: 16px;
  line-height: 2.1;
  color: var(--color-text-soft);
  margin: 0 0 40px;
  max-width: 480px;
}

/* CTA */
.hero-v2-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-v2-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--color-text);
  color: #fff;
  padding: 22px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(90, 82, 76, 0.18);
}
.hero-v2-btn-primary:hover {
  background: var(--color-primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 154, 160, 0.40);
  color: #fff;
}
.hero-v2-btn-arrow {
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s;
}
.hero-v2-btn-primary:hover .hero-v2-btn-arrow { transform: translateX(4px); }
.hero-v2-btn-text {
  font-size: 14px;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--color-text);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-v2-btn-text:hover {
  color: var(--color-primary-deep);
  border-bottom-color: var(--color-primary-deep);
}

/* Meta */
.hero-v2-meta {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(90, 82, 76, 0.12);
}
.hero-v2-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-v2-meta-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.1;
}
.hero-v2-meta-num small {
  font-size: 14px;
  margin-left: 2px;
  font-weight: 500;
  color: var(--color-text-soft);
}
.hero-v2-meta-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--color-text-soft);
  font-weight: 700;
}

/* Visual */
.hero-v2-visual {
  position: relative;
}
.hero-v2-photo-slot {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  background: linear-gradient(135deg, #F5C5C8 0%, #E8B4B8 50%, #C9A6CC 100%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(90, 82, 76, 0.20);
}
.hero-v2-photo-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 255, 255, 0.30), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(184, 165, 219, 0.25), transparent 55%);
}
.hero-v2-photo-placeholder {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 48px;
}
.hero-v2-photo-text {
  color: #fff;
  text-shadow: 0 2px 12px rgba(154, 78, 76, 0.30);
}
.hero-v2-photo-meta {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.20);
  padding: 6px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  margin-bottom: 20px;
}
.hero-v2-photo-h {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  color: #fff;
}
.hero-v2-photo-h em {
  font-style: italic;
  font-weight: 500;
}
.hero-v2-photo-source {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* コトちゃんアクセント */
.hero-v2-character {
  position: absolute;
  bottom: -12px;
  right: -16px;
  width: 140px;
  z-index: 2;
  animation: kotoFloat 5s ease-in-out infinite;
}
.hero-v2-character img {
  width: 100%;
  filter: drop-shadow(0 12px 24px rgba(90, 82, 76, 0.30));
}

/* Tags */
.hero-v2-tags {
  position: absolute;
  top: -12px;
  left: -8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  z-index: 3;
}
.hero-v2-tag {
  background: #fff;
  color: var(--color-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(90, 82, 76, 0.10);
  transform: rotate(-2deg);
}
.hero-v2-tag:nth-child(2) { transform: rotate(1deg); margin-left: 12px; }
.hero-v2-tag:nth-child(3) { transform: rotate(-1deg); margin-left: 4px; }
.hero-v2-tag:nth-child(4) { transform: rotate(2deg); margin-left: 16px; }
.hero-v2-tag:nth-child(5) { transform: rotate(-2deg); margin-left: 8px; }

/* Marquee */
.hero-v2-marquee {
  background: var(--color-text);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.hero-v2-marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.3em;
  font-weight: 500;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Trust Band */
.trust-band {
  background: var(--color-bg);
  padding: 32px 0;
  border-bottom: 1px solid var(--color-line);
}
.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-band-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--color-text);
}
.trust-band-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary-deep);
  margin-bottom: 2px;
}
.trust-band-icon {
  color: var(--color-primary);
  font-size: 8px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .hero-v2 { padding: 48px 0 0; }
  .hero-v2-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; }
  .hero-v2-title { font-size: clamp(32px, 9vw, 48px); }
  .hero-v2-meta { gap: 24px; }
  .hero-v2-meta-num { font-size: 22px; }
  .hero-v2-tags { position: static; flex-direction: row; flex-wrap: wrap; margin-bottom: 16px; }
  .hero-v2-tag, .hero-v2-tag:nth-child(n) { transform: none; margin-left: 0; }
  .hero-v2-character { width: 100px; bottom: -8px; right: -8px; }
  .trust-band-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .hero-v2-cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero-v2-btn-primary { justify-content: center; }
  .hero-v2-btn-text { text-align: center; }
  .hero-v2-meta { flex-wrap: wrap; gap: 16px 24px; }
  .trust-band-grid { grid-template-columns: 1fr; }
}

/* ========== Hero (smaluna-style) - kept for backwards compat ========== */
.hero-smaluna {
  position: relative;
  background: linear-gradient(135deg, #F8C5B5 0%, #FAB8A6 50%, #F8B8B8 100%);
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.35) 1.5%, transparent 1.7%),
    radial-gradient(circle at 28% 65%, rgba(255, 255, 255, 0.30) 2%, transparent 2.2%),
    radial-gradient(circle at 8% 88%, rgba(255, 255, 255, 0.30) 1.2%, transparent 1.4%),
    radial-gradient(circle at 95% 30%, rgba(255, 255, 255, 0.25) 1.8%, transparent 2%),
    radial-gradient(circle at 78% 78%, rgba(255, 255, 255, 0.30) 1.4%, transparent 1.6%),
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.20) 1.0%, transparent 1.2%),
    radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.18) 1.2%, transparent 1.4%);
  background-size: 100% 100%;
}
.hero-smaluna::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 24px;
  background:
    radial-gradient(circle at 12% 50%, transparent 8px, var(--color-bg) 8px 12px, transparent 12px),
    var(--color-bg);
  display: none; /* 装飾オフ */
}
.hero-grid-smaluna {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 540px;
}
.menu-tags {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.menu-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: #C9605E;
  border-radius: 6px;
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(201, 96, 94, 0.08);
}
.menu-tag small {
  font-size: 10px;
  color: #C9605E;
  margin-left: 6px;
  font-weight: 500;
  background: #FFE5DC;
  padding: 2px 6px;
  border-radius: 4px;
}
.hero-mini-badge {
  display: inline-block;
  background: var(--color-purple-deep);
  color: #fff;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(154, 133, 200, 0.30);
}
.hero-main-block {
  background: #ED7E5A;
  color: #fff;
  padding: 26px 36px;
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 8px 24px rgba(237, 126, 90, 0.30);
  margin-bottom: 20px;
}
.hero-main-block h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 700;
  margin: 0;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: #fff;
}
.hero-main-block h1 em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: #fff;
}
.hero-notes {
  font-size: 12px;
  color: #5A4540;
  line-height: 1.85;
  margin: 0;
  opacity: 0.85;
}

/* Photo on the right (with arch frame) */
.hero-photo {
  position: relative;
  width: 100%;
}
.hero-photo-frame {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.20) 100%);
  border-top-left-radius: 50% 24%;
  border-top-right-radius: 50% 24%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: 0 24px 56px rgba(201, 96, 94, 0.20);
}
.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(248, 184, 184, 0.30), transparent 60%);
}
.hero-photo-frame img {
  position: relative;
  width: 92%;
  height: auto;
  z-index: 1;
  filter: drop-shadow(0 16px 32px rgba(154, 78, 76, 0.20));
  animation: kotoFloat 5s ease-in-out infinite;
}
@keyframes kotoFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

/* ========== Hero Band (紫帯) ========== */
.hero-band {
  background: linear-gradient(90deg, #8A87DA 0%, #9A85C8 100%);
  color: #fff;
  padding: 22px 0;
  position: relative;
}
.hero-band-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-band-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-band-dot {
  width: 14px; height: 14px;
  background: #FAD55A;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(250, 213, 90, 0.25);
}
.hero-band-item sup {
  font-size: 10px;
  font-weight: 500;
  margin-left: 2px;
}
@media (max-width: 900px) {
  .hero-band-items { flex-direction: column; gap: 12px; align-items: flex-start; padding: 0 16px; }
  .hero-band-items .hero-band-item { font-size: 14px; }
}

/* ========== お知らせカード ========== */
.hero-notice-wrap {
  background: #fff;
  padding: 32px 0;
}
.hero-notice {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #FFE2D6 0%, #FCC8B0 100%);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  max-width: 720px;
  margin: 0 auto;
  text-decoration: none;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-notice:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(252, 200, 176, 0.40);
}
.hero-notice-tag {
  display: inline-block;
  background: var(--color-purple-deep);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.hero-notice h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #C9605E;
  line-height: 1.4;
}
.hero-notice-tags {
  display: flex;
  gap: 8px;
}
.hero-notice-mini-tag {
  background: #fff;
  color: #C9605E;
  border: 1.5px solid #F4B59E;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
}
.hero-notice-cover {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-notice-cover img {
  width: 88%;
  filter: drop-shadow(0 4px 8px rgba(154, 78, 76, 0.10));
}

/* ========== Old Hero (kept for backward compat / other pages) ========== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(236, 188, 192, 0.20), transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(194, 217, 205, 0.16), transparent 70%),
    var(--color-bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-bg-soft);
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500; color: var(--color-primary-deep);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-primary);
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.55;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin: 0 0 24px;
  color: var(--color-text);
}
.hero h1 em {
  font-style: normal;
  color: var(--color-primary-deep);
  background: linear-gradient(transparent 70%, rgba(236, 188, 192, 0.40) 70%);
}
.hero p.lead {
  font-size: 17px;
  color: var(--color-text-soft);
  margin: 0 0 36px;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 28px; margin-top: 36px;
  font-size: 13px; color: var(--color-text-soft);
}
.hero-meta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px; color: var(--color-primary-deep);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.2;
  max-width: 460px; margin-left: auto;
}
.hero-character {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, #FFFBF7 0%, #FDF2EC 60%, #F5E1D7 100%);
  border-radius: 50%;
  margin: 6%;
  box-shadow: 0 30px 60px rgba(216, 138, 138, 0.15), inset 0 0 0 1px rgba(255,255,255,0.5);
  overflow: hidden;
}
.hero-character::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 20%, rgba(236, 188, 192, 0.25), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(194, 217, 205, 0.20), transparent 50%);
}
.hero-character img {
  width: 88%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 16px rgba(90, 82, 76, 0.10));
  animation: kotoFloat 4s ease-in-out infinite;
}
@keyframes kotoFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
}
.hero-card-main {
  inset: 0; padding: 36px;
  background: linear-gradient(160deg, #FDF2EC 0%, #FFFBF7 60%, #EFF6F1 100%);
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-mock-phone {
  align-self: center;
  width: 60%; aspect-ratio: 9/18;
  background: #fff;
  border-radius: 32px;
  border: 8px solid #6B5F58;
  box-shadow: 0 20px 50px rgba(90, 82, 76, 0.12);
  overflow: hidden;
  position: relative;
}
.hero-mock-phone::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 50%; height: 18px;
  background: #6B5F58;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  height: 100%;
  background: linear-gradient(180deg, #FDF2EC 0%, #fff 50%);
  padding: 36px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.phone-bar {
  height: 8px; border-radius: 4px;
  background: var(--color-line);
}
.phone-bar.short { width: 60%; }
.phone-bar.primary { background: var(--color-primary); width: 80%; height: 12px; }
.phone-cta {
  margin-top: auto;
  background: var(--color-primary);
  color: #fff; text-align: center;
  border-radius: var(--radius-pill);
  padding: 8px; font-size: 10px; font-weight: 700;
}
.hero-badge {
  position: absolute; top: 24px; right: -10px;
  background: var(--color-accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 12px; font-weight: 700;
  box-shadow: var(--shadow-sm);
  transform: rotate(4deg);
}
.hero-badge strong { display: block; font-size: 16px; font-family: var(--font-heading); }
.hero-tip {
  position: absolute; bottom: 30px; left: -20px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  display: flex; align-items: center; gap: 10px;
}
.hero-tip-emoji {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

/* ========== Section base ========== */
section.block {
  padding: 100px 0;
}
.section-head {
  text-align: center;
  max-width: 720px; margin: 0 auto 60px;
}
.section-eyebrow {
  color: var(--color-primary-deep);
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.section-lead {
  color: var(--color-text-soft);
  margin: 0;
}

/* ========== Message Section ========== */
.message {
  background: var(--color-bg-soft);
  text-align: center;
}
.message-text {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.04em;
  max-width: 760px; margin: 0 auto 32px;
  color: var(--color-text);
}
.message-text span {
  background: linear-gradient(transparent 75%, rgba(236, 188, 192, 0.40) 75%);
}
.message-sub {
  color: var(--color-text-soft);
  font-size: 15px;
  max-width: 600px; margin: 0 auto;
}

/* ========== Menu Section ========== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.menu-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--color-bg-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.menu-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 0 0 12px;
}
.menu-card .price {
  color: var(--color-primary-deep);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 14px;
}
.menu-card p {
  color: var(--color-text-soft);
  font-size: 14px;
  margin: 0 0 24px;
}
.menu-card .menu-list {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.menu-card .menu-list li {
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--color-line);
  color: var(--color-text-soft);
}
.menu-card .menu-list li:last-child { border-bottom: none; }
.menu-card .menu-list li::before {
  content: "・"; color: var(--color-primary);
}
.menu-card .card-cta {
  margin-top: auto;
}
.menu-card-coming { opacity: 0.85; }
.menu-card-coming .menu-icon { background: #EFF6F1; }
.badge-coming {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ========== Flow Section ========== */
.flow {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.flow-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.flow-num {
  display: inline-block;
  width: 40px; height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
}
.flow-step h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 0 10px;
}
.flow-step p {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0;
}

/* ========== Reasons Section ========== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.reason {
  text-align: center;
  padding: 24px;
}
.reason-icon {
  width: 96px; height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-bg-soft), #EFF6F1);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.reason h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin: 0 0 12px;
}
.reason p {
  color: var(--color-text-soft);
  font-size: 14px;
  margin: 0;
}

/* ========== FAQ ========== */
.faq { background: #fff; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-line);
  padding: 4px 0;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none; border: none;
  padding: 22px 4px;
  font-size: 16px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  color: var(--color-text);
}
.faq-q::before {
  content: "Q.";
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 18px; font-weight: 700;
  flex-shrink: 0;
}
.faq-q-text { flex: 1; }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary-deep);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--color-text-soft);
  font-size: 14px;
  padding: 0 4px 0 36px;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
  padding: 0 4px 22px 36px;
}

/* ========== CTA Banner ========== */
.cta-band {
  background: linear-gradient(135deg, #F2C9CD 0%, #ECBCC0 35%, #D9E4DA 70%, #C2D9CD 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 16px;
}
.cta-band p {
  margin: 0 0 32px;
  opacity: 0.95;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--color-primary-deep);
}
.cta-band .btn-primary:hover {
  background: var(--color-bg-soft);
}

/* ========== Footer ========== */
.site-footer {
  background: #6B5F58;
  color: #EAE0D5;
  padding: 60px 0 30px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h5 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  margin: 0 0 16px;
}
.footer-grid ul {
  list-style: none; padding: 0; margin: 0;
}
.footer-grid li { padding: 4px 0; }
.footer-grid a:hover { color: #fff; }
.footer-brand p {
  color: #C4B7AB;
  margin: 12px 0 0;
  line-height: 1.7;
}
.copyright {
  text-align: center;
  color: #B5A89B;
  border-top: 1px solid #847770;
  padding-top: 24px;
  font-size: 12px;
}

/* ========== Posts (blog/news) ========== */
.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.post-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.post-card-link { display: block; padding: 24px; }
.post-thumb { margin: -24px -24px 16px; }
.post-meta {
  font-size: 12px; color: var(--color-text-soft);
  margin-bottom: 8px;
}
.post-title {
  font-family: var(--font-heading);
  font-size: 18px; margin: 0 0 10px;
}
.post-excerpt {
  font-size: 13px; color: var(--color-text-soft); margin: 0;
}
.no-posts {
  text-align: center; color: var(--color-text-soft);
  padding: 60px 0;
}
.pagination {
  margin-top: 60px; text-align: center;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px; margin: 0 4px;
  border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--color-line);
}
.pagination .page-numbers.current {
  background: var(--color-primary); color: #fff; border-color: var(--color-primary);
}

/* ========== Single / Page ========== */
.page-content,
.single-post {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.single-head { margin-bottom: 32px; }
.single-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  margin: 8px 0 0;
  line-height: 1.5;
}
.single-thumb {
  margin: 0 -48px 32px;
  border-radius: 0;
}
.single-thumb img { border-radius: 0; }
.entry-content {
  font-size: 16px; line-height: 1.95;
}
.entry-content p { margin: 0 0 1.4em; }
.entry-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 2em 0 1em;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-primary);
}
.entry-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 1.6em 0 0.8em;
  color: var(--color-primary-deep);
}
.entry-content a {
  color: var(--color-primary-deep);
  text-decoration: underline;
}
.entry-content ul, .entry-content ol { padding-left: 1.5em; }
.entry-content blockquote {
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-soft);
  padding: 16px 20px;
  margin: 1.5em 0;
  color: var(--color-text-soft);
}
.single-footer {
  margin-top: 48px;
  text-align: center;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .hero-grid-smaluna { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
  .hero-text { order: 2; }
  .hero-photo { order: 1; max-width: 320px; margin: 0 auto; }
  .hero-main-block { padding: 20px 24px; }
  .hero-notice { grid-template-columns: 1fr; text-align: center; }
  .hero-notice-cover { margin: 0 auto; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { margin: 0 auto; max-width: 360px; }
  .menu-grid, .flow-grid, .reasons-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  section.block { padding: 60px 0; }
  .hero { padding: 50px 0 70px; }
  .page-content,
  .single-post { padding: 32px 20px; }
  .single-thumb { margin: 0 -20px 24px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 16px; flex-wrap: wrap; }
}

/* ========== Hero icons row ========== */
.hero-icons {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-icon-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 14px 10px;
  background: #fff;
  border: 1.5px solid var(--color-line);
  border-radius: var(--radius-md);
  min-width: 72px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hero-icon-tile:hover {
  transform: translateY(-3px);
  border-color: var(--c, var(--color-primary));
  box-shadow: var(--shadow-md);
}
.hero-icon-tile span {
  font-size: 24px;
  line-height: 1;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c, var(--color-primary)) 18%, white);
  display: flex; align-items: center; justify-content: center;
}
.hero-icon-tile small {
  font-size: 11px;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media (max-width: 540px) {
  .hero-icons { gap: 8px; }
  .hero-icon-tile { min-width: 60px; padding: 10px 8px 8px; }
  .hero-icon-tile span { width: 34px; height: 34px; font-size: 20px; }
  .hero-icon-tile small { font-size: 10px; }
}

/* ========== Journey Map ========== */
.journey {
  background: linear-gradient(180deg, #FFFBF7 0%, #F5F1FA 100%);
  position: relative;
  overflow: hidden;
}
.journey::before, .journey::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.journey::before {
  width: 380px; height: 380px;
  background: rgba(184, 165, 219, 0.18);
  top: -100px; right: -80px;
}
.journey::after {
  width: 320px; height: 320px;
  background: rgba(236, 188, 192, 0.15);
  bottom: -60px; left: -60px;
}
.journey-eyebrow { color: var(--color-purple-deep); }

.journey-track {
  position: relative;
  margin: 40px 0;
}
.journey-line {
  position: absolute;
  top: 38px;
  left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--color-purple) 0 6px,
    transparent 6px 12px
  );
  z-index: 0;
}
.journey-stops {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}
.journey-stop {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  transition: transform 0.2s;
}
.journey-stop:hover { transform: translateY(-3px); }
.journey-stop-month {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--color-purple-deep);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.journey-stop-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 4px 0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.journey-stop:hover .journey-stop-icon {
  border-color: var(--color-purple);
  box-shadow: 0 8px 20px rgba(184, 165, 219, 0.30);
}
.journey-stop.is-active .journey-stop-icon {
  border-color: var(--color-purple-deep);
  background: linear-gradient(135deg, #fff 0%, #F5F1FA 100%);
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(154, 133, 200, 0.35);
}
.journey-stop-label {
  font-size: 12px;
  color: var(--color-text);
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

.journey-detail-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-line);
  max-width: 760px;
  margin: 32px auto 0;
  min-height: 280px;
}
.journey-detail { display: none; animation: fadeInUp 0.4s ease; }
.journey-detail.is-active { display: block; }
.journey-detail-eyebrow {
  font-family: var(--font-heading);
  color: var(--color-purple-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.journey-detail h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 0 0 16px;
}
.journey-detail p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 2;
  margin: 0 0 16px;
}
.journey-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.journey-detail li {
  font-size: 14px;
  color: var(--color-text);
  padding: 6px 0 6px 28px;
  position: relative;
}
.journey-detail li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  color: var(--color-purple-deep);
  font-weight: 700;
  width: 20px; height: 20px;
  background: var(--color-bg-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
@media (max-width: 900px) {
  .journey-stops { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .journey-stop-icon { width: 56px; height: 56px; font-size: 24px; }
  .journey-stop-label { font-size: 10px; }
  .journey-stop-month { font-size: 9px; }
  .journey-line { top: 28px; }
  .journey-detail-wrap { padding: 28px 24px; }
}

/* ========== 24時間 医療相談室 ========== */
.consult-room {
  background: linear-gradient(135deg, #F5F1FA 0%, #FFFBF7 50%, #FDF2EC 100%);
}
.consult-eyebrow { color: var(--color-purple-deep); }
.consult-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  border: 1px solid var(--color-line);
}
.consult-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 12px 0 16px;
}
.consult-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 2;
  margin: 0 0 24px;
}
.consult-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.consult-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--color-bg-purple);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--color-text);
}
.consult-feature strong {
  display: inline-block;
  margin-right: 10px;
  color: var(--color-purple-deep);
  font-weight: 700;
}
.consult-feature-icon {
  font-size: 22px;
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Chat bubbles */
.consult-card-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--color-line);
  position: relative;
}
.consult-card-visual::before {
  content: "🌙";
  position: absolute;
  top: -16px;
  right: 16px;
  width: 40px; height: 40px;
  background: var(--color-purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.consult-bubble {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.7;
  position: relative;
}
.consult-bubble-1 {
  align-self: flex-start;
  background: var(--color-bg-soft);
  border-bottom-left-radius: 4px;
  color: var(--color-text);
}
.consult-bubble-doctor {
  align-self: flex-end;
  background: var(--color-purple);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.consult-bubble-meta {
  display: block;
  font-size: 10px;
  margin-bottom: 4px;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .consult-card { grid-template-columns: 1fr; padding: 32px 24px; gap: 32px; }
}

/* ========== Floating CTA (コトちゃん) ========== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 10px 22px 10px 12px;
  box-shadow: 0 8px 28px rgba(216, 138, 138, 0.25), 0 4px 12px rgba(90, 82, 76, 0.10);
  border: 1.5px solid var(--color-primary);
  text-decoration: none;
  color: var(--color-text);
  transform: translateY(24px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s, box-shadow 0.2s;
}
.floating-cta.is-visible {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.floating-cta:hover {
  box-shadow: 0 12px 36px rgba(216, 138, 138, 0.35), 0 6px 16px rgba(90, 82, 76, 0.12);
  transform: translateY(-2px);
}
.floating-cta-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  object-fit: cover;
  object-position: center 30%;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: var(--shadow-sm);
}
.floating-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.floating-cta-eyebrow {
  font-size: 10px;
  color: var(--color-primary-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.floating-cta-main {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
@media (max-width: 540px) {
  .floating-cta {
    bottom: 12px;
    right: 12px;
    left: 12px;
    justify-content: center;
    padding: 8px 16px 8px 8px;
  }
  .floating-cta-img { width: 44px; height: 44px; }
  .floating-cta-eyebrow { font-size: 9px; }
  .floating-cta-main { font-size: 13px; }
}

/* Fade-in subtle */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* ========== Section foot note ========== */
.section-foot-note {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-soft);
  margin: 32px 0 0;
}

/* ========== お悩みから探す ========== */
.worry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.worry-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px 18px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: block;
}
.worry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.worry-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: inline-block;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  line-height: 72px;
}
.worry-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px;
}
.worry-card p {
  font-size: 12px;
  color: var(--color-text-soft);
  margin: 0;
}

/* ========== 実績数値バー ========== */
.stats-band {
  background: linear-gradient(135deg, #FDF2EC 0%, #FFFBF7 50%, #EFF6F1 100%);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-primary-deep);
  line-height: 1.2;
}
.stat-num span {
  font-size: 14px;
  margin-left: 4px;
  color: var(--color-text-soft);
  font-weight: 500;
}
.stat-label {
  font-size: 13px;
  color: var(--color-text-soft);
  margin-top: 8px;
}
.stats-note {
  text-align: center;
  font-size: 11px;
  color: var(--color-text-soft);
  margin: 24px 0 0;
}

/* ========== 運営体制カード ========== */
.ops-lead-card {
  background: linear-gradient(135deg, #FFFBF7 0%, #FDF2EC 100%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.ops-lead-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.ops-lead-name {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-text);
}
.ops-lead-meta {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0 0 24px;
  letter-spacing: 0.04em;
}
.ops-lead-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.95;
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: left;
}
.ops-lead-link {
  display: inline-block;
  color: var(--color-primary-deep);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--color-primary-deep);
}

/* ========== 医師チーム特徴 ========== */
.doctors-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.doctors-feature {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.doctors-feature-num {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--color-primary-deep);
  font-weight: 700;
  line-height: 1.2;
}
.doctors-feature-num span {
  font-size: 14px;
  margin-left: 4px;
  color: var(--color-text-soft);
  font-weight: 500;
}
.doctors-feature-label {
  font-size: 13px;
  color: var(--color-text);
  margin-top: 12px;
  line-height: 1.7;
}
.doctors-placeholder {
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.doctors-placeholder-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary-deep);
  margin: 0 0 8px;
}
.doctors-placeholder-text {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0;
  line-height: 1.8;
}

/* ========== 利用者の声 ========== */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.voice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.voice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.voice-tag {
  display: inline-block;
  background: var(--color-bg-soft);
  color: var(--color-primary-deep);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 500;
}
.voice-rating {
  font-size: 14px;
  color: #E8B447;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}
.voice-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.85;
  margin: 0 0 16px;
}
.voice-meta {
  font-size: 12px;
  color: var(--color-text-soft);
  margin: 0;
  border-top: 1px dashed var(--color-line);
  padding-top: 12px;
}

/* ========== 安心の取り組み ========== */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.safety-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--color-line);
  text-align: left;
}
.safety-icon {
  font-size: 36px;
  width: 64px; height: 64px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.safety-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-text);
}
.safety-item p {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.85;
  margin: 0;
}

/* ========== 来院 vs オンライン比較 ========== */
.compare-band {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
}
.compare-table-wrap {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-line);
  font-size: 14px;
}
.compare-table thead th {
  background: var(--color-bg-soft);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
  text-align: center;
}
.compare-table thead th small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-soft);
  margin-top: 4px;
}
.compare-table thead th.col-online {
  background: var(--color-primary);
  color: #fff;
}
.compare-table thead th.col-online small {
  color: #fff;
  opacity: 0.8;
}
.compare-table tbody th {
  width: 28%;
  font-weight: 700;
  background: #fff;
  color: var(--color-text);
}
.compare-table .col-online {
  background: rgba(236, 188, 192, 0.10);
}
.compare-table .col-online strong {
  color: var(--color-primary-deep);
  font-weight: 700;
}
.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: none;
}

/* ========== メディア掲載 ========== */
.media-band {
  background: #fff;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.media-logo {
  background: #fff;
  padding: 36px 16px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-soft);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: color 0.2s;
}
.media-logo:hover {
  color: var(--color-primary-deep);
}

/* ========== コラム（からだにいいこと記事） ========== */
.columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.column-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: block;
}
.column-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}
.column-cat {
  display: inline-block;
  background: var(--color-bg-soft);
  color: var(--color-primary-deep);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.column-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  margin: 0 0 12px;
  color: var(--color-text);
}
.column-card p {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.85;
  margin: 0 0 16px;
}
.column-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-deep);
}
.columns-more {
  text-align: center;
  margin-top: 40px;
}

/* ========== Responsive (additional) ========== */
@media (max-width: 900px) {
  .worry-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .doctors-features,
  .voices-grid,
  .safety-grid,
  .columns-grid {
    grid-template-columns: 1fr;
  }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .ops-lead-card { padding: 36px 24px; }
  .compare-table th, .compare-table td { padding: 14px 12px; font-size: 13px; }
  .compare-table tbody th { width: 36%; }
}
@media (max-width: 540px) {
  .worry-grid { grid-template-columns: 1fr; }
}

/* ========== Sub-page Hero ========== */
.sub-hero {
  padding: 80px 0 90px;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(236, 188, 192, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(194, 217, 205, 0.14), transparent 70%),
    var(--color-bg);
}
.sub-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.sub-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.55;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin: 16px 0 20px;
}
.sub-hero .lead {
  font-size: 16px;
  color: var(--color-text-soft);
  margin: 0 0 32px;
  max-width: 540px;
  line-height: 2;
}
.sub-hero-about { text-align: center; padding: 80px 0 60px; }
.sub-hero-about .hero-eyebrow { margin: 0 auto 12px; }
.sub-hero-about .about-lead {
  margin: 0 auto;
  max-width: 720px;
}

/* Pill illustration */
.sub-hero-visual { text-align: center; }
.pill-illust {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: inline-block;
}
.pill-row {
  display: flex; gap: 10px;
  margin-bottom: 12px;
}
.pill-row:last-child { margin-bottom: 0; }
.pill-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, #F2C9CD 100%);
  box-shadow: inset 2px 2px 4px rgba(255,255,255,0.5), inset -2px -2px 4px rgba(0,0,0,0.05);
}
.pill-row:nth-child(2) .pill-dot {
  background: linear-gradient(135deg, var(--color-accent) 0%, #D9E4DA 100%);
}

/* STD kit illustration */
.std-illust {
  display: inline-block;
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-md);
}
.std-kit {
  width: 220px;
  display: flex; flex-direction: column; gap: 14px;
}
.std-kit-line {
  height: 14px; background: var(--color-bg-soft);
  border-radius: 7px;
  width: 100%;
}
.std-kit-line.short { width: 60%; }
.std-tag {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--color-accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* ========== ピル種類別 ========== */
.pill-types {
  display: flex; flex-direction: column;
  gap: 24px;
}
.pill-type {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.pill-type-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-line);
}
.pill-type-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.pill-type-head h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
}
.pill-type-tag {
  font-size: 12px;
  color: var(--color-text-soft);
  margin: 0;
}
.pill-type-price {
  text-align: right;
}
.pill-type-price .price-from {
  font-size: 11px;
  color: var(--color-text-soft);
}
.pill-type-price .price-num {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-primary-deep);
  font-weight: 700;
}
.pill-type-desc {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.95;
  margin: 0 0 20px;
}
.pill-brands {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pill-brand {
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 13px;
}
.pill-brand strong {
  display: block;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 2px;
}
.pill-brand span {
  font-size: 11px;
  color: var(--color-text-soft);
}

/* ========== 副作用Grid ========== */
.side-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.side-item {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.side-item h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-primary-deep);
}
.side-item p {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.95;
  margin: 0;
}

/* ========== 診断 ========== */
.diagnose-band {
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-bg) 100%);
}
.diagnose-app {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-line);
}
.diagnose-progress {
  height: 4px;
  background: var(--color-line);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}
.diagnose-progress-bar {
  height: 100%;
  background: var(--color-primary);
  width: 20%;
  transition: width 0.3s ease;
}
.diagnose-question { display: none; }
.diagnose-question.is-active { display: block; animation: fadeInUp 0.4s ease; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.diagnose-q-num {
  font-family: var(--font-heading);
  color: var(--color-primary-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}
.diagnose-question h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 0 0 24px;
  font-weight: 500;
  line-height: 1.6;
}
.diagnose-options {
  display: flex; flex-direction: column;
  gap: 12px;
}
.diagnose-option {
  background: var(--color-bg-soft);
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: left;
  font-size: 15px;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.diagnose-option:hover {
  border-color: var(--color-primary);
  background: rgba(236, 188, 192, 0.10);
  transform: translateX(4px);
}
.diagnose-note {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(236, 188, 192, 0.08);
  border-left: 3px solid var(--color-primary);
  font-size: 12px;
  color: var(--color-text-soft);
  border-radius: var(--radius-sm);
}
.diagnose-result { display: none; text-align: center; }
.diagnose-result.is-active { display: block; animation: fadeInUp 0.4s ease; }
.diagnose-result-eyebrow {
  color: var(--color-primary-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.diagnose-result-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 16px;
  color: var(--color-text);
}
.diagnose-result-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 2;
  margin: 0 auto 32px;
  max-width: 520px;
  text-align: left;
  background: var(--color-bg-soft);
  padding: 24px 28px;
  border-radius: var(--radius-md);
}
.diagnose-result-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.diagnose-result-note {
  font-size: 11px;
  color: var(--color-text-soft);
  margin: 0;
}

/* ========== STD plans ========== */
.std-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.std-plan {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}
.std-plan-recommended {
  border-color: var(--color-primary);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}
.std-plan-pair {
  background: linear-gradient(135deg, #FDF2EC 0%, #EFF6F1 100%);
}
.std-plan-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.std-plan-head h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.std-plan-tag {
  background: var(--color-bg-soft);
  color: var(--color-primary-deep);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}
.std-plan-tag-rec {
  background: var(--color-primary);
  color: #fff;
}
.std-plan-tag-pair {
  background: var(--color-accent);
  color: #fff;
}
.std-plan-price {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary-deep);
  margin-bottom: 20px;
  line-height: 1.2;
}
.std-plan-price-tax {
  font-size: 12px;
  color: var(--color-text-soft);
  font-weight: 400;
  margin-left: 4px;
}
.std-plan-items {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  border-top: 1px dashed var(--color-line);
  padding-top: 16px;
}
.std-plan-items li {
  font-size: 13px;
  padding: 6px 0;
  color: var(--color-text);
}
.std-plan-items li::before {
  content: "✓ ";
  color: var(--color-accent-deep);
  font-weight: 700;
}
.std-plan-desc {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.85;
  margin: 0;
  margin-top: auto;
}

/* About story */
.story-block {
  margin-bottom: 80px;
}
.story-block:last-child { margin-bottom: 0; }
.story-eyebrow {
  font-family: var(--font-heading);
  color: var(--color-primary-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 16px;
}
.story-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin: 0 0 24px;
}
.story-block p {
  font-size: 16px;
  line-height: 2.1;
  margin: 0 0 1.5em;
  color: var(--color-text);
}
.value-list {
  display: flex; flex-direction: column;
  gap: 28px;
  margin-top: 16px;
}
.value-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.value-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.value-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.5;
}
.value-item p {
  font-size: 14px;
  color: var(--color-text-soft);
  line-height: 1.95;
  margin: 0;
}

/* ops cards */
.ops-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ops-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.ops-card-eyebrow {
  display: inline-block;
  background: var(--color-bg-soft);
  color: var(--color-primary-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  width: fit-content;
}
.ops-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.6;
}
.ops-card-meta {
  font-size: 12px;
  color: var(--color-text-soft);
  margin: 0 0 16px;
  line-height: 1.7;
}
.ops-card p {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.95;
  margin: 0 0 16px;
}
.ops-card-link {
  margin-top: auto;
  color: var(--color-primary-deep);
  font-weight: 700;
  font-size: 13px;
  border-bottom: 1px solid var(--color-primary-deep);
  display: inline-block;
  width: fit-content;
}
.ops-card-tbd {
  font-size: 12px;
  color: var(--color-text-soft);
  font-style: italic;
}

/* clinic info */
.clinic-info-band {
  background: var(--color-bg-soft);
}
.clinic-info {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 12px 32px;
  box-shadow: var(--shadow-sm);
}
.clinic-info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 14px;
}
.clinic-info-row:last-child { border-bottom: none; }
.clinic-info-row dt {
  color: var(--color-primary-deep);
  font-weight: 700;
}
.clinic-info-row dd {
  margin: 0;
  color: var(--color-text);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .sub-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pill-type-head { grid-template-columns: 1fr; gap: 12px; }
  .pill-type-price { text-align: left; }
  .pill-brands { grid-template-columns: 1fr; }
  .side-grid { grid-template-columns: 1fr; }
  .std-plans { grid-template-columns: 1fr; }
  .ops-cards { grid-template-columns: 1fr; }
  .value-item { grid-template-columns: 1fr; gap: 12px; }
  .clinic-info { padding: 12px 20px; }
  .clinic-info-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .stats-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ========== STD Flow 5-step ========== */
.flow5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.flow5-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-line);
}
.flow5-num {
  display: inline-block;
  width: 38px; height: 38px;
  line-height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 12px;
}
.flow5-step h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}
.flow5-time {
  font-size: 11px;
  color: var(--color-primary-deep);
  font-weight: 700;
  margin: 0 0 10px;
  background: var(--color-bg-soft);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-block;
}
.flow5-step p {
  font-size: 12px;
  color: var(--color-text-soft);
  line-height: 1.7;
  margin: 0;
}
.flow-after-note {
  margin-top: 32px;
  padding: 20px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 14px;
  color: var(--color-text);
}
.flow-after-note p { margin: 0; }
@media (max-width: 900px) {
  .flow5-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Disease cards ========== */
.disease-list {
  display: flex; flex-direction: column;
  gap: 24px;
}
.disease-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.disease-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-line);
}
.disease-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}
.disease-head h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
}
.disease-tag {
  font-size: 12px;
  color: var(--color-text-soft);
  margin: 0;
}
.disease-body { display: flex; flex-direction: column; gap: 16px; }
.disease-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
}
.disease-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary-deep);
  letter-spacing: 0.04em;
  background: var(--color-bg-soft);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
}
.disease-row p {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.95;
  margin: 0;
}
.disease-limitations {
  margin-top: 40px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: 28px 32px;
}
.disease-limitations h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-text);
}
.disease-limitations p { font-size: 13px; color: var(--color-text-soft); line-height: 1.85; margin: 0 0 12px; }
.disease-limitations ul {
  margin: 0;
  padding-left: 1.4em;
}
.disease-limitations li {
  font-size: 13px;
  color: var(--color-text);
  padding: 4px 0;
}
@media (max-width: 900px) {
  .disease-head { grid-template-columns: 1fr; gap: 8px; }
  .disease-row { grid-template-columns: 1fr; gap: 8px; }
  .disease-label { width: fit-content; }
  .disease-card { padding: 24px 20px; }
}

/* ========== Why Us 4 grid ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 30px;
}
.why-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}
.why-item p {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.85;
  margin: 0;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ========== Privacy grid ========== */
.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.privacy-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--color-line);
}
.privacy-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-text);
}
.privacy-item p {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.85;
  margin: 0;
}
@media (max-width: 900px) {
  .privacy-grid { grid-template-columns: 1fr; }
}

/* ========== Price clarity ========== */
.price-clarity {
  margin-top: 40px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #FDF2EC 0%, #EFF6F1 100%);
  border-radius: var(--radius-lg);
  text-align: center;
}
.price-clarity h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--color-text);
}
.price-clarity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  font-size: 14px;
}
.price-clarity-grid > div {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px;
}
.price-clarity-grid strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-primary-deep);
  margin-bottom: 4px;
}
.price-clarity-grid small {
  display: block;
  font-size: 11px;
  color: var(--color-text-soft);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .price-clarity-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== お悩み別ページ ========== */
.worry-hero {
  text-align: center;
  padding: 80px 0 60px;
}
.worry-hero-icon {
  font-size: 80px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-bg-soft), #EFF6F1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}
.worry-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin: 12px 0 20px;
}
.worry-hero .lead {
  font-size: 16px;
  color: var(--color-text-soft);
  margin: 0 auto 32px;
  max-width: 700px;
  line-height: 2;
}
.worry-hero .hero-cta {
  justify-content: center;
}
.worry-urgent {
  margin: 32px auto 0;
  max-width: 600px;
  padding: 16px 24px;
  background: rgba(236, 188, 192, 0.16);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-primary-deep);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

/* Self check */
.self-check {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.self-check-item {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 15px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 12px;
}
.self-check-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.self-check-cta {
  text-align: center;
  background: var(--color-bg-soft);
  padding: 24px;
  border-radius: var(--radius-md);
}
.self-check-cta p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--color-text);
}
@media (max-width: 900px) {
  .self-check { grid-template-columns: 1fr; }
}

/* Worry plans */
.worry-plans-band {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
}
.worry-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.worry-plan {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.worry-plan-tag {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  width: fit-content;
}
.worry-plan h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}
.worry-plan-price {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-primary-deep);
  font-weight: 700;
  margin-bottom: 16px;
}
.worry-plan-desc {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.95;
  margin: 0 0 16px;
}
.worry-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-top: 1px dashed var(--color-line);
  padding-top: 16px;
}
.worry-plan-features li {
  font-size: 13px;
  color: var(--color-text);
  padding: 4px 0;
}
.worry-plan-features li::before {
  content: "✓ ";
  color: var(--color-accent-deep);
  font-weight: 700;
}
.worry-plan-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why-treatment {
  background: #fff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.why-treatment p {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
  margin: 0 0 1em;
}
.why-treatment p:last-child { margin-bottom: 0; }
.why-treatment-note {
  font-size: 12px;
  color: var(--color-text-soft);
  margin-top: 12px;
}
