/* =========================================================
   並木皮膚科 美容皮膚科 LP - Sample by Soraha Design
   コンセプト: 清潔感 × 高級 / 明朝主体 / 左右非対称ジグザグ
   ========================================================= */

/* ---------------------------------------------------------
   設計意図:
   - カラー: 清潔感（白＋寒色）×高級（ネイビー＋ベージュ）
     [根拠: design-reference.md > 3-7. 配色例カテゴリ]
   - フォント: 明朝主体で信頼感（Shippori Mincho B1）
     [根拠: design-reference.md > 2-3. フォントの種類]
   - ジャンプ率: 高め(4倍程度)で躍動感
     [根拠: design-reference.md > 2-2. ジャンプ率]
   - 余白: ベースの2倍以上で上品さ
     [根拠: design-reference.md > 5-5. 余白を上手に使った例]
   - レイアウト: 非対称ジグザグでテンプレ感回避
     [根拠: design-reference.md > 1-2. プロモーションサイト]
   --------------------------------------------------------- */

:root {
  /* Colors */
  --c-bg: #FFFFFF;
  --c-bg-soft: #F8FAFC;          /* 補助：うすい寒色 */
  --c-bg-cool: #E8EFF5;          /* メイン分割：うすい青 */
  --c-text: #0F1B2E;             /* テキスト：ダークネイビー */
  --c-text-sub: #4A5568;
  --c-text-mute: #94A3B8;
  --c-main: #1A4D7A;             /* メイン：ディープネイビー */
  --c-main-dark: #0D3B5E;
  --c-main-light: #4A7A9E;
  --c-accent: #C9A87C;           /* アクセント：くすみゴールド */
  --c-accent-dark: #A88858;
  --c-line: #D4DDE6;
  --c-line-soft: #EAEFF3;
  --c-shadow: 0 20px 60px rgba(15, 27, 46, .08);
  --c-shadow-card: 0 8px 30px rgba(15, 27, 46, .06);

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-pill: 999px;

  /* Font */
  /* 見出し: Zen Old Mincho ─ 和の柔らかさある明朝。Shippori Mincho B1 より優しい印象
     [根拠: design-reference.md > 2-3. フォントの種類（明朝＝信頼感）+ Tak ヒアリング「やわらかく」] */
  /* 英字: Fraunces ─ 現代的セリフ、柔らかい曲線。Cormorant Garamond より優しい
     [根拠: 同上 + Tak ヒアリング「イタリック控えめに」] */
  --f-jp: "Noto Sans JP", sans-serif;
  --f-jp-h: "Zen Old Mincho", "Noto Serif JP", serif;
  --f-en: "Fraunces", "DM Sans", serif;
  --f-en-mono: "DM Sans", monospace;

  /* Layout */
  --container: 1200px;
  --container-narrow: 980px;
  --gutter: clamp(24px, 5vw, 56px);
  --header-h: 84px;
  --notice-h: 44px;

  /* Section spacing - 余白を多めに */
  --space-section: clamp(80px, 12vw, 140px);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-jp);
  font-size: 15px;
  font-weight: 400;
  line-height: 2.0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: var(--notice-h);
  letter-spacing: .03em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--f-jp-h);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .04em;
}
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sp-only { display: none; }
@media (max-width: 768px) {
  .sp-only { display: inline; }
}

/* =========================================================
   Placeholder（提案サンプル用）
   ========================================================= */
.ph {
  display: block;
  background: rgba(201, 168, 124, .06);
  border: 1px dashed var(--c-accent);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  color: var(--c-accent-dark);
  font-size: 13px;
  font-style: italic;
  line-height: 1.85;
  font-family: var(--f-jp);
}
.ph::before {
  content: "✎ ";
  font-style: normal;
  color: var(--c-accent);
  margin-right: 4px;
}
.ph-block { margin: 8px 0; }

.ph-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--c-bg-cool);
  border: 1px dashed var(--c-main-light);
  border-radius: var(--r-md);
  color: var(--c-main);
  font-size: 13px;
  font-style: italic;
  text-align: center;
  padding: 40px 28px;
  width: 100%;
  height: 100%;
  min-height: 240px;
  line-height: 2;
}
.ph-image::before {
  content: "◯";
  font-style: normal;
  font-size: 36px;
  display: block;
  margin-bottom: 16px;
  color: var(--c-main-light);
  font-family: var(--f-en);
}
.ph-inline {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(201, 168, 124, .12);
  border: 1px dashed var(--c-accent);
  border-radius: var(--r-pill);
  color: var(--c-accent-dark);
  font-size: 12px;
  font-style: italic;
}

/* =========================================================
   Sample Notice
   ========================================================= */
.sample-notice {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--c-main-dark);
  color: #FFF;
  height: var(--notice-h);
  display: flex;
  align-items: center;
}
.sample-notice-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
.sample-badge {
  background: var(--c-accent);
  color: var(--c-main-dark);
  padding: 3px 12px;
  border-radius: var(--r-pill);
  font-family: var(--f-en);
  font-weight: 600;
  letter-spacing: .15em;
  font-size: 11px;
}
.sample-notice p {
  flex: 1;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0;
}
.sample-notice-close {
  background: none;
  border: 0;
  color: #FFF;
  font-size: 20px;
  line-height: 1;
  padding: 4px 8px;
  opacity: .7;
  transition: opacity .2s;
}
.sample-notice-close:hover { opacity: 1; }
.sample-notice.is-hidden { display: none; }

@media (max-width: 640px) {
  .sample-notice-inner p { font-size: 11px; }
}

/* =========================================================
   Header - ミニマル、線で構成
   ========================================================= */
.site-header {
  position: fixed;
  top: var(--notice-h); left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--c-main);
  border-radius: 50%;
  font-family: var(--f-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-main);
  letter-spacing: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.logo-name {
  font-family: var(--f-jp-h);
  font-size: 17px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: .08em;
}
.logo-sub {
  font-family: var(--f-en);
  font-size: 11px;
  color: var(--c-main);
  letter-spacing: .25em;
  margin-top: 2px;
  /* italic 削除：やわらかな印象に */
}
.g-nav {
  display: flex;
  gap: clamp(20px, 2.5vw, 32px);
}
.g-nav a {
  font-size: 13px;
  color: var(--c-text-sub);
  transition: color .2s;
  letter-spacing: .08em;
  position: relative;
  padding-bottom: 4px;
}
.g-nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0;
  height: 1px;
  background: var(--c-main);
  transition: width .25s, left .25s;
}
.g-nav a:hover {
  color: var(--c-main);
}
.g-nav a:hover::after {
  width: 100%;
  left: 0;
}
.header-cta-area {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-en);
  font-size: 15px;
  font-weight: 500;
  color: var(--c-main);
  letter-spacing: .04em;
}
.tel-icon {
  font-size: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--c-main);
  color: #FFF;
  border-radius: 0;            /* 角張った形：高級感 */
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  transition: background .2s, transform .2s;
  border: 1px solid var(--c-main);
}
.header-cta:hover {
  background: transparent;
  color: var(--c-main);
}

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  padding: 6px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--c-text);
  margin: 6px 0;
  transition: transform .3s, opacity .3s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed;
  top: calc(var(--notice-h) + var(--header-h));
  left: 0; right: 0;
  background: #FFF;
  border-bottom: 1px solid var(--c-line);
  padding: 28px var(--gutter);
  transform: translateY(-100%);
  transition: transform .3s;
  z-index: 49;
  box-shadow: var(--c-shadow);
}
.drawer.is-open { transform: translateY(0); }
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.drawer-nav a {
  padding: 8px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--c-line-soft);
  color: var(--c-text);
  letter-spacing: .08em;
}
.drawer-cta {
  background: var(--c-main) !important;
  color: #FFF !important;
  text-align: center;
  margin-top: 12px;
  padding: 14px !important;
  border: none !important;
  font-weight: 500;
  letter-spacing: .15em;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .15em;
  transition: transform .2s, background .2s, color .2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--c-main);
  color: #FFF;
  border-color: var(--c-main);
}
.btn-primary:hover {
  background: var(--c-main-dark);
  border-color: var(--c-main-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--c-main);
  border: 1px solid var(--c-main);
}
.btn-ghost:hover {
  background: var(--c-main);
  color: #FFF;
  transform: translateY(-2px);
}
.btn-arrow {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width .2s;
}
.btn-arrow::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 8px;
  height: 1px;
  background: currentColor;
  transform: rotate(35deg);
  transform-origin: right;
}
.btn:hover .btn-arrow { width: 32px; }

/* =========================================================
   Hero - 左右非対称 60/40
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(80px, 14vw, 140px) 0 clamp(60px, 10vw, 120px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  /* 幾何学的装飾：右下に大きな円 */
  content: "";
  position: absolute;
  right: -20%; bottom: -30%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-bg-cool) 0%, transparent 70%);
  opacity: .7;
}
.hero-bg::after {
  /* 縦線：左 */
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: calc(var(--gutter) - 1px);
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--c-line) 30%, var(--c-line) 70%, transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-en);
  font-size: 11px;
  color: var(--c-main);
  letter-spacing: .35em;
  margin-bottom: 40px;
  text-transform: uppercase;
  /* italic 削除：直立で読みやすく */
}
.eyebrow-line {
  width: 60px;
  height: 1px;
  background: var(--c-main);
}
.hero-title {
  font-family: var(--f-jp-h);
  /* ジャンプ率高め 56px ÷ 15px = 3.7倍（書籍 P098 高めの躍動感）
     文字「20 年、戸田の素肌を」を 1 行で収めるため上限を 56px に調整 */
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.5;
  letter-spacing: .05em;
  margin-bottom: 40px;
  font-weight: 500;
  color: var(--c-text);
}
.hero-title-em {
  /* 和文「20 年」を色強調。フォントは Zen Old Mincho を継承 */
  color: var(--c-main);
  font-weight: 500;
}
.hero-lead {
  font-size: 15px;
  line-height: 2.2;
  color: var(--c-text-sub);
  margin-bottom: 48px;
  max-width: 480px;
  letter-spacing: .04em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}
.hero-frame {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero-frame::before {
  /* フレーム装飾 */
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--c-accent);
  z-index: 0;
}
.hero-frame .ph-image {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 0;
}
.hero-meta {
  position: absolute;
  bottom: -40px;
  right: -20px;
  background: var(--c-main);
  color: #FFF;
  padding: 20px 28px;
  z-index: 2;
  min-width: 220px;
}
.hero-meta-line {
  font-family: var(--f-en);
  font-size: 10px;
  letter-spacing: .25em;
  color: var(--c-accent);
  margin-bottom: 6px;
  text-transform: uppercase;
  /* italic は元から無し（維持）*/
}
.hero-meta-main {
  font-family: var(--f-jp-h);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .08em;
}

/* =========================================================
   Section 共通
   ========================================================= */
.section {
  padding: var(--space-section) 0;
  position: relative;
}
.section-head {
  margin-bottom: 80px;
  max-width: 720px;
}
.section-head-right {
  margin-left: auto;
  text-align: right;
}
.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 11px;
  color: var(--c-main);
  letter-spacing: .35em;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  padding-left: 56px;
  /* italic 削除：やわらかな印象に */
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 40px;
  height: 1px;
  background: var(--c-main);
}
.section-head-right .section-eyebrow {
  padding-left: 0;
  padding-right: 56px;
}
.section-head-right .section-eyebrow::before {
  left: auto;
  right: 0;
}
.section-head-center .section-eyebrow {
  padding-left: 0;
}
.section-head-center .section-eyebrow::before {
  display: none;
}
.section-title {
  font-family: var(--f-jp-h);
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.55;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: .06em;
}
.section-title-em {
  color: var(--c-main);
  font-family: var(--f-en);
  font-style: italic;
  font-weight: 400;
  padding: 0 .1em;
}
.section-lead {
  color: var(--c-text-sub);
  font-size: 15px;
  line-height: 2.1;
  max-width: 580px;
}
.section-head-right .section-lead {
  margin-left: auto;
}
.section-head-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   3 つの軸 ─ タイル型（3カラム→1カラム）
   ========================================================= */
.section-axes {
  background: var(--c-bg-soft);
}
.axes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.axis-card {
  position: relative;
  padding: 56px 36px 48px;
  background: #FFF;
  border: 1px solid var(--c-line-soft);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.axis-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-main);
  box-shadow: var(--c-shadow);
}
.axis-number {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--c-accent);
  margin-bottom: 28px;
  text-transform: uppercase;
  /* italic 削除：すっきり */
}
.axis-icon-wrap {
  margin-bottom: 28px;
}
.axis-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--c-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-en);
  font-size: 22px;
  color: var(--c-main);
  font-weight: 500;
  /* italic 削除：直立で安定感 */
}
.axis-title {
  font-family: var(--f-jp-h);
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: .06em;
}
.axis-text {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text-sub);
}

/* =========================================================
   Doctor ─ 左右非対称（右側画像）
   ========================================================= */
.section-doctor {
  position: relative;
  overflow: hidden;
}
.section-doctor::before {
  /* 装飾線：縦のライン */
  content: "";
  position: absolute;
  top: var(--space-section);
  bottom: var(--space-section);
  right: calc(var(--gutter) - 1px);
  width: 1px;
  background: var(--c-line);
}
.doctor-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.doctor-text {
  order: 1;
}
.doctor-visual {
  order: 2;
}
.doctor-frame {
  position: relative;
  aspect-ratio: 4 / 5;
}
.doctor-frame::before {
  content: "";
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 1px solid var(--c-accent);
  z-index: 0;
}
.doctor-frame .ph-image {
  position: relative;
  z-index: 1;
  height: 100%;
  border-radius: 0;
}
.doctor-name {
  font-family: var(--f-jp-h);
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: .08em;
}
.doctor-name-en {
  display: block;
  font-family: var(--f-en);
  font-style: italic;             /* 強調アクセントは残す */
  font-weight: 400;
  font-size: 18px;
  color: var(--c-main);
  margin-top: 12px;
  letter-spacing: .08em;
}
.doctor-pos {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--c-accent);
  margin-bottom: 36px;
  text-transform: uppercase;
  /* italic 削除 */
}
.doctor-bio { display: flex; flex-direction: column; gap: 14px; }

/* =========================================================
   Menu ─ 横並びリスト（ジグザグの逆：左寄せ）
   ========================================================= */
.section-menu {
  background: var(--c-bg-soft);
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.menu-card {
  background: #FFF;
  padding: 40px 36px;
  border-top: 2px solid var(--c-main);
  transition: transform .25s, box-shadow .25s;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--c-shadow-card);
}
.menu-card-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-line-soft);
}
.menu-number {
  font-family: var(--f-en);
  font-size: 14px;
  color: var(--c-accent);
  letter-spacing: .1em;
  /* italic 削除 */
}
.menu-card-title {
  font-family: var(--f-jp-h);
  font-size: 20px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: .06em;
}

/* =========================================================
   Flow ─ ステップ型
   ========================================================= */
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 880px;
  margin: 0 auto;
}
.flow-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--c-line-soft);
  position: relative;
}
.flow-item:last-child { border-bottom: none; }
.flow-number {
  font-family: var(--f-en);
  font-size: 48px;
  font-weight: 500;
  color: var(--c-accent);
  line-height: 1;
  letter-spacing: 0;
  /* italic 削除：直立の数字でクリアに */
}
.flow-content { padding-top: 4px; }
.flow-title {
  font-family: var(--f-jp-h);
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: .06em;
}
.flow-text {
  font-size: 14px;
  line-height: 2;
  color: var(--c-text-sub);
}

/* =========================================================
   Access ─ 左右非対称（左テキスト・右地図）
   ========================================================= */
.section-access {
  background: var(--c-bg-soft);
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.access-block {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-line-soft);
}
.access-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.access-label {
  font-family: var(--f-en);
  font-size: 11px;
  color: var(--c-main);
  letter-spacing: .3em;
  margin-bottom: 14px;
  text-transform: uppercase;
  /* italic 削除 */
}
.access-value {
  font-size: 16px;
  line-height: 2;
  color: var(--c-text);
  font-family: var(--f-jp-h);
  font-weight: 400;
  letter-spacing: .04em;
}
.access-tel {
  font-family: var(--f-en);
  font-size: 28px;
  font-weight: 500;
  color: var(--c-main);
  letter-spacing: .04em;
}
.access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #FFF;
}
.access-table th,
.access-table td {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--c-line-soft);
  font-family: var(--f-jp);
  font-weight: 400;
}
.access-table th {
  background: var(--c-bg-cool);
  font-family: var(--f-en);
  font-size: 12px;
  color: var(--c-main);
  letter-spacing: .15em;
  /* italic 削除 */
}
.access-table td:first-child {
  font-family: var(--f-en);
  font-size: 11px;
  color: var(--c-text-sub);
  background: var(--c-bg-soft);
}
.access-table-note {
  font-size: 12px;
  color: var(--c-text-mute);
  margin-top: 12px;
  letter-spacing: .04em;
}
.access-map {
  min-height: 420px;
  display: flex;
}
.access-map .ph-image {
  min-height: 420px;
  width: 100%;
  border-radius: 0;
}

/* =========================================================
   Reserve ─ センター揃え、横並び3カード
   ========================================================= */
.section-reserve {
  background: var(--c-main-dark);
  color: #FFF;
  position: relative;
  overflow: hidden;
}
.section-reserve::before {
  content: "";
  position: absolute;
  top: -10%; right: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
  background: rgba(201, 168, 124, .08);
}
.section-reserve .section-eyebrow { color: var(--c-accent); }
.section-reserve .section-eyebrow::before { background: var(--c-accent); }
.section-reserve .section-title { color: #FFF; }
.section-reserve .section-title-em { color: var(--c-accent); }
.section-reserve .section-lead { color: rgba(255, 255, 255, .75); }

.reserve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.reserve-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 48px 32px;
  text-align: center;
  transition: transform .25s, border-color .25s, background .25s;
}
.reserve-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  background: rgba(255, 255, 255, .07);
}
.reserve-card-primary {
  background: var(--c-accent);
  color: var(--c-main-dark);
  border-color: var(--c-accent);
}
.reserve-card-primary:hover {
  background: #FFF;
  border-color: #FFF;
  color: var(--c-main-dark);
}
.reserve-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--f-en);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
  opacity: .9;
  /* italic 削除 */
}
.reserve-title {
  font-family: var(--f-jp-h);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: .08em;
}
.reserve-desc {
  font-size: 13px;
  opacity: .8;
  margin-bottom: 24px;
  letter-spacing: .04em;
}
.reserve-card-primary .reserve-desc { opacity: 1; }
.reserve-cta {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.reserve-note {
  text-align: center;
  margin-top: 56px;
  padding: 28px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  line-height: 2;
  position: relative;
  z-index: 1;
  letter-spacing: .04em;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #050A14;
  color: rgba(255, 255, 255, .65);
  padding-top: 80px;
  font-size: 13px;
  letter-spacing: .04em;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
}
.footer-logo {
  font-family: var(--f-jp-h);
  font-size: 22px;
  color: #FFF;
  margin-bottom: 18px;
  font-weight: 500;
  letter-spacing: .08em;
}
.footer-address {
  font-size: 13px;
  line-height: 2;
  color: rgba(255, 255, 255, .5);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  align-content: start;
}
.footer-nav a {
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-family: var(--f-en);
  transition: color .2s;
  /* italic 削除 */
}
.footer-nav a:hover { color: #FFF; }
.footer-bottom {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-sample-notice {
  text-align: center;
  font-size: 12px;
  color: var(--c-accent);
  margin-bottom: 14px;
  line-height: 1.8;
  letter-spacing: .04em;
}
.footer-sample-notice a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-copy {
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
  font-family: var(--f-en);
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 420px; }
  .doctor-inner { grid-template-columns: 1fr; gap: 48px; }
  .doctor-text { order: 2; }
  .doctor-visual { order: 1; max-width: 420px; }
  .access-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .g-nav, .header-cta-area { display: none; }
  .hamburger { display: block; }
  .axes-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .reserve-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .flow-item { grid-template-columns: 64px 1fr; gap: 24px; }
  .flow-number { font-size: 36px; }
  .hero-meta { right: 0; bottom: -20px; padding: 16px 22px; min-width: 180px; }
}

@media (max-width: 460px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
