/* =========================================================
   岐阜なかの内科・内視鏡クリニック LP
   ========================================================= */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Yu Gothic", "YuGothic", "BIZ UDPGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", "メイリオ", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; vertical-align: bottom; }

a { color: inherit; text-decoration: none; transition: opacity .25s, color .25s, background .25s, border-color .25s, transform .25s; }
a:hover { opacity: .82; }

ul, ol { list-style: none; margin: 0; padding: 0; }

table { border-collapse: collapse; width: 100%; }

button { font: inherit; cursor: pointer; background: transparent; border: 0; padding: 0; color: inherit; }

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: .9em;
  background: rgba(0,0,0,.06);
  padding: 2px 6px;
  border-radius: 3px;
}

/* ---------- Variables ---------- */
:root {
  --color-primary: #1c3d36;
  --color-primary-dark: #122a25;
  --color-primary-soft: #2a544c;
  --color-primary-blue: #889eca;
  --color-primary-blue-light: #dae4f8;
  --color-primary-blue-super-light: #eaeffa;
  --color-primary-blue-dark: #3f4e6e;
  --color-background_data_section: #96ba76;
  --color-reasons-bg: rgb(186,169,129);
  --color-data-ring-gastro: #c45c00;
  --color-data-ring-gastro-track: #f3dcc8;
  --color-data-ring-colon: #2f5085;
  --color-data-ring-colon-track: #c8d6ef;
  --color-accent: #b89766;
  --color-accent-dark: #957848;
  --color-text: #2c2a26;
  --color-text-light: #6b6760;
  --color-text-white: #ffffff;
  --color-bg: #edf3fb;
  --color-why-bg: #f3f8fc;
  --color-bg-soft: #f3f8fc;
  --color-line: #e5dfd0;
  --color-white: #ffffff;
  --color-dark: #1c2825;
  --color-hex-line-blue: rgba(136, 158, 202, 0.676);
  --color-reason-blue:  rgba(45, 72, 118, 0.798);
  --container: 1200px;
  --radius: 6px;
  --shadow-sm: 0 2px 12px rgba(28, 61, 54, 0.06);
  --shadow-md: 0 10px 40px rgba(28, 61, 54, 0.08);
  --shadow-lg: 0 20px 60px rgba(28, 61, 54, 0.12);
  --font-serif: "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "游明朝", serif;
  --font-en: "Montserrat", "Cormorant Garamond", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-en-serif: "Cormorant Garamond", "Noto Serif JP", serif;
  --font-num-serif: "Bodoni Moda", "Noto Serif JP", serif;
  --header-h: 116px;
  --nav-h: 56px;
  --cta-arrow-opacity-min: 0.6;
  --cta-arrow-opacity-max: 1;
  --cta-arrow-pulse-duration: 2s;
  
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 80px 0; }

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

.section--dark {
  background:
    linear-gradient(rgba(18, 42, 37, .92), rgba(18, 42, 37, .96)),
    repeating-linear-gradient(135deg, #1c3d36 0 6px, #234841 6px 12px);
  color: #fff;
}

#about-exam {
  background:
    linear-gradient(rgba(18, 42, 37, .85), rgba(18, 42, 37, .92)),
    url('../images/our-endoscopy-services.jpg') center / cover no-repeat;
}

.section--dark p { color: rgba(255,255,255,.85); }

.sp-only { display: none; }

.section__head { text-align: center; margin-bottom: 70px; }

.section__head--left { text-align: left; margin-bottom: 40px; }

.section__head--light .section__title { color: #fff; }
.section__head--light .section__lead { color: rgba(255,255,255,.85); }

.section__en {
  font-family: 'Cormorant Garamond', 'Yu Gothic', 'YuGothic', 'Noto Sans JP', sans-serif;
  font-size: 40px;
  letter-spacing: .35em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 500;
}

.section__title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--color-primary);
  margin: 0 0 22px;
  line-height: 1.5;
}

.section__lead {
  font-size: 17.5px;
  color: var(--color-text-light);
  margin: 0;
  line-height: 2.05;
  letter-spacing: .04em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 240px;
  padding: 18px 32px;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .12em;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.btn--primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn--primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); opacity: 1; transform: translateY(-2px); }

.btn--gold { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn--gold:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); opacity: 1; transform: translateY(-2px); }

.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; opacity: 1; transform: translateY(-2px); }

.btn--primary-blue-dark {
  background: var(--color-primary-blue-dark);
  color: #fff;
  border-color: var(--color-primary-blue-dark);
}
/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
}

.site-nav-sentinel {
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.site-header__top {
  background: transparent;
  border-bottom: 0;
  transition: transform .3s ease, opacity .3s ease;
  overflow: visible;
  padding-bottom: 20px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  max-width: 1920px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  line-height: 1.25;
}

.brand__logo {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__title-img {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-primary);
  letter-spacing: .08em;
  display: block;
}

.brand__title-img__keep {
  white-space: nowrap;
}

.brand__sub {
  font-family: var(--font-en);
  font-size: 8px;
  color: var(--color-text-light);
  letter-spacing: .18em;
  margin-top: 4px;
  text-transform: uppercase;
  text-align: center;
  display: block;
}

.header-cta {
  display: flex;
  align-items: stretch;
  gap: 10px;
  overflow: visible;
}

.header-cta__tel {
  display: flex;
  position: relative;
  padding: 4px 14px;
  border-left: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
  color: var(--color-primary);
  line-height: 1.25;
}

/* 電話アイコン */
.header-cta__tel-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* テキスト全体の塊 */
.header-cta__tel-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 0;
}

/* 4行すべてのテキスト */
.header-cta__line {
  display: flex;
  font-size: 13px;
  color: var(--color-primary);
  letter-spacing: .15em;
}

.header-cta__line--light {
  display: flex;
  font-size: 13px;
  color: var(--color-text-light);
  letter-spacing: .15em;
}

.header-cta__label {
  font-size: 10px;
  color: var(--color-text-light);
  letter-spacing: .15em;
}

.header-cta__line--num {
  font-family: "Manrope", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
  font-style: italic;
  letter-spacing: .03em;
  color: var(--color-primary);
  margin: 2px 0;
}

.header-cta__line--holiday {
  display: flex;
  font-size: 11px;
  color: var(--color-text-light);
  letter-spacing: .15em;
}

.header-cta__btn,
.header-cta_reserve_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px;
  border-radius: var(--radius);
  line-height: 1.2;
  background: #fff;
  color: var(--color-text);
  min-width: 110px;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: visible;
}

.header-cta__btn:hover,
.header-cta__btn:focus-visible,
.header-cta_reserve_btn:hover,
.header-cta_reserve_btn:focus-visible {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  z-index: 1;
}

.header-cta__btn:hover .header-cta__arrow,
.header-cta__btn:focus-visible .header-cta__arrow {
  animation: none;
  opacity: var(--cta-arrow-opacity-max);
}

/* 丸型矢印（ヒーロー画像に重なる） */
@keyframes ctaArrowPulse {
  0%, 100% { opacity: var(--cta-arrow-opacity-min); }
  50%      { opacity: var(--cta-arrow-opacity-max); }
}

.header-cta__arrow {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
  z-index: 60;
  pointer-events: none;
  color: #fff;
  animation: ctaArrowPulse var(--cta-arrow-pulse-duration) ease-in-out infinite;
}

.header-cta__arrow svg {
  width: 14px;
  height: 14px;
}

.header-cta__btn.--line .header-cta__arrow {
  background: #06C755;
  color: #fff;
}

.header-cta__btn.--webr .header-cta__arrow {
  background: var(--color-primary);
  color: #fff;
}

.header-cta__btn.--webq .header-cta__arrow {
  background: #7399ea;
  color: #fff;
}

.header-cta__btn-icon {
  width: 60px;
  height: auto;
  margin-right: 4px;
  flex-shrink: 0;
}

.header-cta__btn-text {
  display: flex;
  flex-direction: column;
}

.header-cta__btn-sub {
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--color-text-light);
  margin-bottom: 2px;
}

.header-cta__btn-main {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: .05em;
  font-weight: 600;
}

.cta-main-text {
  white-space: nowrap;
  display: flex;
  align-items: baseline;
}
/* Nav (initially in normal flow below hero, becomes sticky on scroll past) */
.site-nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
  border-top: 1px solid var(--color-line);
  z-index: 100;
  transition: box-shadow .3s ease, background .3s ease;
}

.site-nav.is-stuck {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.site-nav__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--color-text);
  height: var(--nav-h);
  align-items: center;
}

.site-nav__list a {
  position: relative;
  padding: 4px 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15px;
}

.site-nav__list a:not(.site-nav__line)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width .25s ease, left .25s ease;
}

.site-nav__list a:not(.site-nav__line):hover { opacity: 1; color: var(--color-primary); }
.site-nav__list a:not(.site-nav__line):hover::after { width: 100%; left: 0; }

/* LINE 予約（アクセス横・スティック時のみ表示） */
.site-nav__line-item {
  display: none;
  list-style: none;
}

.site-nav.is-stuck .site-nav__line-item {
  display: flex;
  align-items: center;
}

.site-nav__line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  background: #06c755;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: .06em;
  border-radius: var(--radius);
  width: 100px;
  white-space: nowrap;
}

.site-nav__line:hover {
  background: #05b14b;
  opacity: 1;
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 110;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 固定ハンバーガー（スマホ常駐）はPCでは非表示 */
.hamburger-fixed {
  display: none;
}

.hamburger span {
  position: absolute;
  left: 13px;
  width: 24px;
  height: 1.5px;
  background: var(--color-primary);
  transition: transform .3s, opacity .3s;
}

.hamburger span:nth-child(1) { top: 18px; }
.hamburger span:nth-child(2) { top: 24px; }
.hamburger span:nth-child(3) { top: 30px; }

.hamburger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.site-nav__close {
  display: none;
  position: relative;
}

.site-nav__close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 1.5px;
  background: var(--color-primary);
  transition: transform .3s, opacity .3s;
}

.site-nav__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-nav__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* =========================================================
   Header Customization
   ========================================================= */
.header-font-agenda {
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  letter-spacing: .05em;
  margin-right: 4px;
}

.header-cta-reserve-subtitle {
  font-size: 26px;
  /* ★ここで予約のサイズを小さく調整します */
  font-weight: 200;
  /* 必要に応じて太字に */
}

/* --- 🟢 LINE予約ボタンの色設定 --- */ 
.header-cta__btn.--line .header-font-agenda {
  color: #06C755;
}

.header-cta__btn.--line .header-cta-reserve-subtitle {
  color: #06C755;
}
.header-cta__btn.--line .header-cta__btn-sub {
  color: #06C755;
}
.header-cta__btn.--line {
  border-right: 1px solid var(--color-line);
}

/* --- 🔵 WEB予約ボタンの色設定 --- */
.header-cta__btn.--webr .header-font-agenda {
  color: var(--color-primary);
}

.header-cta__btn.--webr .header-cta-reserve-subtitle {
  color: var(--color-primary);
}

.header-cta__btn.--webr .header-cta__btn-sub {
  color: var(--color-primary);
}

.header-cta__btn.--webr {
  border-right: 1px solid var(--color-line);
}
/* --- 🔵 WEB問診ボタンの色設定 --- */
.header-cta__btn.--webq .header-font-agenda {
  color: #7399ea;
}

.header-cta__btn.--webq .header-cta-reserve-subtitle {
  color: #7399ea;
}

.header-cta__btn.--webq .header-cta__btn-sub {
  color: #7399ea;
}
/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  max-height: 780px;
  overflow: visible;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform: scale(1.04);
  animation: heroKenburns 8s ease-in-out infinite alternate;
}

.hero__slide.is-active { opacity: 1; }

@keyframes heroKenburns {
  from { transform: scale(1.04); }
  to { transform: scale(1.1); }
}

/* Placeholder backgrounds（後で実画像に差し替え） */
.hero__slide--1 {
  background:
    linear-gradient(135deg, rgba(18, 42, 37, .05), rgba(184, 151, 102, .05)),
    url('../images/hero/hero-01.jpg?v=1') center / cover no-repeat;
}
.hero__slide--2 {
  background:
    linear-gradient(135deg, rgba(18, 42, 37, .1), rgba(184, 151, 102, .05)),
    url('../images/hero/hero-02.jpg?v=1') center / cover no-repeat;
}
.hero__slide--3 {
  background:
    linear-gradient(135deg, rgba(18, 42, 37, .05), rgba(184, 151, 102, .05)),
    url('../images/hero/hero-03.jpg?v=1') center / cover no-repeat;
}
.hero__slide--4 {
  background:
    linear-gradient(135deg, rgba(18, 42, 37, .05), rgba(184, 151, 102, .05)),
    url('../images/hero/hero-04.jpg?v=1') center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(18, 42, 37, .45) 0%, rgba(18, 42, 37, .15) 60%, rgba(18, 42, 37, .05) 100%);
}

/* =========================================================
   Hex animation（ヘッダー上 z-index:55、タイトル前面 z-index:60）
   ========================================================= */
.hero__hex-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80vh;
  min-height: 600px;
  max-height: 780px;
  z-index: 55;
  pointer-events: none;
}

.hero__hex-layer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 20px) 18px 0;
  height: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero__hex-slot {
  position: relative;
  grid-column: 1;
  width: 100%;
  min-height: calc(60px * 3 * 0.95 + 24px);
  align-self: center;
}

.hero__hex {
  position: absolute;
  --hex-size: clamp(220px, 36vw, 500px);
  /* アンカー点＝正六角形の中心（translate -50%,-50%） */
  top: clamp(-116px, -0.8vw, 170px);
  left: clamp(-196px, -0.8vw, 100px);
  width: var(--hex-size);
  height: var(--hex-size);
  transform: translate(-45%, -45%);
  z-index: 0;
  pointer-events: none;
}

.hero__hex-rotator {
  width: 100%;
  height: 100%;
  transform-origin: center center;
  animation: heroHexRotate 14s linear infinite;
}

.hero__hex svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero__hex-outline {
  fill: none;
  stroke: var(--color-hex-line-blue);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, .55));
  animation:
    heroHexRedraw 14s ease-in-out infinite,
    heroHexGlow 3s ease-in-out infinite;
}

@keyframes heroHexRedraw {
  0%   { stroke-dashoffset: 1200; opacity: 1; }
  15%  { stroke-dashoffset: 0;    opacity: 1; }
  75%  { stroke-dashoffset: 0;    opacity: 1; }
  100% { stroke-dashoffset: -1200; opacity: 0; }
}

@keyframes heroHexRotate {
  0%   { transform: rotate(0deg); }
  15%  { transform: rotate(0deg); }
  75%  { transform: rotate(360deg); }
  100% { transform: rotate(360deg); }
}

@keyframes heroHexGlow {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(255, 255, 255, .25)); }
  50%      { filter: drop-shadow(0 0 12px rgba(255, 255, 255, .6)); }
}

.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80vh;
  min-height: 600px;
  max-height: 780px;
  z-index: 60;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-h) + 20px) 18px 0;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 50px;
  align-items: center;
  color: #fff;
  pointer-events: none;
}

.hero__content a,
.hero__content button {
  pointer-events: auto;
}

/* OPEN テキスト */
.hero__open-badge {
  /* 固定したい全体の横幅（ここを基準にすべてがピタッと揃います） */
  --badge-width: 160px;

  position: absolute;
  top: 160px;
  right: 28px;
  display: flex;
  flex-direction: column;
  width: var(--badge-width);
  color: #fff;
  font-family: var(--font-en);
  line-height: 1.2;
  z-index: 10;
}

/* 1行目：24時間 */
.hero__open-date {
  font-size: 42px;
  /* バッジの幅に合わせて調整 */
  font-weight: 300;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* 2行目：横並びにするための枠 */
.hero__open-text-row {
  display: flex;
  align-items: center;
  /* 上下中央を揃える */
  gap: 8px;
  /* WEBの丸と予約の間のすき間 */
  width: 100%;
}

/* ◯で囲んだ「WEB」 */
.hero__open-web {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  height: 3.5em;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  box-sizing: border-box;
}

/* 「予約」テキスト */
.hero__open-reserve {
  font-size: 32px;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1;
}

/* Left: ALL FOR ONE */
.hero__left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__titles {
  position: relative;
  width: 100%;
  display: grid;
  align-items: center;
  margin: 0 0 24px;
  z-index: 2;
}

.hero__title,
.hero__title2,
.hero__sub-en {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: "Manrope", sans-serif;
  font-size: 55px;
  font-weight: 100;
  letter-spacing: .02em;
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
  color: #fff;
  transition: opacity 1.5s ease, visibility 1.5s ease;
  grid-area: 1 / 1;
}

.hero__title2 {
  font-family: "Manrope", sans-serif;
  font-size: 108px;
  font-weight: 100;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,.35);
  color: #fff;
  transition: opacity 1.5s ease, visibility 1.5s ease;
  grid-area: 1 / 1;
}

.hero__title,
.hero__title2 {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero__title.is-active,
.hero__title2.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero__title > span {
  display: block;
}

.hero__title2 span {
  display: block;
}

/* 指定文字のみ白抜き（アウトライン） */
.hero__title-outline {
  color: transparent;
  -webkit-text-stroke: 0.036em #fff;
  paint-order: stroke fill;
  text-shadow: none;
}

/* Windows: Noto Sans JP で袋とじを描画（游ゴシック/メイリオでは stroke が潰れるため） */
html.is-windows .hero__title-outline {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  -webkit-text-stroke: 0.02em #fff;
}

.hero__sub-en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .35em;
  color: var(--color-accent);
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
}

/* Right: 3つのサークル */
.hero__circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20%;
  gap: 13px;
  overflow: 0.8;
  align-items: center;
}

.hero-circle {
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 0;
  height: auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  color: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  align-self: center;
}

.hero-circle:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

.hero-circle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  pointer-events: none;
}

.hero-circle--blue {
  background: radial-gradient(circle at 30% 30%,
      rgba(106, 147, 179, 0.85) 0%,
      rgba(58, 95, 122, 0.85) 60%,
      rgba(42, 75, 98, 0.85) 100%);
}

.hero-circle--green {
  background: radial-gradient(circle at 30% 30%,
      rgba(106, 146, 133, 0.85) 0%,
      rgba(61, 107, 98, 0.85) 60%,
      rgba(42, 84, 76, 0.85) 100%);
}

.hero-circle--gold {
  background: radial-gradient(circle at 30% 30%,
      rgba(212, 181, 133, 0.85) 0%,
      rgba(184, 151, 102, 0.85) 60%,
      rgba(149, 120, 72, 0.85) 100%);
}

.hero-circle__label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .25em;
  opacity: .85;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-circle__title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-circle__text {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: .02em;
  opacity: .95;
}

.hero__indicators {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero__indicators button {
  width: 240px;
  height: 2px;
  background: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
}

.hero__indicators button.is-active { background: rgba(255,255,255,.85); }

/* =========================================================
   Symptoms
   ========================================================= */
.symptoms__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
}

.symptoms__list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-size: 16.5px;
  line-height: 1.6;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.symptoms__list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--color-accent);
}

.symptoms__list li::before {
  content: "";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(-45deg, transparent 50%, #fff 50%);
  background-size: 11px 2px, 7px 2px;
  background-position: 5px 12px, 8px 9px;
  background-repeat: no-repeat;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.symptoms__cta-text {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 50px 0 24px;
  letter-spacing: .08em;
}

.symptoms__cta {
  display: flex;
  justify-content: center;
}

/* =========================================================
   Doctor Message
   ========================================================= */
.message {
  position: relative;
  background: var(--color-primary-dark);
  color: #fff;
}

.message__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 16px;
}

.message__visual-inner {
  position: absolute;
  inset: 0;
  --message-overlay-start: rgba(28, 62, 120, 0.941);
  --message-overlay-end: rgba(30, 64, 125, 0.72);
  background:
    linear-gradient(125deg, var(--message-overlay-start) 0%, var(--message-overlay-end) 100%),
    url('../images/doctor3.jpg') right center / 50% auto no-repeat;
  background-attachment: fixed;
}

.message .section__title,
.message .section__en,
.message .message__lead {
  color: #fff;
}

.message .section__title {
  font-size: 14px;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.message .section__en {
  font-size: 38px;
  letter-spacing: .08em;
  margin: 0 0 22px;
  text-transform: none;
}

.message__body {
  position: relative;
  padding: 90px 0;
}

.message__lead {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.85;
  color: var(--color-accent);
  margin: 0 0 40px;
}

.message__text {
  max-width: 720px;
  margin: 0 0 50px;
}

.message__text p {
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 2.1;
  color: rgba(255,255,255,.92);
}

.message__name {
  font-family: var(--font-serif);
  font-size: 18px;
  margin: 0 0 60px;
  letter-spacing: .06em;
}

.message__name strong {
  font-size: 24px;
  margin-right: 12px;
}

.message__name span { font-size: 14px; color: rgba(255,255,255,.7); }

.section__head.message_section__head--left {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  --message-title-size: clamp(48px, 10vw, 120px);
}

.message__title-block {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.message_agenda_t {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 200;
  font-size: var(--message-title-size);
  font-optical-sizing: auto;
  font-style: italic;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.message_doctor_title {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: .06em;
  position: absolute;
  top: -26px;
  right: 0;
  margin: 0;
  white-space: nowrap;
  z-index: 2;
}

/* Message タイトル右横のヘキサゴン（hero__hex を流用） */
.message__hex.hero__hex {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin-top: calc(var(--message-title-size) * 0.03);
  margin-left: calc(-0.35 * (var(--message-title-size) * 0.55 + var(--hex-size) * 0.35));
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  --hex-size: clamp(72px, 12vw, 160px);
  width: var(--hex-size);
  height: var(--hex-size);
  flex-shrink: 0;
  align-self: center;
  z-index: 1;
}

.message__hex .hero__hex-rotator {
  display: block;
  line-height: 0;
}

.message__hex svg {
  display: block;
}

.career {
  background: #fff;
  padding: 80px 0;
}

.message__career {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 920px;
  margin: 0 auto;
}

.career-block__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--color-primary-blue);
  margin: 0 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.career-list {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px 18px;
  font-size: 14.5px;
  margin: 0;
}

.career-list dt {
  color: var(--color-primary-blue);
  font-family: var(--font-serif);
  letter-spacing: .04em;
}

.career-list dd {
  margin: 0;
  color: var(--color-primary-blue);
  line-height: 1.7;
}

.qual-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: var(--color-primary-blue);
  line-height: 1.7;
}

.qual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: var(--color-accent);
}

/* =========================================================
   Endoscopy Data
   ========================================================= */
.data .section__en {
  color: #ffffff;
  font-size: 31px;
}
.data .section__title {
  font-size: 25px;
  letter-spacing: .15em;
}

.data__year {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 31px;
  color: var(--color-primary);
  letter-spacing: .1em;
  margin-right: 0.5em;
}

.data__hero {
  background: var(--color-background_data_section);
  color: #fff;
  margin: 0 3%;
  padding: 60px 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.data__hero-inner {
  display: block;
}

.data__hero-divider {
  display: none;
}

.data__hero-head .section__title {
  margin-bottom: 0;
}

.data__hero-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.data__hero-icon {
  width: 130px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.data__hero-title-row .section__title {
  margin-bottom: 0;
}

.data__hero-stats .section__lead {
  margin: 0 0 12px;
}

.data__hero-stats .data__year {
  color: #fff;
}

@media (min-width: 1025px) {
  .data__hero {
    text-align: left;
  }

  .data__hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 48px;
  }

  .data__hero-head {
    text-align: left;
  }

  .data__hero-title-row {
    justify-content: flex-start;
  }

  .data__hero-divider {
    display: block;
    width: 1px;
    height: 140px;
    background: rgba(255, 255, 255, 0.45);
    justify-self: center;
  }

  .data__hero-stats {
    text-align: left;
  }

  .data__hero-value {
    justify-content: flex-start;
  }
}

.data__hero .section__title {
  color: #fff;
}

.data__hero-label {
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: .15em;
  color: #fff;
  margin: 0 0 16px;
}

.data__hero-value {
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  color: #fff;
}

.data__hero-value .counter {
  font-family: var(--font-en-serif);
  font-size: 86px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums lining-nums;
}

.data__hero-value .unit {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}

.data__hero-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  letter-spacing: .08em;
}

.data__grid-wrapper {
  background: var(--color-primary-blue-super-light);
  margin: 0 3%;
  padding: 60px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.data__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.data-card {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
  position: relative;
  transition: transform .3s;
}

.data-card:hover {
  transform: translateY(-4px);
}

.data-card__chart {
  position: relative;
  width: 256px;
  height: 256px;
  margin: 0 auto 24px;
}

.ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring__track {
  fill: none;
  stroke: var(--color-bg-soft);
  stroke-width: 16;
}

.ring__progress {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 16;
  stroke-linecap: butt;
  transition: stroke-dashoffset 1.6s cubic-bezier(.2,.7,.3,1);
}

.data-card--gastro .ring__progress {
  stroke: var(--color-data-ring-gastro);
}

.data-card--gastro .ring__track {
  stroke: var(--color-data-ring-gastro-track);
}

.data-card--colon .ring__progress {
  stroke: var(--color-data-ring-colon);
}

.data-card--colon .ring__track {
  stroke: var(--color-data-ring-colon-track);
}

.ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring__pct {
  font-family: var(--font-en-serif);
  font-size: 36px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums lining-nums;
  color: var(--color-primary);
}

.data-card__label {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: .12em;
  color: var(--color-primary);
  margin: 0 0 12px;
  font-weight: 600;
}

.data-card__value {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  color: var(--color-primary);
}

.data-card__value .counter {
  font-family: var(--font-en-serif);
  font-size: 56px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums lining-nums;
}

.data-card__value .unit {
  font-family: var(--font-serif);
  font-size: 18px;
}

.data__note {
  margin-top: 30px;
  text-align: right;
  font-size: 12px;
  color: var(--color-text-light);
}

/* =========================================================
   Location
   ========================================================= */
#location {
  background: #fff;
}

.location__inner {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 48px;
  align-items: center;
}

.location__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--color-primary);
  margin: 0 0 28px;
  line-height: 1.6;
}

.location__title-en {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--color-accent);
}
.location__title-ja {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  letter-spacing: .07em;
  line-height: 1.2;
  color: var(--color-primary);
}

.location__title-inline {
  display: inline-block;
}

.location__lead p {
  margin: 1em 0 1.4em;
  font-size: 17px;
  line-height: 2.05;
  letter-spacing: .04em;  
  color: var(--color-text-light);
}

.location__lead p:last-child {
  margin-bottom: 0;
}

.location__image {
  border-radius: 12px;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to right, transparent, black 20px),
    linear-gradient(to left, transparent, black 20px),
    linear-gradient(to bottom, transparent, black 20px),
    linear-gradient(to top, transparent, black 20px);
  mask-image:
    linear-gradient(to right, transparent, black 20px),
    linear-gradient(to left, transparent, black 20px),
    linear-gradient(to bottom, transparent, black 20px),
    linear-gradient(to top, transparent, black 20px);

  /* 重ねたマスクをすべて合成する設定 */
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.location__image img {
  display: block;
  width: 100%;
  height: auto;
}

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

  .location__title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .location__title-en {
    font-size: 18px;
  }

  .location__lead p {
    font-size: 15px;
    line-height: 1.95;
  }
}

/* =========================================================
   Reasons (9 Reasons)
   ========================================================= */
#reasons {
  background: var(--color-reasons-bg);
}

#reasons .section__en {
   font-size: 40px;
   font-weight: 600;
   color: rgba(240, 206, 158, 0.932);
}
#reasons .section__title {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-white);
}
#reasons .section__lead {
  color: #fff;
}

.reasons__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.reason-wrapper {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  align-items: start;
}

.reason-wrapper--reverse {
  grid-template-columns: 1fr 100px;
}

.reason-wrapper--reverse .reason__no {
  text-align: right;
}

.reason-wrapper--reverse .reason__no span::after {
  left: 0;
  right: auto;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.6) 66%, transparent 100%);
}

.reason {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 50px;
  align-items: center;
  padding: 40px 30px;
  background: rgba(235,230, 220, 0.445);
  border-radius: var(--radius);
  position: relative;
  border: 1px solid var(--color-line);
  transition: transform .3s, box-shadow .3s;
}

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

.reason__no {
  font-family: var(--font-num-serif);
  font-size: 72px;
  font-weight: 400;
  font-style: italic;
  color: #f8f1e8;
  line-height: 1;
  letter-spacing: 0.02em;
}

.reason__no span {
  display: block;
  position: relative;
  padding-bottom: 18px;
}

.reason__no span::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 66%, transparent 100%);
}

.reason__visual {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(28, 61, 54, .1) 0%, rgba(184, 151, 102, .15) 100%),
    repeating-linear-gradient(135deg, #ece6d5 0 6px, #e3dbc6 6px 12px);
  border-radius: var(--radius);
}

.reason-wrapper:nth-child(1) .reason__visual { background: url('../images/reasons/reason-01.jpg') center / cover no-repeat; }
.reason-wrapper:nth-child(2) .reason__visual { background: url('../images/reasons/reason-02.png') center / cover no-repeat; }
.reason-wrapper:nth-child(3) .reason__visual { background: url('../images/reasons/reason-03.jpg') center / cover no-repeat; }
.reason-wrapper:nth-child(4) .reason__visual { background: url('../images/reasons/reason-04.jpg') center / cover no-repeat; }
.reason-wrapper:nth-child(5) .reason__visual { background: url('../images/reasons/reason-05.jpg') center / cover no-repeat; }
.reason-wrapper:nth-child(6) .reason__visual { background: url('../images/reasons/reason-06.jpg') center / cover no-repeat; }
.reason-wrapper:nth-child(7) .reason__visual { background: url('../images/reasons/reason-07.jpg') center / cover no-repeat; }
.reason-wrapper:nth-child(8) .reason__visual { background: url('../images/reasons/reason-08.jpg') center / cover no-repeat; }
.reason-wrapper:nth-child(9) .reason__visual { background: url('../images/reasons/reason-09.jpg') center / cover no-repeat; }
.reason-wrapper:nth-child(10) .reason__visual { background: url('../images/reasons/reason-10.jpg') center / cover no-repeat; }

.reason__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--color-text-white);
  margin: 0 0 18px;
  line-height: 1.55;
}

.reason__keyword {
  color: #fcf59e;
  font-weight: 800;
}

.reason__body p {
  margin: 0;
  font-size: 17px;
  line-height: 2.05;
  color: var(--color-text-white);
}

/* =========================================================
   Hours
   ========================================================= */
#hours {
  background: var(--color-why-bg);
  padding: 20px 0;
}

#hours > .container {
  background: #151f26f3;
  border-radius: 12px;
  padding: 45px;
  max-width: var(--container);
  width: calc(100% - 30px);
}

#hours .section__title {
  color: #E2E8F0;
  font-size: 40px;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

.hours__title-keep {
  white-space: nowrap;
}

#hours .section__head {
  margin-bottom: 40px;
}
#hours .section__en {
  font-size: 38px;
  color: #D4AF37;
  letter-spacing: 0.2em;
}
#hours .section__lead {
  color: #94A3B8;
  letter-spacing: 0.05em;
}

.hours__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}

.hours-table {
  font-size: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
}

.hours-table th,
.hours-table td {
  text-align: center;
  padding: 11px 6px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  font-family: var(--font-serif);
  letter-spacing: .06em;
  color: #E2E8F0;
}

.hours-table thead th {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  font-weight: 500;
  letter-spacing: .15em;
}

.hours-table tbody th {
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  padding-left: 14px;
  color: #E2E8F0;
  font-weight: 500;
  line-height: 1.35;
}

.hours-table td .o {
  color: #D4AF37;
  font-size: 18px;
}

.hours-table td .t {
  color: #D4AF37;
  font-size: 16px;
}

.hours-table td .star {
  color: #D4AF37;
  font-size: 18px;
}

.hours-table td.closed {
  color: #94A3B8;
  font-size: 14px;
}

.hours-table thead th.sat {
  color: #63b3ed; /* Brighter blue for dark background */
}

.hours-table thead th.sun {
  color: #fc8181; /* Brighter red for dark background */
}

.hours-table tbody th small {
  font-size: 11px;
  font-weight: 400;
  color: #94A3B8;
  display: block;
  margin-top: 2px;
  line-height: 1.3;
}

.hours-notes {
  font-size: 13px;
  color: #94A3B8;
  line-height: 1.8;
}

.hours-notes li {
  padding-left: 16px;
  position: relative;
}

.hours-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 1px;
  background: #D4AF37;
}

.hours-notes li:last-child {
  color: #E2E8F0; /* Brighter color for the important note */
  font-weight: 500;
  margin-top: 8px; /* Slightly separate from others */
}

/* Reservation aside */
.hours__reserve {
  background: rgba(156, 155, 155, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #E2E8F0;
  padding: 30px 36px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.hours__reserve-en {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: .3em;
  color: #a8bbd6;
  margin: 0 0 12px;
}

.hours__reserve-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .25em;
  margin: 0 0 10px;
  color: #e3d093; /* Emphasize with gold */
}

.reserve-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  margin-bottom: 10px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  color: #e3d093;
}

.reserve-tel__label {
  font-size: 12px;
  letter-spacing: .15em;
  color: #94A3B8;
  margin-bottom: 4px;
}

.reserve-tel__num {
  font-family: "Manrope", sans-serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .03em;
}

.reserve-tel--lg .reserve-tel__num { font-size: 44px; }

.reserve-btns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.reserve-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  color: #E2E8F0;
  line-height: 1.2;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all .3s;
}
.reserve-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #D4AF37;
}

.reserve-btn__icon {
  width: 32px;
  height: auto;
  margin-right: 10px;
  flex-shrink: 0;
  filter: brightness(0.9) contrast(0.8); /* Tone down icon colors slightly */
}

.reserve-btn__text {
  display: flex;
  flex-direction: column;
}

.reserve-btn__sub {
  font-size: 10px;
  letter-spacing: .12em;
  color: #9eb0c9;
  margin-bottom: 2px;
}

.reserve-btn__main {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .1em;
  color: #dfbb43;
}

.reserve-btn__main .header-font-agenda {
  font-size: 20px;
  font-weight: 400;
  margin-right: 2px;
}

.reserve-btn__main .header-cta-reserve-subtitle {
  font-size: 14px;
  font-weight: 400;
}

.reserve-btn--line { border-color: rgba(6, 199, 85, 0.4); }
.reserve-btn--line .reserve-btn__main { color: #69c78f; }
.reserve-btn--line:hover { background: rgba(6, 199, 85, 0.1); border-color: rgba(6, 199, 85, 0.6); opacity: 1; }

.reserve-btn--web { border-color: rgba(212, 175, 55, 0.4); }
.reserve-btn--web .reserve-btn__main { color: #d6b750; }
.reserve-btn--web:hover { background: rgba(212, 175, 55, 0.1); border-color: #D4AF37; opacity: 1; }

.reserve-btn--mon { border-color: rgba(148, 163, 184, 0.4); }
.reserve-btn--mon .reserve-btn__main { color: #a4b8d3; }
.reserve-btn--mon:hover { background: rgba(148, 163, 184, 0.1); border-color: #94A3B8; opacity: 1; }

.reserve-btns--lg .reserve-btn { padding: 22px 20px; min-width: 220px; }
.reserve-btns--lg .reserve-btn__icon { width: 44px; margin-right: 14px; }
.reserve-btns--lg .reserve-btn__main { font-size: 18px; }
.reserve-btns--lg .reserve-btn__sub { font-size: 12px; }

/* =========================================================
   Why Endoscopy
   ========================================================= */
#why {
  background: var(--color-why-bg);
}

#why .section__en {
  font-size: 40px;
  font-weight: 600;
}

#why .section__title {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: .002em;
  color: var(--color-text);
}

#why .section__lead {
  color: var(--color-text);
  font-size: 18px;
}

.why__title-ruby {
  display: inline-block;
  position: relative;
  text-align: center;
}

.why__reason-img {
  display: block;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  height: 28px;
  width: auto;
}

.why__title-text {
  position: relative;
  display: inline-block;
  font-size: 1.2em;
  line-height: 1;
  vertical-align: baseline;
  top: 0.04em;
}

.why__title-ri {
  color: rgb(145, 190, 224);
  font-weight: 500;
}

.why__title-yu {
  color: rgb(157, 203, 130);
  font-weight: 500;
}

.why__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 18px;
}

.why-stat {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
}

.why-stat__head {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
  letter-spacing: .04em;
  line-height: 1.5;
}

.why-stat__head small {
  display: block;
  margin-top: 4px;
  color: var(--color-text-light);
  font-size: 11px;
  font-family: var(--font-en);
  letter-spacing: .15em;
}

.rank li {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 6px;
  align-items: baseline;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--color-line);
}

.rank li:last-child { border-bottom: 0; }

.rank__no {
  font-family: var(--font-en);
  font-size: 16px;
  color: var(--color-text-light);
  font-weight: 600;
}

.rank__name {
  font-family: var(--font-serif);
  color: var(--color-text);
}

.rank__num {
  font-family: var(--font-en);
  font-size: 13px;
  color: var(--color-text-light);
}

.rank li.is-highlight {
  background: linear-gradient(90deg, rgba(184, 151, 102, .12), transparent);
  margin: 0 -6px;
  padding: 8px 6px;
  border-radius: 2px;
}

.rank li.is-highlight .rank__no,
.rank li.is-highlight .rank__name {
  color: var(--color-primary);
  font-weight: 600;
}

.rank li.is-highlight .rank__num {
  color: var(--color-accent-dark);
  font-weight: 600;
}

.why__source {
  text-align: right;
  font-size: 11.5px;
  color: var(--color-text-light);
  margin: 0 0 60px;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.why-card {
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius);
  border-top: 3px solid var(--color-accent);
}

.why-card__title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--color-primary);
  margin: 0 0 16px;
  line-height: 1.55;
}

.why-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.95;
}

/* Why Endoscopy - Block structure */
.why__block {
  margin-bottom: 48px;
}

.why__block-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin: 0 0 8px;
}

.why__block-sub {
  font-size: 14px;
  color: var(--color-text-light);
  text-align: center;
  margin: 0 0 24px;
}

.why__block .why__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why__block .why__source {
  margin-top: 16px;
}

/* =========================================================
   Why Data - 統計データセクション
   ========================================================= */
.why-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.why-data__box {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.why-data__title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--color-primary);
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.5;
}

.why-data__title strong {
  font-weight: 700;
}

.why-data__title-large {
  font-size: 42px;
}

.why-data__sub {
  font-size: 14px;
  color: var(--color-text-light);
  text-align: center;
  margin: 0 0 24px;
}

.why-data__year {
  font-family: var(--font-en);
  font-weight: 600;
  margin: 0 2px;
}

.why-data__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* 男女カード */
.why-data__card {
  padding: 0;
}

/* 人数ボックス（角丸カラー） */
.why-data__count-box {
  border-radius: 12px;
  padding: 10px 16px 12px;
  margin-bottom: 24px;
}

.why-data__count-box--male {
  background: rgb(144, 169, 224);
}

.why-data__count-box--female {
  background: rgb(228, 152, 152);
}

.why-data__gender {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* カウント数字 */
.why-data__count {
  margin: 0;
}

.why-data__count-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.why-data__count-row:last-child {
  border-bottom: none;
}

.why-data__count dt {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.why-data__organ {
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.0;
}

.why-data__rank {
  font-family: var(--font-base);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 0;
  margin-top: 4px;
}

.why-data__count dd {
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  flex-shrink: 0;
  margin-left: 2px;
}

.why-data__num {
  font-family: var(--font-en);
  font-size: 23px;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  text-align: right;
}

.why-data__num-large {
  font-size: 1.6em;
}

/* 横棒グラフ */
.why-graph {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* グラフ全体を貫通する縦グリッドライン */
.why-graph::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 70px; /* 項目名の幅分オフセット */
  right: 0;
  pointer-events: none;
  z-index: 0;
  background:
    /* 左端の実線（太め・2px） */
    linear-gradient(90deg, rgba(0,0,0,0.3) 0, rgba(0,0,0,0.3) 2px, transparent 2px),
    /* 20%の点線 */
    repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(0,0,0,0.15) 3px, rgba(0,0,0,0.15) 6px) 20% 0 / 1px 100%,
    /* 40%の点線 */
    repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(0,0,0,0.15) 3px, rgba(0,0,0,0.15) 6px) 40% 0 / 1px 100%,
    /* 60%の点線 */
    repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(0,0,0,0.15) 3px, rgba(0,0,0,0.15) 6px) 60% 0 / 1px 100%,
    /* 80%の点線 */
    repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(0,0,0,0.15) 3px, rgba(0,0,0,0.15) 6px) 80% 0 / 1px 100%,
    /* 100%（右端）の点線 */
    repeating-linear-gradient(180deg, transparent 0, transparent 3px, rgba(0,0,0,0.15) 3px, rgba(0,0,0,0.15) 6px) 100% 0 / 1px 100%;
  background-repeat: no-repeat;
}

.why-graph li {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.why-graph li:last-child {
  margin-bottom: 0;
}

.why-graph__name {
  width: 70px;
  font-size: 17px;
  color: var(--color-text);
  flex-shrink: 0;
}

.why-graph li.is-bold .why-graph__name {
  font-size: 21px;
  font-weight: 700;
  color: var(--color-primary);
}

.why-graph__bar {
  flex: 1;
  height: 24px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.why-graph__bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #d1dffbe3 0%, #a5caf7 100%);
  border-radius: 3px;
  transition: width 1s ease-out;
  z-index: 1;
}

.why-graph--male .why-graph__bar::after {
  background: linear-gradient(90deg, #e5ecf8e3 0%, rgba(209, 229, 248, 0.884) 100%);
}

.why-graph--female .why-graph__bar::after {
  background: linear-gradient(90deg, #f9e3e9e0 0%, #f4ccd8da 100%);
}

.why-graph--male li.is-bold .why-graph__bar::after {
  background: linear-gradient(90deg, #87b7f2 0%, #69a5de 100%);
}

.why-graph--female li.is-bold .why-graph__bar::after {
  background: linear-gradient(90deg, #f39fae 0%, #f27a86 100%);
}

.why-graph.is-animated .why-graph__bar::after {
  width: var(--bar-width, 0%);
}

/* 出典リンク */
.why-data__source {
  font-size: 12px;
  color: var(--color-text-light);
  text-align: right;
  margin: 16px 0 0;
}

.why-data__source-inner {
  display: inline-grid;
  grid-template-columns: auto auto;
  text-align: left;
}

.why-data__source-label {
  grid-column: 1;
  grid-row: 1;
  white-space: nowrap;
}

.why-data__source-link:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.why-data__source-link:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.why-data__source a,
.why-data__source-link {
  color: var(--color-accent);
  text-decoration: underline;
}

.why-data__source a:hover,
.why-data__source-link:hover {
  text-decoration: none;
}

/* Why Card - Sub title */
.why-card__sub {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-accent);
  margin: 0 0 16px;
  line-height: 1.7;
}

/* Why Card - Reasons list (大腸カメラ) */
.why-card__reasons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-card__reason h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin: 0 0 8px;
  line-height: 1.6;
}

.why-card__reason p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
}

.why-card--gastro,
.why-card--colon {
  display: flex;
  flex-direction: column;
}

/* =========================================================
   Why Reason - 胃カメラ・大腸カメラ 理由エリア
   ========================================================= */
.why-reason {
  display: grid;
  grid-template-columns: 1fr 3fr; /* アイコンエリア1:テキストエリア4 */
  gap: 0;
  background: #ffffff00;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.why-reason:last-child {
  margin-bottom: 0;
}

/* 左カラム（アイコンエリア） */
.why-reason__left,
.why-reason__left2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 28px;
  gap: 16px;
  position: relative;
}

.why-reason__left::after,
.why-reason__left2::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background: var(--color-accent);
}
.why-reason__left2::after {
  height: 90%;
  background: var(--color-reason-blue);
}

/* アイコンを上、タイトルを下に */
.why-reason__illust {
  order: 1;
}

.why-reason__vertical-title {
  order: 2;
}

/* タイトル（横書き2行） */
.why-reason__vertical-title {
  writing-mode: horizontal-tb; /* 横書きに変更 */
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

.why-reason__vertical-title span {
  display: inline-block; /* 文字が連続するように */
}

.why-reason__vertical-em,
.why-reason__vertical-em2 {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 24px;
}

.why-reason__vertical-em2 {
  color: var(--color-reason-blue);
}

.why-reason__vertical-target {
  color: var(--color-accent);
}
.why-reason__vertical-target2 {
  color: var(--color-reason-blue);
}

/* アイコンイラスト */
.why-reason__illust {
  flex-shrink: 0;
}

.why-reason__illust img {
  display: block;
  object-fit: contain;
}

.why-reason__illust--gastro img {
  width: 160px; /* 倍のサイズに */
  height: 160px;
}

.why-reason__illust--colon img {
  width: 140px; /* 倍のサイズに */
  height: 160px;
}

/* 右カラム */
.why-reason__right {
  flex: 1;
  padding: 54px 48px 20px;
}

/* 胃カメラ - タイトルと本文 */
.why-reason__title {
  font-family: var(--font-serif);
  font-size: 31px;
  font-weight: 500;
  color: rgb(168, 160, 84);
  margin: 0 0 20px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.why-reason__title strong {
  font-size: 35px;
  font-weight: 700;
  color: rgb(52, 157, 57);
}

.why-reason__text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  margin: 0;
}

/* 大腸カメラ - 番号付きリスト */
.why-reason__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.why-reason__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.why-reason__badge,
.why-reason__badge2 {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-reason__badge {
  background: var(--color-accent);
}
.why-reason__badge2 {
  background: var(--color-reason-blue);
}

.why-reason__item-title,
.why-reason__item-title2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-accent);
  margin: 0 0 10px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.why-reason__item-title2 {
    color: var(--color-reason-blue);
}

.why-reason__item-title strong {
  font-weight: 700;
  color: var(--color-accent);
}

.why-reason__item-text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text);
  margin: 0;
}

/* 大腸カメラの左カラム（イラスト上・縦書き下） */
.why-reason--colon .why-reason__left {
  justify-content: flex-start;
  padding-top: 38px;
}

.why-reason__vertical-title--colon {
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  /* 1024px〜681px: レイアウトは変えず、文字・画像を少し縮小するだけ */
  .why-reason__vertical-title {
    font-size: 18px;
  }
  .why-reason__vertical-em, 
  .why-reason__vertical-em2 {
    font-size: 18px;
  }
  .why-reason__illust--gastro img,
  .why-reason__illust--colon img {
    width: 100px;
    height: auto;
  }
  .why-reason__right {
    padding: 30px 24px;
  }
  .why-reason__title {
    font-size: 22px;
  }
  .why-reason__item-title {
    font-size: 18px;
  }
  .why-reason__item-text {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  /* 680px以下: ここで初めて縦並び（スマホレイアウト）に切り替える */
  .why-reason {
    display: flex !important;
    flex-direction: column !important;
  }

  .why-reason__left,
  .why-reason__left2 {
    display: grid !important;
    grid-template-columns: 1fr 3fr !important; /* アイコン1:テキスト3 */
    width: 100% !important;
    padding: 20px 24px !important;
    border-right: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    gap: 16px !important;
    align-items: center !important;
  }
  
  .why-reason__left::after,
  .why-reason__left2::after {
    display: none !important;
  }

  .why-reason__illust {
    order: 1 !important; /* アイコンを左に */
    justify-self: center !important;
  }

  .why-reason__vertical-title,
  .why-reason__vertical-title--colon {
    order: 2 !important; /* テキストを右に */
    writing-mode: horizontal-tb !important;
    display: block !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    margin-top: 0 !important;
  }

  .why-reason__vertical-title span {
    display: inline-block !important; 
  }

  .why-reason__vertical-em,
  .why-reason__vertical-em2 {
    font-size: 14px !important;
  }

  .why-reason__vertical-target,
  .why-reason__vertical-target2 {
    display: inline !important;
  }

  .why-reason__right {
    padding: 28px 24px !important;
  }

  .why-reason__title {
    font-size: 18px !important;
  }

  .why-reason__item-title {
    font-size: 15px !important;
  }

  .why-reason__item {
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .why-reason__badge {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  #why .section__head {
    position: relative;
    padding-bottom: 40px; /* Reason画像のスペース */
  }

  .why__title-ruby {
    position: static;
  }

  .why__reason-img {
    top: auto;
    bottom: -10px; /* テキストとリード文の間になるように調整 */
  }

  .why-data__count-row {
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
  }
  
  .why-data__count dt {
    flex-direction: row;
    align-items: baseline;
    margin-bottom: 4px;
    justify-content: center;
  }
  
  .why-data__rank {
    margin-left: 2px;
    margin-top: 0;
  }
  
  .why-data__count dd {
    margin-left: 0;
    justify-content: center;
  }

  .why-data__num {
    min-width: auto;
  }

  .why-data {
    gap: 24px;
  }

  .why-data__box {
    padding: 24px;
  }
  
  .why__grid {
    gap: 24px;
  }
}

/* =========================================================
   Flow
   ========================================================= */
.manga.section {
  padding: 0;
}

.manga-banner {
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 0;
  background: #0B132B; /* Using the deep navy to match the new dark theme! */
  color: #fff;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: none;
  transition: opacity .3s;
}

.manga-banner:hover {
  opacity: .95;
}

.manga-banner__body {
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manga-banner__en {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .3em;
  color: #D4AF37;
  margin: 0 0 12px;
}

.manga-banner__title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.45;
  margin: 0 0 16px;
}

.manga-banner__lead {
  font-size: 14.5px;
  line-height: 1.9;
  margin: 0 0 24px;
  color: rgba(255,255,255,.85);
}

.manga-banner__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: .2em;
  border-radius: var(--radius);
}

.manga-banner__btn::after { content: "→"; }

.manga-banner__visual {
  background: url('../images/manga-col/comic-col.png') center / cover no-repeat;
  margin: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#flow .section__en {
  font-size: 40px;
  font-weight: 600;
}

#flow .section__title {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: .002em;
  color: var(--color-text);
}

.flow__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: flow;
  position: relative;
}

.flow__list::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: var(--color-line);
}

.flow-step {
  position: relative;
  padding: 30px 0 30px 80px;
}

.flow-step__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.flow-step__no {
  position: absolute;
  left: 0;
  top: 30px;
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  z-index: 1;
}

.flow-step h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--color-primary);
  margin: 0;
}

.flow-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 2;
}

/* =========================================================
   About Exam (Dark section)
   ========================================================= */
#about-exam .section__en {
  color: var(--color-accent);
}
     
.about-exam__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.about-exam__features li {
  text-align: center;
  padding: 30px 16px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  transition: transform .3s, background .3s, border-color .3s;
}

.about-exam__features li:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.06);
  border-color: rgba(184,151,102,.5);
}

.about-exam .about-exam__feature-en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--color-accent);
  margin: 0 0 14px;
  text-transform: uppercase;
}

.about-exam__feature-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .0.7em;
  color: #fff;
  margin: 0 0 12px;
}

.about-exam__feature-text {
  font-size: 13.5px;
  line-height: 1.85;
  margin: 0;
  color: rgba(255,255,255,.78);
}

.about-exam .about-exam__point {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  color: var(--color-accent);
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.about-exam .about-exam__point-no {
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: .3em;
  color: var(--color-accent);
  margin: 0 0 14px;
}

.about-exam__point-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #fff;
  margin: 0 0 22px;
  line-height: 1.5;
}

.about-exam__point p {
  font-size: 22px;
}
/* =========================================================
   Price
   ========================================================= */
#price {
  background: #fff;
}

#price .section__en {
  font-size: 48px;
  font-weight: 600;
}

#price .section__title {
  font-size: 50px;
  font-weight: 300;
  letter-spacing: .002em;
  color: var(--color-text);
}

.price__table-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.price-table {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 18px;
}

.price-table th,
.price-table td {
  padding: 20px 24px;
  border: 1px solid var(--color-line);
  font-family: var(--font-serif);
  letter-spacing: .04em;
}

.price-table thead th {
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: .15em;
}

.price-table thead th:first-child { background: var(--color-primary-dark); }

.price-table tbody th {
  background: var(--color-bg-soft);
  text-align: left;
  color: rgb(118, 111, 59);
  width: 40%;
}

.price-table tbody td {
  text-align: center;
  font-family: var(--font-en);
  font-size: 17px;
  color: var(--color-primary);
}

.price__note {
  max-width: 860px;
  margin: 24px auto 0;
  font-size: 12.5px;
  color: var(--color-text-light);
  text-align: left;
  line-height: 1.9;
}

/* =========================================================
   Reservation Box
   ========================================================= */
#reserve {
  background: #fff;
}

.reserve-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 80px 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 80px;
}

.reserve-box__en {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: .3em;
  color: var(--color-accent);
  margin: 0 0 12px;
}

.reserve-box__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: .15em;
  margin: 0 0 18px;
  color: #fff;
}

.reserve-box__lead {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  margin: 0 0 40px;
}

.reserve-box .reserve-btns--lg {
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================================
   Information
   ========================================================= */
#info {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.82);
  padding-top: 0;
}

#info .section__title {
  color: #fff;
}

#info .section__en {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-style: italic;
  font-size: 56px;
  font-weight: 200;
  transform: translateY(-50%);
  color: #9f8153;
}

#info>.container {
  padding-left: 10px;
  padding-right: 10px;
}

.info__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.info__name-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#info .info__name-row .brand__title-img {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  text-align: left;
}

#info .info__name-row .brand__sub {
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.info__list {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px 24px;
  margin: 0;
  font-size: 15px;
}

.info__list dt {
  color: rgba(255,255,255,.6);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: .1em;
}

.info__list dd {
  margin: 0;
  line-height: 1.85;
  color: rgba(255,255,255,.82);
}

.info__list dd small {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(159, 226, 238, 0.8);
}

.info__list a {
  font-family: var(--font-en);
  font-size: 18px;
  color: #fff;
  letter-spacing: .03em;
}

.info__hours {
  grid-column: 2;
}

.info__hours-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.info-hours-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  font-size: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.info-hours-table th,
.info-hours-table td {
  padding: 5px 3px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-serif);
  letter-spacing: .04em;
  line-height: 1.3;
}

.info-hours-table thead th {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  font-size: 11px;
}

.info-hours-table thead th.sat {
  color: #63b3ed;
}

.info-hours-table thead th.sun {
  color: #fc8181;
}

.info-hours-table tbody th {
  text-align: left;
  padding-left: 8px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.info-hours-table tbody th small {
  display: block;
  margin-top: 1px;
  font-size: 8px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.2;
}

.info-hours-table td .o,
.info-hours-table td .star {
  color: #d4af37c6;
  font-size: 11px;
}

.info-hours-table td.closed {
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.info-hours-notes {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.info-hours-notes li {
  position: relative;
  padding-left: 10px;
}

.info-hours-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 1px;
  background: rgba(212, 175, 55, 0.6);
}

.info__map {
  width: 100%;
  height: 500px;
  min-height: 500px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.info__map iframe {
  display: block;
  width: 100%;
  height: 500px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,.6);
  padding-top: 30px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  padding-bottom: 30px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .08em;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.5;
}

.site-footer__tel {
  margin: 0;
}

.site-footer__tel a {
  font-family: var(--font-en);
  font-size: 24px;
  color: #fff;
  letter-spacing: .03em;
}

.site-footer__nav {
  width: 100%;
}

.site-footer__nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  font-size: 13.5px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__nav ul li a {
  color: rgba(255,255,255,.6);
  transition: color 0.3s;
}

.site-footer__nav ul li a:hover {
  color: #fff;
}

.site-footer__copy {
  text-align: center;
  font-family: var(--font-en);
  font-size: 15px;
  margin: 0;
  padding: 0;
  color: rgba(247, 244, 221, 0.871);
  letter-spacing: .2em;
}

.site-footer__powered {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-en);
  font-size: 12px;
  margin: 0;
  padding: 0px 0 22px;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .1em;
}

.site-footer__powered:hover {
  color: rgba(255, 255, 255, .5);
  opacity: 1;
}
/* =========================================================
   Fixed CTA (Mobile)
   ========================================================= */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: var(--fixed-cta-browser-offset, 0px);
  left: 0;
  right: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--color-line);
  box-shadow: 0 -2px 12px rgba(0,0,0,.06);
  padding-bottom: var(--fixed-cta-safe-padding, env(safe-area-inset-bottom, 0px));
}

.fixed-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 4px;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}

.fixed-cta__btn:last-child { border-right: 0; }

.fixed-cta__btn--tel { background: var(--color-primary); color: #fff; }
.fixed-cta__btn--line { background: #06c755; color: #fff; }
.fixed-cta__btn--web { background: var(--color-accent); color: #fff; }
.fixed-cta__btn--mon { background: var(--color-primary-dark); color: #fff; }

/* =========================================================
   Pagetop
   ========================================================= */
.pagetop {
  position: fixed;
  right: 18px;
  bottom: calc(18px + var(--fixed-cta-safe-padding, env(safe-area-inset-bottom, 0px)) + var(--fixed-cta-browser-offset, 0px));
  z-index: 95;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.pagetop svg {
  width: 22px;
  height: 22px;
}

.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

/* =========================================================
   Reveal animation
   ========================================================= */
.is-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}

.is-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1320px) {

  /* Header */
  .site-header__top {
    padding: 0;
  }

  .site-header__inner {
    padding: 12px 18px;
  }

  .brand {
    gap: 8px;
  }

  .brand__logo {
    height: 36px;
  }

  .brand__title-img {
    font-size: 14px;
    letter-spacing: .02em;
  }

  .brand__sub {
    font-size: 6px;
  }

  .header-cta__line {
    display: block;
    font-size: 10px;
    letter-spacing: .1em;
  }

  .header-cta__line--light {
    font-size: 10px;
    letter-spacing: .1em;
  }
}

@media (max-width: 1200px) {

  .reason-wrapper {
    grid-template-columns: 80px 1fr;
    gap: 30px;
  }

  .reason-wrapper--reverse {
    grid-template-columns: 1fr 80px;
  }

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

  .site-nav__list {
    gap: 12px;
    font-size: 14.5px;
  }

  .header-cta__btn {
    padding: 0 16px;
  }

  .header-cta__num {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 60px;
    min-height: 640px;
    height: auto;
    max-height: none;
  }

  .hero__left {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-bottom: 0;
  }

  .hero__titles {
    margin: 80px 0 14px;
  }

  .hero__hex-slot {
    text-align: center;
    min-height: clamp(140px, 48vw, 280px);
  }

  .hero__title {
    font-size: 40px;
  }
  .hero__title2 {
    font-size: 72px;
  }

  .hero__circles {
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-circle {
    padding: 24px;
  }

  .hero-circle::before {
    inset: 8px;
  }

  .hero-circle__title {
    font-size: 32px;
  }

  .hero-circle__text {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-circle__label {
    font-size: 14px;
  }

  .reason-wrapper {
    grid-template-columns: 70px 1fr;
    gap: 24px;
  }

  .reason-wrapper--reverse {
    grid-template-columns: 1fr 70px;
  }

  .reason {
    grid-template-columns: 320px 1fr;
    gap: 30px;
    padding: 40px 28px;
  }

  .reason__no {
    font-size: 60px;
  }

  .why__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-exam__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-cta__tel {
    border-left: none;
    border-right: none;
  }

  .header-cta__btn.--line {
    border-right: none;
  }

  .header-cta__btn.--webr {
    border-right: none;
  }

  .hero__open-badge {
    top: 80px;
    right: 20px;
  }

  .hero__open-year {
    font-size: 14px;
  }

  .hero__open-date {
    font-size: 44px;
  }

  .hero__open-text {
    font-size: 24px;
  }

  :root {
    --header-h: 64px;
    --nav-h: 0px;
  }

  .section[id] {
    scroll-margin-top: 0;
  }

  .sp-only {
    display: inline;
  }

  .section {
    padding: 80px 0;
  }

  .section__title {
    font-size: 26px;
    line-height: 1.55;
  }

  .section__lead {
    font-size: 14.5px;
    line-height: 1.95;
  }

  /* Header */
  .site-header {
    height: var(--header-h);
  }

  .site-header__top {
    padding: 0;
  }

  .site-header__inner {
    padding: 12px 18px;
  }

  .brand {
    gap: 10px;
  }

  .brand__logo {
    height: 40px;
  }

  .brand__title-img {
    font-size: 14px;
    letter-spacing: .04em;
  }

  .brand__sub {
    font-size: 7px;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: none;
  }

  .site-header.is-stuck .hamburger {
    position: fixed !important;
    top: 10px !important;
  }

  /* 常駐固定ハンバーガー（スマホ専用） */
  .hamburger-fixed {
    display: block;
    position: fixed;
    top: 10px;
    right: 18px;
    z-index: 200;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .hamburger-fixed span {
    position: absolute;
    left: 13px;
    width: 24px;
    height: 1.5px;
    background: var(--color-primary);
    transition: transform .3s, opacity .3s;
  }

  .hamburger-fixed span:nth-child(1) { top: 18px; }
  .hamburger-fixed span:nth-child(2) { top: 24px; }
  .hamburger-fixed span:nth-child(3) { top: 30px; }

  .hamburger-fixed.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger-fixed.is-active span:nth-child(2) { opacity: 0; }
  .hamburger-fixed.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(14px);
    padding: 80px 24px 40px;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 105;
    overflow-y: auto;
    border-bottom: 0;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav__close {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    z-index: 2;
  }

  .site-nav.is-open .site-nav__close {
    display: block;
  }

  .site-nav__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .site-nav__list {
    flex-direction: column;
    gap: 0;
    height: auto;
    font-size: 16px;
  }

  .site-nav__list li {
    border-bottom: 1px solid var(--color-line);
  }

  .site-nav__list a {
    display: block;
    padding: 20px 8px;
    font-size: 26px;
  }

  .site-nav__line-item {
    display: list-item;
    border-bottom: none;
    margin-top: 12px;
  }

  .site-nav__line {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    width: 180px;
    margin: 0 auto;
  }

  /* モバイルではナビはハンバーガー連動のオーバーレイなのでstickyは無効化 */
  .site-nav.is-stuck {
    box-shadow: none;
  }

  /* Hero */
  .hero {
    min-height: 640px;
    height: auto;
    padding: 60px 0;
    overflow-x: clip;
    max-width: 100%;
  }

  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  .hero__hex-layer,
  .hero__content {
    overflow-x: clip;
    max-width: 100%;
  }

  .hero__hex-layer {
    min-height: 640px;
    height: auto;
    max-height: none;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  .hero__hex-slot {
    overflow: visible;
    min-height: clamp(140px, 48vw, 280px);
  }

  .hero__hex-layer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__hex {
    --hex-size: clamp(100px, 45vw, 260px);
    top: 50%;
    left: calc(var(--hex-size) * 0.5);
    transform: translate(-50%, -50%);
    width: var(--hex-size);
    height: var(--hex-size);
  }

  .hero__sub-en {
    font-size: 11px;
    letter-spacing: .25em;
  }

  /* Symptoms */
  .symptoms__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .symptoms__list li {
    padding: 16px 18px;
    font-size: 14.5px;
  }

  .symptoms__cta-text {
    font-size: 16px;
    margin: 40px 0 20px;
  }

  /* Message */
  .message__body {
    padding: 80px 0;
  }

  .message__visual {
    position: absolute;
    inset: 0;
    height: auto;
    z-index: 0;
  }

  .message__body {
    position: relative;
    margin-top: 0;
    z-index: 1;
  }

  .career {
    position: relative;
    z-index: 2;
  }

  .message__lead {
    font-size: 18px;
    line-height: 1.85;
  }

  .message__text p {
    font-size: 14.5px;
    line-height: 1.95;
  }

  .message__name strong {
    font-size: 20px;
  }

  .career {
    padding: 40px 0;
  }

  .message__career {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .career-list {
    grid-template-columns: 90px 1fr;
    gap: 8px 14px;
    font-size: 13.5px;
  }

  .qual-list li {
    font-size: 13.5px;
  }

  /* Data */
  .data__hero-value .counter {
    font-size: 56px;
  }

  .data__hero-value .unit {
    font-size: 18px;
  }

  .data__hero-label {
    font-size: 14px;
  }

  .data__hero {
    padding: 32px 20px;
    text-align: center;
  }

  .data__hero-inner {
    display: block;
  }

  .data__hero-divider {
    display: none;
  }

  .data__hero-value {
    justify-content: center;
  }

  .data__grid-wrapper {
    padding: 32px 20px;
  }

  .data__grid {
    gap: 20px;
  }

  .data-card {
    padding: 20px 10px;
  }

  .data-card__value .counter {
    font-size: 42px;
  }

  /* Hours */
  #hours {
    padding: 50px 0;
  }
  .hours__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hours-table {
    font-size: 12px;
  }

  .hours-table th,
  .hours-table td {
    padding: 12px 2px;
  }

  .hours__reserve {
    padding: 20px 24px;
  }

  .reserve-tel__num {
    font-size: 30px !important;
  }

  .reserve-btns {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reserve-btn {
    padding: 14px 16px;
    justify-content: flex-start;
  }

  .reserve-btn__icon {
    width: 36px;
    margin-right: 12px;
  }

  .reserve-btn__main {
    font-size: 16px;
  }

  .reserve-btn__sub {
    font-size: 11px;
  }

  .reserve-btns--lg .reserve-btn {
    padding: 18px 16px;
    min-width: 0;
  }

  .reserve-btns--lg .reserve-btn__icon {
    width: 40px;
  }

  .reserve-btn__text {
    text-align: left;
  }

  /* Why */
  .why__stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  /* Flow */
  .manga-banner {
    grid-template-columns: 1fr;
  }

  .manga-banner__body {
    padding: 32px 24px;
  }

  .manga-banner__title {
    font-size: 22px;
  }

  .manga-banner__visual {
    aspect-ratio: 16 / 9;
    margin: 0 20px 24px;
  }

  .flow__list::before {
    left: 22px;
  }

  .flow-step {
    padding: 22px 0 22px 60px;
  }

  .flow-step__no {
    width: 44px;
    height: 44px;
    font-size: 17px;
    top: 22px;
  }

  .flow-step h3 {
    font-size: 17px;
  }

  .flow-step p {
    font-size: 14px;
    line-height: 1.9;
  }

  /* About Exam */
  .about-exam__features {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .about-exam__features li {
    padding: 24px 14px;
  }

  .about-exam__feature-title {
    font-size: 16px;
  }

  .about-exam__feature-text {
    font-size: 12.5px;
  }

  .about-exam__point {
    padding: 32px 16px;
  }

  .about-exam__point-title {
    font-size: 20px;
  }

  /* Price */
  .price-table {
    font-size: 12.5px;
  }

  .price-table th,
  .price-table td {
    padding: 12px 8px;
  }

  .price-table tbody td {
    font-size: 14px;
  }

  /* Reserve Box */
  .reserve-box {
    padding: 50px 22px;
  }

  .reserve-box__title {
    font-size: 24px;
  }

  .reserve-box .reserve-tel__num {
    font-size: 32px;
  }

  /* Info */
  .info__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .info__name-row .brand__logo {
    height: 44px;
  }

  #info .info__name-row .brand__title-img {
    font-size: 20px;
  }

  .info__list {
    grid-template-columns: 80px 1fr;
    gap: 12px 18px;
    font-size: 14px;
  }

  .info__hours-table-wrap {
    min-width: 350px;
    width: fit-content;
  }

  .info__list a {
    font-size: 18px;
  }

  .info-hours-table {
    font-size: 9px;
  }

  .info-hours-table tbody th {
    font-size: 8px;
  }

  .info-hours-notes {
    font-size: 8px;
  }

  /* Footer */
  .site-footer {
    padding-top: 50px;
    padding-bottom: 64px;
  }

  .site-footer__inner {
    gap: 32px;
    padding-bottom: 36px;
  }

  .site-footer__nav ul {
    gap: 10px 20px;
    font-size: 12px;
  }

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

  .pagetop {
    bottom: calc(68px + var(--fixed-cta-safe-padding, env(safe-area-inset-bottom, 0px)) + var(--fixed-cta-browser-offset, 0px));
  }

  body {
    padding-bottom: calc(50px + var(--fixed-cta-safe-padding, env(safe-area-inset-bottom, 0px)) + var(--fixed-cta-browser-offset, 0px));
  }
}

@media (max-width: 680px) {
  /* Message - SP: 画像をエリア最大表示（オーバーレイはベースと共通） */
  .message__visual-inner {
    background:
      linear-gradient(125deg, var(--message-overlay-start) 0%, var(--message-overlay-end) 100%),
      url('../images/doctor3.jpg') center / cover no-repeat;
    background-attachment: scroll;
  }

  .hero__circles {
    width: 100%;
    max-width: 100%;
    margin: 24px auto 0;
    gap: 10px;
    padding: 0;
    box-sizing: border-box;
    align-items: center;
  }

  .hero-circle {
    padding: 10px 6px;
  }

  .hero-circle::before {
    inset: 4px;
  }

  .hero-circle__title {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .hero-circle__text {
    font-size: 10px;
    line-height: 1.4;
  }

  .hero-circle__label {
    font-size: 7px;
    margin-bottom: 4px;
  }

  .hero__open-badge {
    --badge-width: 88px;
    top: 80px;
    right: 20px;
  }

  .hero__open-date {
    font-size: 22px;
    white-space: nowrap;
  }

  .hero__open-web {
    font-size: 9px;
    width: 3.5em;
    height: 3.5em;
  }

  .hero__open-reserve {
    font-size: 16px;
  }

  .hero__open-text-row {
    gap: 4px;
  }

  .hero__titles {
    margin: 40px 0 7px;
  }

  .container {
    padding: 0 18px;
  }

  .hero__hex-slot {
    min-height: clamp(90px, 31.5vw, 165px);
  }

  .hero__hex-layer .hero__hex {
    --hex-size: clamp(75px, 33.75vw, 195px);
    top: 74%;
  }

  .hero__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.65;
  }
  .hero__title2 {
    font-size: 56px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.25;
  }

  .section__title {
    font-size: 22px;
  }

  .reserve-box__title {
    font-size: 20px;
  }

  .fixed-cta__btn {
    font-size: 11px;
  }

  .site-nav__list a {
    padding: 15px 4px;
    font-size: 16px;
  }

  .data__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .data-card__chart {
    width: 192px;
    height: 192px;
  }

  /* Reasons - 1列表示 */
  .reason-wrapper,
  .reason-wrapper--reverse {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .reason-wrapper--reverse .reason__no {
    order: -1;
    text-align: left;
  }

  .reason {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 22px;
  }

  .reason__no {
    font-size: 48px;
  }

  .reason__no span::after {
    width: 100%;
    left: 0;
    right: auto;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 66%, transparent 100%);
  }

  .reason__title {
    font-size: 24px;
  }

  .reason__body p {
    font-size: 16px;
  }

  .why-data {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-data__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .why-data__title {
    font-size: 18px;
  }

  .why-data__title-large {
    font-size: 24px;
  }

  .why-data__card {
    padding: 0;
  }

  .why-data__count-box {
    padding: 10px 12px 12px;
    margin-bottom: 16px;
  }
  
  .why-data__num {
    font-size: 22px;
    min-width: auto;
  }

  .why-graph__name {
    width: 45px;
    font-size: 11px;
  }

  .why-graph::before {
    left: 45px; /* 項目名の幅に合わせて調整 */
  }

  .why-graph__bar {
    height: 18px;
  }

  .why__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #about-exam .section__en {
    font-size: 26px;
    letter-spacing: 0.08em;
  }

  #info .section__en {
    font-size: 38px;
    letter-spacing: 0.08em;
  }

  .info__grid {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .info__body {
    min-width: 0;
    max-width: 100%;
  }

  .info__hours-table-wrap {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .info__list {
    grid-template-columns: 3.2em 1fr;
    gap: 12px 10px;
  }

  .info__list dt {
    font-size: 12px;
    letter-spacing: 0.04em;
    line-height: 1.4;
    white-space: normal;
    word-break: keep-all;
    align-self: start;
  }

  .info__map {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    aspect-ratio: auto;
    flex-shrink: 1;
  }

  .info__map iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    min-height: 240px;
  }
}

@media (min-width: 681px) and (max-width: 1024px) {
  .hero__hex-layer .hero__hex {
    left: calc(var(--hex-size) * 0.82);
  }
}