/* =========================================
   CSS Variables & Reset
   ========================================= */
:root {
  --color-primary:       #e0608a;
  --color-primary-light: #ee87a8;
  --color-primary-dark:  #c04872;
  --color-accent:        #f0607a;
  --color-accent-hover:  #d84868;
  --color-line:          #06c755;
  --color-line-hover:    #05b04c;
  --color-bg:            #ffffff;
  --color-bg-alt:        #fef5f8;
  --color-bg-dark:       #3a1024;
  --color-text:          #2d1a24;
  --color-text-light:    #7a6070;
  --color-border:        #f5dde6;
  --color-white:         #ffffff;
  --color-success:       #10b981;

  --font-base: 'Noto Sans JP', sans-serif;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 20px rgba(224, 96, 138, 0.12);
  --shadow-md: 0 8px 32px rgba(224, 96, 138, 0.18);
  --transition: 0.3s ease;
  --container: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
sup { font-size: 0.6em; vertical-align: super; }

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

.pc-only { display: inline; }
.sp-only { display: none; }

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--online {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(14,165,233,0.28);
}
.btn--online:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,165,233,0.45);
}

.btn--reserve {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(224,96,138,0.28);
}
.btn--reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,96,138,0.45);
}

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

/* Legacy LINE ボタン（使用箇所削除済み・互換のみ） */
.btn--line {
  background: #06c755;
  color: var(--color-white);
}

.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn--xl { padding: 22px 48px; font-size: 18px; }

/* =========================================
   Section Base
   ========================================= */
.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--color-bg-alt);
}
.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

/* Section accent line */
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: 16px auto 0;
}
.section--dark .section-title::after {
  background: #ffb8d0;
}
.cta-final .section-title::after,
.cta-final__title::after { display: none; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header--white .section-title { color: var(--color-white); }

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-transform: uppercase;
  padding: 4px 16px;
  background: rgba(224, 96, 138, 0.08);
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label--light {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
}

.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-primary-dark);
  margin-bottom: 20px;
}
.section--dark .section-title { color: var(--color-white); }

.section-desc {
  font-size: 16px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* =========================================
   Scroll Animations
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   Header
   ========================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header__logo-main {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary-dark);
  white-space: nowrap;
}
.header__logo-sub {
  font-size: 11px;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.header__nav {
  display: flex;
  gap: 24px;
}
.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color var(--transition);
}
.header__nav-link:hover { color: var(--color-primary); }

.header__cta { padding: 10px 20px; font-size: 14px; }

/* =========================================
   Marker highlight utility
   ========================================= */
.marker {
  color: #f59e0b;
  background: none;
  padding: 0;
  border-radius: 0;
}

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/diet_img_2000.png');
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-color: #c44878;
  z-index: 0;
}
/* 画像との境界をなめらかにブレンド */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    #c44878 0%,
    #c44878 35%,
    rgba(196,72,120,0.70) 52%,
    transparent 68%
  );
  z-index: 1;
}

/* =========================================
   Hero – 桜の花びら
   ========================================= */
.hero__petals {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__petal {
  position: absolute;
  top: -30px;
  display: block;
  background: rgba(255, 210, 225, 0.55);
  border-radius: 80% 0 55% 50% / 55% 0 80% 50%;
  animation: sakura-fall linear infinite;
}
@keyframes sakura-fall {
  0%   { transform: translateY(0)      rotate(0deg)   translateX(0);    opacity: 0; }
  6%   { opacity: 0.85; }
  92%  { opacity: 0.65; }
  100% { transform: translateY(108vh)  rotate(660deg) translateX(60px); opacity: 0; }
}

.hero__petal--1 { left:  6%; width: 14px; height: 20px; animation-duration:  9s; animation-delay:  0s;   background: rgba(255,200,220,0.55); }
.hero__petal--2 { left: 16%; width: 10px; height: 15px; animation-duration: 11s; animation-delay:  2.5s; background: rgba(255,218,230,0.50); }
.hero__petal--3 { left: 27%; width: 16px; height: 22px; animation-duration:  8s; animation-delay:  1s;   background: rgba(255,190,215,0.60); }
.hero__petal--4 { left: 40%; width: 12px; height: 17px; animation-duration: 12s; animation-delay:  4s;   background: rgba(255,210,228,0.50); }
.hero__petal--5 { left: 53%; width: 18px; height: 24px; animation-duration:  9s; animation-delay:  0.5s; background: rgba(255,200,220,0.45); }
.hero__petal--6 { left: 64%; width: 10px; height: 14px; animation-duration: 10s; animation-delay:  3s;   background: rgba(255,225,235,0.55); }
.hero__petal--7 { left: 74%; width: 14px; height: 20px; animation-duration:  8s; animation-delay:  5.5s; background: rgba(255,195,215,0.60); }
.hero__petal--8 { left: 84%; width: 12px; height: 17px; animation-duration: 11s; animation-delay:  1.8s; background: rgba(255,215,230,0.50); }
.hero__petal--9 { left: 93%; width: 16px; height: 22px; animation-duration: 10s; animation-delay:  7s;   background: rgba(255,205,225,0.55); }

.hero__inner {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 55%;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero__title-wrap {
  position: relative;
}
.hero__product-img {
  position: absolute;
  right: -60px;
  top: -70px;
  width: 240px;
  height: auto;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.25));
  transform: rotate(-6deg);
}

.hero__label-wrap {
  margin-bottom: 20px;
}
.hero__sub-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffb8d0;
  text-transform: uppercase;
  padding: 5px 16px;
  border: 1px solid rgba(255,182,193,0.4);
  border-radius: 50px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-white);
  backdrop-filter: blur(4px);
}
.hero__badge svg { color: #ffb8d0; flex-shrink: 0; }

.hero__title {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: -0.03em;
  font-feature-settings: "palt";
  text-shadow: 0 2px 24px rgba(0,0,0,0.7);
}

.hero__lead {
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
  padding-top: 32px;
  border-top: 1px solid rgba(245,158,11,0.5);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero__lead strong {
  color: #f59e0b;
  font-size: 1.1em;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero__sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.95);
  line-height: 1.75;
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero__sub strong { color: var(--color-white); font-weight: 700; }

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
}

/* Hero Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.1em;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.5); opacity: 0.5; }
}

/* =========================================
   Pain Section
   ========================================= */
.pain__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.pain__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pain__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pain__icon {
  width: 52px;
  height: 52px;
  background: rgba(224,96,138,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.pain__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}
.pain__card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}
.pain__card strong { color: var(--color-primary-dark); }

.pain__side-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.pain__arrow {
  text-align: center;
}
.pain__arrow-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.pain__arrow-icon {
  font-size: 32px;
  color: var(--color-primary);
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* =========================================
   Solution Section
   ========================================= */
.solution__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.solution__compare-col {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.solution__compare-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.solution__compare-col ul { display: flex; flex-direction: column; gap: 12px; }
.solution__compare-col li { font-size: 15px; line-height: 1.5; }

.solution__compare-col--bad {
  background: #fff5f5;
  border: 2px solid #fed7d7;
}
.solution__compare-col--bad h3 { color: #c53030; }
.solution__compare-col--bad li { color: #742a2a; }

.solution__compare-col--good {
  background: #f0fdf4;
  border: 2px solid #bbf7d0;
}
.solution__compare-col--good h3 { color: #166534; }
.solution__compare-col--good li { color: #14532d; }

.solution__compare-vs {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-text-light);
  text-align: center;
}

/* =========================================
   Drug Section
   ========================================= */
.drug__banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 182, 193, 0.1);
  border: 1px solid rgba(255, 182, 193, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  margin-bottom: 48px;
}
.drug__banner-icon { font-size: 28px; flex-shrink: 0; }
.drug__banner-text {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}
.drug__banner-text strong { color: #ffb8d0; }

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

.drug__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: background var(--transition);
}
.drug__card:hover { background: rgba(255,255,255,0.1); }
.drug__card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: rgba(255,255,255,0.9);
  transition: background var(--transition);
}
.drug__card:hover .drug__card-icon {
  background: rgba(255,255,255,0.14);
}
.drug__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.drug__card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* 正規品 vs 並行輸入品 比較 */
.drug__compare {
  margin-bottom: 48px;
}
.drug__compare-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 24px;
}
.drug__compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.drug__compare-col {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.drug__compare-col-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid currentColor;
  opacity: 0.9;
}
.drug__compare-col ul { display: flex; flex-direction: column; gap: 10px; }
.drug__compare-col li { font-size: 14px; line-height: 1.5; padding-left: 4px; }

.drug__compare-col--bad {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}
.drug__compare-col--bad .drug__compare-col-label { color: #fca5a5; border-color: rgba(239,68,68,0.3); }
.drug__compare-col--bad li { color: rgba(255,255,255,0.65); }
.drug__compare-col--bad li::before { content: '✗ '; color: #f87171; }

.drug__compare-col--good {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.drug__compare-col--good .drug__compare-col-label { color: #6ee7b7; border-color: rgba(16,185,129,0.3); }
.drug__compare-col--good li { color: rgba(255,255,255,0.85); }
.drug__compare-col--good li::before { content: '✓ '; color: #34d399; }

.drug__disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* =========================================
   Reasons Section
   ========================================= */
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.reasons__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.reasons__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
/* 4・5枚目カードは通常フロー（grid-column: auto が既定値のため明示不要） */

.reasons__img-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.reasons__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.reasons__card:hover .reasons__img {
  transform: scale(1.04);
}
.reasons__body {
  padding: 24px 24px 28px;
}
.reasons__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  opacity: 0.5;
  margin-bottom: 10px;
}
.reasons__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}
.reasons__card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.75;
}

/* =========================================
   Flow Section
   ========================================= */
.flow__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}

.flow__step {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.flow__step-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: rgba(224, 96, 138, 0.08);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.flow__step-icon { font-size: 40px; margin-bottom: 16px; }
.flow__step-photo {
  width: 100%;
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}
.flow__step-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.flow__step-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
}
.flow__step-illustration svg {
  width: 120px;
  height: 120px;
}
.flow__step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}
.flow__step p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.75;
}

.flow__step-arrow {
  font-size: 28px;
  color: var(--color-primary);
  font-weight: 700;
  text-align: center;
  padding: 0 8px;
}

/* =========================================
   Price Section
   ========================================= */
.price__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.price__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 15px;
}
.price__table thead {
  background: var(--color-primary);
  color: var(--color-white);
}
.price__table th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
}
.price__table th:nth-child(2) { text-align: center; }
.price__table td:nth-child(2) { text-align: center; }
.price__row--highlight .price__amount {
  font-size: 20px;
}
.price__table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.price__table tr:last-child td { border-bottom: none; }
.price__table tr:hover td { background: #f8fafc; }

.price__row--highlight td { background: #fdf2f5; }
.price__row--highlight:hover td { background: #f8e0e8 !important; }

.price__amount {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 17px;
}

/* Price Highlight Banner */
.price__highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.price__highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 36px;
}
.price__highlight-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.price__highlight-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}
.price__highlight-value small {
  font-size: 14px;
  font-weight: 500;
}
.price__highlight-note {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.1);
  padding: 2px 10px;
  border-radius: 50px;
}
.price__highlight-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  /* ハイライトバナー: 3アイテムを縦積みに */
  .price__highlight {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
  }
  .price__highlight-item {
    padding: 16px 20px;
    text-align: center;
  }
  .price__highlight-value { font-size: 26px; }
  .price__highlight-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  /* 料金表: padding・フォント縮小 */
  .price__table { font-size: 13px; }
  .price__table th { padding: 10px 6px; font-size: 12px; }
  .price__table td { padding: 10px 6px; }
  .price__row--highlight .price__amount { font-size: 16px; }
  .price__amount { font-size: 14px; }
}

.price__notes {
  background: #fffbeb;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  padding: 16px 20px;
}
.price__notes p {
  font-size: 13px;
  color: #92400e;
  line-height: 1.7;
}

/* =========================================
   Safety Section
   ========================================= */
.safety__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.safety__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.safety__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
}
.safety__card p, .safety__card li {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.75;
}
.safety__card li {
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.safety__card li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* =========================================
   FAQ Section
   ========================================= */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq__item.open { box-shadow: var(--shadow); border-color: var(--color-primary); }

.faq__question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  transition: background var(--transition);
}
.faq__question:hover { background: var(--color-bg-alt); }
.faq__item.open .faq__question { background: var(--color-bg-alt); color: var(--color-primary); }

.faq__icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq__item.open .faq__answer { max-height: 600px; }

.faq__answer p {
  padding: 0 24px 24px;
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* =========================================
   Access Section
   ========================================= */
/* Access clinic photos */
.access__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.access__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
  transition: transform var(--transition);
}
.access__photo:hover { transform: scale(1.02); }

.access__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.access__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.access__info-item {}
.access__info-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.access__info-value {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
}
.access__info-value a { color: var(--color-primary); font-weight: 700; }

.access__hours-table { border-collapse: collapse; font-size: 14px; margin-bottom: 8px; }
.access__hours-table td {
  padding: 4px 10px;
  border: 1px solid var(--color-border);
  text-align: center;
}
.access__hours-table tr:first-child td {
  background: var(--color-primary);
  color: white;
  font-weight: 700;
}
.access__info-value > p { font-size: 12px; color: var(--color-text-light); margin-top: 8px; }

.access__map-placeholder {
  width: 100%;
  height: 300px;
  background: #f8e0e8;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-text-light);
  font-size: 15px;
  border: 2px dashed var(--color-primary);
  opacity: 0.6;
}

/* =========================================
   Final CTA
   ========================================= */
.cta-final {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  padding: 96px 0;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/clinic-entrance.jpg');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.08;
  z-index: 0;
}
.cta-final__inner {
  position: relative;
  z-index: 1;
}
.cta-final__content { text-align: center; }
.cta-final__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.cta-final__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.4;
  margin-bottom: 16px;
}
.cta-final__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}
.cta-final__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-final .btn--tel {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.cta-final .btn--tel:hover {
  background: var(--color-white);
  color: var(--color-primary);
}
.cta-final .btn--online {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--color-white);
  box-shadow: none;
}
.cta-final .btn--online:hover {
  background: var(--color-white);
  color: #0284c7;
  box-shadow: 0 8px 28px rgba(255,255,255,0.2);
}
.cta-final__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-final__badges span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 4px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.6);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 24px;
  gap: 40px;
}
.footer__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}
.footer__address, .footer__tel { font-size: 13px; line-height: 1.7; }
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--color-white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
}
.footer__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 2;
  text-align: center;
  margin-bottom: 16px;
}
.footer__copy {
  font-size: 12px;
  text-align: center;
  color: rgba(255,255,255,0.3);
}

/* =========================================
   Fixed CTA Bar (スマホ)
   ========================================= */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: opacity var(--transition);
}
.fixed-cta__btn:hover { opacity: 0.88; transform: translateY(-1px); }
.fixed-cta__btn--online { background: linear-gradient(135deg, #0ea5e9, #0284c7); color: var(--color-white); }
.fixed-cta__btn--reserve { background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark)); color: var(--color-white); }
.fixed-cta__btn--tel { background: #1e293b; color: var(--color-white); }

/* =========================================
   Online Consultation Section
   ========================================= */
.online-section {
  background: linear-gradient(150deg, #f0f9ff 0%, #e0f2fe 60%, #f0f9ff 100%);
}
.online__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.online__feature {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}
.online__feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(14,165,233,0.18);
}
.online__feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-white);
}
.online__feature h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0c4a6e;
  margin-bottom: 10px;
}
.online__feature p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}
.online__schedule-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 48px;
  box-shadow: 0 4px 24px rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.12);
}
.online__schedule-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #0284c7;
  margin-bottom: 20px;
  justify-content: center;
}
.online__hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 12px;
}
.online__hours-table tr {
  border-bottom: 1px solid rgba(14,165,233,0.12);
}
.online__hours-table tr:last-child {
  border-bottom: none;
}
.online__hours-table td {
  padding: 10px 8px;
  vertical-align: middle;
}
.online__hours-table td:first-child {
  font-weight: 700;
  color: #475569;
  font-size: 13px;
  width: 5em;
}
.online__hours-table td:last-child {
  font-weight: 700;
  color: #0284c7;
  background: rgba(14,165,233,0.06);
  border-radius: 6px;
  text-align: center;
}
.online__hours-table .hours-closed {
  color: #94a3b8 !important;
  background: #f8fafc !important;
}
.online__hours-summary {
  font-size: 16px;
  font-weight: 500;
  color: #0c4a6e;
  text-align: center;
  margin-bottom: 8px;
}
.online__hours-note {
  font-size: 13px;
  color: #64748b;
  text-align: center;
}
.online__cta {
  text-align: center;
}
.online__cta-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 14px;
}

/* =========================================
   Doctor section – Career timeline upgrade
   ========================================= */
.doctor__career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.doctor__career-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.doctor__career-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doctor__timeline-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.doctor__timeline-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-top: 7px;
}
.doctor__timeline-text {
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.6;
}
.doctor__cert-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.doctor__cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
}
.doctor__cert-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(224,96,138,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
  .hero__inner { max-width: 70%; }
  .hero__product-img { width: 160px; right: -170px; }
  .pain__layout { grid-template-columns: 1fr; }
  .pain__side-img { display: none; }
  .pain__grid { grid-template-columns: repeat(2, 1fr); }
  .reasons__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  .section-title {
    font-size: clamp(17px, 5vw, 22px);
    overflow-wrap: break-word;
  }

  .pc-only { display: none; }
  .sp-only { display: inline; }

  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__inner { height: 60px; }

  .hero { min-height: auto; padding-top: 60px; }
  .hero__inner { max-width: 100%; padding-top: 56px; padding-bottom: 56px; }
  .hero__product-img {
    position: absolute;
    right: -10px;
    top: -50px;
    width: 150px;
    transform: rotate(-6deg);
  }
  .hero__bg {
    background-size: cover;
    background-position: 70% center;
    background-color: transparent;
  }
  .hero__bg::before {
    background: linear-gradient(to right,
      rgba(196,72,120,0.78) 0%,
      rgba(196,72,120,0.50) 38%,
      rgba(196,72,120,0.15) 60%,
      transparent 75%
    );
  }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; }
  .hero__scroll { display: none; }

  .pain__layout { grid-template-columns: 1fr; }
  .pain__side-img { display: none; }
  .pain__grid { grid-template-columns: 1fr 1fr; }


  .solution__compare {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .solution__compare-vs { text-align: center; padding: 8px 0; }

  /* Drug section */
  .drug__banner { flex-direction: column; align-items: flex-start; padding: 16px 18px; gap: 10px; }
  .drug__compare-col { padding: 20px 16px; }
  .drug__compare-title { font-size: 15px; }
  .drug__grid { grid-template-columns: 1fr; gap: 16px; }
  .drug__compare-grid { grid-template-columns: 1fr; gap: 14px; }
  .drug__card { padding: 24px 20px; }

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

  .flow__steps {
    grid-template-columns: 1fr;
  }
  .flow__step-arrow { transform: rotate(90deg); font-size: 24px; text-align: center; }

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

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

  .cta-final__btns { flex-direction: column; align-items: center; }
  .cta-final__btns .btn { width: 100%; max-width: 340px; }

  .footer__inner { flex-direction: column; gap: 24px; }
  .footer__links { text-align: left; }

  .fixed-cta { display: flex; }
  body { padding-bottom: 80px; }

  .online__features { grid-template-columns: 1fr; gap: 16px; }
  .online__schedule-box { padding: 24px 20px; }
  .online__hours-table { font-size: 12px; }
  .doctor__career-grid { grid-template-columns: 1fr; }
}

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

  /* Efficacy chart: 極小画面 */
  .efficacy__chart { height: 280px; }
  .efficacy__chart-card { padding: 20px 8px 12px; }
  .efficacy__y-axis {
    width: 30px;
    bottom: 40px;
    padding-right: 4px;
  }
  .efficacy__y-axis span { font-size: 9px; }
  .efficacy__grid {
    left: 34px;
    bottom: 40px;
  }
  .efficacy__bars {
    left: 34px;
    bottom: 40px;
    gap: 4px;
  }
  .efficacy__bar {
    width: 85%;
    max-width: 56px;
    border-radius: 4px 4px 0 0;
  }
  .efficacy__bar--control { max-width: 40px; }
  .efficacy__bar-value {
    font-size: 11px;
    transform: translateX(-50%) translateY(-4px);
  }
  .efficacy__bar-value--best { font-size: 12px; }
  .efficacy__bar-value--best::after {
    font-size: 8px;
    letter-spacing: 0;
  }
  .efficacy__labels {
    left: 34px;
    height: 40px;
    gap: 4px;
  }
  .efficacy__labels span { font-size: 10px; }
  .efficacy__labels strong { font-size: 10px; }
  .efficacy__labels br { display: none; }

  .efficacy__highlight-num { flex: 0 0 96px; padding-right: 12px; }
  .efficacy__highlight-desc { padding-left: 12px; }
}

/* =========================================
   Page Top Button
   ========================================= */
.page-top {
  position: fixed;
  bottom: 36px;
  right: 28px;
  z-index: 210;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(224,96,138,0.4);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.page-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.page-top:hover {
  box-shadow: 0 8px 28px rgba(224,96,138,0.55);
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .page-top {
    bottom: 120px; /* JSで動的上書き。フォールバック値 */
    right: 14px;
    width: 42px;
    height: 42px;
  }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-dark); }

/* Selection color */
::selection { background: rgba(224, 96, 138, 0.2); color: var(--color-primary-dark); }

/* Flow arrows on mobile - already handled above in @media (max-width: 768px) */

/* (hero SVG deco removed — replaced with real doctor photo) */

/* =========================================
   Trust Strip
   ========================================= */
.trust-strip {
  background: var(--color-primary-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.trust-strip::-webkit-scrollbar { display: none; }
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  white-space: nowrap;
  min-width: max-content;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 0 24px;
}
.trust-strip__item svg {
  color: #ffb8d0;
  flex-shrink: 0;
}
.trust-strip__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* =========================================
   Efficacy Data Section
   ========================================= */
.efficacy__chart-wrap {
  margin-bottom: 56px;
}

/* Card wrapper */
.efficacy__chart-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

/* Chart container */
.efficacy__chart {
  position: relative;
  height: 420px;
  padding: 0;
  margin-bottom: 0;
}

/* Y-axis */
.efficacy__y-axis {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 48px;
  width: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 12px;
}
.efficacy__y-axis span {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* Grid lines */
.efficacy__grid {
  position: absolute;
  left: 56px;
  right: 0;
  top: 0;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.efficacy__grid-line {
  width: 100%;
  height: 1px;
  background: #f1f5f9;
}
.efficacy__grid-line--base {
  background: #cbd5e1;
  height: 2px;
}

/* Bars container — グリッドエリアと完全一致 */
.efficacy__bars {
  position: absolute;
  left: 56px;
  right: 0;
  top: 0;
  bottom: 48px;
  display: flex;
  gap: 20px;
  z-index: 1;
}

.efficacy__bar-group {
  flex: 1;
  position: relative;
  height: 100%;
}

/* バー本体 — 0%ライン(bottom:0)から上に伸びる */
.efficacy__bar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  transform-origin: bottom;
  width: 70%;
  max-width: 100px;
  height: var(--bar-height);
  border-radius: 10px 10px 0 0;
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.efficacy__bar.animated {
  transform: translateX(-50%) scaleY(1);
}

.efficacy__bar--control {
  background: linear-gradient(to top, #c2cad6, #e2e8f0);
  max-width: 72px;
}
.efficacy__bar--drug {
  background: linear-gradient(to top, var(--color-primary-dark), var(--color-primary-light));
}
.efficacy__bar--mid {
  background: linear-gradient(to top, #c04872, #f196b4);
}
.efficacy__bar--top {
  background: linear-gradient(to top, #a8335c, #f7a8c4);
  box-shadow: 0 -6px 28px rgba(224, 96, 138, 0.45);
}

/* 数値ラベル — バーの上端に追従 */
.efficacy__bar-value {
  position: absolute;
  bottom: var(--bar-height);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text);
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.02em;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.8s;
}
.efficacy__bar-group:has(.efficacy__bar.animated) .efficacy__bar-value {
  opacity: 1;
}
.efficacy__bar-value--best {
  font-size: 18px;
  color: var(--color-primary-dark);
}
.efficacy__bar-value--best::after {
  content: "★ 最大減少";
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* X軸ラベル — 0%ラインの下に分離配置 */
.efficacy__labels {
  position: absolute;
  left: 56px;
  right: 0;
  bottom: 0;
  height: 48px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.efficacy__labels span {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.5;
}
.efficacy__labels strong {
  color: var(--color-primary-dark);
  font-weight: 800;
  font-size: 14px;
}

.efficacy__chart-source {
  font-size: 11px;
  color: var(--color-text-light);
  text-align: right;
  margin-top: 16px;
}

/* Highlight cards */
.efficacy__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.efficacy__highlight {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.efficacy__highlight--main {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.efficacy__highlight--main .efficacy__highlight-num { color: var(--color-white); }
.efficacy__highlight--main .efficacy__highlight-num em { color: #fbbf24; }
.efficacy__highlight--main .efficacy__highlight-desc { color: rgba(255,255,255,0.85); }

.efficacy__highlight-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.efficacy__highlight-num em {
  font-style: normal;
  font-size: 40px;
  font-weight: 900;
  color: var(--color-primary);
  display: inline-block;
  line-height: 1;
}
.efficacy__highlight-desc {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.65;
}

.efficacy__disclaimer {
  font-size: 12px;
  color: var(--color-text-light);
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  line-height: 1.8;
}

/* =========================================
   Mechanism Section
   ========================================= */
.mechanism__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.mechanism__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mechanism__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.mechanism__card--result {
  border-color: rgba(16,185,129,0.3);
  background: linear-gradient(135deg, #f0fdf4, var(--color-white));
}
.mechanism__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}
.mechanism__icon svg {
  width: 100%;
  height: 100%;
}
.mechanism__step {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: rgba(224,96,138,0.08);
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.mechanism__card--result .mechanism__step {
  color: #059669;
  background: rgba(16,185,129,0.1);
}
.mechanism__card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-primary-dark);
  line-height: 1.3;
  margin-bottom: 12px;
}
.mechanism__card--result h3 { color: #065f46; }
.mechanism__card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.75;
}
.mechanism__arrow {
  width: 40px;
  flex-shrink: 0;
}
.mechanism__arrow svg { width: 40px; height: 40px; }
.mechanism__note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-light);
}

/* =========================================
   Drug Section — header layout with side image
   ========================================= */
.drug__header-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  column-gap: 48px;
  row-gap: 20px;
  align-items: start;
  margin-bottom: 48px;
}
.drug__header-title-block {
  /* grid col1 row1 (auto) */
}
.drug__header-desc {
  /* grid col1 row2 (auto) */
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}
.drug__side-img-wrap {
  grid-column: 2;
  grid-row: 1 / span 2;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.drug__side-img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center 20%;
  display: block;
}


/* =========================================
   Doctor Section
   ========================================= */
.doctor__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.doctor__photo-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.doctor__name {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.doctor__name-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(224,96,138,0.08);
  padding: 3px 10px;
  border-radius: 50px;
}
.doctor__name-main {
  font-size: 24px;
  font-weight: 900;
  color: var(--color-primary-dark);
}
.doctor__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.doctor__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 3px 12px;
  border-radius: 50px;
}
.doctor__message {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  border-left: 3px solid var(--color-primary);
  padding-left: 20px;
  margin: 0 0 24px;
  font-style: normal;
}
.doctor__career-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.doctor__career ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.doctor__career li {
  font-size: 14px;
  color: var(--color-text-light);
  padding-left: 16px;
  position: relative;
}
.doctor__career li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* =========================================
   Responsive additions
   (ベーススタイルより後に定義されたコンポーネントの
    レスポンシブは必ずここへ書く)
   ========================================= */
@media (max-width: 1024px) {
  /* Mechanism */
  .mechanism__grid { grid-template-columns: 1fr; }
  .mechanism__arrow { transform: rotate(90deg); margin: 0 auto; }

  /* Drug header: タイトル → 画像 → 説明文 の縦並び */
  .drug__header-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .drug__side-img-wrap {
    display: flex;
    justify-content: center;
    grid-column: auto;
    grid-row: auto;
  }
  .drug__side-img {
    max-height: 240px;
    width: auto;
  }
}

@media (max-width: 768px) {
  .drug__header-layout { gap: 16px; }
  .drug__side-img { max-height: 200px; }
  .drug__header-desc { font-size: 14px; }
}

@media (max-width: 768px) {
  .trust-strip__inner { justify-content: flex-start; padding: 0 16px; }
  .doctor__inner { grid-template-columns: 1fr; }
  .doctor__photo { max-width: 280px; margin: 0 auto; }
  .doctor__photo-img { height: 280px; }
  .mechanism__grid { gap: 12px; }
  .access__photos { grid-template-columns: 1fr; }
  .access__photo { height: 160px; }

  /* ---- Efficacy chart: スマホ対応 ---- */
  .efficacy__chart-wrap {
    margin-bottom: 40px;
  }
  .efficacy__chart-card {
    padding: 24px 12px 16px;
  }
  .efficacy__chart {
    height: 320px;
  }
  /* Y軸を狭く */
  .efficacy__y-axis {
    width: 34px;
    bottom: 44px;
    padding-right: 6px;
  }
  .efficacy__y-axis span {
    font-size: 10px;
  }
  /* グリッド・バー・ラベルの左オフセットを縮小 */
  .efficacy__grid {
    left: 40px;
    bottom: 44px;
  }
  .efficacy__bars {
    left: 40px;
    bottom: 44px;
    gap: 8px;
  }
  .efficacy__bar {
    width: 80%;
    max-width: 64px;
    border-radius: 6px 6px 0 0;
  }
  .efficacy__bar--control {
    max-width: 48px;
  }
  /* 数値ラベル */
  .efficacy__bar-value {
    font-size: 12px;
    transform: translateX(-50%) translateY(-6px);
  }
  .efficacy__bar-value--best {
    font-size: 14px;
  }
  .efficacy__bar-value--best::after {
    font-size: 9px;
  }
  /* X軸ラベル */
  .efficacy__labels {
    left: 40px;
    height: 44px;
    gap: 8px;
  }
  .efficacy__labels span {
    font-size: 11px;
    line-height: 1.4;
  }
  .efficacy__labels strong {
    font-size: 12px;
  }
  /* 出典 */
  .efficacy__chart-source {
    font-size: 10px;
    margin-top: 12px;
  }

  /* ---- Highlight cards: 横並びコンパクト ---- */
  .efficacy__highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .efficacy__highlight {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    text-align: left;
  }
  .efficacy__highlight-num {
    flex: 0 0 112px;
    text-align: center;
    margin-bottom: 0;
    font-size: 12px;
    padding-right: 16px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }
  .efficacy__highlight--main .efficacy__highlight-num {
    border-right-color: rgba(255, 255, 255, 0.22);
  }
  .efficacy__highlight-num em {
    font-size: 26px;
    display: block;
    line-height: 1.1;
    margin: 2px 0;
  }
  .efficacy__highlight-desc {
    flex: 1;
    padding-left: 16px;
    font-size: 12px;
    line-height: 1.55;
    text-align: left;
  }
  .efficacy__highlight-desc br { display: none; }
}

.access__hours-table .hours-closed { background: #f1f5f9; color: #94a3b8; }
.access__map iframe { display: block; width: 100%; border-radius: 12px; box-shadow: 0 8px 32px rgba(224,96,138,0.15); }
