
/* ─── CSS Variables ─────────────────────────── */
:root {
  --primary:    #DE5B47;
  --primary-d:  #C44D3B;
  --accent:     #C9A84C;
  --accent-l:   #E8D080;
  --dark:       #1C2B3A;
  --dark2:      #243447;
  --text:       #2D2D2D;
  --text-light: #6B6B6B;
  --bg:         #FFFFFF;
  --bg-sub:     #F8F6F2;
  --bg-dark:    #111B26;
  --border:     #E8E0D4;
  --font-jp:    'Shippori Mincho', serif;
  --font-en:    'Cinzel', serif;
  --font-num:   'Montserrat', sans-serif;
  --font-sans:  'Noto Sans JP', sans-serif;
  --max-w:      1440px;
  --content-w:  1200px;
  --text-w:     800px;
  --radius:     6px;
  --radius-lg:  12px;
  --trans:      0.3s ease;
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text); background: var(--bg); line-height: 1.8; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Utilities ──────────────────────────────── */
.container { max-width: var(--content-w); margin: 0 auto; padding: 0 40px; }
.section-wrap { padding: 100px 0; }
.section-wrap--dark { background: var(--dark); color: #fff; }
.section-wrap--sub { background: var(--bg-sub); }
.section-wrap--darker { background: var(--bg-dark); color: #fff; }

.sec-label {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-title {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 20px;
}
.sec-title--white { color: #fff; }
.gold-bar {
  width: 40px; height: 3px;
  background: var(--accent);
  margin-bottom: 40px;
}
.gold-bar--center { margin: 0 auto 40px; }

/* Fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ─── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 40px;
  border: none;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}
.btn--primary:hover { background: #fff; color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(222,91,71,0.25); }
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--accent {
  background: var(--accent);
  color: var(--dark);
}
.btn--accent:hover { background: #b8923e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

/* ─── Header ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all var(--trans);
}
.header-top {
  background: var(--dark);
  padding: 6px 0;
}
.header-top__inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.header-tel {
  font-family: var(--font-sans);
  font-size: 24px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-tel span { color: #fff; font-weight: 700; }
.header-trial-btn {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  border: 2px solid var(--primary);
  transition: all var(--trans);
}
.header-trial-btn:hover { background: #fff; color: var(--primary); }

.header-nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  opacity: 1;
}
.header-nav.hidden {
  max-height: 0;
  opacity: 0;
}
.header-nav__inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.site-logo__jp {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: 0.04em;
}
.site-logo__en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-menu a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 14px;
  white-space: nowrap;
  border-right: 1px solid #999;
  position: relative;
  transition: color var(--trans);
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-menu a:last-child { border-right: none; }
.nav-menu a:hover { color: var(--primary); }
.nav-menu a:hover::after { transform: scaleX(1); }

/* hamburger */
.nav-menu__cta-item { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--trans);
}

/* ─── Hero / FV ───────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* ── スプリット写真レイヤー ── */
.hero__split {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* 左パネル：斜めクリップ */
.hero__panel {
  position: absolute;
  top: 0; bottom: 0;
  overflow: hidden;
}
.hero__panel--left {
  left: 0;
  width: 65%;
  clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0 100%);
}
.hero__panel--right {
  right: 0;
  width: 45%;
  clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
}
/* 各パネル内のスライド */
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: none;
}
.hero__slide.active   { opacity: 1; }
/* 左：下からスライドイン */
.hero__panel--left .hero__slide.enter {
  opacity: 1;
  animation: slideFromBottom 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero__panel--left .hero__slide.exit {
  opacity: 1;
  animation: slideToTop 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
}
/* 右：上からスライドイン */
.hero__panel--right .hero__slide.enter {
  opacity: 1;
  animation: slideFromTop 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
}
.hero__panel--right .hero__slide.exit {
  opacity: 1;
  animation: slideToBottom 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes spSlideFromLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@keyframes spSlideToRight {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}
@keyframes spSlideFromRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes spSlideToLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@keyframes slideFromBottom {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
@keyframes slideToTop {
  from { transform: translateY(0); }
  to   { transform: translateY(-100%); }
}
@keyframes slideFromTop {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}
@keyframes slideToBottom {
  from { transform: translateY(0); }
  to   { transform: translateY(100%); }
}
/* 暗いオーバーレイ */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,18,28,0.50) 0%, rgba(10,18,28,0.15) 50%, rgba(10,18,28,0.35) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 120px 40px 0 100px;
}
.hero__label {
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.25em;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero__catch {
  font-family: var(--font-jp);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.hero__catch em {
  color: var(--accent);
  font-style: normal;
}
.hero__sub {
  font-family: var(--font-jp);
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 680px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all var(--trans);
  cursor: pointer;
}
.hero__dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--primary);
  z-index: 3;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── s02 選ばれる理由 ─────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px 28px;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.feature-card:hover::before { transform: scaleX(1); }
/* スタッフ：カードホバー無効、ボタンのみ */
.staff-card:hover { transform: none; box-shadow: none; }
.feature-icon {
  font-size: 36px;
  margin-bottom: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.feature-icon img { width: 130px; height: 130px; object-fit: contain; }
.feature-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
  text-align: center;
}
.feature-body {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}
/* カードクリックモーダル */
.feature-card { cursor: pointer; text-align: center; }
.feature-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 500;
  align-items: center; justify-content: center;
}
.feature-modal.open { display: flex; }
.feature-modal__inner {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px 48px; max-width: 480px; width: 90%;
  position: relative;
}
.feature-modal__icon { font-size: 40px; margin-bottom: 12px; text-align: center; display: flex; justify-content: center; }
.feature-modal__title {
  font-family: var(--font-sans); font-size: 18px;
  font-weight: 700; color: var(--dark);
  margin-bottom: 16px; text-align: center;
}
.feature-modal__body { font-size: 15px; color: var(--text-light); line-height: 1.9; }
.feature-modal__close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 24px;
  color: var(--text-light); cursor: pointer;
}

/* ─── s03 スタジオについて ─────────────────────── */
.studio-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "photo heading"
    "photo text";
  gap: 0 80px;
  align-items: start;
}
.studio-photo   { grid-area: photo; }
.studio-heading { grid-area: heading; }
.studio-text    { grid-area: text; }
.studio-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(135deg, #e8e4da 0%, #d5cfc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}
.studio-photo__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(28,43,58,0.88);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.studio-photo__badge span {
  font-family: var(--font-num);
  font-size: 22px;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}
.greeting-lead {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 24px;
}
.greeting-body {
  font-size: 15px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 16px;
}
.greeting-sig {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
}
.genre-section {
  margin-top: 80px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
}
.genre-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.genre-sub {
  font-size: 13px;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}
.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.genre-tag {
  font-family: var(--font-jp);
  font-size: 13px;
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  color: rgba(255,255,255,0.8);
  transition: all var(--trans);
}
.genre-tag:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }

/* ─── s04 スケジュール＆料金 ─────────────────── */
.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.schedule-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.schedule-row--trial {
  border-color: var(--accent);
  background: rgba(201,168,76,0.04);
}
.schedule-label {
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
}
.schedule-row--trial .schedule-label {
  background: var(--accent);
  color: #fff;
}
.schedule-label__title {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.schedule-label__sub {
  font-size: 14px;
  margin-top: 4px;
  color: #fff;
  opacity: 1;
}
.schedule-content {
  display: flex;
  flex-direction: column;
  background: #fff;
}
.schedule-content-row {
  padding: 18px 28px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.schedule-content-row:last-child { border-bottom: none; }
.schedule-content-row--note {
  font-size: 12.5px;
  color: var(--text-light);
  background: var(--bg-sub);
}
.schedule-time-table {
  display: table;
  border-collapse: collapse;
}
.schedule-time-row { display: table-row; }
.schedule-time-day {
  display: table-cell;
  padding-right: 20px;
  font-weight: 600;
  white-space: nowrap;
  padding-bottom: 2px;
}
.schedule-time-val { display: table-cell; }
.schedule-note-small {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 6px;
}
.price-strikethrough {
  text-decoration: line-through;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.price-free {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}
.price-main {
  font-family: var(--font-num);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.ticket-grid {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.ticket-item {
  background: var(--bg-sub);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 13px;
}
.ticket-item .t-label { font-weight: 600; color: var(--dark); font-size: 15px; }
.ticket-item .t-price { font-family: var(--font-sans); font-weight: 700; color: var(--accent); font-size: 18px; }
.ticket-item .t-exp { font-size: 14px; color: var(--text-light); }

/* ─── s05 体験の流れ ───────────────────── */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  top: 96px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent));
  z-index: 0;
}
.flow-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.flow-step__num {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
}
.flow-step__icon-wrap {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  position: relative;
  z-index: 1;
  transition: all var(--trans);
}
.flow-step:hover .flow-step__icon-wrap {
  background: var(--accent);
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}
.flow-step__title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.flow-step__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ─── s06 スタッフ ────────────────────────────── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.staff-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--trans);
}
.staff-card:hover { transform: none; box-shadow: none; }
.staff-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #e0ddd7 0%, #ccc9c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  position: relative;
  overflow: hidden;
}
.staff-photo__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 12px;
  background: linear-gradient(to top, rgba(28,43,58,0.85), transparent);
}
.staff-role {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: block;
}
.staff-name-photo {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.staff-body {
  padding: 20px;
}
.staff-name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.staff-en { font-family: var(--font-en); font-size: 14px; color: var(--primary); margin-bottom: 10px; letter-spacing: 0.1em; }
.staff-cred {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.staff-msg {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
  font-style: italic;
}
.btn-profile {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 6px 16px;
  border-radius: 20px;
  background: transparent;
  transition: all var(--trans);
  width: 100%;
  text-align: center;
}
.btn-profile:hover { background: var(--dark); color: #fff; }

/* ─── s07 ギャラリー ──────────────────────────── */
.gallery-section { background: var(--bg-dark); }
.gallery-label {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gallery-desc {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.gallery-desc p + p { margin-top: 12px; }
.gallery-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}
.gallery-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 48px;
  scrollbar-width: none;
}
.gallery-slider::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex-shrink: 0;
  width: 240px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2a3f54 0%, #1e3045 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: transform var(--trans);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.gallery-thumb:hover { transform: scale(1.03); }
.gallery-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,168,76,0.15);
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery-thumb:hover::after { opacity: 1; }

/* ─── s08 アクセス ────────────────────────────── */
.access-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.access-info-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.access-rows { display: flex; flex-direction: column; gap: 0; }
.access-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.access-dt {
  flex-shrink: 0;
  width: 90px;
  font-weight: 600;
  color: var(--dark);
}
.access-dd { color: var(--text-light); line-height: 1.7; }
.access-dd strong { color: var(--dark); }
.access-map {
  background: linear-gradient(135deg, #e8e4da 0%, #d5cfc4 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  flex-direction: column;
  gap: 12px;
  color: var(--text-light);
  font-size: 14px;
  border: 1px solid var(--border);
}
.access-map span { font-size: 48px; display: block; }

/* ─── s09 FAQ ────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  transition: all var(--trans);
}
.faq-q:hover .faq-q-text { color: var(--primary); }
.q-badge, .a-badge {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  margin-top: 1px;
}
.q-badge { background: var(--accent); color: var(--dark); }
.a-badge { background: var(--dark); color: var(--accent); }
.faq-q-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  flex: 1;
  line-height: 1.6;
  transition: color var(--trans);
}
.faq-chev {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--text-light);
  transition: transform var(--trans);
  margin-top: 5px;
}
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 0 22px 44px;
}
.faq-a.show { display: flex; gap: 16px; align-items: flex-start; }
.faq-a-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  flex: 1;
}
.faq-item.open .faq-a { display: flex; gap: 16px; align-items: flex-start; }

/* ─── s10 CTA ────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1C2B3A 0%, #243447 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,0.06);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(222,91,71,0.06);
}
.cta-catch {
  font-family: var(--font-jp);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 20px;
}
.cta-catch-sp-br { display: none; }
.hero-sub-sp-br { display: none; }
.catch-sp-br { display: none; }
.sp-br { display: none; }
.footer-copy-break { display: inline; }
.cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-price {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 40px;
  padding: 10px 28px;
  margin-bottom: 40px;
}
.cta-price__label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.cta-price__val {
  font-family: var(--font-jp);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-or { font-size: 13px; color: rgba(255,255,255,0.4); }
.cta-tel {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.cta-tel a { color: inherit; }
.cta-tel-note { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ─── s11 Footer ──────────────────────────────── */
.site-footer {
  background: var(--dark);
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.footer-logo-link { text-decoration: none; display: inline-block; }
.footer-logo {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.footer-logo-en {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 16px;
}
.footer-info { font-size: 13px; line-height: 1.9; }
.footer-info a { color: rgba(255,255,255,0.7); }
.footer-info a:hover { color: #fff; }
.footer-sns { margin-top: 16px; }
.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 20px;
  transition: all var(--trans);
}
.footer-fb:hover { border-color: #fff; color: #fff; }
.footer-nav { display: flex; flex-direction: column; gap: 6px; }
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: all var(--trans);
}
.footer-nav a {
  position: relative;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12px; right: 12px;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.footer-nav a:hover { color: var(--primary); }
.footer-nav a:hover::after { transform: scaleX(1); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.08em;
}

/* ─── Font Size Scale-up & Noto Sans JP ────────── */
body { font-size: 17px; }

/* Noto Sans JP 適用 */
.btn, .header-trial-btn { font-family: var(--font-sans); }
.btn-profile             { font-family: var(--font-sans); }
.genre-tag               { font-family: var(--font-sans); }
.price-main, .t-price    { font-family: var(--font-sans); font-size: 22px; color: var(--accent); font-weight: 700; }
.price-strikethrough, .price-free { font-family: var(--font-sans); }
.cta-actions .btn        { font-family: var(--font-sans); font-size: 18px; }

/* 小さな英文を全体的に大きく */
.sec-label        { font-size: 20px; font-weight: 700; letter-spacing: 0.18em; color: var(--primary); }
.hero__label      { font-size: 15px; color: var(--primary); }
.hero__scroll     { font-size: 13px; color: var(--primary); }
.footer-logo-en   { font-size: 15px; color: var(--primary); }
.staff-en         { font-size: 14px; color: var(--primary); }
.staff-role       { font-size: 10px; }
.gallery-label    { font-size: 28px; font-weight: 700; color: #fff !important; font-family: var(--font-sans); }

/* 体験の流れ */
.flow-step__num   { font-size: 18px; font-weight: 700; letter-spacing: 0.1em; color: var(--primary); }
.flow-step__title { font-size: 20px; font-weight: 700; }
.flow-step__desc  { font-size: 15px; text-align: left; }

/* スタッフ：写真正方形・高さ揃え */
.staff-photo      { aspect-ratio: 1 / 1; }
.staff-card       { display: flex; flex-direction: column; }
.staff-body       { display: flex; flex-direction: column; flex: 1; }
.btn-profile      { margin-top: auto; font-size: 14px; white-space: nowrap; }

/* フッターナビ横並び */
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 0;
  align-items: flex-start;
  align-content: flex-start;
}
.footer-nav a {
  font-size: 14px;
  padding: 4px 14px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.footer-nav a:last-child { border-right: none; }

/* ギャラリー新スタイル */
.gallery-wrap      { position: relative; margin-bottom: 0; }
.gallery-track-outer { overflow: hidden; border-radius: var(--radius); }
.gallery-track     { display: flex; gap: 16px; transition: none; will-change: transform; }
.gallery-slide     { flex-shrink: 0; width: calc(25% - 12px); position: relative; cursor: pointer; }
.gallery-slide-inner {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2a3f54 0%, #1e3045 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; overflow: hidden; position: relative;
}
.gallery-slide-inner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-zoom-btn {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.55); color: #fff;
  border: none; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.gallery-slide:hover .gallery-zoom-btn { opacity: 1; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 22px; cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; backdrop-filter: blur(4px);
}
.gallery-arrow:hover { background: rgba(201,168,76,0.5); border-color: var(--accent); }
.gallery-arrow--prev { left: 8px; }
.gallery-arrow--next { right: 8px; }

/* ライトボックス */
.gallery-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92); z-index: 1000;
  align-items: center; justify-content: center;
}
.gallery-modal.open { display: flex; }
.modal-inner { position: relative; max-width: 900px; width: 90%; }
.modal-img {
  background: #0d1520;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  max-height: 80vh; overflow: hidden;
}
.modal-img img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain; display: block; border-radius: var(--radius);
}
.modal-close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none; color: #fff;
  font-size: 32px; cursor: pointer; line-height: 1;
}
.modal-prev, .modal-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); color: #fff;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  width: 48px; height: 48px; font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-prev:hover, .modal-next:hover { background: rgba(201,168,76,0.5); }
.modal-prev { left: -64px; }
.modal-next { right: -64px; }

/* CTAエリア価格テキスト */
.cta-price-text {
  font-family: var(--font-sans);
  font-size: 18px; font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.cta-price-text:last-of-type { margin-bottom: 36px; }
.cta-semi-br { display: inline; }
.cta-semi-br::after { content: ''; }
.feature-body    { font-size: 15px; }
.greeting-body   { font-size: 17px; }
.greeting-sig    { font-size: 15px; }
.genre-sub       { font-size: 15px; }
.genre-tag       { font-size: 15px; }
.staff-cred      { font-size: 14px; }
.staff-msg       { font-size: 15px; }
.btn-profile     { font-size: 14px; }
.schedule-content-row { font-size: 16px; }
.schedule-note-small  { font-size: 14px; }
.ticket-item     { font-size: 14px; }
.flow-step__desc { font-size: 15px; text-align: left; }
.access-row      { font-size: 16px; }
.faq-q-text      { font-size: 18px; }
.faq-a-text      { font-size: 16px; }
.cta-sub         { font-size: 17px; }
.cta-or, .cta-tel-note { font-size: 15px; }
.footer-info     { font-size: 15px; }
.footer-nav a    { font-size: 13px; border-right: none !important; padding: 4px 12px; }
/* フッターメニュー仕切り線削除 */
.footer-nav a:last-child { border-right: none; }
/* CTAキャッチコピー */
.cta-catch { font-family: var(--font-sans); }
/* アクセスマップ高さ自動 */
.access-map { aspect-ratio: auto; min-height: 360px; }
/* スケジュールラベルNoto Sans JP */
.schedule-label__title { font-family: var(--font-sans); }
/* price-free サイズ合わせ */
.price-free { font-size: 16px; }
/* チケット価格ゴールド */
.t-price { font-family: var(--font-sans); color: var(--accent); font-size: 18px; font-weight: 700; }
/* ¥1,000体験レッスンもゴールド */
.schedule-row--trial .price-main { color: var(--accent); }
.footer-copy     { font-size: 13px; }
.header-tel      { font-size: 14px; }
.gallery-label   { font-size: 22px; }
.sec-label       { font-size: 13px; }
.nav-menu a      { font-size: 14px; }

/* ─── Decorative SVG Wave Backgrounds ───────────
   各セクションに流線形のSVGウェーブを配置。
   JSで注入。左右・上下を分断するように設計。
────────────────────────────────────────────── */
#reasons, #studio, #schedule, #flow,
#staff, #faq, #access { position: relative; overflow: hidden; }

.bg-wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-wave svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
}
/* コンテンツを波の前面に */
#reasons > .container, #studio > .container,
#schedule > .container, #flow > .container,
#staff > .container, #faq > .container,
#access > .container {
  position: relative;
  z-index: 1;
}

/* ─── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .flow-steps::before { display: none; }
}

@media (max-width: 767px) {
  /* ── Hero SP: 上下2段・斜めスリット・左右スライドイン ── */
  .hero { height: 100svh; min-height: 600px; }
  .hero__panel--left {
    top: 0; bottom: 45%;
    left: 0; right: 0;
    width: 100%;
    z-index: 1;
    clip-path: none;
  }
  .hero__panel--right {
    top: 55%; bottom: 0;
    left: 0; right: 0;
    width: 100%;
    z-index: 0;
    clip-path: none;
  }
  /* SP用アニメーション：左右スライドイン */
  .hero__panel--left .hero__slide.enter {
    animation: spSlideFromLeft 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
  }
  .hero__panel--left .hero__slide.exit {
    animation: spSlideToRight 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
  }
  .hero__panel--right .hero__slide.enter {
    animation: spSlideFromRight 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
  }
  .hero__panel--right .hero__slide.exit {
    animation: spSlideToLeft 1.1s cubic-bezier(0.4,0,0.2,1) forwards;
  }
  .hero__scroll { display: none; }
  /* ライトボックス矢印をSPでは内側に */
  .modal-prev { left: 8px; }
  .modal-next { right: 8px; }
  .hero__content { position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 64px 24px 0; display: flex; flex-direction: column; justify-content: center; }
  .hero__catch { font-size: clamp(22px, 6vw, 32px); }
  .hero__sub { font-size: 14px; }
  .hero__actions { position: absolute; bottom: 68px; left: 24px; right: 24px; flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; max-width: 320px; }
  .hero-sub-sp-br { display: block; }
  .catch-sp-br { display: block; }
  .sp-br { display: block; }
  /* モーダルタイトルを1行に収める */
  .feature-modal__title { font-size: 14px; white-space: nowrap; }

  .container { padding: 0 20px; }
  .section-wrap { padding: 72px 0; }
  .header-top { display: none; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: #fff;
    padding: 16px 20px 32px;
    border-top: 2px solid var(--primary);
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-menu.open li {
    list-style: none;
  }
  .nav-menu.open li a {
    display: inline-block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-light);
    border-right: none;
    white-space: nowrap;
    position: relative;
  }
  .nav-menu.open li a::before { display: none; }
  .nav-menu.open li a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0; right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .nav-menu.open li a:hover { color: var(--primary); background: none; }
  .nav-menu.open li a:hover::after { transform: scaleX(1); }
  .nav-menu__cta {
    display: none;
  }
  .nav-menu.open .nav-menu__cta-item { display: list-item; }
  .nav-menu.open .nav-menu__cta {
    display: flex;
    margin-top: 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .nav-menu.open .nav-menu__cta:hover {
    background: var(--primary-dark, #8a1a1a);
  }
  /* ハンバーガーボタン */
  .nav-toggle { display: flex; position: relative; z-index: 200; flex-shrink: 0; }
  /* backdrop-filter が overflow:hidden と干渉してメニューを隠すため SP では無効化 */
  .header-nav { overflow: visible; backdrop-filter: none; -webkit-backdrop-filter: none; }
  /* ロゴ縮小・折り返し防止 */
  .header-nav__inner { padding: 0 12px; gap: 8px; }
  .site-logo img { height: 36px !important; }
  .site-logo { gap: 6px; min-width: 0; }
  .site-logo__jp { font-size: 14px; white-space: nowrap; }
  .site-logo__en { font-size: 10px; letter-spacing: 0.06em; white-space: nowrap; }
  /* スタジオについて：SP は 見出し→写真→テキストの順 */
  .studio-layout { display: flex; flex-direction: column; gap: 24px; }
  .studio-heading { order: 1; }
  .studio-photo   {
    order: 2;
    width: 100%;
    min-height: unset;
    aspect-ratio: 3/4;
  }
  .studio-text    { order: 3; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .flow-steps::before { display: none; }
  .access-layout { grid-template-columns: 1fr; gap: 40px; }
  /* フッター：ナビをロゴより上に */
  .footer-top { flex-direction: column-reverse; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  /* コピーライト改行 */
  .footer-copy-break { display: block; }
  .hero__photo-strip { display: none; }
  .hero__slide--01a { background-position: 70% 10% !important; background-size: 200% !important; }
  .hero__slide--02a { background-position: 55% center !important; background-size: 210% !important; }
  .hero__slide--03a { background-position: 43% center !important; background-size: 200% !important; }
  .schedule-row { grid-template-columns: 1fr; }
  .schedule-label { padding: 16px; flex-direction: row; gap: 12px; justify-content: flex-start; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  /* 入会金テキスト SP改行 */
  .sp-fee-break { display: inline; }
  .sp-fee-break::after { content: '\A'; white-space: pre; }
  /* CTA キャッチコピー SP改行 */
  .cta-catch-sp-br { display: block; }
  /* セミプライベートレッスン SP改行 */
  .cta-semi-br { display: block; height: 0; }
  /* hero__actions 重複ルール削除済み（上部で定義） */
}

/* ── PAGE TOP button ── */
.page-top-btn {
  position: fixed;
  right: 24px;
  bottom: 32px;
  width: 56px;
  height: 64px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, bottom 0.2s ease, background 0.2s;
  z-index: 400;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.page-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.page-top-btn:hover { background: var(--primary-d); transform: translateY(-2px); }
.page-top-btn i { font-size: 18px; }

.staff-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); z-index: 600;
  align-items: center; justify-content: center;
  padding: 20px;
}
.staff-modal.open { display: flex; }
.staff-modal__inner {
  background: #fff; border-radius: 12px;
  max-width: 560px; width: 100%;
  overflow: hidden; position: relative;
  max-height: 90vh; overflow-y: auto;
}
.staff-modal__header {
  display: flex; align-items: center; gap: 24px;
  background: var(--dark); padding: 28px 32px;
}
.staff-modal__photo {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--accent);
}
.staff-modal__name-wrap { color: #fff; }
.staff-modal__name { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.staff-modal__name-en { font-family: var(--font-en); font-size: 13px; color: var(--primary); letter-spacing: 0.1em; }
.staff-modal__role { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.staff-modal__body { padding: 28px 32px; }
.staff-modal__row {
  display: flex; gap: 16px; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: 15px;
}
.staff-modal__row:last-child { border-bottom: none; }
.staff-modal__dt { width: 100px; font-weight: 700; color: var(--dark); flex-shrink: 0; }
.staff-modal__dd { color: var(--text-light); line-height: 1.8; }
.staff-modal__quote {
  margin-top: 20px; padding: 16px 20px;
  background: var(--bg-sub); border-left: 3px solid var(--accent);
  font-size: 15px; line-height: 1.9; color: var(--text);
  border-radius: 0 8px 8px 0;
}
.staff-modal__close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 28px; cursor: pointer; line-height: 1; z-index: 1;
}
.staff-modal__close:hover { color: #fff; }
