/*
Theme Name: trek TENNIS TEAM
Theme URI: https://trek-tennis.example.com/
Author: trek tennis team
Author URI: https://trek-tennis.example.com/
Description: trek TENNIS TEAM 公式サイト用テーマ。経験者向け／初心者向け／お知らせ／お問合せの4セクション構成。muscat 風白基調 + 蛍光ライム/マゼンタピンク + 全画面背景動画。
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trek
Tags: custom-menu, custom-logo, featured-images, translation-ready
*/

/* trek TENNIS TEAM — Design System */

:root {
  --bg: #f5f2eb;
  --bg-soft: #ece8de;
  --bg-deep: #0a1410;
  --ink: #0e1612;
  --ink-soft: #2a302c;
  --ink-muted: #6b6e68;
  --line: #d8d2c4;
  --line-soft: #e7e2d4;
  --forest: #0a3d2e;
  --forest-deep: #061f17;
  --lime: #d4ff3a;
  --lime-soft: #e9ff7a;
  --warn: #c14a2c;

  --f-display: "Shippori Mincho B1", "Cormorant Garamond", "Times New Roman", serif;
  --f-display-en: "Instrument Serif", "Cormorant Garamond", serif;
  --f-body: "Zen Kaku Gothic New", -apple-system, "Hiragino Kaku Gothic ProN", sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SF Mono", "Menlo", monospace;

  --max: 1440px;
  --gutter: 24px;
  --gutter-lg: 64px;
  --radius: 2px;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 400;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--lime); color: var(--forest-deep); }

/* ─────── Typography utilities ─────── */
.t-mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.t-mono-lg {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.t-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.t-display {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.t-display-en {
  font-family: var(--f-display-en);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.01em;
}

/* ─────── Layout shell ─────── */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  position: relative;
  padding: 96px 0 120px;
  border-top: 1px solid var(--line);
}

.section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.section-num::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--ink-muted);
}

/* ─────── SNS icon pins (top-right, with hamburger) ─────── */
.sns-pins {
  position: fixed;
  top: 18px; right: var(--gutter);
  left: auto;
  z-index: 60;
  display: flex;
  gap: 16px;
  align-items: center;
}
.sns-pins a {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  color: rgba(245,242,235,0.92);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.sns-pins a svg {
  width: 22px; height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}
.sns-pins a:hover {
  color: var(--lime);
  transform: translateY(-1px);
}

/* Hamburger button (right of SNS) */
.hamburger {
  order: 99;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 28px;
  margin-left: 10px;
  margin-right: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(245,242,235,0.92);
  margin: 0 auto;
  transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
}
.hamburger:hover span { background: var(--lime); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 768px) {
  .sns-pins { top: 22px; right: var(--gutter); gap: 20px; }
  .sns-pins a svg { width: 24px; height: 24px; }
  .hamburger { margin-left: 16px; }
}

/* Back-crumb inside Nav (replaces nav-side-left on sub pages) */
.nav-centered .back-crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-centered .back-crumb .back-arrow {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-centered .back-crumb .back-arrow svg {
  width: 16px; height: 16px;
  stroke: currentColor;
}
.nav-centered .back-crumb .crumb-sep { opacity: 0.4; }
.nav-centered .back-crumb .crumb-current { opacity: 0.75; }
.nav-centered .back-crumb:hover .back-arrow { transform: translateX(-2px); transition: transform 0.2s ease; }

/* Hide deprecated top-left-nav */
.top-left-nav { display: none !important; }

/* Top-left back link + breadcrumb */
.top-left-nav {
  position: fixed;
  top: 22px;
  left: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(245,242,235,0.92);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.top-left-nav .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.top-left-nav .back-link:hover { color: var(--lime); }
.top-left-nav .back-arrow {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top-left-nav .back-arrow svg { width: 18px; height: 18px; stroke: currentColor; }
.top-left-nav .crumb-sep { opacity: 0.4; }
.top-left-nav .crumb-current { opacity: 0.7; }

.page-contact .top-left-nav,
.page-beginner .top-left-nav {
  color: rgba(245,242,235,0.92);
}

/* Menu overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-close {
  position: absolute;
  top: 22px;
  right: var(--gutter);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.9);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}
.menu-close:hover { color: var(--lime, #00ff3c); }
.menu-close .menu-close-icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.menu-close .menu-close-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.menu-content {
  max-width: 1200px;
  width: 100%;
  padding: 120px 64px 64px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .menu-content { padding: 100px 32px 48px; gap: 48px; }
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.menu-item {
  border-bottom: 1px solid rgba(245,242,235,0.15);
}
.menu-item:first-child { border-top: 1px solid rgba(245,242,235,0.15); }
.menu-item a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 32px;
  padding: 32px 0;
  text-decoration: none;
  transition: padding 0.3s ease;
}
.menu-item a:hover { padding-left: 16px; }
.menu-en {
  font-family: var(--m-sans, "Helvetica Neue", "Arial Black", sans-serif);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 0.95;
}
.menu-jp {
  font-family: var(--m-jp, "Noto Sans JP", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  justify-self: end;
}
.menu-item.current .menu-en { color: var(--lime, #00ff3c); }

.menu-sns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid rgba(245,242,235,0.15);
}
.menu-sns-label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.5);
}
.menu-sns-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.menu-sns-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,242,235,0.85);
  text-decoration: none;
  font-family: var(--m-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}
.menu-sns-link:hover { color: var(--lime); }
.menu-sns-link svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}

/* Lower the logo so its top edge aligns with the side text top — applied in base .nav-centered above */
.nav { top: 0; }

/* ─────── Top marquee bar (legacy) ─────── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: 32px;
  background: var(--bg-deep);
  color: var(--bg);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #1a221d;
}
.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  gap: 32px;
  padding-left: 32px;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}
.marquee-item svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.marquee-item .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--lime);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────── Nav ─────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(245,242,235,0.95), rgba(245,242,235,0.5) 70%, rgba(245,242,235,0));
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav.dark {
  background: linear-gradient(180deg, rgba(10,20,16,0.85), rgba(10,20,16,0.4) 70%, rgba(10,20,16,0));
  color: var(--bg);
}

/* Centered logo nav (over hero video) */
.nav-centered {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 16px var(--gutter);
  background: linear-gradient(180deg, rgba(10,20,16,0.55), rgba(10,20,16,0.15) 60%, rgba(10,20,16,0));
  color: var(--bg);
  top: 0;
  min-height: 0;
}
.nav-centered .nav-side { padding-top: 4px; }

/* Mini T-mark that appears at top-LEFT when hero logo scrolls out */
.mini-tmark {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  margin-left: 15px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
  line-height: 0;
}
.mini-tmark img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 1;
}
.mini-tmark.visible {
  opacity: 0.8;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-centered .nav-side-left {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  padding-top: 8px;
}
.nav-centered .nav-side-right {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  align-self: start;
  padding-top: 8px;
}
.nav-centered {
  grid-template-rows: auto auto;
  row-gap: 0;
}

/* Inline hero logo that scrolls with the page */
.hero-logo {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  line-height: 0;
  z-index: 3;
  opacity: 0.8;
}
.hero-logo img {
  /* スマホ: 幅基準でアスペクト比を維持（max-width: 100% に潰されない） */
  width: 52vw;
  max-width: 260px;
  height: auto !important;
  display: block;
}
/* スマホ：ロゴ位置 */
@media (max-width: 767px) {
  .hero-logo { top: 106px; }
}
@media (min-width: 768px) {
  .hero-logo { top: 100px; }
  .hero-logo img {
    /* PC: 高さ基準（元のデザイン） */
    width: auto;
    height: 300px;
    max-width: none;
  }
}
.beg-hero { position: relative; }
.beg-hero .hero-logo { position: absolute; }
.nav-centered .logo-mark { justify-self: center; }
.nav-centered .nav-side {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.85);
}
.nav-centered .nav-side-left { justify-self: start; }
.nav-centered .nav-side-right { justify-self: end; }
@media (max-width: 540px) {
  .nav-centered .nav-side { display: none; }
}

.logo {
  font-family: var(--f-display-en);
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.logo .mark {
  font-family: var(--f-mono);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  transform: translateY(-2px);
}
.nav.dark .logo .mark { color: var(--lime); }

.logo-mark { display: inline-flex; align-items: center; line-height: 0; opacity: 0.8; }
.logo-mark img { height: 152px; width: auto; display: block; }
.footer-logo img { height: 110px; }
@media (min-width: 768px) {
  .logo-mark img { height: 192px; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-link {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease;
}
.pill:hover { transform: translateY(-1px); background: var(--forest); }
.pill.lime { background: var(--lime); color: var(--forest-deep); }
.pill.lime:hover { background: var(--lime-soft); }
.pill .arrow {
  width: 14px; height: 14px;
  display: inline-block;
  position: relative;
}
.pill .arrow::after {
  content: "→";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-body);
  font-size: 14px;
  transition: transform 0.3s ease;
}
.pill:hover .arrow::after { transform: translateX(3px); }

/* ─────── Fixed video background ─────── */
.video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg-deep);
}
.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.video-bg-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,16,0.35) 0%, rgba(10,20,16,0.10) 35%, rgba(10,20,16,0.10) 65%, rgba(10,20,16,0.45) 100%);
  pointer-events: none;
}
.video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    conic-gradient(rgba(80,80,80,0.6) 25%, transparent 25% 50%, rgba(80,80,80,0.6) 50% 75%, transparent 75%);
  background-size: 4px 4px;
  pointer-events: none;
  opacity: 1;
}
.video-bg::before {
  display: none;
}
body { background: var(--bg-deep); }
main { position: relative; z-index: 2; }

/* Video reveal gaps */
.video-reveal {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0 var(--gutter);
}
.video-reveal > span {
  background: rgba(10,20,16,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 18px;
  border: 1px solid rgba(245,242,235,0.18);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.82);
}

/* ─────── Hero ─────── */
.hero {
  position: relative;
  padding-top: 32px;
  overflow: hidden;
  background: transparent;
  color: var(--bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.hero.hero-fit { padding-top: 0; }
.hero.hero-fit { padding: 0; width: 100%; min-height: 100vh; }
.hero-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(245,242,235,0.9);
  text-align: center;
  padding: 12px 20px;
  border: 1px solid rgba(245,242,235,0.22);
  background: rgba(10,20,16,0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-video, .hero-video-el { display: none; }
.hero-meta-top {
  position: absolute;
  bottom: 80px; left: var(--gutter); right: var(--gutter);
  z-index: 2;
  display: flex; justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.85);
}
.hero-meta-top .blink::before {
  content: "● ";
  color: var(--lime);
  animation: blink 1.4s ease-in-out infinite;
}
.hero-foot {
  position: absolute;
  bottom: 20px; left: var(--gutter); right: var(--gutter);
  z-index: 2;
  display: flex; justify-content: space-between;
  pointer-events: none;
}

/* Intro section after video */
.hero-intro {
  background: rgba(10,20,16,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--bg);
  padding: 64px var(--gutter) 96px;
  position: relative;
  border-bottom: 1px solid #1a221d;
}
.hero-intro .hero-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 14vw, 160px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-intro .hero-title .en {
  display: block;
  font-family: var(--f-display-en);
  font-style: italic;
  font-weight: 400;
  font-size: 0.42em;
  color: var(--lime);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-intro .hero-sub {
  font-family: var(--f-body);
  font-size: clamp(13px, 3.4vw, 17px);
  line-height: 1.85;
  max-width: 520px;
  color: rgba(245,242,235,0.85);
  margin-top: 24px;
}
.hero-intro .hero-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 28px;
}
.hero-intro .hero-tags .tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(245,242,235,0.3);
  border-radius: 999px;
}
.video-placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 14px),
    radial-gradient(ellipse at 30% 40%, rgba(212,255,58,0.08), transparent 60%),
    radial-gradient(ellipse at 75% 60%, rgba(10,61,46,0.6), transparent 70%),
    linear-gradient(180deg, #0e1f17 0%, #0a1410 100%);
  overflow: hidden;
}
.video-placeholder::before {
  content: "";
  position: absolute;
  left: -10%; right: -10%; top: 30%; bottom: 30%;
  background: radial-gradient(ellipse at center, rgba(212,255,58,0.06), transparent 60%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}
.video-stripe {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(212,255,58,0.3), transparent);
  animation: rally 4.5s ease-in-out infinite;
}
@keyframes rally {
  0% { left: 8%; opacity: 0; }
  20% { opacity: 1; }
  50% { left: 92%; opacity: 1; }
  80% { opacity: 1; }
  100% { left: 8%; opacity: 0; }
}

.hero-meta {
  position: absolute;
  top: 92px; left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.7);
  z-index: 2;
}
.hero-meta .group { display: flex; flex-direction: column; gap: 6px; }
.hero-meta .group.right { text-align: right; align-items: flex-end; }
.hero-meta .blink { color: var(--lime); }
.hero-meta .blink::before {
  content: "● ";
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-body {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) 64px;
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 16vw, 220px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title .en {
  font-family: var(--f-display-en);
  font-style: italic;
  font-weight: 400;
  display: block;
  font-size: 0.42em;
  color: var(--lime);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-title .ja { display: block; line-height: 0.95; }
.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(13px, 3.4vw, 17px);
  line-height: 1.7;
  max-width: 480px;
  color: rgba(245,242,235,0.85);
  margin-top: 32px;
}
.hero-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 24px;
}
.hero-tags .tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(245,242,235,0.3);
  border-radius: 999px;
}

.hero-foot {
  position: absolute;
  bottom: 24px; left: var(--gutter); right: var(--gutter);
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 3;
  gap: 16px;
  pointer-events: none;
}
.hero-foot > * { pointer-events: auto; }
.hero-foot .scroll-cue { display: none; }
@media (min-width: 768px) {
  .hero-foot .scroll-cue { display: flex; }
}
.scroll-cue {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  color: rgba(245,242,235,0.7);
}
.scroll-cue .bar {
  width: 1px; height: 32px;
  background: linear-gradient(180deg, var(--lime), transparent);
  animation: scrollbar 2.2s ease-in-out infinite;
}
@keyframes scrollbar {
  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; }
}

/* ─────── Section title ─────── */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 56px;
}
.section-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 8vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.section-title .accent {
  font-family: var(--f-display-en);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  font-size: 0.85em;
}
.section-title .lime-underline {
  background: linear-gradient(transparent 65%, var(--lime) 65%, var(--lime) 92%, transparent 92%);
}

/* ─────── Concept (01) ─────── */
.concept {
  background: var(--bg);
}
.concept-statement {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 6.5vw, 56px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin-bottom: 64px;
  max-width: 16ch;
  text-wrap: balance;
}
.concept-statement .em {
  color: var(--forest);
  position: relative;
  display: inline-block;
}
.concept-statement .em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--lime);
  z-index: -1;
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.concept-card {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.concept-card .num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--forest);
  margin-bottom: 12px;
}
.concept-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 12px;
}
.concept-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.concept-stat {
  margin-top: 80px;
  padding: 40px 28px;
  background: var(--forest-deep);
  color: var(--bg);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.concept-stat::before {
  content: "";
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: var(--lime);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.stat-row {
  display: flex; align-items: baseline; gap: 16px;
  position: relative;
}
.stat-row .big {
  font-family: var(--f-display-en);
  font-style: italic;
  font-size: 64px;
  line-height: 0.9;
  color: var(--lime);
}
.stat-row .label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.75);
}
.stat-divider { width: 100%; height: 1px; background: rgba(245,242,235,0.15); }

/* ─────── Coaches (02) — Magazine asymmetric ─────── */
.coaches { background: var(--bg-soft); }
.coach-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 88px;
}
.coach-row:last-of-type { margin-bottom: 0; }

.coach-photo {
  aspect-ratio: 3/4;
  background:
    repeating-linear-gradient(45deg, rgba(10,61,46,0.08) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, #d8d2c4 0%, #c0baa8 100%);
  position: relative;
  overflow: hidden;
}
.coach-photo .label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: rgba(245,242,235,0.85);
  padding: 6px 10px;
  border-radius: var(--radius);
}
.coach-photo .frame-num {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.coach-info { padding: 8px 0; }
.coach-info .eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
}
.coach-info h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.coach-info h3 .en {
  display: block;
  font-family: var(--f-display-en);
  font-style: italic;
  font-weight: 400;
  font-size: 0.55em;
  color: var(--ink-muted);
  letter-spacing: -0.015em;
  margin-top: 6px;
}
.coach-quote {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.55;
  margin: 24px 0;
  padding-left: 16px;
  border-left: 2px solid var(--lime);
  font-weight: 500;
}
.coach-bio {
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.coach-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 16px;
}
.coach-meta dt {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.coach-meta dd {
  font-size: 13px;
  font-weight: 500;
}

/* ─────── Schedule (03) ─────── */
.schedule { background: var(--bg); }
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.schedule-table {
  background: white;
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: var(--radius);
}
.schedule-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.schedule-table th, .schedule-table td {
  padding: 12px 8px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}
.schedule-table th {
  background: var(--bg-soft);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.schedule-table td.time {
  background: var(--bg-soft);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
}
.schedule-table td .lesson {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 13px;
}
.schedule-table td .level {
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}
.schedule-table td.empty { background: var(--bg); color: var(--line); }
.schedule-table td.lime { background: var(--lime); color: var(--forest-deep); font-weight: 600; }

.schedule-aside {
  background: var(--forest);
  color: var(--bg);
  padding: 28px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.schedule-aside h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.schedule-aside p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(245,242,235,0.85);
  margin-bottom: 20px;
}
.schedule-aside ul {
  list-style: none;
  display: grid; gap: 10px;
  margin-bottom: 24px;
}
.schedule-aside li {
  font-size: 13px;
  display: flex; align-items: flex-start; gap: 10px;
}
.schedule-aside li::before {
  content: "→";
  color: var(--lime);
  font-family: var(--f-mono);
  margin-top: 1px;
}

/* ─────── Voices (04) ─────── */
.voices { background: var(--bg); }
.voice-big {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 7vw, 56px);
  line-height: 1.35;
  margin-bottom: 64px;
  max-width: 14ch;
  text-wrap: balance;
}
.voice-big .quote-mark {
  font-family: var(--f-display-en);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.25em;
  margin-right: 0.05em;
}
.voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.voice-card {
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -32px rgba(10,20,16,0.18);
}
.voice-card .num {
  font-family: var(--f-display-en);
  font-style: italic;
  font-size: 36px;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 16px;
}
.voice-card .text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 24px;
}
.voice-card .text .em {
  background: linear-gradient(transparent 60%, rgba(212,255,58,0.6) 60%);
  font-weight: 500;
  color: var(--ink);
}
.voice-card .person {
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.voice-card .name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
}
.voice-card .meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.voice-card.coming {
  background: transparent;
  border: 1px dashed var(--line);
}
.voice-card.coming .num { color: var(--line); }
.voice-card.coming .center {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px 0;
}
.voice-card.coming .center .badge {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.voice-card.coming .center .label {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.5;
}

/* ─────── News (05) ─────── */
.news { background: var(--bg-soft); }
.news-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.news-item {
  background: var(--bg-soft);
  padding: 24px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  transition: background 0.3s ease;
}
.news-item:hover { background: var(--bg); }
.news-item .meta {
  display: flex; gap: 12px; align-items: center;
}
.news-item .date {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}
.news-item .cat {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
}
.news-item .cat.event { background: var(--forest); }
.news-item .cat.lime { background: var(--lime); color: var(--forest-deep); }
.news-item h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.news-item .arrow {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--ink-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}
.news-item:hover .arrow { transform: translateX(4px); color: var(--forest); }

/* ─────── SNS (06) ─────── */
.sns {
  background: var(--bg-deep);
  color: var(--bg);
  border-top: 1px solid #1a221d;
}
.sns .section-num,
.sns .t-eyebrow { color: rgba(245,242,235,0.6); }
.sns .section-num::before { background: rgba(245,242,235,0.4); }
.sns .section-title { color: var(--bg); }

.sns-list {
  display: grid;
  gap: 1px;
  background: rgba(245,242,235,0.12);
  border-top: 1px solid rgba(245,242,235,0.12);
}
.sns-row {
  background: var(--bg-deep);
  padding: 28px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  transition: background 0.4s ease, padding 0.4s ease;
  cursor: pointer;
}
.sns-row:hover { background: #111c17; padding-left: 24px; }
.sns-row.disabled { opacity: 0.5; cursor: default; }
.sns-row.disabled:hover { background: var(--bg-deep); padding-left: 16px; }
.sns-row .icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(245,242,235,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sns-row .icon svg { width: 18px; height: 18px; stroke: var(--bg); fill: none; stroke-width: 1.5; }
.sns-row:hover .icon { border-color: var(--lime); }
.sns-row:hover .icon svg { stroke: var(--lime); }
.sns-row .body { display: flex; flex-direction: column; gap: 4px; }
.sns-row .platform {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.55);
}
.sns-row .handle {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
}
.sns-row .arrow {
  font-family: var(--f-mono);
  font-size: 18px;
  color: rgba(245,242,235,0.4);
  transition: transform 0.3s ease, color 0.3s ease;
}
.sns-row:hover .arrow { color: var(--lime); transform: translateX(4px) rotate(-45deg); }

/* ─────── Access (07) ─────── */
.access { background: var(--bg); }
.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.map-frame {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(0deg, rgba(10,61,46,0.06) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(10,61,46,0.06) 0 1px, transparent 1px 32px),
    linear-gradient(135deg, #e7e2d4 0%, #d4cebe 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.map-frame .pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.map-frame .pin-dot {
  width: 14px; height: 14px;
  background: var(--forest);
  border-radius: 50%;
  border: 3px solid var(--lime);
  box-shadow: 0 0 0 6px rgba(212,255,58,0.3), 0 0 0 14px rgba(212,255,58,0.12);
  animation: pinpulse 2.2s ease-in-out infinite;
}
@keyframes pinpulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(212,255,58,0.3), 0 0 0 14px rgba(212,255,58,0.12); }
  50% { box-shadow: 0 0 0 10px rgba(212,255,58,0.25), 0 0 0 22px rgba(212,255,58,0.08); }
}
.map-frame .pin-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: white;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.map-frame .scale-bar {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
}
.map-frame .scale-bar::before {
  content: "";
  display: inline-block;
  width: 48px; height: 2px;
  background: var(--ink-muted);
  vertical-align: middle;
  margin-right: 8px;
}

.access-info dl { display: grid; gap: 20px; }
.access-info dt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.access-info dd {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
}
.access-info dd a { color: var(--forest); border-bottom: 1px solid var(--lime); }
.access-info dd .small {
  display: block;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}

.contact-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: white;
  transition: background 0.3s ease, color 0.3s ease;
}
.contact-btn:hover { background: var(--ink); color: var(--bg); }
.contact-btn.lime { background: var(--lime); border-color: var(--lime); }
.contact-btn.lime:hover { background: var(--forest); border-color: var(--forest); color: var(--bg); }
.contact-btn .label {
  display: flex; flex-direction: column; gap: 4px; text-align: left;
}
.contact-btn .small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
}
.contact-btn .main {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
}

/* ─────── Beginner CTA (cross-link) ─────── */
.cross-link {
  background: var(--forest-deep);
  color: var(--bg);
  padding: 96px var(--gutter);
  position: relative;
  overflow: hidden;
}
.cross-link::before {
  content: "";
  position: absolute;
  right: -80px; top: -80px;
  width: 280px; height: 280px;
  background: var(--lime);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}
.cross-link .inner {
  position: relative;
  display: grid;
  gap: 24px;
}
.cross-link .eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}
.cross-link h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 7vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.cross-link h2 .en {
  display: block;
  font-family: var(--f-display-en);
  font-style: italic;
  font-weight: 400;
  font-size: 0.6em;
  color: var(--lime);
  margin-bottom: 8px;
}
.cross-link p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(245,242,235,0.8);
  max-width: 480px;
}

/* ─────── Footer ─────── */
.footer {
  background: var(--bg-deep);
  color: rgba(245,242,235,0.7);
  padding: 64px var(--gutter) 32px;
  border-top: 1px solid #1a221d;
}
.footer .top {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}
.footer .logo {
  color: var(--bg);
  font-size: 56px;
}
.footer h5 {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.5);
  margin-bottom: 14px;
}
.footer ul { list-style: none; display: grid; gap: 8px; }
.footer ul a {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--bg);
}
.footer ul a:hover { color: var(--lime); }
.footer .bottom {
  border-top: 1px solid #1a221d;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(245,242,235,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─────── Beginner page hero ─────── */
.beg-hero {
  min-height: 90vh;
  background: var(--bg);
  position: relative;
  padding: 120px var(--gutter) 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.beg-hero .floating-pill {
  position: absolute;
  top: 80px; left: var(--gutter);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--lime);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-deep);
  font-weight: 600;
}
.beg-hero .floating-pill::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--forest-deep);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
.beg-hero h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 11vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.beg-hero h1 .en {
  display: block;
  font-family: var(--f-display-en);
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  color: var(--forest);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.beg-hero p {
  font-family: var(--f-display);
  font-size: clamp(15px, 4vw, 22px);
  line-height: 1.7;
  font-weight: 500;
  max-width: 22ch;
  color: var(--ink-soft);
}
.beg-hero .deco {
  position: absolute;
  right: -100px; bottom: -100px;
  width: 360px; height: 360px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.beg-hero .deco::before {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.15;
}

/* ─────── Beginner highlight banner ─────── */
.trial-banner {
  background: var(--forest);
  color: var(--bg);
  padding: 48px var(--gutter);
  position: relative;
  overflow: hidden;
}
.trial-banner .marquee-row {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  gap: 48px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 7vw, 48px);
  letter-spacing: -0.01em;
  line-height: 1;
}
.trial-banner .marquee-row .star {
  color: var(--lime);
  font-family: var(--f-display-en);
  font-style: italic;
  font-weight: 400;
  align-self: center;
}
.trial-banner-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,242,235,0.7);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─────── Beginner benefits ─────── */
.benefits { background: var(--bg); padding: 96px 0 120px; }
.benefit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}
.benefit-row:last-child { border-bottom: 1px solid var(--line); }
.benefit-num {
  font-family: var(--f-display-en);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 18vw, 140px);
  line-height: 0.85;
  color: var(--forest);
  letter-spacing: -0.03em;
}
.benefit-body h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 5vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin-bottom: 20px;
  text-wrap: balance;
}
.benefit-body ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.benefit-body li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  padding-left: 20px;
  position: relative;
}
.benefit-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.8em;
  width: 8px; height: 1px;
  background: var(--forest);
}

/* 参考文献 */
.benefit-refs {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.benefit-ref {
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--ink-muted, #6b6b6b);
  display: grid;
  gap: 2px;
}
.benefit-ref .ref-src { font-weight: 500; opacity: 0.85; }
.benefit-ref .ref-body { opacity: 0.78; }

/* ─────── Beginner final CTA ─────── */
.beg-final {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 96px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.beg-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(212,255,58,0.04) 0 1px, transparent 1px 32px),
    radial-gradient(circle at 50% 50%, rgba(212,255,58,0.1), transparent 60%);
}
.beg-final .inner { position: relative; }
.beg-final h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 7vw, 56px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  text-wrap: balance;
}
.beg-final h2 .lime { color: var(--lime); }
.beg-final .pill-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ─────── Mouse follower (desktop) ─────── */
.cursor-halo {
  position: fixed;
  pointer-events: none;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,255,58,0.18), transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 30;
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.cursor-halo.visible { opacity: 1; }

/* ─────── Progress bar ─────── */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 1px;
  background: var(--lime);
  z-index: 55;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
}

/* ─────── Section progress nav (right side) ─────── */
.dot-nav {
  position: fixed;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 14px;
}
.dot-nav .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.25;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  position: relative;
}
.dot-nav .dot.active { opacity: 1; transform: scale(1.4); background: var(--forest); }
.dot-nav .dot::after {
  content: attr(data-label);
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.dot-nav .dot:hover::after { opacity: 1; }

/* ─────── Reveal animations ─────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }

/* ─────── Desktop adjustments ─────── */
@media (min-width: 768px) {
  :root { --gutter: 48px; }

  .nav-link { display: inline-block; }
  .dot-nav { display: flex; }

  .section { padding: 140px 0 160px; }

  .concept-grid { grid-template-columns: repeat(3, 1fr); gap: 48px; }
  .concept-stat { grid-template-columns: repeat(3, 1fr); padding: 64px; }
  .stat-divider { display: none; }

  .coach-row { grid-template-columns: 5fr 6fr; gap: 64px; align-items: center; }
  .coach-row.reverse { grid-template-columns: 6fr 5fr; }
  .coach-row.reverse .coach-photo { order: 2; }

  .schedule-grid { grid-template-columns: 7fr 5fr; gap: 48px; }
  .schedule-table table { font-size: 13px; }

  .voice-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .news-item { grid-template-columns: 200px 1fr auto; align-items: center; padding: 28px 24px; }
  .news-item .meta { display: flex; gap: 12px; }

  .sns-row { padding: 36px 32px; grid-template-columns: 56px 1fr auto; gap: 24px; }
  .sns-row .icon { width: 56px; height: 56px; }
  .sns-row .icon svg { width: 22px; height: 22px; }
  .sns-row .handle { font-size: 24px; }

  .access-grid { grid-template-columns: 7fr 5fr; gap: 64px; align-items: start; }
  .contact-block { grid-column: span 2; }

  .cross-link { padding: 140px var(--gutter); }
  .cross-link .inner { grid-template-columns: 1fr auto; align-items: end; }

  .footer .top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }

  .beg-hero { padding: 160px var(--gutter) 120px; min-height: 100vh; }
  .benefit-row { grid-template-columns: 280px 1fr; gap: 64px; padding: 64px 0; align-items: start; }
}

@media (min-width: 1024px) {
  .hero-meta { font-size: 11px; }
  .schedule-aside { padding: 40px; }
  .voice-card { padding: 36px; }
}

/* ──────────────────────────────────────────────────────────────
   MUSCAT mode — bold sans + neon lime + white BG + black ink.
   Applied to everything after the hero (News → Footer).
   ────────────────────────────────────────────────────────────── */

.apple-mode {
  --m-bg: rgba(255,255,255,0.7);
  --m-bg-solid: #ffffff;
  --m-bg-soft: rgba(240,240,240,0.7);
  --m-ink: #000000;
  --m-ink-soft: #1a1a1a;
  --m-ink-muted: #707070;
  --m-line: rgba(0,0,0,0.12);
  --m-line-strong: #000000;
  --m-lime: #00ff3c;
  --m-lime-hover: #00e636;
  --m-sans: "Helvetica Neue", "Arial Black", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --m-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  position: relative;
  z-index: 2;
  background: transparent;
  color: var(--m-ink);
  font-family: var(--m-jp);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.apple-mode .section {
  padding: 96px 0;
  background: var(--m-bg);
  border-top: none;
  position: relative;
}
.apple-mode #news.section { padding: 72px 0; }
.apple-mode #voices,
.apple-mode #access { background: var(--m-bg-soft); }
@media (max-width: 768px) {
  .apple-mode .section { padding: 64px 0; }
  .apple-mode #news.section { padding: 48px 0; }
}

.apple-mode .shell {
  max-width: 1440px;
  padding: 0 64px;
}
@media (max-width: 768px) {
  .apple-mode .shell { padding: 0 24px; }
}

/* ── Section heads: two-column grid (title on left, content on right) ── */
.apple-mode .section-head {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 0 80px;
  padding: 0;
  border: none !important;
  background: none !important;
  text-align: left;
}
.apple-mode .section-head > * { float: none !important; }
.apple-mode .section-head .num,
.apple-mode .section-head .total,
.apple-mode .section-head .slash,
.apple-mode .section-head .grid-overlay,
.apple-mode .section-head .corner { display: none !important; }

.apple-mode .section-head h2,
.apple-mode .section-head .title {
  font-family: var(--m-sans);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--m-ink);
  font-style: normal;
  margin: 0;
  display: block;
  order: 1;
}
.apple-mode .section-head h2 br,
.apple-mode .section-head .title br { display: none; }
.apple-mode .section-head .title .en,
.apple-mode .section-head .accent { display: none; }

.apple-mode .section-head .eyebrow,
.apple-mode .t-eyebrow {
  font-family: var(--m-jp);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--m-ink);
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  order: 2;
}
.apple-mode .section-head .eyebrow::before,
.apple-mode .t-eyebrow::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--m-lime);
  flex-shrink: 0;
}

/* ── MUSCAT button (lime rectangle + black arrow box) ── */
.apple-mode .pill,
.apple-mode .pill.lime,
.apple-mode .nav-link.pill {
  background: var(--m-lime);
  color: var(--m-ink);
  border: none;
  border-radius: 0;
  padding: 0 0 0 36px;
  height: 64px;
  font-family: var(--m-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 280px;
  transition: background 0.2s ease;
  position: relative;
  overflow: hidden;
}
.apple-mode .pill:hover { background: var(--m-lime-hover); color: var(--m-ink); }
.apple-mode .pill .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--m-ink);
  color: var(--m-lime);
  flex-shrink: 0;
}
.apple-mode .pill .arrow::after {
  content: "↳";
  font-size: 22px;
  color: var(--m-lime);
  font-weight: 700;
}
.apple-mode .pill .arrow::before { display: none; }

/* Outline variant (white BG + black border) for secondary actions */
.apple-mode .pill.outline {
  background: var(--m-bg);
  border: 2px solid var(--m-ink);
}
.apple-mode .pill.outline:hover { background: var(--m-ink); color: var(--m-lime); }

/* News head row */
.apple-mode .news-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}
.apple-mode .news-head .section-head { margin-bottom: 0; }
.apple-mode .news-head { align-items: end; }
@media (max-width: 768px) {
  .apple-mode .news-head { grid-template-columns: 1fr; align-items: start; }
}
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .apple-mode .news .shell {
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
  }
}
.apple-mode .news .section-head { margin-bottom: 32px; }
.apple-mode .news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  border: none;
}
.apple-mode .news-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 32px;
  background: rgba(240,240,240,0.78);
  border: none;
  position: relative;
  transition: background 0.2s ease;
}
.apple-mode .news-item:hover { background: rgba(232,232,232,0.9); }
.apple-mode .news-item .meta {
  display: contents;
}
.apple-mode .news-item .date {
  font-family: var(--m-sans);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--m-ink);
  font-weight: 500;
  order: 3;
  grid-column: 1;
}
.apple-mode .news-item .cat { display: none; }
.apple-mode .news-item h4 {
  font-family: var(--m-jp);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--m-ink);
  line-height: 1.6;
  margin: 0 0 8px;
  grid-column: 1;
  grid-row: 1;
}
.apple-mode .news-item .arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  margin: -12px -32px -12px 0;
  width: 88px;
  background: var(--m-ink);
  color: var(--m-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.apple-mode .news-item .arrow::before {
  content: "";
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'><path d='M5 12 H19 M13 6 L19 12 L13 18'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'><path d='M5 12 H19 M13 6 L19 12 L13 18'/></svg>") center/contain no-repeat;
}
@media (max-width: 768px) {
  .apple-mode .news-item { padding: 18px 20px; }
}

/* ── PDF cards (Coaches / Schedule) ── */
.apple-mode .pdf-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
  align-self: stretch;
}
.apple-mode .pdf-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  background: var(--m-lime);
  color: var(--m-ink);
  padding: 0 0 0 32px;
  min-height: 88px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.apple-mode .pdf-card:hover { background: var(--m-lime-hover); }
.apple-mode .pdf-card .pdf-title {
  font-family: var(--m-jp);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 900;
  color: var(--m-ink);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px 0;
}
.apple-mode .pdf-card .pdf-sub {
  font-family: var(--m-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--m-ink);
  opacity: 0.6;
  text-transform: uppercase;
}
.apple-mode .pdf-card .cta-arrow {
  width: 88px;
  background: var(--m-ink);
  color: var(--m-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.apple-mode .pdf-card .cta-arrow svg { width: 24px; height: 24px; }
.apple-mode .coaches .pdf-stack .pdf-card { flex: 1; min-height: 188px; }
.apple-mode .news-head .news-viewall.pdf-card {
  min-height: 0;
  height: 36px;
  padding: 0 0 0 20px;
  align-self: end;
  gap: 74px;
  transform: translateY(-40px);
}
.apple-mode .news-head .news-viewall .pdf-title { padding: 0; gap: 2px; }
.apple-mode .news-head .news-viewall .cta-arrow { width: 36px; }
.apple-mode .news-head .news-viewall .pdf-sub { display: none; }

/* ── Coaches: PDF link only ── */
.apple-mode .coach-row,
.apple-mode .concept-statement,
.apple-mode .concept-grid,
.apple-mode .concept-stat,
.apple-mode .schedule-grid,
.apple-mode .voice-big,
.apple-mode .voice-grid { /* keep but restyle below */ }

.apple-mode .coaches .shell,
.apple-mode .schedule .shell,
.apple-mode .concept .shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) {
  .apple-mode .coaches .shell,
  .apple-mode .schedule .shell,
  .apple-mode .concept .shell {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
}

.apple-mode .concept .shell { display: block; }

/* ── Beginner page color theme override (lime → pink) ── */
.page-beginner {
  --lime: #FF1A86;
  --lime-soft: #ff5fa8;
  --ink: #1a1a1a;
}
.page-beginner .apple-mode {
  --m-lime: #FF1A86;
  --m-lime-hover: #ff5fa8;
  --m-ink: #1a1a1a;
  --m-ink-soft: #4d4d4d;
}
.page-beginner .beg-hero .floating-pill,
.page-beginner .apple-mode .beg-hero .floating-pill {
  background: #FF1A86 !important;
  color: #fff !important;
}
.page-beginner .voice-card .em,
.page-beginner .apple-mode .voice-card .em {
  background: #FF1A86 !important;
  color: #fff !important;
}
.page-beginner .beg-final h2 .lime,
.page-beginner .apple-mode .beg-final h2 .lime {
  color: #FF1A86 !important;
}
.page-beginner .trial-banner .star,
.page-beginner .apple-mode .trial-banner .star {
  color: #FF1A86 !important;
}
.page-beginner .beg-final .t-eyebrow,
.page-beginner .apple-mode .beg-final .t-eyebrow {
  color: #FF1A86 !important;
}
.page-beginner .apple-mode .trial-eyebrow {
  color: #FF1A86 !important;
}
.page-beginner .apple-mode .trial-headline mark {
  background: transparent !important;
  color: #00ff3c !important;
}
.page-beginner .apple-mode .trial-headline mark::after { display: none !important; }
.page-beginner .apple-mode .trial-tags span::before {
  background: #FF1A86 !important;
}
.page-beginner .apple-mode .trial-banner,
.page-beginner .apple-mode .beg-final {
  background: #1a1a1a !important;
}
/* ── Contact page ── */
.page-contact { background: var(--bg-deep); }
.page-contact main { position: relative; z-index: 2; }

.contact-hero {
  position: relative;
  z-index: 2;
  padding: 200px var(--gutter) 80px;
  background: var(--m-bg);
  color: var(--m-ink);
  font-family: var(--m-jp);
}
.contact-hero .shell { max-width: 1200px; padding: 0 64px; }
@media (max-width: 768px) {
  .contact-hero { padding: 160px 24px 64px; }
  .contact-hero .shell { padding: 0; }
}
.contact-eyebrow {
  font-family: var(--m-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--m-ink);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-hero .contact-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--m-ink);
}
.contact-title {
  font-family: var(--m-sans);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--m-ink);
  margin: 0;
}
.contact-subtitle {
  font-family: var(--m-jp);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--m-ink);
  margin-top: 24px;
}

.contact-form-section {
  position: relative;
  z-index: 2;
  padding: 80px var(--gutter) 140px;
  background: var(--m-bg);
  color: var(--m-ink);
  font-family: var(--m-jp);
}
.contact-form-section .shell { max-width: 1200px; padding: 0 64px; }
@media (max-width: 768px) {
  .contact-form-section { padding: 48px 24px 80px; }
  .contact-form-section .shell { padding: 0; }
}
.contact-lead p {
  font-family: var(--m-jp);
  font-size: 15px;
  line-height: 2;
  color: var(--m-ink);
  margin-bottom: 16px;
  font-weight: 500;
}
.contact-lead p.muted {
  font-size: 13px;
  color: var(--m-ink-muted);
  line-height: 1.95;
  font-weight: 400;
}

.contact-form {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  border-top: 1px solid rgba(26,26,26,0.18);
  padding-top: 24px;
}
@media (min-width: 900px) {
  .form-row { grid-template-columns: 280px 1fr; gap: 40px; }
}
.form-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--m-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--m-ink);
}
.form-label .label-text { font-family: var(--m-jp); font-weight: 700; }
.form-label .required {
  font-family: var(--m-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 4px 8px;
  background: #FF1A86;
  color: #fff;
  font-weight: 700;
}
.form-fields { display: flex; flex-direction: column; gap: 12px; }
.form-fields-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  font-family: var(--m-jp);
  font-size: 15px;
  font-weight: 500;
  color: var(--m-ink);
  background: rgba(240,240,240,0.78);
  border: 1px solid transparent;
  border-radius: 0;
  padding: 16px 18px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--m-ink);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 160px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(26,26,26,0.4); }

.form-radios { display: flex; gap: 12px; flex-wrap: wrap; }
.radio-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(240,240,240,0.78);
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--m-jp);
  font-weight: 700;
  font-size: 15px;
  color: var(--m-ink);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card .radio-dot {
  width: 16px;
  height: 16px;
  border: 2px solid var(--m-ink);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.radio-card.active {
  background: var(--m-ink);
  color: #fff;
}
.radio-card.active .radio-dot { border-color: #fff; }
.radio-card.active .radio-dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #fff;
  border-radius: 50%;
}

.privacy-block {
  margin-top: 24px;
  padding: 40px;
  background: rgba(240,240,240,0.78);
}
.privacy-title {
  font-family: var(--m-jp);
  font-weight: 900;
  font-size: 18px;
  color: var(--m-ink);
  margin: 0 0 20px;
}
.privacy-block > p {
  font-family: var(--m-jp);
  font-size: 14px;
  line-height: 1.9;
  color: var(--m-ink);
  margin-bottom: 24px;
}
.privacy-list {
  list-style: none;
  padding: 0;
  counter-reset: privacy;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.privacy-list > li {
  counter-increment: privacy;
  padding-left: 36px;
  position: relative;
}
.privacy-list > li::before {
  content: counter(privacy);
  position: absolute;
  left: 0;
  top: 1px;
  font-family: var(--m-sans);
  font-weight: 900;
  font-size: 14px;
  color: #FF1A86;
}
.privacy-list > li h4 {
  font-family: var(--m-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--m-ink);
  margin: 0 0 8px;
}
.privacy-list > li p {
  font-family: var(--m-jp);
  font-size: 13px;
  line-height: 1.95;
  color: var(--m-ink);
  margin: 0;
}
.privacy-list > li ul {
  list-style: none;
  padding: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.privacy-list > li ul li {
  font-family: var(--m-jp);
  font-size: 13px;
  line-height: 1.7;
  color: var(--m-ink);
  padding-left: 16px;
  position: relative;
}
.privacy-list > li ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--m-ink-muted);
}

.consent {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0;
  cursor: pointer;
  font-family: var(--m-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--m-ink);
  margin-top: 16px;
}
.consent input { position: absolute; opacity: 0; pointer-events: none; }
.consent .checkmark {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 2px solid var(--m-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.consent .checkmark svg { width: 18px; height: 18px; }
.consent.agreed .checkmark { background: var(--m-ink); color: #fff; }

.submit-row { margin-top: 24px; }
.submit-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  appearance: none;
  min-width: 320px;
}
.submit-btn:disabled {
  background: rgba(26,26,26,0.18) !important;
  cursor: not-allowed;
}
.submit-btn:disabled .pdf-title { color: var(--m-ink-muted) !important; }
.submit-btn:disabled .cta-arrow { background: rgba(26,26,26,0.4); }

/* ─────── Contact Form 7 出力タグのデザイン調整 ─────── */
/* テキスト/メール/電話/textarea は既存 .contact-form input にカバーされる前提 */
.contact-form-cf7 .wpcf7-form-control-wrap { display: block; width: 100%; }
.contact-form-cf7 .wpcf7-not-valid-tip { color: #c14a2c; font-size: 12px; margin-top: 6px; display: block; }
.contact-form-cf7 .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 18px;
  border-width: 1.5px;
  font-size: 14px;
  font-weight: 500;
}
.contact-form-cf7 .wpcf7-spinner { margin-left: 12px; }

/* 体験レッスン受講 [radio] */
.contact-form-cf7 .wpcf7-radio { display: inline-flex; flex-wrap: wrap; gap: 12px; }
.contact-form-cf7 .wpcf7-radio .wpcf7-list-item { margin: 0; }
.contact-form-cf7 .wpcf7-radio label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1.5px solid var(--m-ink);
  cursor: pointer;
  font-family: var(--m-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--m-ink);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  user-select: none;
}
.contact-form-cf7 .wpcf7-radio label:hover { background: rgba(26,26,26,0.06); }
.contact-form-cf7 .wpcf7-radio label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 2px solid var(--m-ink);
  border-radius: 50%;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  background: transparent;
}
.contact-form-cf7 .wpcf7-radio label:has(input[type="radio"]:checked) {
  background: var(--m-ink);
  color: #fff;
}
.contact-form-cf7 .wpcf7-radio label:has(input[type="radio"]:checked) input[type="radio"] {
  border-color: #fff;
}
.contact-form-cf7 .wpcf7-radio label input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
}

/* 同意チェックボックス [acceptance] */
.contact-form-cf7 .wpcf7-acceptance { display: block; margin-top: 24px; }
.contact-form-cf7 .wpcf7-acceptance .wpcf7-list-item { margin: 0; display: block; }
.contact-form-cf7 .wpcf7-acceptance label {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-family: var(--m-jp);
  font-weight: 700;
  font-size: 14px;
  color: var(--m-ink);
}
.contact-form-cf7 .wpcf7-acceptance label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px; height: 24px;
  margin: 0;
  border: 2px solid var(--m-ink);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.contact-form-cf7 .wpcf7-acceptance label input[type="checkbox"]:checked {
  background: var(--m-ink);
}
.contact-form-cf7 .wpcf7-acceptance label input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px; top: 1px;
  width: 7px; height: 13px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* 送信ボタン [submit class:submit-btn] */
.contact-form-cf7 .submit-row { margin-top: 32px; }
.contact-form-cf7 input[type="submit"].wpcf7-submit {
  border: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: var(--m-ink);
  color: #fff;
  font-family: var(--m-jp);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 24px 32px;
  min-width: 320px;
  display: inline-block;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.contact-form-cf7 input[type="submit"].wpcf7-submit:hover { background: #000; }
.contact-form-cf7 input[type="submit"].wpcf7-submit:disabled,
.contact-form-cf7 input[type="submit"].wpcf7-submit.wpcf7-submit:disabled {
  background: rgba(26,26,26,0.25);
  cursor: not-allowed;
}

/* Reuse pdf-card style for submit */
.page-contact .pdf-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  background: #FF1A86;
  color: var(--m-ink);
  padding: 0 0 0 32px;
  min-height: 88px;
  text-decoration: none;
  transition: background 0.2s ease;
  border: none;
}
.page-contact .pdf-card:hover { background: #ff5fa8; }
.page-contact .pdf-card .pdf-title {
  font-family: var(--m-jp);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 900;
  color: var(--m-ink);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 16px 0;
}
.page-contact .pdf-card .pdf-sub {
  font-family: var(--m-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--m-ink);
  opacity: 0.7;
  text-transform: uppercase;
}
.page-contact .pdf-card .cta-arrow {
  width: 88px;
  background: var(--m-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* ── News list & detail pages ── */
.page-news .news-hero,
.page-news .news-detail-hero {
  padding: 200px var(--gutter) 64px;
}
.page-news .news-list-section,
.page-news .news-body-section {
  padding: 32px var(--gutter) 96px;
}
.page-news .news-list-all {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-news .news-list-all .news-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(240,240,240,0.78);
  border: none;
  text-decoration: none;
  transition: background 0.2s ease;
  position: relative;
}
.page-news .news-list-all .news-item:hover { background: rgba(232,232,232,0.9); }
.page-news .news-list-all .news-item .meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 6px;
}
.page-news .news-list-all .news-item .date {
  font-family: var(--m-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--m-ink);
  letter-spacing: 0.04em;
}
.page-news .news-list-all .news-item .cat {
  font-family: var(--m-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  color: var(--m-ink);
  background: #fff;
  border: 1px solid var(--m-ink);
  border-radius: 0;
}
.page-news .news-list-all .news-item .cat.event {
  background: var(--m-ink);
  color: #fff;
  border-color: var(--m-ink);
}
.page-news .news-list-all .news-item .cat.lime {
  background: var(--m-lime, #00ff3c);
  color: var(--m-ink);
  border-color: var(--m-ink);
}
.page-news .news-list-all .news-item h4 {
  font-family: var(--m-jp);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  color: var(--m-ink);
  line-height: 1.55;
  margin: 0;
  grid-column: 1;
}
.page-news .news-list-all .news-item .arrow {
  align-self: stretch;
  margin: -24px -32px -24px 0;
  width: 72px;
  background: var(--m-ink);
  color: var(--m-lime, #00ff3c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
.page-news .news-list-all .news-item .arrow::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'><path d='M5 12 H19 M13 6 L19 12 L13 18'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='square' stroke-linejoin='miter'><path d='M5 12 H19 M13 6 L19 12 L13 18'/></svg>") center/contain no-repeat;
}

/* News detail */
.page-news-detail .news-detail-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.page-news-detail .news-detail-date {
  font-family: var(--m-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--m-ink);
  letter-spacing: 0.04em;
}
.page-news-detail .news-detail-cat {
  font-family: var(--m-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  color: var(--m-ink);
  background: #fff;
  border: 1px solid var(--m-ink);
}
.page-news-detail .news-detail-cat.event {
  background: var(--m-ink);
  color: #fff;
}
.page-news-detail .news-detail-cat.lime {
  background: var(--m-lime, #00ff3c);
  color: var(--m-ink);
}
.page-news-detail .news-detail-title {
  font-family: var(--m-jp);
  font-weight: 900;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--m-ink);
  margin: 0;
}
.page-news-detail .news-body-shell {
  max-width: 820px;
  padding: 0 64px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-news-detail .news-body-shell { padding: 0 24px; }
}
.page-news-detail .news-body {
  margin-top: 16px;
}
.page-news-detail .news-body p {
  font-family: var(--m-jp);
  font-size: 15px;
  line-height: 2.05;
  color: var(--m-ink);
  margin-bottom: 24px;
  font-weight: 500;
}

.page-news-detail .news-nav-section {
  padding: 32px var(--gutter) 120px;
  background: rgba(255,255,255,0.7);
}
.page-news-detail .news-nav-shell {
  max-width: 1200px;
  padding: 0 64px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .page-news-detail .news-nav-shell { padding: 0 24px; }
}
.page-news-detail .news-back {
  max-width: 320px;
  align-self: center;
}
.page-news-detail .news-prev-next {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border-top: 1px solid rgba(26,26,26,0.18);
  padding-top: 32px;
}
@media (min-width: 700px) {
  .page-news-detail .news-prev-next { grid-template-columns: 1fr 1fr; }
}
.news-pn {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  background: rgba(240,240,240,0.78);
  text-decoration: none;
  transition: background 0.2s ease;
}
.news-pn:hover { background: rgba(232,232,232,0.9); }
.news-pn-label {
  font-family: var(--m-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--m-ink);
}
.news-pn-title {
  font-family: var(--m-jp);
  font-size: 14px;
  font-weight: 700;
  color: var(--m-ink);
  line-height: 1.5;
}
.news-pn-next { text-align: right; }
@media (max-width: 699px) {
  .news-pn-next { text-align: left; }
}

/* Pdf-card for news pages (matches contact) */
.page-news .pdf-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  background: var(--m-lime, #00ff3c);
  color: var(--m-ink);
  padding: 0 0 0 32px;
  min-height: 72px;
  text-decoration: none;
  transition: background 0.2s ease;
  border: none;
}
.page-news .pdf-card:hover { background: var(--m-lime-hover, #00e636); }
.page-news .pdf-card .pdf-title {
  font-family: var(--m-jp);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 900;
  color: var(--m-ink);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 12px 0;
}
.page-news .pdf-card .pdf-sub {
  font-family: var(--m-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--m-ink);
  opacity: 0.6;
  text-transform: uppercase;
}
.page-news .pdf-card .cta-arrow {
  width: 72px;
  background: var(--m-ink);
  color: var(--m-lime, #00ff3c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.page-news .pdf-card .cta-arrow svg { width: 24px; height: 24px; }
.page-news { background: var(--bg-deep); }
.page-news main { position: relative; z-index: 2; }
.page-news .contact-hero { background: var(--m-bg); }
.page-news .contact-form-section,
.page-news .news-nav-section { background: var(--m-bg); }
.page-news .contact-hero .shell,
.page-news .contact-form-section .shell { max-width: 1200px; padding: 0 64px; }
@media (max-width: 768px) {
  .page-news .news-hero,
  .page-news .news-detail-hero { padding: 160px 24px 48px; }
  .page-news .news-list-section,
  .page-news .news-body-section { padding: 24px 24px 80px; }
  .page-news .contact-hero .shell,
  .page-news .contact-form-section .shell { padding: 0; }
}

/* ── Beginner hero in muscat-mode ── */
.apple-mode .beg-hero {
  background: var(--m-bg);
  border-bottom: none;
  padding: 200px var(--gutter) 120px;
  min-height: 100vh;
  justify-content: center;
}
.apple-mode .beg-hero .floating-pill {
  background: var(--m-lime) !important;
  color: var(--m-ink) !important;
  font-family: var(--m-sans) !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  border-radius: 0 !important;
  padding: 10px 16px !important;
  position: static !important;
  align-self: flex-start;
  margin-bottom: 40px;
}
.apple-mode .beg-hero .floating-pill::before { display: none !important; }
.apple-mode .beg-hero h1 {
  font-family: var(--m-jp) !important;
  font-weight: 900 !important;
  font-size: clamp(48px, 10vw, 140px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.02em !important;
  color: var(--m-ink) !important;
  text-transform: none !important;
  margin-bottom: 40px;
  font-style: normal !important;
}
.apple-mode .beg-hero h1 .en {
  display: block;
  font-family: var(--m-sans) !important;
  font-weight: 900 !important;
  font-size: clamp(13px, 1.4vw, 16px) !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--m-ink) !important;
  margin-bottom: 32px;
  font-style: normal !important;
}
.apple-mode .beg-hero p {
  font-family: var(--m-jp) !important;
  font-weight: 500 !important;
  font-size: clamp(15px, 1.6vw, 19px) !important;
  color: var(--m-ink) !important;
  line-height: 1.8 !important;
  font-style: normal !important;
}
.apple-mode .beg-hero p.beg-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apple-mode .beg-hero p.beg-hero-copy span {
  display: block;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .apple-mode .beg-hero p.beg-hero-copy span {
    white-space: normal;
  }
}
.apple-mode .beg-hero .deco { display: none !important; }

/* ── Trial banner in muscat-mode ── */
.apple-mode .trial-banner {
  background: var(--m-ink) !important;
  color: #fff !important;
  padding: 120px 0 !important;
  position: relative;
  overflow: hidden;
}
.apple-mode .trial-banner-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.apple-mode .trial-eyebrow {
  font-family: var(--m-sans) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FF0078 !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.apple-mode .trial-headline {
  font-family: var(--m-jp) !important;
  font-weight: 900 !important;
  font-size: clamp(28px, 5.6vw, 76px) !important;
  line-height: 1.35 !important;
  letter-spacing: -0.01em;
  color: #fff !important;
  margin: 0;
}
.apple-mode .trial-headline .line {
  display: block;
}
.apple-mode .trial-headline mark {
  background: transparent;
  color: #00ff3c;
  padding: 0;
  margin: 0;
  display: inline;
}
.apple-mode .trial-headline mark::after { display: none; }
.apple-mode .trial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 32px;
}
.apple-mode .trial-tags span {
  font-family: var(--m-sans) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: 0.18em;
  color: #fff !important;
  position: relative;
  padding-left: 20px;
}
.apple-mode .trial-tags span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #FF0078;
}
@media (max-width: 768px) {
  .apple-mode .trial-banner { padding: 80px 0 !important; }
  .apple-mode .trial-tags { gap: 20px; }
}

/* ── Benefits in muscat-mode ── */
.apple-mode .benefits { background: var(--m-bg) !important; }
.apple-mode .benefit-num {
  font-family: var(--m-sans) !important;
  font-weight: 900 !important;
  color: var(--m-ink) !important;
  font-style: normal !important;
}
.apple-mode .benefit-body h3 {
  font-family: var(--m-jp) !important;
  font-weight: 900 !important;
  color: var(--m-ink) !important;
  font-style: normal !important;
}
.apple-mode .benefit-body ul li {
  font-family: var(--m-jp) !important;
  color: var(--m-ink) !important;
  font-style: normal !important;
}

/* ── Voices in muscat-mode (beginner) ── */
.apple-mode .voice-card {
  background: var(--m-bg-soft) !important;
  border: none !important;
  border-radius: 0 !important;
}
.apple-mode .voice-card .num {
  font-family: var(--m-sans) !important;
  font-weight: 900 !important;
  color: var(--m-ink) !important;
  font-style: normal !important;
}
.apple-mode .voice-card .text,
.apple-mode .voice-card p {
  font-family: var(--m-jp) !important;
  color: var(--m-ink) !important;
  font-style: normal !important;
  font-weight: 500 !important;
}
.apple-mode .voice-card .em {
  color: var(--m-ink) !important;
  background: var(--m-lime) !important;
  padding: 0 4px;
  font-style: normal !important;
}
.apple-mode .voice-card .name {
  font-family: var(--m-jp) !important;
  font-weight: 700 !important;
  color: var(--m-ink) !important;
}
.apple-mode .voice-card .meta {
  font-family: var(--m-sans) !important;
  color: var(--m-ink-soft, #555) !important;
}
.apple-mode .voice-card.coming .badge {
  background: var(--m-ink) !important;
  color: var(--m-lime) !important;
}
.apple-mode .voice-card.coming .label {
  font-family: var(--m-jp) !important;
  color: var(--m-ink) !important;
  font-style: normal !important;
}

/* ── Final CTA (beg-final) in muscat-mode ── */
.apple-mode .beg-final {
  background: var(--m-ink) !important;
  color: #fff !important;
}
.apple-mode .beg-final h2 {
  font-family: var(--m-jp) !important;
  font-weight: 900 !important;
  color: #fff !important;
  font-style: normal !important;
  letter-spacing: -0.01em;
}
.apple-mode .beg-final h2 .lime {
  color: var(--m-lime) !important;
}
.apple-mode .beg-final .t-eyebrow {
  font-family: var(--m-sans) !important;
  color: var(--m-lime) !important;
  font-weight: 700 !important;
}

/* ── Strip mincho/forest across muscat-mode universally ── */
.apple-mode h1, .apple-mode h2, .apple-mode h3, .apple-mode h4, .apple-mode h5,
.apple-mode p, .apple-mode li, .apple-mode span, .apple-mode div, .apple-mode a {
  font-style: normal;
}
.apple-mode .em {
  font-family: inherit !important;
  font-style: normal !important;
}
.apple-mode .concept-pairs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.apple-mode .concept-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 700px) {
  .apple-mode .concept-pair {
    grid-template-columns: 1.4fr 1fr;
  }
}
.apple-mode .concept-pair .concept-card {
  background: var(--m-bg-soft);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.apple-mode .concept-pair .stat-row {
  background: var(--m-lime);
  padding: 28px 40px;
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: none !important;
}
.apple-mode .concept-pair .stat-row .big {
  font-family: var(--m-sans);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--m-ink);
  line-height: 0.95;
  justify-self: end;
}
.apple-mode .concept-pair .stat-row .label {
  font-family: var(--m-jp);
  font-size: 14px;
  font-weight: 700;
  color: var(--m-ink);
  line-height: 1.5;
}

/* ── Concept ── */
.apple-mode .concept-statement {
  font-family: var(--m-jp);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.95;
  letter-spacing: 0;
  color: var(--m-ink);
  text-align: left;
  max-width: 100%;
  margin: 0 0 32px;
  font-style: normal;
}
.apple-mode .concept-head-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 0;
  align-items: end;
  margin-bottom: 56px;
}
.apple-mode .concept-head-row .concept-statement { padding-left: 24px; }
.apple-mode .concept-head-row .section-head { margin-bottom: 0; }
.apple-mode .concept-head-row .concept-statement { margin: 0; }
@media (max-width: 768px) {
  .apple-mode .concept-head-row { grid-template-columns: 1fr; gap: 24px; }
}
.apple-mode .concept-statement .em {
  color: var(--m-ink);
  font-style: normal;
  font-family: var(--m-jp);
  text-decoration: none;
  border-bottom: none;
  background: var(--m-lime);
  padding: 2px 6px;
}

.apple-mode .concept-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  border-top: none;
}
.apple-mode .concept-card {
  background: var(--m-bg-soft);
  border: none;
  border-radius: 0;
  padding: 32px 36px;
  box-shadow: none;
}
.apple-mode .concept-card:hover { transform: none; }
.apple-mode .concept-card:nth-child(3n),
.apple-mode .concept-card:nth-child(3n+1) { border: none; padding: 40px; }
.apple-mode .concept-card .num {
  font-family: var(--m-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--m-ink);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.apple-mode .concept-card .num::before {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--m-lime);
}
.apple-mode .concept-card h3 {
  font-family: var(--m-jp);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: 0;
  color: var(--m-ink);
  margin: 0 0 14px;
  line-height: 1.5;
}
.apple-mode .concept-card p {
  font-family: var(--m-jp);
  font-size: 14px;
  line-height: 1.85;
  color: var(--m-ink-soft);
}

.apple-mode .concept-stat {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--m-lime);
  border: none;
  border-radius: 0;
  padding: 0;
  margin-top: 16px;
}
.apple-mode .concept-stat .stat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: left;
  gap: 24px;
  padding: 28px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.apple-mode .concept-stat .stat-row:last-child { border-bottom: none; }
.apple-mode .concept-stat .big {
  font-family: var(--m-sans);
  font-style: normal;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--m-ink);
  line-height: 0.95;
  order: 2;
  justify-self: end;
}
.apple-mode .concept-stat .label {
  font-family: var(--m-jp);
  font-size: 14px;
  font-weight: 700;
  color: var(--m-ink);
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.5;
  order: 1;
}
.apple-mode .concept-stat .label br { display: none; }
.apple-mode .concept-stat .stat-divider { display: none; }

/* ── Coaches (PDF-only) ── */
.apple-mode .coaches .section-head + div {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
  margin-top: 0 !important;
}
.apple-mode .coaches .t-mono,
.apple-mode .schedule .t-mono {
  font-family: var(--m-jp) !important;
  font-size: 12px !important;
  color: var(--m-ink-muted) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* ── Schedule (PDF-only) ── */
.apple-mode .schedule .section-head + div {
  display: flex !important;
  flex-direction: column;
  gap: 16px;
}

/* ── Voices ── */
.apple-mode .voices .shell { display: block; }
.apple-mode .voice-big {
  font-family: var(--m-jp);
  font-style: normal;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--m-ink);
  text-align: center;
  margin: 0 0 56px;
  max-width: 100%;
  background: var(--m-lime);
  padding: 64px 48px;
  display: block;
}
.apple-mode .voice-big .quote-mark {
  display: inline;
  font-family: var(--m-sans);
  font-style: normal;
  color: var(--m-ink);
  font-weight: 900;
}
.apple-mode .voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border: none;
}
@media (min-width: 700px) { .apple-mode .voice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .apple-mode .voice-grid { grid-template-columns: repeat(3, 1fr); } }
.apple-mode .voice-card {
  background: var(--m-bg);
  border: none;
  border-radius: 0;
  padding: 40px;
}
.apple-mode .voice-card:nth-child(3n),
.apple-mode .voice-card:nth-child(3n+1) { border: none; padding: 40px; }
.apple-mode .voice-card .num {
  font-family: var(--m-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--m-ink);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.apple-mode .voice-card .num::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--m-lime);
}
.apple-mode .voice-card .text {
  font-family: var(--m-jp);
  font-size: 15px;
  line-height: 1.95;
  color: var(--m-ink);
  margin-bottom: 28px;
  font-weight: 500;
}
.apple-mode .voice-card .text .em {
  color: var(--m-ink);
  font-style: normal;
  font-family: var(--m-jp);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  background: var(--m-lime);
  padding: 1px 4px;
}
.apple-mode .voice-card .person {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--m-line);
  padding-top: 16px;
}
.apple-mode .voice-card .person .name {
  font-family: var(--m-jp);
  font-size: 15px;
  font-weight: 900;
  color: var(--m-ink);
}
.apple-mode .voice-card .person .meta {
  font-family: var(--m-jp);
  font-size: 12px;
  color: var(--m-ink-muted);
  letter-spacing: 0;
  text-transform: none;
  margin-top: 2px;
}
.apple-mode .voice-card.coming { display: flex; flex-direction: column; background: var(--m-bg-soft); }
.apple-mode .voice-card.coming .center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 12px;
  padding: 20px 0;
}
.apple-mode .voice-card.coming .badge {
  background: var(--m-ink);
  color: var(--m-lime);
  padding: 4px 10px;
  border-radius: 0;
  font-family: var(--m-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.apple-mode .voice-card.coming .label {
  font-family: var(--m-jp);
  font-style: normal;
  font-size: 18px;
  font-weight: 700;
  color: var(--m-ink-muted);
  line-height: 1.5;
}

/* ── SNS ── */
.apple-mode .sns .shell { display: block; }
.apple-mode .sns-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  border: none;
}
@media (min-width: 700px) { .apple-mode .sns-list { grid-template-columns: repeat(3, 1fr); } }
.apple-mode .sns-row {
  background: var(--m-bg-soft);
  border: none;
  border-radius: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s ease;
}
.apple-mode .sns-row:nth-child(3n),
.apple-mode .sns-row:nth-child(3n+1) { border: none; padding: 40px; }
.apple-mode .sns-row:hover { transform: none; background: var(--m-lime); }
.apple-mode .sns-row .icon {
  font-size: 28px;
  color: var(--m-ink);
  display: inline-flex;
}
.apple-mode .sns-row .body { display: flex; flex-direction: column; gap: 6px; }
.apple-mode .sns-row .platform {
  font-family: var(--m-sans);
  font-size: 12px;
  color: var(--m-ink);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.apple-mode .sns-row .handle {
  font-family: var(--m-sans);
  font-style: normal;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--m-ink);
}
.apple-mode .sns-row .arrow {
  align-self: flex-start;
  width: 40px;
  height: 40px;
  background: var(--m-ink);
  color: var(--m-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.apple-mode .sns-row.disabled { opacity: 0.4; }

/* ── Access ── */
.apple-mode .access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .apple-mode .access-grid {
    grid-template-columns: 7fr 5fr;
    gap: 56px;
    align-items: start;
  }
}
.apple-mode .map-frame {
  aspect-ratio: 4 / 3;
  background: var(--m-bg-soft);
  border-radius: 0;
  border: none;
  position: relative;
  overflow: hidden;
}
.apple-mode .map-frame .pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.apple-mode .map-frame .pin-dot {
  width: 16px;
  height: 16px;
  background: var(--m-lime);
  border: 3px solid var(--m-ink);
  border-radius: 50%;
}
.apple-mode .map-frame .pin-label {
  background: var(--m-ink);
  color: var(--m-lime);
  padding: 8px 14px;
  border-radius: 0;
  font-family: var(--m-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.apple-mode .map-frame .scale-bar {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--m-bg);
  padding: 6px 12px;
  border-radius: 0;
  font-family: var(--m-sans);
  font-size: 10px;
  color: var(--m-ink);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
}

.apple-mode .access-info { background: none; border-radius: 0; padding: 0; border: none; }
.apple-mode .access-info dl { border-top: 2px solid var(--m-ink); margin: 0; }
.apple-mode .access-info dl > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 32px 0;
  border-bottom: 1px solid var(--m-line);
  align-items: start;
}
.apple-mode .access-info dt {
  font-family: var(--m-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--m-ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.apple-mode .access-info dt::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--m-lime);
  flex-shrink: 0;
}
.apple-mode .access-info dd {
  font-family: var(--m-jp);
  font-size: 15px;
  color: var(--m-ink);
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apple-mode .access-info dd .court-label {
  font-family: var(--m-jp);
  font-size: 13px;
  color: var(--m-ink-muted);
  font-weight: 500;
}
.apple-mode .access-info dd .court-name {
  font-family: var(--m-sans);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--m-ink);
  line-height: 1.15;
}
.apple-mode .access-info dd .court-address {
  font-family: var(--m-jp);
  font-size: 14px;
  color: var(--m-ink);
  font-weight: 500;
  line-height: 1.6;
}
.apple-mode .access-info dd .court-link {
  font-family: var(--m-sans);
  font-size: 14px;
  color: var(--m-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--m-lime);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.apple-mode .access-info dd .court-link::after {
  content: "↗";
  font-size: 14px;
  color: var(--m-ink);
}
.apple-mode .access-info dd .court-link:hover { color: var(--m-ink-muted); border-bottom-color: var(--m-ink); }

.apple-mode .contact-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 36px;
}
.apple-mode .contact-btn {
  background: var(--m-lime);
  color: var(--m-ink);
  border: none;
  border-radius: 0;
  padding: 0 0 0 28px;
  height: 72px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s ease;
  text-decoration: none;
}
.apple-mode .contact-btn:hover { background: var(--m-lime-hover); color: var(--m-ink); }
.apple-mode .contact-btn .contact-main {
  font-family: var(--m-sans);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--m-ink);
  display: inline-flex;
  align-items: center;
}
.apple-mode .contact-btn .contact-arrow {
  width: 72px;
  background: var(--m-ink);
  color: var(--m-lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.apple-mode .contact-btn .contact-arrow svg { width: 22px; height: 22px; }

/* ── Cross link banner ── */
.apple-mode .cross-link {
  background: var(--m-lime);
  padding: 120px 0;
  border-top: none;
  position: relative;
}
.apple-mode .cross-link .inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}
@media (min-width: 900px) {
  .apple-mode .cross-link .inner { grid-template-columns: 1fr auto; gap: 56px; }
}
@media (max-width: 768px) {
  .apple-mode .cross-link { padding: 64px 0; }
  .apple-mode .cross-link .inner { padding: 0 24px; }
}
.apple-mode .cross-link .eyebrow {
  font-family: var(--m-jp);
  font-size: 14px;
  letter-spacing: 0;
  color: var(--m-ink);
  text-transform: none;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.apple-mode .cross-link .eyebrow::before {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--m-ink);
}
.apple-mode .cross-link h2 {
  font-family: var(--m-jp);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: 0;
  color: var(--m-ink);
  line-height: 1.4;
  margin: 0 0 20px;
}
.apple-mode .cross-link h2 .en {
  display: block;
  font-family: var(--m-sans);
  font-style: normal;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  color: var(--m-ink);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 0.95;
}
.apple-mode .cross-link h2 .en .hl,
.cross-link h2 .en .hl { color: #fff !important; }
.apple-mode .cross-link p {
  font-family: var(--m-jp);
  font-size: 14px;
  line-height: 1.85;
  color: var(--m-ink);
  max-width: 520px;
  font-weight: 500;
}
.apple-mode .cross-link .pill {
  background: var(--m-bg);
}
.apple-mode .cross-link .pill:hover { background: var(--m-ink); color: var(--m-lime); }
.apple-mode .cross-link .pill .arrow { background: var(--m-ink); }
.apple-mode .cross-link .pill:hover .arrow { background: var(--m-lime); }
.apple-mode .cross-link .pill:hover .arrow::after { color: var(--m-ink); }

/* ── Footer ── */
.apple-mode .footer {
  background: rgba(255,255,255,0.7);
  color: var(--m-ink);
  padding: 100px 0 40px;
  border-top: 2px solid var(--m-ink);
}
.apple-mode .footer .shell {
  max-width: 1440px;
  padding: 0 64px;
}
@media (max-width: 768px) {
  .apple-mode .footer { padding: 64px 0 32px; }
  .apple-mode .footer .shell { padding: 0 24px; }
}
.apple-mode .footer .top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--m-line);
}
@media (min-width: 900px) {
  .apple-mode .footer .top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
  }
}
.apple-mode .footer .footer-logo {
  max-width: 200px;
  margin-bottom: 16px;
}
.apple-mode .footer .footer-logo img {
  filter: none;
  opacity: 1;
}
.apple-mode .footer .top > div:first-child p {
  font-family: var(--m-jp);
  font-size: 13px;
  line-height: 1.85;
  color: var(--m-ink-muted);
  max-width: 320px;
  margin-top: 16px;
  font-weight: 500;
}
.apple-mode .footer h5 {
  font-family: var(--m-sans);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--m-ink);
  margin: 0 0 20px;
  display: block;
}
.apple-mode .footer h5::before { display: none; }
.apple-mode .footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.apple-mode .footer ul a {
  font-family: var(--m-jp);
  font-size: 14px;
  color: var(--m-ink);
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.apple-mode .footer ul a::before {
  content: "↳";
  font-size: 12px;
  color: var(--m-lime);
  font-weight: 700;
}
.apple-mode .footer ul a:hover { color: var(--m-ink-muted); }
.apple-mode .footer .bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-top: 32px;
  font-family: var(--m-sans);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--m-ink-muted);
  font-weight: 500;
}
@media (min-width: 768px) {
  .apple-mode .footer .bottom { flex-direction: row; align-items: center; }
}

/* Strip residual decorative ornaments */
.apple-mode .grid-overlay,
.apple-mode .video-reveal,
.apple-mode .section::before,
.apple-mode .section::after,
.apple-mode .corner-mark,
.apple-mode .dot-pattern,
.apple-mode .tape,
.apple-mode .pin-tape { display: none !important; }

/* ─────────────────────────────────────────────
 * trek: 追加調整（スマホ改行・地図iframe・beg-final拡大）
 * ───────────────────────────────────────────── */

/* スマホ専用改行ヘルパー */
.sp-br { display: none; }
@media (max-width: 767px) {
  .sp-br { display: inline; }
}

/* 日本語見出しの中途半端な折り返し抑制 */
.apple-mode .section-title,
.apple-mode .beg-hero h1,
.apple-mode .beg-final h2 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* Access の地図 iframe フィット */
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* 地図表示時は擬似ピン・スケールバーを隠す */
.map-frame.has-embed .pin,
.map-frame.has-embed .scale-bar { display: none !important; }

/* 初心者ページ Final CTA を スマホで 1.2倍に */
@media (max-width: 767px) {
  .apple-mode .beg-final h2 {
    font-size: calc(clamp(28px, 6vw, 40px) * 1.2);
    line-height: 1.35;
  }
}

/* ─────────────────────────────────────────────
 * trek: スマホ向け追加調整（v2）
 * ───────────────────────────────────────────── */
@media (max-width: 767px) {
  /* section-head h2 のスマホサイズを beg-hero h1 と揃える */
  .apple-mode .section-head h2,
  .apple-mode .section-head .title {
    font-size: clamp(36px, 9vw, 48px) !important;
    line-height: 1.05 !important;
  }

  /* スマホでは section-head 内の <br> を有効化（PCは非表示 → 1行） */
  .apple-mode .section-head h2 br,
  .apple-mode .section-head .title br { display: inline !important; }

  /* 初心者「はじめた方の声。」を1行に収める用に更に縮小 */
  .page-beginner #voices-b .section-title,
  .page-beginner #voices-b .section-head h2 {
    font-size: clamp(28px, 7vw, 40px) !important;
    white-space: nowrap;
  }

  /* beg-final 「一緒に、気軽に、テニスを…」のスマホサイズ調整（前回の1.2倍は維持） */
  .apple-mode .beg-final h2 {
    font-size: calc(clamp(28px, 6.5vw, 40px) * 1.2) !important;
    line-height: 1.35 !important;
  }
}

/* ─────────────────────────────────────────────
 * 初心者ページ: スマホでミニ T マークを最初から表示
 * （PCは従来通りスクロール後に出現）
 * ───────────────────────────────────────────── */
@media (max-width: 767px) {
  body.page-beginner .mini-tmark {
    opacity: 0.8 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

/* TrialBanner 下のCTAボタン: スマホでのみ表示 */
.trial-cta { display: none; justify-content: center; margin-top: 40px; }
.trial-cta .pdf-card { max-width: 480px; width: 100%; }
@media (max-width: 767px) {
  .trial-cta { display: flex; }
}
