/* ============================================================
   ONE STORY AWARD — メンバー
   ライト基調 × OSA ロイヤルブルー（b612-community 風プロフィール）
   ============================================================ */

:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-2: #f4f4f5;       /* zinc-100 */
  --ink: #18181b;             /* zinc-900 */
  --ink-soft: #52525b;        /* zinc-600 */
  --ink-faint: #a1a1aa;       /* zinc-400 */
  --line: #e4e4e7;            /* zinc-200 */
  --line-2: #d4d4d8;          /* zinc-300 */
  --black: #18181b;           /* 主役の黒（zinc-900）= アクティブ/主要ボタン */
  --accent: #0057b8;          /* OSAブルーは控えめなアクセント（リンク・◆）に限定 */
  --accent-deep: #00468f;
  --accent-bright: #1e6fd9;
  --accent-soft: #eef2f9;
  --accent-line: #dbe3f0;
  --gold: #b45309;            /* amber-700（本部公認バッジ） */
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 18px;
  --shadow: none;
  --shadow-lg: 0 6px 20px rgba(24, 24, 27, 0.08);
  --maxw: 1080px;
  --sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.7; -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: transparent; font-feature-settings: "palt" 1; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent-soft); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }

/* ---------- DEMO バナー ---------- */
.demo-banner {
  background: #fffbeb; color: #b45309;
  font-size: 12px; letter-spacing: 0.02em; text-align: center;
  padding: 8px 16px; border-bottom: 1px solid #fde68a;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.demo-banner__tag { background: #f59e0b; color: #fff; font-weight: 700; font-size: 10px; letter-spacing: 0.1em; padding: 2px 7px; border-radius: 5px; }

/* ---------- レイアウト（左サイドバー） ---------- */
:root { --sbw: 248px; }
.layout { min-height: 100vh; }

.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: var(--sbw); z-index: 60;
  background: var(--surface); border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.sidebar__brand { display: flex; align-items: center; padding: 22px 22px 12px; }
.sidebar__brand img { height: 28px; width: auto; }
.sidebar__badge {
  margin: 0 22px 8px; display: inline-flex; align-items: center; gap: 7px; align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: #8a6a1f;
  background: #fbf3dc; border: 1px solid #efe0b4; padding: 4px 11px; border-radius: 999px;
}
.sidebar__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #e0a72a; }

.sidebar__nav { flex: 1; overflow-y: auto; padding: 10px 12px; }
.nav-group + .nav-group { margin-top: 8px; padding-top: 6px; border-top: 1px solid var(--line); }
.nav-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: var(--ink-faint); padding: 10px 12px 6px; }
.nav-label::before { content: ""; display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin-right: 7px; vertical-align: middle; }
.side-item {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 12px;
  color: var(--ink-soft); font-size: 14px; font-weight: 500; transition: background 0.16s, color 0.16s; margin-bottom: 2px;
}
.side-item svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; flex-shrink: 0; }
.side-item:hover { background: var(--surface-2); color: var(--ink); }
.side-item.is-active { background: var(--black); color: #fff; box-shadow: none; }
.side-item.is-active svg { stroke: #fff; }
/* 掲載プラン（重要メニュー）を強調 */
.side-item.side-item--hl { background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent); font-weight: 700; }
.side-item.side-item--hl svg { stroke: var(--accent); }
.side-item.side-item--hl:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.side-item.side-item--hl:hover svg { stroke: #fff; }
.side-item.side-item--hl.is-active { background: var(--accent); border-color: var(--accent); color: #fff; }
.side-item.side-item--hl.is-active svg { stroke: #fff; }
.side-item__badge { margin-left: auto; flex-shrink: 0; font-size: 9.5px; font-weight: 800; letter-spacing: 0.04em; background: var(--accent); color: #fff; border-radius: 999px; padding: 2px 8px; }
.side-item.side-item--hl:hover .side-item__badge, .side-item.side-item--hl.is-active .side-item__badge { background: #fff; color: var(--accent); }

.sidebar__foot { padding: 14px 16px 18px; border-top: 1px solid var(--line); }
.clock { font-size: 12px; color: var(--ink-soft); display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.clock__dot { width: 7px; height: 7px; border-radius: 50%; background: #1bb978; }
.clock b { color: var(--ink); font-weight: 600; }
.side-promo { display: block; margin-top: 12px; padding: 15px; border-radius: 14px; background: var(--black); color: #fff; transition: filter 0.18s; }
.side-promo:hover { filter: brightness(1.3); }
.side-promo__title { font-size: 12.5px; font-weight: 600; line-height: 1.5; }
.side-promo__btn { font-size: 13px; font-weight: 700; margin-top: 10px; }
.side-official { display: block; text-align: center; margin-top: 12px; font-size: 12px; color: var(--accent); font-weight: 600; }
.side-official:hover { color: var(--accent-deep); }
.side-copy { font-size: 10px; letter-spacing: 0.06em; color: var(--ink-faint); text-align: center; margin-top: 12px; }

.sidebar-backdrop { position: fixed; inset: 0; z-index: 55; background: rgba(10,14,26,0.4); opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s; }
.sidebar-backdrop.is-open { opacity: 1; visibility: visible; }

.content { margin-left: var(--sbw); min-height: 100vh; display: flex; flex-direction: column; }
.content > .main { flex: 1; }
.topbar { display: none; align-items: center; gap: 12px; height: 56px; padding: 0 14px; position: sticky; top: 0; z-index: 40; background: var(--glass-bg, rgba(255,255,255,0.85)); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.menu-toggle { background: none; border: 1px solid var(--line); border-radius: 10px; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: var(--ink); }
.menu-toggle svg { width: 22px; height: 22px; }
.topbar__brand img { height: 24px; }

/* ---------- 画面 ---------- */
.screen { display: none; }
.screen.is-active { display: block; animation: fade 0.3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.section { padding: clamp(40px, 6vw, 64px) 0; }

.page-head { margin-bottom: 28px; position: relative; padding-right: 96px; }
.page-share { position: absolute; top: 0; right: 0; display: inline-flex; align-items: center; gap: 6px; font-family: inherit; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 14px; cursor: pointer; transition: border-color 0.15s, color 0.15s, background 0.15s; }
.page-share:hover { border-color: var(--accent); color: var(--accent); }
.page-share svg { width: 15px; height: 15px; }
@media (max-width: 480px) { .page-head { padding-right: 0; } .page-share span { display: none; } .page-share { padding: 8px; } }
.crumb { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 14px; }
.crumb a:hover { color: var(--accent); }
.crumb span { margin: 0 7px; }
.page-title { font-size: clamp(24px, 4vw, 32px); font-weight: 700; letter-spacing: 0.01em; }
.page-sub { font-size: 14px; color: var(--ink-soft); margin-top: 8px; }

/* ページ内ジャンプ サブナビ */
.subnav { position: sticky; top: 0; z-index: 30; display: flex; gap: 8px; overflow-x: auto; padding: 12px 0; margin-bottom: 18px; background: color-mix(in srgb, var(--bg) 92%, transparent); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); scrollbar-width: none; }
.subnav::-webkit-scrollbar { display: none; }
.subnav__link { white-space: nowrap; font-size: 13px; font-weight: 500; color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line); padding: 7px 15px; border-radius: 999px; transition: all 0.18s; }
.subnav__link:hover { border-color: var(--accent); color: var(--accent); }
.card2, .about-grid { scroll-margin-top: 88px; }

/* メンバー一覧：件数・検索 */
.list-bar { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.list-count { font-size: 13px; color: var(--ink-soft); }
.list-count b { color: var(--ink); font-size: 16px; font-weight: 700; }
.msearch { flex: 1; min-width: 200px; max-width: 360px; margin-left: auto; }
.msearch input { width: 100%; font: inherit; font-size: 14px; padding: 11px 16px; border: 1px solid var(--line-2); border-radius: 999px; background: var(--surface); color: var(--ink); outline: none; transition: border-color 0.18s; }
.msearch input:focus { border-color: var(--accent); }
.msearch input::placeholder { color: var(--ink-faint); }
.mcard[hidden] { display: none; }
.list-empty { display: none; text-align: center; color: var(--ink-faint); padding: 40px 20px; font-size: 14px; }
.list-empty.is-on { display: block; }

/* ---------- ヒーロー（ホーム） ---------- */
.lead {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px); display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; box-shadow: var(--shadow); overflow: hidden;
}
.lead__body { }
.lead__eyebrow { font-size: 12px; letter-spacing: 0.16em; color: var(--accent); font-weight: 600; text-transform: uppercase; }
.lead__title { font-size: clamp(28px, 5vw, 44px); font-weight: 800; line-height: 1.25; letter-spacing: 0.01em; margin-top: 14px; }
.lead__text { font-size: 15px; color: var(--ink-soft); margin-top: 16px; }
.lead__cta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.lead__media { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.lead__media img { width: 100%; height: 100%; object-fit: cover; }

.btn { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; padding: 11px 20px; border-radius: 999px; border: 1px solid transparent; transition: all 0.18s; }
.btn--primary { background: var(--black); color: #fff; }
.btn--primary:hover { background: #000; }
.btn--ghost { background: var(--surface); border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--block { width: 100%; justify-content: center; }

/* ---------- セクション見出し ---------- */
.sec-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
.sec-head__title { font-size: 19px; font-weight: 700; }
.sec-head__more { font-size: 13px; color: var(--accent); font-weight: 600; }

/* ---------- セグメントタブ ---------- */
.segtabs { display: inline-flex; gap: 4px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 24px; }
.segtab { border: none; background: transparent; font-size: 14px; font-weight: 600; color: var(--ink-soft); padding: 9px 22px; border-radius: 999px; transition: all 0.18s; white-space: nowrap; }
.segtab:hover { color: var(--ink); }
.segtab.is-active { background: var(--black); color: #fff; }
.mempanel { display: none; }
.mempanel.is-active { display: block; animation: fade 0.25s ease; }

/* ---------- メンバーカード ---------- */
.mgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 18px; }
.mcard {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; text-align: left; cursor: pointer; box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; display: flex; flex-direction: column; gap: 4px;
}
.mcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.mcard__top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.avatar { width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; background: linear-gradient(140deg, #3f3f46, #18181b); color: #fff; font-weight: 700; font-size: 22px; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.mcard__name { font-size: 17px; font-weight: 700; line-height: 1.3; }
.mcard__handle { font-size: 12.5px; color: var(--ink-faint); }
.mcard__role { font-size: 13.5px; color: var(--ink-soft); }
.mcard__meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chip { font-size: 12px; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); padding: 3px 10px; border-radius: 999px; }
.chip--accent { color: var(--accent); background: var(--accent-soft); border-color: var(--accent-line); }
.chip--jump { font: inherit; font-size: 12px; cursor: pointer; color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 4px 11px 4px 22px; border-radius: 999px; position: relative; transition: background 0.15s, border-color 0.15s; }
.chip--jump::before { content: ""; position: absolute; left: 9px; top: 50%; width: 9px; height: 9px; transform: translateY(-50%); background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4-4'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4-4'/%3E%3C/svg%3E") center/contain no-repeat; }
.chip--jump:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.mcard__tagline { font-size: 13.5px; color: var(--ink-soft); margin-top: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.empty { text-align: center; color: var(--ink-faint); padding: 60px 20px; font-size: 14px; }

/* ---------- ギャラリー（モザイク：長方形＋正方形ミックス） ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px; grid-auto-flow: dense; gap: 12px;
}
.gallery__item {
  position: relative; grid-row: span 2; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: var(--surface-2);
  box-shadow: 0 8px 24px -16px rgba(20,18,12,0.4);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.2,.7,.2,1), filter 0.4s ease; }
.gallery__item:hover img { transform: scale(1.07); filter: saturate(1.08) brightness(1.03); }
/* サイズのバリエーション（高さは全タイル2行で統一＝下端が揃う） */
.gallery__item:nth-child(1) { grid-column: span 2; }
.gallery__item:nth-child(7) { grid-column: span 2; }
/* 鏡面（ガラス反射スイープ） */
.gallery__item::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 60%; height: 100%; z-index: 2;
  background: linear-gradient(105deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg); opacity: 0; pointer-events: none;
}
.gallery__item:hover::after { animation: galShine 0.9s ease forwards; }
@keyframes galShine {
  0% { left: -80%; opacity: 0; }
  16% { opacity: 0.85; }
  100% { left: 140%; opacity: 0; }
}
/* ロゴタイル（余白を埋めるブランドパネル） */
.gallery__logo {
  grid-column: span 2; grid-row: span 2;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; border-radius: 16px;
  background: linear-gradient(135deg, #0e1322 0%, #1b2338 52%, #0b1730 100%);
  box-shadow: 0 8px 24px -16px rgba(20,18,12,0.4);
}
.gallery__logo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 130% at 50% 0%, rgba(194,152,47,0.20), transparent 58%);
}
.gallery__logo img {
  position: relative; z-index: 1; width: 66%; max-width: 300px; height: auto; opacity: 0.97;
}

/* ---------- ダイジェスト動画 ---------- */
.ytframe { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #0a0e1a; }
.ytframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.videohero { display: flex; justify-content: center; align-items: center; background: #0a0e1a; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); padding: 14px; }
.videohero video { max-width: 100%; max-height: 76vh; width: auto; height: auto; display: block; margin: 0 auto; border-radius: 10px; background: #0a0e1a; }

/* ---------- 情報 ---------- */
.info-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 20px; align-items: start; }
.card2 { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.card2__title { font-size: 15px; font-weight: 700; margin-bottom: 14px; display: flex; align-items: center; gap: 9px; }
.card2__title::before { content: ""; width: 4px; height: 16px; border-radius: 2px; background: var(--accent); }
.card2__title.is-diamond::before { content: "◆"; width: auto; height: auto; background: transparent; border-radius: 0; color: var(--accent); font-size: 10px; line-height: 1; }
.btn--disabled { background: var(--surface-2); color: var(--ink-faint); border-color: var(--line); cursor: default; pointer-events: none; }
.card2 p { font-size: 14.5px; color: var(--ink-soft); }
.info-links { display: flex; flex-direction: column; gap: 10px; }
.info-link { display: flex; align-items: center; justify-content: space-between; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow); transition: border-color 0.18s, transform 0.18s; }
.info-link:hover { border-color: var(--accent); transform: translateX(3px); }
.info-link .arrow { color: var(--accent); }
.sns-row { display: flex; gap: 10px; margin-top: 12px; }
.sns-row a { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; display: flex; align-items: center; justify-content: center; background: var(--surface); color: var(--ink-soft); transition: border-color 0.18s, color 0.18s, background 0.18s; }
.sns-row a:hover { border-color: var(--accent); color: var(--accent); }
.sns-row img { width: 20px; height: 20px; }
.sns-row svg { width: 21px; height: 21px; display: block; }

/* ---------- 大会について ---------- */
.about-hero { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 21 / 9; margin-bottom: 22px; }
.about-hero img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(20px, 4vw, 44px); color: #fff; background: linear-gradient(180deg, rgba(8,15,32,0.15) 0%, rgba(8,15,32,0.78) 100%); }
.about-hero__eyebrow { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: #cdddf5; }
.about-hero__title { font-size: clamp(26px, 5vw, 44px); font-weight: 800; letter-spacing: 0.04em; margin-top: 8px; }
.about-hero__sub { font-size: 14px; color: rgba(255,255,255,0.9); margin-top: 10px; max-width: 580px; line-height: 1.8; }

.about-stack { display: flex; flex-direction: column; gap: 16px; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bullets { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.bullets li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--ink); line-height: 1.75; }
.bullets li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--line-2); }
.tl-item { position: relative; padding-bottom: 20px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -26px; top: 3px; width: 13px; height: 13px; border-radius: 50%; background: var(--accent); border: 3px solid var(--surface); box-shadow: 0 0 0 1px var(--accent-line); }
.tl-year { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; }
.tl-title { font-size: 15px; font-weight: 700; margin-top: 2px; line-height: 1.4; }
.tl-place { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }

.taglist { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.note { font-size: 12.5px; color: var(--ink-faint); margin-top: 12px; }
.steps { display: flex; flex-direction: column; gap: 12px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step__no { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; }
.step__txt { font-size: 14.5px; padding-top: 3px; line-height: 1.6; }
/* リッチステップ（出場の流れ） */
.flowlead { font-size: 14px; color: var(--ink-soft); margin: 0 0 18px; }
.steps--rich { gap: 0; }
.steps--rich .step { position: relative; gap: 16px; padding-bottom: 22px; }
.steps--rich .step:not(:last-child)::before { content: ""; position: absolute; left: 17px; top: 36px; bottom: 0; width: 2px; background: var(--line); }
.steps--rich .step__no { width: 36px; height: 36px; font-size: 15px; background: var(--ink); color: #fff; z-index: 1; }
.steps--rich .step__body { padding-top: 4px; flex: 1; min-width: 0; }
.step__title { font-size: 16px; font-weight: 800; color: var(--ink); }
.step__desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.8; margin-top: 5px; }
.step__cta { display: inline-flex; align-items: center; margin-top: 10px; font-size: 13px; font-weight: 700; color: #fff; background: var(--accent); text-decoration: none; padding: 8px 16px; border-radius: 999px; transition: opacity 0.15s; }
.step__cta:hover { opacity: 0.85; }
.contact-info { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-soft); line-height: 1.95; }
.contact-info a { color: var(--accent); }
.contact-info b { color: var(--ink); font-weight: 600; }

/* スポンサー ロゴウォール */
.special-sponsor { display: flex; align-items: center; gap: 18px; padding: 18px; border: 1px solid var(--accent-line); background: var(--accent-soft); border-radius: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.special-sponsor img { max-height: 60px; max-width: 170px; object-fit: contain; background: #fff; border-radius: 8px; padding: 6px 10px; }
.special-sponsor__label { font-size: 11px; color: var(--accent); font-weight: 700; letter-spacing: 0.06em; }
.special-sponsor__name { font-size: 16px; font-weight: 700; margin-top: 2px; }
.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(116px, 1fr)); gap: 12px; margin-top: 14px; }
.logo-tile { background: #fff; border: 1px solid var(--line); border-radius: 10px; aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center; padding: 12px; }
.logo-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ゲスト */
.guest { display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid var(--line); }
.guest:first-child { border-top: none; padding-top: 0; }
.guest__photo { width: 92px; height: 92px; border-radius: 12px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--line); }
.guest__name { font-size: 16px; font-weight: 700; }
.guest__role { font-size: 13px; color: var(--ink-soft); margin-top: 3px; }
.guest__note { font-size: 13px; color: var(--ink-soft); margin-top: 7px; }
.guest__tag { display: inline-block; font-size: 11px; font-weight: 600; color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 2px 9px; border-radius: 999px; margin-bottom: 7px; }

/* 各エリア日程 */
.sched { display: flex; flex-direction: column; }
.sched__row { display: grid; grid-template-columns: 104px 1fr; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); align-items: baseline; }
.sched__row:first-child { border-top: none; }
.sched__area { font-weight: 700; font-size: 14px; color: var(--accent); }
.sched__date { font-size: 14.5px; font-weight: 600; }
.sched__venue { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
.sched__spl { font-size: 12px; color: var(--ink-faint); margin-top: 2px; }

/* News */
.newslist { display: flex; flex-direction: column; }
.newsitem { display: flex; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line); align-items: baseline; }
.newsitem:first-child { border-top: none; padding-top: 0; }
.newsitem__meta { flex-shrink: 0; min-width: 92px; display: flex; flex-direction: column; gap: 4px; }
.newsitem__date { font-size: 12px; color: var(--ink-faint); }
.newsitem__src { align-self: flex-start; font-size: 9.5px; font-weight: 800; letter-spacing: 0.04em; color: #e4002b; border: 1px solid #f3b6bf; background: #fff5f6; border-radius: 4px; padding: 1px 6px; }
.newsitem__title { font-size: 14px; line-height: 1.6; }

@media (max-width: 720px) {
  .about-hero { aspect-ratio: 3 / 2; }
  .about-grid { grid-template-columns: 1fr; }
}

/* ---------- フッター ---------- */
.ftr { border-top: 1px solid var(--line); background: var(--surface); }
.ftr__in { max-width: var(--maxw); margin: 0 auto; padding: 44px clamp(16px, 4vw, 32px); text-align: center; }
.ftr__logo { height: 30px; width: auto; margin: 0 auto 16px; opacity: 0.9; }
.ftr__tag { font-size: 13px; color: var(--ink-soft); }
.ftr__link { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--accent); font-weight: 600; }
.ftr__copy { margin-top: 18px; font-size: 11px; letter-spacing: 0.08em; color: var(--ink-faint); }

/* ============================================================
   プロフィールページ（詳細オーバーレイ）
   ============================================================ */
.profile-screen { position: fixed; top: 0; right: 0; bottom: 0; left: var(--sbw); z-index: 45; background: var(--bg); display: none; flex-direction: column; }
.profile-screen.is-open { display: flex; }
.profile-screen.is-open .profile { animation: fade 0.3s ease; }

.pbar { flex-shrink: 0; height: 56px; display: flex; align-items: center; gap: 12px; padding: 0 clamp(16px, 4vw, 32px); border-bottom: 1px solid var(--line); background: var(--surface); }
.pbar__back { display: inline-flex; align-items: center; gap: 7px; background: none; border: none; font-size: 14px; font-weight: 600; color: var(--ink-soft); padding: 7px 10px 7px 4px; border-radius: 999px; }
.pbar__back:hover { color: var(--accent); background: var(--surface-2); }
.pbar__back svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 2; }
.pbar__crumb { font-size: 13px; color: var(--ink-faint); }
.pbar__crumb b { color: var(--ink); font-weight: 600; }
.pbar__home { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--accent); }

.pscroll { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.profile { max-width: 820px; margin: 0 auto; padding: clamp(24px, 4vw, 40px) clamp(16px, 4vw, 32px) 80px; }

/* ヒーロー（プロフィール ヘッダーカード） */
.phero { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: clamp(20px, 3vw, 30px); }
.phero__type { font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.02em; }
.phero__top { display: flex; gap: 22px; align-items: flex-start; margin-top: 14px; flex-wrap: wrap; }
.phero__avatar { width: 112px; height: 112px; border-radius: 16px; border: 1px solid var(--line); flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; background: linear-gradient(140deg, #3f3f46, #18181b); color: #fff; font-weight: 700; font-size: 44px; }
.phero__avatar img { width: 100%; height: 100%; object-fit: cover; }
.phero__head { flex: 1; min-width: 220px; }
.phero__badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.badge { font-size: 11.5px; font-weight: 600; padding: 3px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 4px; }
.badge--gold { color: #8a6a1f; background: #fbf3dc; border: 1px solid #efe0b4; }
.badge--accent { color: var(--accent); background: #fff; border: 1px solid var(--accent-line); }
.phero__nameline { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.phero__name { font-size: clamp(24px, 4vw, 31px); font-weight: 800; line-height: 1.2; }
.phero__handle { font-size: 14px; color: var(--ink-faint); font-weight: 500; }
.phero__tagline { font-size: 15px; color: var(--ink-soft); margin-top: 12px; }
.phero__tagline::before { content: "\201C"; }
.phero__tagline::after { content: "\201D"; }
.phero__meta2 { font-size: 14px; color: var(--ink); font-weight: 600; margin-top: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.phero__meta2 .sep { color: var(--line-2); font-weight: 400; }

/* 本体 2カラム */
.pbody { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.ptrio { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; align-items: start; }
@media (max-width: 520px) { .ptrio { grid-template-columns: 1fr; } }
.pduo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
@media (max-width: 600px) { .pduo { grid-template-columns: 1fr; } }
.paside { display: flex; flex-direction: column; gap: 16px; }
.pmain { display: flex; flex-direction: column; gap: 16px; }

/* ◆ セクションカード */
.pcard { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.pcard__head { background: var(--surface-2); padding: 12px 18px; font-size: 13px; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 8px; }
.pcard__head::before { content: "◆"; color: var(--accent); font-size: 9px; }
.pcard__head--ico::before { content: none; }
.pcard__ico { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 8px; background: rgba(0,87,184,0.1); background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent); flex-shrink: 0; }
.pcard__ico svg { width: 15px; height: 15px; }
.pstat__ico { display: inline-flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 6px; }
.pstat__ico svg { width: 18px; height: 18px; }

/* SNS リンク */
.sociallinks { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 4px; }
.sociallink { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.15s; }
.sociallink svg { width: 20px; height: 20px; }
a.sociallink:hover { transform: translateY(-2px); }
a.sl--instagram:hover { color: #e1306c; border-color: #e1306c; }
a.sl--x:hover { color: #111; border-color: #111; }
a.sl--youtube:hover { color: #ff0000; border-color: #ff0000; }
a.sl--tiktok:hover { color: #111; border-color: #111; }
a.sl--line:hover { color: #06c755; border-color: #06c755; }
a.sl--website:hover { color: var(--accent); border-color: var(--accent); }
.sl--off { color: var(--line-2); background: var(--surface-2); cursor: default; }
.pcard__body { padding: 18px; }

/* 情報テーブル */
.infotable { display: flex; flex-direction: column; }
.inforow { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 14px; align-items: baseline; }
.inforow:first-child { border-top: none; padding-top: 0; }
.inforow:last-child { padding-bottom: 0; }
.inforow__k { color: var(--ink-faint); white-space: nowrap; }
.inforow__v { color: var(--ink); font-weight: 700; text-align: right; }
.plink { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-top: 1px solid var(--line); font-size: 14px; color: var(--accent); font-weight: 500; word-break: break-all; }
.plink:first-child { border-top: none; }
.actions-stack { display: flex; flex-direction: column; gap: 10px; }

/* 本文フィールド */
.field { margin-bottom: 16px; }
.field:last-child { margin-bottom: 0; }
.field__label { font-size: 12.5px; color: var(--ink-faint); margin-bottom: 4px; }
.field__value { font-size: 15px; color: var(--ink); white-space: pre-wrap; line-height: 1.85; }
.field--inline { display: flex; gap: 12px; align-items: baseline; }
.field--inline .field__label { min-width: 116px; flex-shrink: 0; margin-bottom: 0; }
.detail__link { color: var(--accent); word-break: break-all; }
.detail__link:hover { text-decoration: underline; }

/* スケジュール */
.schedule-list { display: flex; flex-direction: column; gap: 10px; }
.schedule-item { padding: 14px 16px; border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--radius-sm); background: var(--surface-2); }
.schedule-item__date { font-size: 12.5px; color: var(--accent); font-weight: 600; }
.schedule-item__title { font-size: 15px; font-weight: 700; margin-top: 3px; }
.schedule-item__meta { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.schedule-item__note { font-size: 13.5px; color: var(--ink-soft); margin-top: 6px; white-space: pre-wrap; }
.schedule-item__link { display: inline-block; margin-top: 8px; font-size: 13px; color: var(--accent); font-weight: 600; }

/* 動画 */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
/* hidden 属性をクラスの display 指定より優先（絞り込みで確実に非表示にする） */
[hidden] { display: none !important; }
.video-card { display: block; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--surface); transition: border-color 0.18s, transform 0.18s; }
.video-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.video-card__thumb { position: relative; aspect-ratio: 16 / 9; background: var(--surface-2); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card__play { position: absolute; width: 42px; height: 42px; border-radius: 50%; background: rgba(0,87,184,0.9); display: flex; align-items: center; justify-content: center; }
.video-card__play::after { content: ""; border-style: solid; border-width: 7px 0 7px 12px; border-color: transparent transparent transparent #fff; margin-left: 3px; }
.video-card__body { padding: 11px 12px 13px; }
.video-card__title { font-size: 13px; font-weight: 600; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-card__date { font-size: 11px; color: var(--ink-faint); margin-top: 5px; }
.video-card__by { font-size: 11.5px; font-weight: 700; color: var(--accent); margin-top: 6px; display: flex; align-items: center; gap: 6px; }
.video-card__by span { font-size: 10px; font-weight: 800; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 1px 7px; }

/* 記事 */
.article-list { display: flex; flex-direction: column; }
.article-item { display: block; padding: 14px 0; border-top: 1px solid var(--line); transition: padding-left 0.18s; }
.article-item:first-child { border-top: none; padding-top: 0; }
.article-item:hover { padding-left: 5px; }
.article-item__cat { display: inline-block; font-size: 11px; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 2px 9px; border-radius: 999px; margin-bottom: 8px; }
.article-item__title { font-size: 15px; font-weight: 700; line-height: 1.5; }
.article-item__title .ext { color: var(--ink-faint); font-size: 12px; font-weight: 400; }
.article-item__excerpt { font-size: 13.5px; color: var(--ink-soft); margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-item__meta { font-size: 11px; color: var(--ink-faint); margin-top: 6px; }

/* 経歴タイムライン */
.tl { position: relative; padding-left: 22px; }
.tl::before { content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--accent), var(--line-2)); }
.tl__item { position: relative; padding-bottom: 20px; }
.tl__item:last-child { padding-bottom: 0; }
.tl__item::before { content: ""; position: absolute; left: -21px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--surface); box-shadow: 0 0 0 2px var(--accent); }
.tl__period { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 3px; }
.tl__title { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 5px; }
.tl__points { margin: 0; padding-left: 16px; }
.tl__points li { font-size: 13px; color: var(--ink-soft); line-height: 1.85; }
.tl__desc { font-size: 13px; color: var(--ink-soft); line-height: 1.8; }

/* 実績ハイライト（数字バッジ） */
.pstats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.pstat { background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; padding: 14px 8px; text-align: center; }
.pstat__num { font-size: 26px; font-weight: 800; color: var(--accent); line-height: 1.1; letter-spacing: -0.02em; }
.pstat__unit { font-size: 13px; font-weight: 700; margin-left: 2px; }
.pstat__label { font-size: 11px; color: var(--ink-soft); margin-top: 6px; line-height: 1.5; white-space: pre-line; }
@media (max-width: 420px) { .pstat__num { font-size: 21px; } .pstat__label { font-size: 10px; } }

/* リッチな経歴リード文 */
.biolead { font-size: 13.5px; line-height: 1.95; color: var(--ink); background: var(--surface-2); border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; padding: 13px 15px; }
.biolead .hi { color: var(--accent); font-weight: 800; }

/* 制作実績グリッド */
.wnote { font-size: 12px; color: var(--ink-soft); background: var(--surface-2); border-radius: 8px; padding: 9px 12px; margin-bottom: 12px; line-height: 1.7; }
.wgrid { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x proximity; padding: 2px 0 10px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.wgrid::-webkit-scrollbar { height: 7px; }
.wgrid::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.wcard { flex: 0 0 210px; scroll-snap-align: start; display: flex; flex-direction: column; min-height: 100px; text-decoration: none; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; transition: background 0.15s, border-color 0.15s; }
.wcard:hover { background: var(--surface-2); border-color: var(--ink-soft); }
.wcard__top { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.wcard__no { font-size: 11px; font-weight: 800; color: var(--ink-faint); font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }
.wcard__no::after { content: ""; display: inline-block; width: 12px; height: 1px; background: var(--line-2); vertical-align: middle; margin-left: 8px; }
.wcard__cat { font-size: 10.5px; color: var(--ink-soft); font-weight: 600; }
.wcard__name { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.42; }
.wcard__host { font-size: 10px; color: var(--ink-faint); margin-top: auto; padding-top: 8px; display: flex; align-items: center; gap: 4px; word-break: break-all; }
.wcard__arr { color: var(--accent); flex-shrink: 0; }
@media (max-width: 360px) { .wgrid { grid-template-columns: 1fr; } }

/* 動画・リール実績 */
.mwgrid { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x proximity; margin-top: 10px; padding: 2px 0 10px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
.mwgrid::-webkit-scrollbar { height: 7px; }
.mwgrid::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.mwcard { flex: 0 0 124px; scroll-snap-align: start; text-decoration: none; }
.mwcard__thumb { position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 1 / 1; border-radius: 11px; overflow: hidden; background: #0a0e1a; border: 1px solid var(--line); }
.mwcard__img { width: 100%; height: 100%; object-fit: cover; }
.mwcard__pic { color: #fff; display: flex; }
.mwcard__pic svg { width: 36px; height: 36px; }
.mw--instagram .mwcard__thumb { background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%); border: 0; }
.mw--facebook .mwcard__thumb { background: #1877f2; border: 0; }
.mw--youtube .mwcard__thumb { background: #000; }
.mwcard__play { position: absolute; width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; }
.mwcard__play::after { content: ""; border-left: 11px solid #fff; border-top: 7px solid transparent; border-bottom: 7px solid transparent; margin-left: 3px; }
.mwcard:hover .mwcard__thumb { filter: brightness(1.08); }
.mwcard__name { display: block; font-size: 11px; color: var(--ink-soft); margin-top: 6px; text-align: center; font-weight: 600; }

/* 動画・リール：公式埋め込み */
.mwgroup + .mwgroup { margin-top: 20px; }
.mwgroup__label { font-size: 12px; font-weight: 700; color: var(--ink-faint); letter-spacing: 0.04em; margin: 4px 0 2px; }
.mwembeds { display: flex; gap: 14px; margin-top: 8px; overflow-x: auto; padding: 4px 2px 14px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.mwembeds::-webkit-scrollbar { height: 8px; }
.mwembeds::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }
.mwembed { flex: 0 0 auto; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: #000; box-shadow: var(--shadow); scroll-snap-align: start; }
.mwembed iframe { width: 100%; display: block; border: 0; }
/* フル動画：16:9 全体が見えるサイズ */
.mwembed--yt { width: 400px; aspect-ratio: 16 / 9; }
.mwembed--yt iframe { height: 100%; }
/* リール・ショート：縦型コンパクト */
/* Instagram / Facebook の公式埋め込みは最低幅を確保しないとUIが崩れる */
.mwembed--ig { width: 326px; background: #fff; }
.mwembed--ig iframe { height: 540px; }
.mwembed--fb { width: 326px; background: #000; }
.mwembed--fb iframe { height: 540px; }
.mwembed--short { width: 232px; aspect-ratio: 9 / 16; }
.mwembed--short iframe { height: 100%; }
.mwembed--link { width: 232px; display: flex; align-items: center; justify-content: center; aspect-ratio: 9 / 16; background: var(--surface-2); color: var(--accent); font-weight: 700; text-decoration: none; }
@media (max-width: 560px) { .mwembed--yt { width: 300px; } }

/* オリジナルキャラクターIP（Ordinary Japanese Life） */
.ojl { display: flex; flex-direction: column; gap: 16px; }
.ojl__head { display: flex; align-items: center; gap: 14px; }
.ojl__logo { width: 56px; height: 56px; object-fit: contain; border-radius: 12px; background: #fff; border: 1px solid var(--line); padding: 6px; flex-shrink: 0; }
.ojl__title { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: 0.01em; }
.ojl__sub { font-size: 13px; color: var(--ink-soft); margin-top: 1px; }
.ojl__handle { font-size: 12px; color: var(--accent); font-weight: 700; margin-top: 2px; }
.ojl__status { align-self: flex-start; display: inline-block; font-size: 12px; font-weight: 700; color: #92400e; background: #fef3c7; border: 1px solid #fcd34d; border-radius: 999px; padding: 6px 14px; }
.ojl__status--center { align-self: center; margin-top: 10px; }
.ojl__role { font-size: 12.5px; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; line-height: 1.5; }
.ojl__role span { display: inline-block; font-weight: 700; color: var(--ink-faint); margin-right: 8px; font-size: 11px; }
.ojl__concept { font-size: 14px; line-height: 1.85; color: var(--ink); margin: 0; }
.ojl__about { font-size: 13px; line-height: 1.8; color: var(--ink-soft); margin: 0; }
.ojl__label { font-size: 12px; font-weight: 700; color: var(--ink-faint); letter-spacing: 0.04em; margin: 4px 0 -4px; }
.ojl__chars { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.ojlchar { background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; padding: 14px; text-align: center; }
.ojlchar__ph { width: 84px; height: 84px; margin: 0 auto 10px; border-radius: 50%; background: #fff; border: 1px solid var(--line); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.ojlchar__ph img { width: 100%; height: 100%; object-fit: contain; }
.ojlchar__ph--none { color: var(--ink-faint); font-size: 26px; font-weight: 800; background: var(--surface); }
.ojlchar__name { font-size: 14px; font-weight: 800; color: var(--ink); }
.ojlchar__role { font-size: 11px; color: var(--accent); font-weight: 700; margin-top: 2px; }
.ojlchar__note { font-size: 11.5px; color: var(--ink-soft); line-height: 1.65; margin-top: 7px; text-align: left; }
.ojl__eps { display: flex; flex-wrap: wrap; gap: 8px; }
.ojlep { font-size: 12px; font-weight: 700; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; }
.ojl__summary { display: block; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); max-width: 480px; }
.ojl__summary img { width: 100%; display: block; }
.ojl__cta { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; background: var(--ink); color: #fff; font-weight: 700; font-size: 13px; font-family: inherit; border: 0; cursor: pointer; text-decoration: none; padding: 12px 22px; border-radius: 999px; transition: opacity 0.15s; }
.ojl__cta:hover { opacity: 0.85; }
@media (max-width: 560px) { .ojl__chars { grid-template-columns: repeat(2, 1fr); } }

/* OJL 全話の別ページ（オーバーレイ） */
.ojlpage { position: fixed; inset: 0; z-index: 1200; background: #fff; overflow-y: auto; -webkit-overflow-scrolling: touch; opacity: 0; visibility: hidden; transition: opacity 0.2s; }
.ojlpage.is-open { opacity: 1; visibility: visible; }
.ojlpage__in { max-width: 720px; margin: 0 auto; padding: 0 20px 60px; }
.ojlpage__bar { position: sticky; top: 0; z-index: 2; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); margin: 0 -20px; padding: 12px 20px; border-bottom: 1px solid var(--line); }
.ojlpage__close { font-family: inherit; font-size: 14px; font-weight: 700; color: var(--ink); background: none; border: 0; cursor: pointer; padding: 6px 0; }
.ojlpage__hero { text-align: center; padding: 32px 0 24px; border-bottom: 1px solid var(--line); }
.ojlpage__logo { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 14px; display: block; border-radius: 16px; background: #fff; border: 1px solid var(--line); padding: 8px; }
.ojlpage__title { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: 0.01em; }
.ojlpage__sub { font-size: 14px; color: var(--ink-soft); margin-top: 4px; }
.ojlpage__lead { font-size: 14.5px; line-height: 1.9; color: var(--ink); margin: 26px 0 0; }
.ojlpage__about { font-size: 13.5px; line-height: 1.85; color: var(--ink-soft); margin: 14px 0 0; }
.ojlpage__h { font-size: 16px; font-weight: 800; color: var(--ink); margin: 38px 0 16px; padding-bottom: 10px; border-bottom: 2px solid var(--ink); }
.ojl__chars--page { margin-bottom: 8px; }
/* 作品ギャラリー（4列グリッド） */
.ojlgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.ojlgrid__item { display: block; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: #fff; aspect-ratio: 1 / 1; transition: transform 0.15s, border-color 0.15s; }
.ojlgrid__item:hover { transform: translateY(-2px); border-color: var(--accent); }
.ojlgrid__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 720px) { .ojlgrid { grid-template-columns: repeat(2, 1fr); } }
.ojlpage__foot { margin-top: 40px; text-align: center; }
.ojlpage__foot .ojl__cta { align-self: center; }

/* 講習会 内容モーダル */
.sesmodal { position: fixed; inset: 0; z-index: 1300; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(17,17,20,0.55); opacity: 0; visibility: hidden; transition: opacity 0.2s; }
.sesmodal.is-open { opacity: 1; visibility: visible; }
.sesmodal__panel { position: relative; width: 100%; max-width: 520px; max-height: 88vh; overflow-y: auto; background: #fff; border-radius: 18px; padding: 28px 26px 26px; box-shadow: 0 24px 60px rgba(0,0,0,0.3); -webkit-overflow-scrolling: touch; }
.sesmodal__close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); font-size: 15px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.sesmodal__close:hover { background: var(--surface-2); color: var(--ink); }
.sesmodal__top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.sesmodal__title { font-size: 21px; font-weight: 800; color: var(--ink); line-height: 1.4; margin: 0; }
.sesmodal__lead { font-size: 14px; font-weight: 700; color: var(--accent); margin: 10px 0 0; line-height: 1.7; }
.sesmodal__meta { margin: 18px 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.sesmodal__row { display: flex; font-size: 13.5px; border-bottom: 1px solid var(--line); }
.sesmodal__row:last-child { border-bottom: 0; }
.sesmodal__l { flex-shrink: 0; width: 84px; padding: 10px 12px; background: var(--surface-2); color: var(--ink-faint); font-weight: 700; font-size: 12px; }
.sesmodal__v { flex: 1; padding: 10px 12px; color: var(--ink); }
.sesmodal__h { font-size: 13px; font-weight: 800; color: var(--ink); margin: 20px 0 8px; padding-left: 11px; border-left: 3px solid var(--accent); }
.sesmodal__desc { font-size: 13.5px; line-height: 1.85; color: var(--ink-soft); margin: 0; }
.sesmodal__learn { margin: 0; padding-left: 20px; }
.sesmodal__learn li { font-size: 13.5px; line-height: 1.7; color: var(--ink); margin-bottom: 6px; }
.sesmodal__foot { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.sesmodal__cta { display: block; text-align: center; background: var(--accent); color: #fff; font-weight: 700; font-size: 15px; text-decoration: none; padding: 14px; border-radius: 12px; transition: opacity 0.15s; }
.sesmodal__cta:hover { opacity: 0.88; }
.sesmodal__cta--ghost { background: var(--surface); color: var(--accent); border: 1px solid var(--accent-line); }
.sesmodal__cta--ghost:hover { background: var(--accent-soft); opacity: 1; }

/* 特設サイト（講座デッキ）別ページ */
.deckpage { position: fixed; inset: 0; z-index: 1250; background: #fff; overflow-y: auto; -webkit-overflow-scrolling: touch; opacity: 0; visibility: hidden; transition: opacity 0.2s; }
.deckpage.is-open { opacity: 1; visibility: visible; }
.deckpage__bar { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); padding: 12px 18px; border-bottom: 1px solid var(--line); }
.deckpage__close { font-family: inherit; font-size: 14px; font-weight: 700; color: var(--ink); background: none; border: 0; cursor: pointer; padding: 6px 0; }
.deckpage__label { font-size: 12px; font-weight: 700; color: var(--ink-faint); letter-spacing: 0.04em; }
.sesmodal__prof { font-family: inherit; font-size: 13px; font-weight: 700; color: var(--ink-soft); background: none; border: 0; cursor: pointer; padding: 4px; text-align: center; }
.sesmodal__prof:hover { color: var(--accent); }

/* 大会について：LP強化 */
.about-stats { margin: 18px 0 4px; }
.voices { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; }
.voice { display: flex; align-items: center; gap: 12px; text-decoration: none; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; transition: border-color 0.15s, background 0.15s; }
.voice:hover { border-color: var(--accent); background: var(--surface-2); }
.voice__av { width: 40px; height: 40px; border-radius: 50%; background: #18181b; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 17px; flex-shrink: 0; }
.voice__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.voice__name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.voice__note { font-size: 11px; color: var(--ink-faint); margin-top: 2px; }
.voice__arr { color: var(--accent); font-weight: 800; flex-shrink: 0; }
.about-cta { margin-top: 22px; background: var(--ink); color: #fff; border-radius: 18px; padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px); text-align: center; }
.about-cta__title { font-size: clamp(22px, 4.5vw, 34px); font-weight: 800; letter-spacing: -0.02em; }
.about-cta__title em { color: #7fb0f5; font-style: normal; }
.about-cta__sub { font-size: 14px; color: rgba(255,255,255,0.78); margin: 14px 0 22px; line-height: 1.85; }

/* プロフィール：読み物バナー */
.storybanner { background: linear-gradient(135deg, #1c160d 0%, #3a2e1c 100%); color: #f4efe6; border-radius: 16px; padding: clamp(22px, 4vw, 34px); text-align: center; }
.storybanner__label { font-size: 11px; letter-spacing: 0.24em; color: #c9a14a; font-weight: 800; }
.storybanner__title { font-size: clamp(18px, 3.6vw, 25px); font-weight: 800; margin: 10px 0 6px; font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; letter-spacing: 0.01em; }
.storybanner__sub { font-size: 12.5px; color: rgba(244,239,230,0.72); margin-bottom: 18px; }
.storybanner__btn { background: #c9a14a; color: #1c160d; border: none; }
.storybanner__btn:hover { filter: brightness(1.06); }

/* ONE STORY BOOK バナー（全員統一・タイトルのみ可変） */
.osbook { position: relative; border-radius: 16px; overflow: hidden; background-size: cover; background-position: center; min-height: 230px; display: flex; align-items: flex-end; box-shadow: var(--shadow); }
.osbook[data-nocover] { background: linear-gradient(135deg, #1c160d, #3a2e1c); }
.osbook__in { position: relative; z-index: 1; width: 100%; padding: clamp(22px, 4vw, 34px); color: #f4efe6; background: linear-gradient(180deg, rgba(12,10,6,0) 0%, rgba(12,10,6,0.4) 38%, rgba(12,10,6,0.86) 100%); }
.osbook__mark { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.28em; color: #f4efe6; border: 1px solid rgba(244,239,230,0.55); border-radius: 999px; padding: 5px 14px; margin-bottom: 12px; }
.osbook__title { font-size: clamp(20px, 4vw, 28px); font-weight: 800; line-height: 1.5; font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; letter-spacing: 0.01em; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.osbook__author { font-size: 12.5px; color: rgba(244,239,230,0.82); margin-top: 7px; }
.osbook__btn { margin-top: 16px; border: none; background: #f4efe6; color: #1c160d; font-weight: 800; font-size: 13px; border-radius: 10px; padding: 11px 22px; cursor: pointer; }
.osbook__btn:hover { filter: brightness(1.05); }

/* ONE STORY BOOK：本の列 */
.booksec { margin-bottom: 16px; }
.booksec__head { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.booksec__label { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; color: var(--ink-soft); }
.booksec__label svg { width: 16px; height: 16px; color: var(--accent); }
.booksec__all { margin-left: auto; border: none; background: none; color: var(--accent); font-weight: 700; font-size: 12.5px; cursor: pointer; }
.bookrow { display: flex; gap: 14px; overflow-x: auto; padding: 4px 2px 12px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.bookcard { flex: 0 0 132px; background: none; border: none; padding: 0; cursor: pointer; text-align: left; }
.bookcard--soon { cursor: default; }
.bookcover { position: relative; aspect-ratio: 3 / 4.2; border-radius: 3px 7px 7px 3px; overflow: hidden; background: linear-gradient(135deg, #241d12, #3f3120); box-shadow: 0 12px 24px -10px rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; transition: transform 0.18s, box-shadow 0.18s; }
.bookcard:hover .bookcover { transform: translateY(-3px); box-shadow: 0 18px 30px -10px rgba(0,0,0,0.55); }
.bookcover img { width: 100%; height: 100%; object-fit: cover; }
.bookcover__img { position: absolute; inset: 0; z-index: 1; background: #fff; }
.bookcover__edge { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; z-index: 2; background: linear-gradient(90deg, rgba(255,255,255,0.22), rgba(255,255,255,0) 60%, rgba(0,0,0,0.18)); }
.bookcover__txt { padding: 16px 13px; text-align: center; color: #f4efe6; display: flex; flex-direction: column; height: 100%; box-sizing: border-box; }
.bookcover__mark { font-size: 7.5px; letter-spacing: 0.18em; color: #c9a14a; font-weight: 800; }
.bookcover__title { font-size: 16px; font-weight: 800; font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif; line-height: 1.45; margin-top: 12px; }
.bookcover__author { font-size: 10px; color: rgba(244,239,230,0.7); margin-top: auto; }
.bookcover--soon { background: var(--surface-2); border: 1px dashed var(--line-2); box-shadow: none; }
.bookcover__soon { font-size: 12px; color: var(--ink-faint); font-weight: 700; }
.bookcard__cap { font-size: 12px; font-weight: 700; color: var(--ink); margin-top: 8px; line-height: 1.4; }
.bookcard--soon .bookcard__cap { color: var(--ink-faint); font-weight: 600; }

/* 広告バナー */
.adbanner { position: relative; display: block; border-radius: 14px; overflow: hidden; margin-bottom: 16px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 28px -10px rgba(15,30,50,0.3); transition: box-shadow 0.18s, transform 0.18s; line-height: 0; }
.adbanner:hover { box-shadow: 0 16px 34px -10px rgba(15,30,50,0.38); transform: translateY(-2px); }
.adbanner img { width: 100%; height: auto; display: block; }
.adbanner__tag { position: absolute; top: 10px; left: 10px; z-index: 1; font-size: 10px; font-weight: 800; letter-spacing: 0.14em; color: #fff; background: #18181b; border-radius: 6px; padding: 4px 11px; box-shadow: 0 2px 8px rgba(0,0,0,0.28); }

/* 本棚オーバーレイ（Kindleライブラリ風） */
.bookshelf { position: fixed; inset: 0; z-index: 190; background: #ffffff; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.bookshelf.is-open { opacity: 1; visibility: visible; }
.shelf__bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: #fff; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.shelf__title { font-size: 14px; font-weight: 800; color: var(--ink); letter-spacing: 0.04em; }
.shelf__close { border: none; background: none; font-size: 13px; font-weight: 700; color: var(--ink-soft); cursor: pointer; }
.shelf__body { flex: 1; overflow-y: auto; padding: clamp(24px, 5vw, 48px) clamp(18px, 5vw, 40px); }
.shelf__grid { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: clamp(18px, 4vw, 34px) 18px; }
@media (max-width: 420px) { .shelf__grid { grid-template-columns: repeat(3, 1fr); gap: 18px 12px; } }

/* ===== Kindle風リーダー ===== */
body.reader-lock { overflow: hidden; }
.reader { --rdbg: #ffffff; --rdink: #232323; --rdink2: #111111; --rdsoft: #555; --rdsub: #999; --rdbar: #f6f6f5; --rdline: #ececec; --rdaccent: #a6824a; --rdfs: 15.5px;
    position: fixed; inset: 0; z-index: 200; background: var(--rdbg); display: flex; flex-direction: column; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); visibility: hidden; }
.reader.is-open { transform: none; visibility: visible; }
.reader.rd-theme-sepia { --rdbg: #f3e7cd; --rdink: #43381f; --rdink2: #2e2611; --rdsoft: #6b5a33; --rdsub: #9a8763; --rdbar: #ecdfc1; --rdline: #ddccaa; --rdaccent: #9a7b34; }
.reader.rd-theme-dark { --rdbg: #14130e; --rdink: #d7d1c4; --rdink2: #ece7da; --rdsoft: #a59e8c; --rdsub: #8a8472; --rdbar: #1e1c15; --rdline: #34302a; --rdaccent: #c9a14a; }
.reader.rd-font-s { --rdfs: 14px; }
.reader.rd-font-m { --rdfs: 15.5px; }
.reader.rd-font-l { --rdfs: 17.5px; }
.reader__bar { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 16px; background: var(--rdbar); border-bottom: 1px solid var(--rdline); flex-shrink: 0; }
.reader__barr { display: flex; align-items: center; gap: 4px; }
.reader__t { font-size: 13px; font-weight: 700; color: var(--rdsoft); flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.reader__btn { background: none; border: none; font-size: 13px; color: var(--rdsoft); cursor: pointer; font-weight: 700; padding: 6px 8px; border-radius: 8px; }
.reader__aa { border: 1px solid var(--rdline); font-family: Georgia, serif; }
.reader__settings { background: var(--rdbar); border-bottom: 1px solid var(--rdline); padding: 12px 16px; display: flex; flex-direction: column; gap: 12px; }
.rset__row { display: flex; align-items: center; gap: 10px; }
.rset__lbl { font-size: 12px; font-weight: 700; color: var(--rdsub); min-width: 64px; }
.rset__b { border: 1px solid var(--rdline); background: var(--rdbg); color: var(--rdink); border-radius: 8px; padding: 7px 14px; font-size: 13px; font-weight: 700; cursor: pointer; }
.rset__sw { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--rdline); cursor: pointer; }
.rset__sw--light { background: #f7f3ea; }
.rset__sw--sepia { background: #f0e2c2; }
.rset__sw--dark { background: #1e1c15; }
.reader__progress { height: 3px; background: var(--rdline); flex-shrink: 0; }
.reader__progress i { display: block; height: 100%; width: 0; background: var(--rdaccent); transition: width 0.3s; }
.reader__stage { flex: 1; overflow-y: auto; padding: clamp(28px, 6vw, 60px) clamp(20px, 7vw, 48px) clamp(40px, 8vw, 70px); -webkit-overflow-scrolling: touch; }
.reader__stage > * { max-width: 600px; margin: 0 auto; }
.reader__nav { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 16px; background: var(--rdbar); border-top: 1px solid var(--rdline); flex-shrink: 0; padding-bottom: calc(11px + env(safe-area-inset-bottom)); position: relative; z-index: 3; }
.reader__navbtn { background: var(--rdbg); border: 1px solid var(--rdline); border-radius: 10px; padding: 9px 16px; font-size: 13px; font-weight: 700; color: var(--rdink); cursor: pointer; }
.reader__navbtn:disabled { opacity: 0.35; cursor: default; }
.reader__count { font-size: 12px; color: var(--rdsub); font-variant-numeric: tabular-nums; white-space: nowrap; text-align: center; }
/* 左右タップでページ送り（中央は選択用に空ける） */
.reader__zone { position: absolute; top: 96px; bottom: 64px; width: 20%; border: none; background: transparent; cursor: pointer; z-index: 2; padding: 0; -webkit-tap-highlight-color: transparent; }
.reader__zone--prev { left: 0; }
.reader__zone--next { right: 0; }
.reader__zone:disabled { pointer-events: none; }

.rd-ch, .rd-cover, .rd-toc { font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif; color: var(--rdink); }
.rd-in { animation: rdIn 0.34s ease; }
.rd-in-prev { animation: rdInPrev 0.34s ease; }
@keyframes rdIn { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: none; } }
@keyframes rdInPrev { from { opacity: 0; transform: translateX(-16px); } to { opacity: 1; transform: none; } }
.rd-ch__label { font-size: 12px; letter-spacing: 0.2em; color: var(--rdaccent); font-weight: 700; }
.rd-ch__title { font-size: calc(var(--rdfs) * 1.5); font-weight: 800; line-height: 1.6; margin: 10px 0 28px; color: var(--rdink2); }
.rd-lead { font-size: var(--rdfs); font-weight: 700; line-height: 2; color: var(--rdink); border-left: 3px solid var(--rdaccent); padding-left: 14px; margin: 0 0 26px; }
.rd-p { font-size: var(--rdfs); line-height: 2.25; margin: 0 0 14px; text-align: justify; text-indent: 1em; }
.rd-q { font-size: calc(var(--rdfs) * 1.05); font-weight: 700; line-height: 1.95; color: var(--rdink2); text-align: center; border-top: 1px solid var(--rdline); border-bottom: 1px solid var(--rdline); padding: 20px 16px; margin: 30px 0; }
.rd-end { text-align: right; font-size: calc(var(--rdfs) * 0.86); color: var(--rdaccent); margin-top: 24px; }
.rd-cover { text-align: center; padding-top: 7vh; }
.rd-cover__label { font-size: 12px; letter-spacing: 0.4em; color: var(--rdaccent); font-weight: 700; }
.rd-cover__title { font-size: clamp(26px, 6.5vw, 40px); font-weight: 800; line-height: 1.5; margin: 18px 0 14px; color: var(--rdink2); }
.rd-cover__sub { font-size: 14px; color: var(--rdsoft); line-height: 1.7; }
.rd-cover__author { font-size: 15px; font-weight: 800; margin-top: 24px; color: var(--rdink2); }
.rd-cover__meta { font-size: 12px; color: var(--rdsub); margin: 6px 0 30px; }
.rd-cover__btn { background: var(--rdink2); color: var(--rdbg); border: none; margin-top: 24px; }
/* 表紙画像 */
.rd-cover--img { padding-top: 2vh; }
.rd-cover__pic { max-width: 320px; margin: 0 auto 8px; border-radius: 8px; overflow: hidden; box-shadow: 0 18px 44px -14px rgba(0,0,0,0.5); }
.rd-cover__pic img { width: 100%; height: auto; display: block; }
.rd-toc__h { font-size: 13px; letter-spacing: 0.2em; color: var(--rdaccent); font-weight: 700; margin-bottom: 14px; }
.rd-toc__i { display: flex; gap: 14px; align-items: baseline; width: 100%; text-align: left; background: none; border: none; border-bottom: 1px solid var(--rdline); padding: 14px 4px; cursor: pointer; font-family: inherit; }
.rd-toc__i:hover { background: rgba(166,130,74,0.1); }
.rd-toc__n { font-size: 12px; font-weight: 800; color: var(--rdaccent); min-width: 52px; flex-shrink: 0; }
.rd-toc__t { font-size: 14.5px; color: var(--rdink); font-weight: 600; line-height: 1.5; }

/* 社長あいさつ */
.greet { display: grid; grid-template-columns: 260px 1fr; gap: clamp(20px, 4vw, 40px); align-items: stretch; }
.greet__photo { min-height: 320px; border-radius: 16px; overflow: hidden; background: linear-gradient(140deg, #3f3f46, #18181b); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 64px; font-weight: 800; border: 1px solid var(--line); box-shadow: var(--shadow); position: static; }
.greet__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.greet__lead { font-family: 'Noto Serif JP', Georgia, serif; font-size: clamp(19px, 3.2vw, 26px); font-weight: 600; letter-spacing: 0.02em; line-height: 1.7; color: var(--ink); margin-bottom: 22px; }
.greet__p { font-size: 15px; line-height: 2.1; color: var(--ink-soft); margin: 0 0 18px; }
.greet__sign { margin-top: 28px; text-align: right; }
.greet__role { display: block; font-size: 12px; color: var(--ink-faint); }
.greet__name { display: block; font-size: 19px; font-weight: 800; color: var(--ink); margin-top: 4px; }
@media (max-width: 640px) { .greet { grid-template-columns: 1fr; } .greet__photo { aspect-ratio: 4/5; min-height: 0; max-height: 72vh; position: static; } .greet__photo img { object-position: center top; } }

/* 写真集（アルバム） */
.ga-album { margin-bottom: 40px; }
.ga-album__head { margin-bottom: 16px; }
.ga-album__title { font-size: clamp(18px, 3.4vw, 24px); font-weight: 800; letter-spacing: -0.01em; }
.ga-album__sub { font-size: 12.5px; color: var(--ink-faint); letter-spacing: 0.04em; margin-top: 4px; }
.ga-grid { columns: 3 220px; column-gap: 12px; }
.ga-tile { position: relative; display: block; width: 100%; border: 0; padding: 0; margin: 0 0 12px; background: none; cursor: zoom-in; border-radius: 12px; overflow: hidden; break-inside: avoid; line-height: 0; box-shadow: var(--shadow); }
.ga-tile img { width: 100%; height: auto; display: block; transition: transform 0.5s cubic-bezier(.2,.7,.2,1), filter 0.3s ease; }
.ga-tile:hover img { transform: scale(1.06); filter: saturate(1.06) brightness(1.04); }
.ga-tile::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 60%; height: 100%; z-index: 2;
  background: linear-gradient(105deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg); opacity: 0; pointer-events: none;
}
.ga-tile:hover::after { animation: galShine 0.9s ease forwards; }
@media (max-width: 560px) { .ga-grid { columns: 2 140px; column-gap: 8px; } .ga-tile { margin-bottom: 8px; } }

/* 動画検索 */
.vsearch { display: flex; align-items: center; gap: 8px; border: 1px solid var(--line-2); background: var(--surface); border-radius: 12px; padding: 0 14px; margin: 14px 0 18px; }
.vsearch:focus-within { border-color: var(--accent); }
.vsearch__ic { width: 18px; height: 18px; color: var(--ink-faint); flex-shrink: 0; }
.vsearch__in { flex: 1; border: none; background: none; font: inherit; font-size: 14px; padding: 12px 0; color: var(--ink); outline: none; min-width: 0; }
.vsearch__empty { font-size: 13px; color: var(--ink-faint); text-align: center; padding: 20px 0; }
/* 動画フィルター（プルダウン） */
.vfilter { display: flex; align-items: center; gap: 12px; margin: 14px 0 18px; flex-wrap: wrap; }
.vfilter__label { font-size: 12.5px; font-weight: 700; color: var(--ink-faint); }
.vfilter__wrap { position: relative; flex: 1; min-width: 220px; max-width: 360px; }
.vfilter__sel { -webkit-appearance: none; -moz-appearance: none; appearance: none; width: 100%; font: inherit; font-size: 14px; font-weight: 700; color: var(--ink); background: var(--surface); border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 40px 12px 14px; cursor: pointer; outline: none; }
.vfilter__sel:focus { border-color: var(--accent); }
.vfilter__caret { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--ink-faint); pointer-events: none; }
.home-more { text-align: center; margin-top: 18px; }

/* 講師：タグ絞り込み */
.tagfilter { display: flex; flex-direction: column; gap: 12px; margin: 0 0 20px; }
.tagcat { display: grid; grid-template-columns: 92px 1fr; gap: 12px; align-items: start; }
.tagcat + .tagcat { border-top: 1px solid var(--line); padding-top: 12px; }
.tagcat--all { grid-template-columns: 1fr; }
.tagcat__label { font-size: 11px; font-weight: 800; color: var(--ink-faint); letter-spacing: 0.1em; padding-top: 8px; }
.tagcat__chips { display: flex; flex-wrap: wrap; gap: 8px; }
@media (max-width: 560px) { .tagcat { grid-template-columns: 1fr; gap: 6px; } .tagcat__label { padding-top: 0; } }
.tagfold { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); overflow: hidden; }
.tagfold__sum { width: 100%; border: 0; background: transparent; cursor: pointer; display: flex; align-items: center; gap: 10px; padding: 13px 16px; font: inherit; font-size: 13.5px; font-weight: 800; color: var(--ink); text-align: left; }
.tagfold__sum:hover { background: var(--surface-2); }
.tagfold__count { font-size: 11px; font-weight: 800; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 1px 9px; }
.tagfold__chev { margin-left: auto; color: var(--ink-faint); font-size: 12px; transition: transform 0.2s ease; }
.tagfold.is-open .tagfold__chev { transform: rotate(180deg); }
.tagfold.is-open .tagfold__sum { border-bottom: 1px solid var(--line); }
.tagfold__body { display: none; flex-direction: column; gap: 12px; padding: 14px 16px; }
.tagfold.is-open .tagfold__body { display: flex; }
.tagfold__body .tagcat:first-child { border-top: 0; padding-top: 0; }
.tagchip { border: 1px solid var(--line-2); background: var(--surface); color: var(--ink-soft); border-radius: 999px; padding: 7px 15px; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s; }
.tagchip:hover { border-color: var(--ink); color: var(--ink); }
.tagchip.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ライトボックス */
.lightbox { position: fixed; inset: 0; z-index: 220; background: rgba(10,12,18,0.94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.25s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lb__img { max-width: 92vw; max-height: 84vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); animation: rdIn 0.25s ease; }
.lb__close { position: absolute; top: 16px; right: 18px; width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255,255,255,0.12); color: #fff; font-size: 18px; cursor: pointer; }
.lb__close:hover { background: rgba(255,255,255,0.22); }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255,255,255,0.12); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; }
.lb__nav:hover { background: rgba(255,255,255,0.22); }
.lb__prev { left: 14px; }
.lb__next { right: 14px; }
.lb__count { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.8); font-size: 12px; font-variant-numeric: tabular-nums; }
@media (max-width: 560px) { .lb__nav { width: 40px; height: 40px; font-size: 22px; } }

/* ===== 共有（シェア） ===== */
/* 追従型 エントリーCTA */
.entry-fab {
  position: fixed; left: calc(50% + var(--sbw) / 2); bottom: 20px; bottom: calc(20px + env(safe-area-inset-bottom));
  transform: translate(-50%, 140%); z-index: 160;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 17px 40px; border-radius: 100px; text-decoration: none;
  min-width: min(460px, calc(100vw - 36px));
  font-size: clamp(14px, 1.6vw, 16px); font-weight: 700; letter-spacing: 0.1em; color: #2a200a;
  background: linear-gradient(135deg, #d9b45c 0%, #f3dc97 44%, #c2982f 100%);
  border: 1px solid rgba(168,128,38,0.55);
  box-shadow: 0 14px 34px -10px rgba(150,110,25,0.75), inset 0 1px 0 rgba(255,255,255,0.45);
  opacity: 0; pointer-events: none; overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), opacity 0.35s ease;
}
.entry-fab.is-show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }
.entry-fab:hover { box-shadow: 0 18px 40px -10px rgba(150,110,25,0.85), inset 0 1px 0 rgba(255,255,255,0.55); }
.entry-fab.is-show:hover { transform: translate(-50%, -3px); }
.entry-fab__label { position: relative; z-index: 1; }
.entry-fab__arr { position: relative; z-index: 1; transition: transform 0.2s ease; }
.entry-fab:hover .entry-fab__arr { transform: translateX(4px); }
.entry-fab__pulse {
  position: absolute; inset: 0; border-radius: 100px; pointer-events: none;
  box-shadow: 0 0 0 0 rgba(216,179,90,0.6); animation: entryFabPulse 2.4s ease-out infinite;
}
@keyframes entryFabPulse { 0% { box-shadow: 0 0 0 0 rgba(216,179,90,0.55); } 70%,100% { box-shadow: 0 0 0 16px rgba(216,179,90,0); } }
@media (prefers-reduced-motion: reduce) { .entry-fab__pulse { animation: none; } }
@media (max-width: 560px) {
  .entry-fab { padding: 15px 24px; font-size: 13.5px; min-width: calc(100vw - 28px); max-width: calc(100vw - 28px); }
}

.sharefab { position: fixed; right: 18px; bottom: 18px; bottom: calc(18px + env(safe-area-inset-bottom)); z-index: 150; width: 52px; height: 52px; border-radius: 50%; border: none; background: var(--ink); color: #fff; box-shadow: 0 12px 28px -8px rgba(15,30,50,0.5); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: transform 0.15s, filter 0.15s; }
.sharefab:hover { transform: translateY(-2px); filter: brightness(1.12); }
.sharefab svg { width: 22px; height: 22px; }
.pbar__share { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; border: 1px solid var(--line-2); background: var(--surface); color: var(--ink); border-radius: 999px; padding: 6px 13px; font-size: 12.5px; font-weight: 700; cursor: pointer; }
.pbar__share:hover { border-color: var(--ink); }
.pbar__share svg { width: 15px; height: 15px; }
.pbar__home { margin-left: 12px; }
.sharepop { position: fixed; inset: 0; z-index: 230; background: rgba(10,12,18,0.5); display: flex; align-items: flex-end; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.2s; }
.sharepop.is-open { opacity: 1; visibility: visible; }
.sharepop__card { background: var(--surface); width: 100%; max-width: 420px; border-radius: 18px 18px 0 0; padding: 22px; box-shadow: var(--shadow-lg); animation: rdIn 0.25s ease; }
.sharepop__h { font-size: 15px; font-weight: 800; }
.sharepop__t { font-size: 12.5px; color: var(--ink-soft); margin: 6px 0 18px; line-height: 1.6; }
.sharepop__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.shopt { display: flex; align-items: center; gap: 10px; text-decoration: none; border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; font-size: 13px; font-weight: 700; color: var(--ink); background: var(--surface); cursor: pointer; transition: border-color 0.15s, color 0.15s; }
.shopt svg { width: 20px; height: 20px; flex-shrink: 0; }
.sh--x:hover { color: #111; border-color: #111; }
.sh--line:hover { color: #06c755; border-color: #06c755; }
.sh--fb:hover { color: #1877f2; border-color: #1877f2; }
.sh--copy:hover { color: var(--accent); border-color: var(--accent); }
.sharepop__close { width: 100%; margin-top: 16px; border: none; background: var(--surface-2); border-radius: 12px; padding: 12px; font-weight: 700; cursor: pointer; color: var(--ink); }
.toast { position: fixed; left: 50%; bottom: 92px; transform: translateX(-50%) translateY(10px); z-index: 260; background: var(--ink); color: #fff; font-size: 13px; font-weight: 600; padding: 11px 20px; border-radius: 999px; opacity: 0; transition: opacity 0.25s, transform 0.25s; pointer-events: none; box-shadow: var(--shadow-lg); }
.toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (min-width: 560px) { .sharepop { align-items: center; } .sharepop__card { border-radius: 18px; } }

/* ---------- 仕上げ（ポリッシュ） ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 8px; }

.mcard { display: flex; flex-direction: column; }
.avatar { transition: box-shadow 0.2s; }
.mcard:hover .avatar { box-shadow: 0 0 0 3px var(--surface-2); }
.page-title, .lead__title, .phero__name, .sec-head__title { letter-spacing: -0.02em; }
.lead__title, .phero__name { font-weight: 700; }
.mcard__more { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12.5px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; opacity: 0.85; }
.mcard__more .arr { transition: transform 0.2s; }
.mcard:hover .mcard__more { opacity: 1; }
.mcard:hover .mcard__more .arr { transform: translateX(4px); }

.lead { position: relative; }
.lead::after { content: ""; position: absolute; top: -45%; left: -8%; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, var(--accent-soft), transparent 68%); pointer-events: none; z-index: 0; }
.lead__body, .lead__media { position: relative; z-index: 1; }
.lead__eyebrow { display: inline-flex; align-items: center; gap: 7px; }
.lead__eyebrow::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: var(--accent); }

.sec-head__title { position: relative; padding-left: 14px; }
.sec-head__title::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 18px; border-radius: 2px; background: var(--accent); }

.gallery__item, .video-card, .info-link, .mcard, .home-stat { will-change: transform; }
.side-promo { box-shadow: none; }

/* ============================================================
   講習会（AI × OSA）スライドデッキ
   ============================================================ */
/* 講習会スケジュール（カレンダー＋一覧） */
.sched { max-width: 760px; margin: 0 auto; padding: clamp(40px, 7vw, 72px) clamp(16px, 5vw, 32px) clamp(28px, 5vw, 48px); }
.sched__head { text-align: center; margin-bottom: 26px; }
.sched__title { font-size: clamp(22px, 4.5vw, 32px); font-weight: 800; letter-spacing: -0.02em; }
.sched__sub { font-size: 13px; color: var(--ink-soft); margin-top: 10px; line-height: 1.7; }
.cal { background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: clamp(14px, 3vw, 22px); box-shadow: var(--shadow); }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal__title { font-size: 16px; font-weight: 800; letter-spacing: 0.02em; }
.cal__nav { width: 36px; height: 36px; border: 1px solid var(--line-2); background: var(--surface); border-radius: 10px; font-size: 20px; line-height: 1; color: var(--ink); cursor: pointer; }
.cal__nav:hover { border-color: var(--ink); }
.cal__week { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 4px; }
.cal__wd { text-align: center; font-size: 11px; font-weight: 700; color: var(--ink-faint); padding: 4px 0; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal__cell { aspect-ratio: 1 / 1; border: 0; background: transparent; border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; font: inherit; color: var(--ink-soft); position: relative; }
.cal__cell--empty { visibility: hidden; }
.cal__cell .cal__d { font-size: 13px; font-weight: 600; }
.cal__cell.sun .cal__d { color: #d4536a; }
.cal__cell.sat .cal__d { color: #4a7fd0; }
.cal__cell.today { background: var(--surface-2); }
.cal__cell.today .cal__d { font-weight: 800; }
.cal__cell.has { cursor: pointer; background: color-mix(in srgb, var(--accent) 10%, transparent); }
.cal__cell.has .cal__d { color: var(--accent); font-weight: 800; }
.cal__cell.has:hover { background: color-mix(in srgb, var(--accent) 20%, transparent); }
.cal__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.seslist { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.sesitem { display: flex; align-items: stretch; gap: 14px; width: 100%; text-align: left; font: inherit; color: inherit; cursor: pointer; text-decoration: none; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; transition: border-color 0.15s, background 0.15s, box-shadow 0.4s; }
a.sesitem:hover, button.sesitem:hover { border-color: var(--accent); }
.sesitem.is-flash { box-shadow: 0 0 0 3px var(--accent); }
.sesitem__date { flex-shrink: 0; width: 52px; text-align: center; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); padding-right: 12px; }
.sesitem__md { font-size: 19px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.sesitem__dow { font-size: 11px; color: var(--ink-faint); }
.sesitem__body { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.sesitem__top { display: flex; align-items: center; gap: 7px; margin-bottom: 4px; }
.sestag { font-size: 10px; font-weight: 800; letter-spacing: 0.06em; color: #fff; background: var(--accent); border-radius: 5px; padding: 2px 7px; }
.sesno { font-size: 11px; font-weight: 700; color: var(--ink-faint); }
.sesitem__time { font-size: 11px; color: var(--ink-soft); font-weight: 600; }
.sesitem__title { font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.45; }
.sesitem__place { font-size: 12px; color: var(--ink-soft); margin-top: 3px; }
.sesitem__arr { align-self: center; color: var(--accent); font-weight: 800; flex-shrink: 0; }
.deck { margin: -1px 0; }
.slide {
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 88px clamp(20px, 5vw, 64px); position: relative; overflow: hidden;
}
.slide--dark { background: var(--ink); color: #fff; }
.slide--soft { background: var(--surface-2); }
.slide__kicker { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 22px; }
.slide--dark .slide__kicker { color: #7fb0f5; }
.slide__title { font-size: clamp(27px, 6vw, 54px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.32; max-width: 17em; }
.slide__title em { color: var(--accent); font-style: normal; }
.slide--dark .slide__title em { color: #7fb0f5; }
.slide__text { font-size: clamp(15px, 2.1vw, 19px); color: var(--ink-soft); margin-top: 22px; max-width: 34em; line-height: 1.9; }
.slide--dark .slide__text { color: rgba(255,255,255,0.82); }
.slide__svg { width: min(380px, 78vw); height: auto; color: var(--ink); margin-bottom: 36px; }
.slide--dark .slide__svg { color: #fff; }
.slide__cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 34px; }
.slide-down {
  position: absolute; bottom: 26px; left: 50%; margin-left: -23px;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  color: var(--ink); animation: aFloat 1.8s ease-in-out infinite; box-shadow: var(--shadow-lg);
}
.slide--dark .slide-down { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); color: #fff; box-shadow: none; }
.slide-down svg { width: 22px; height: 22px; }

.deck-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 38px; max-width: 720px; width: 100%; }
.deck-card { border: 1px solid var(--line); border-radius: 16px; padding: 26px; text-align: left; background: var(--surface); }
.slide--dark .deck-card { border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.04); }
.deck-card__svg { width: 52px; height: 52px; color: var(--accent); margin-bottom: 14px; }
.slide--dark .deck-card__svg { color: #7fb0f5; }
.deck-card__t { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; }
.deck-card__d { font-size: 14px; color: var(--ink-soft); margin-top: 10px; line-height: 1.85; }

/* 特設サイト LP：開催概要 */
.deck-sched { width: 100%; max-width: 560px; margin: 34px auto 0; text-align: left; }
.deck-info { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--surface); }
.slide--dark .deck-info { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.04); }
.deck-info__row { display: flex; font-size: 14px; border-bottom: 1px solid var(--line); }
.slide--dark .deck-info__row { border-bottom-color: rgba(255,255,255,0.12); }
.deck-info__row:last-child { border-bottom: 0; }
.deck-info__l { flex-shrink: 0; width: 96px; padding: 13px 16px; font-weight: 700; font-size: 12px; color: var(--ink-faint); }
.deck-info__v { flex: 1; padding: 13px 16px; font-weight: 600; }
.deck-learn { margin-top: 20px; }
.deck-learn__h { font-size: 13px; font-weight: 800; margin-bottom: 10px; opacity: 0.85; }
.deck-learn ul { margin: 0; padding-left: 20px; }
.deck-learn li { font-size: 14px; line-height: 1.8; margin-bottom: 6px; }
.deck-sched .slide__cta { margin-top: 26px; justify-content: flex-start; }
/* 特設サイト LP：講師（軽め） */
.deck-inst { width: 100%; max-width: 460px; margin: 32px auto 0; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.deck-inst__av { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(0,0,0,0.06); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; background: var(--surface-2); font-weight: 800; font-size: 32px; }
.deck-inst__av img, .deck-inst__av .avatar { width: 100%; height: 100%; object-fit: cover; }
.deck-inst__name { font-size: 19px; font-weight: 800; }
.deck-inst__name span { font-size: 13px; font-weight: 600; opacity: 0.6; margin-left: 6px; }
.deck-inst__title { font-size: 13.5px; color: var(--accent); font-weight: 700; margin-top: 2px; }
.slide--dark .deck-inst__title { color: #7fb0f5; }
.deck-inst__bio { font-size: 13.5px; line-height: 1.85; opacity: 0.85; margin: 12px 0 18px; }

/* ===== 特設サイト LP セクション ===== */
.lpsec { padding: 72px clamp(20px, 5vw, 56px); background: #fff; }
.lpsec--soft { background: var(--surface-2); }
.lpsec__in { max-width: 760px; margin: 0 auto; }
.lpsec__in--wide { max-width: 1120px; }
.lpsec__head { margin-bottom: 38px; }
.lpsec__head--center { text-align: center; }
.lpsec__lead--center { max-width: 30em; margin: 22px auto 38px; text-align: center; text-wrap: balance; line-height: 2; }
.lux { color: #c2982f !important; }
.lpcta-center { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; }
/* 2列レイアウト（News × ダイジェスト動画 など） */
.home2col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.home2col__col { min-width: 0; }
@media (max-width: 820px) { .home2col { grid-template-columns: 1fr; gap: 36px; } }
.lpsec__num { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 0.2em; color: var(--accent); }
.lpsec__title { font-size: clamp(24px, 4.6vw, 36px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.4; margin-top: 8px; text-wrap: balance; }
.lpsec__title em { color: var(--accent); font-style: normal; }
.lpsec__note { display: inline-block; font-size: 13px; font-weight: 700; color: var(--ink-faint); background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 3px 12px; margin-left: 10px; vertical-align: middle; }
.lpsec__disc { font-size: 11.5px; color: var(--ink-faint); margin-top: 16px; }
/* 3つの理由 */
.lp-reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp-reason { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px; }
.lp-reason__n { font-size: 30px; font-weight: 800; color: var(--accent); opacity: 0.5; line-height: 1; }
.lp-reason__t { font-size: 17px; font-weight: 800; margin: 12px 0 8px; letter-spacing: -0.01em; }
.lp-reason__d { font-size: 13.5px; line-height: 1.85; color: var(--ink-soft); margin: 0; }
/* 当日の流れ */
.lp-flow { display: flex; flex-direction: column; }
.lp-step { display: flex; gap: 18px; position: relative; padding-bottom: 26px; }
.lp-step:not(:last-child)::before { content: ""; position: absolute; left: 18px; top: 40px; bottom: 0; width: 2px; background: var(--line); }
.lp-step__n { flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; z-index: 1; }
.lp-step__b { padding-top: 5px; }
.lp-step__t { font-size: 16px; font-weight: 800; }
.lp-step__d { font-size: 13.5px; line-height: 1.8; color: var(--ink-soft); margin-top: 5px; }
/* 受講者の声 */
.lp-voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp-voice { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px 20px; margin: 0; }
.lp-voice blockquote { font-size: 13.5px; line-height: 1.9; color: var(--ink); margin: 0 0 14px; }
.lp-voice blockquote::before { content: "“"; font-size: 30px; color: var(--accent); opacity: 0.5; line-height: 0; vertical-align: -10px; margin-right: 2px; }
.lp-voice figcaption { font-size: 12px; font-weight: 700; color: var(--ink-faint); }
/* FAQ */
.lp-faq { display: flex; flex-direction: column; gap: 10px; }
.lp-q { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.lp-q summary { list-style: none; cursor: pointer; padding: 16px 48px 16px 18px; font-size: 14.5px; font-weight: 700; position: relative; }
.lp-q summary::-webkit-details-marker { display: none; }
.lp-q summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 20px; font-weight: 400; color: var(--accent); transition: transform 0.2s; }
.lp-q[open] summary::after { content: "−"; }
.lp-q__a { padding: 0 18px 18px; font-size: 13.5px; line-height: 1.85; color: var(--ink-soft); }
@media (max-width: 680px) {
  .lp-reasons, .lp-voices { grid-template-columns: 1fr; }
  .lpsec { padding: 56px 20px; }
}

/* ===== TOP シネマティックヒーロー ===== */
.hero2 { position: relative; min-height: 62vh; min-height: 62dvh; display: flex; align-items: flex-start; overflow: hidden; }
.hero2__bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; }
.hero2__shade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,8,18,0.42) 0%, rgba(5,8,18,0.0) 40%); }
.hero2__in { position: relative; max-width: 1180px; margin: 0 auto; width: 100%; padding: clamp(28px, 5vw, 52px) clamp(22px, 6vw, 80px) 0; color: #fff; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero2__award-label { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(22px, 4vw, 42px); font-weight: 300; letter-spacing: 0.22em; text-shadow: 0 2px 12px rgba(0,0,0,0.8); margin: 0; }
.hero2__entry-cta { font-family: 'Noto Sans JP', sans-serif; font-size: clamp(12px, 1.6vw, 15px); font-weight: 700; letter-spacing: 0.12em; color: #fff; text-decoration: none; border: 1px solid rgba(255,255,255,0.7); border-radius: 100px; padding: 8px 22px; background: rgba(255,255,255,0.12); backdrop-filter: blur(4px); transition: background 0.2s; text-shadow: 0 1px 6px rgba(0,0,0,0.7); }
.hero2__entry-cta:hover { background: rgba(255,255,255,0.22); }
.hero2__title { font-size: clamp(38px, 7.4vw, 78px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.06; text-wrap: balance; }
.hero2__sub { font-size: clamp(13.5px, 2.2vw, 17px); line-height: 1.85; opacity: 0.9; margin-top: 18px; max-width: 30em; }
.hero2__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 26px; }
.hero2__down { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.1); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; animation: lpBounce 1.8s ease-in-out infinite; z-index: 2; }
.hero2__down svg { width: 20px; height: 20px; }
/* 実績ストリップ */
.hometrust { background: var(--ink); color: #fff; padding: 4px 0; }
.hometrust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hometrust__item { text-align: center; padding: 30px 14px; border-left: 1px solid rgba(255,255,255,0.1); }
.hometrust__item:first-child { border-left: 0; }
.hometrust__num { font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.hometrust__num span { font-size: 14px; font-weight: 700; margin-left: 4px; opacity: 0.7; }
.hometrust__label { font-size: 11.5px; opacity: 0.66; margin-top: 9px; line-height: 1.5; }
/* メディア掲載バー */
.mediabar { background: #fff; padding: 26px 20px 28px; border-bottom: 1px solid var(--line); }
.mediabar .container { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mediabar__label {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.28em; color: #c2982f; text-transform: uppercase;
}
.mediabar__label span { opacity: 0.4; margin: 0 6px; }
.mediabar__items { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 28px; }
.mediabar__item {
  font-family: 'Noto Serif JP', Georgia, serif; font-size: clamp(15px, 2vw, 19px); font-weight: 600;
  letter-spacing: 0.04em; color: var(--ink-soft); text-decoration: none;
  position: relative; transition: color 0.18s; padding-bottom: 2px;
}
.mediabar__item::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: #c2982f; transition: right 0.25s ease; }
.mediabar__item:hover { color: var(--ink); }
.mediabar__item:hover::after { right: 0; }
@media (max-width: 680px) {
  .hero2 { min-height: 60vh; }
  .hero2__shade { background: linear-gradient(to bottom, rgba(5,8,18,0.48) 0%, rgba(5,8,18,0.0) 40%); }
  .hometrust__grid { grid-template-columns: repeat(2, 1fr); }
  .hometrust__item:nth-child(3) { border-left: 0; }
  .hometrust__item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.1); }
}
@media (prefers-reduced-motion: reduce) { .hero2__bg { animation: none; } .hero2__down { animation: none; } }

/* ===== 特設サイト LP（プレミアム） ===== */
.lp { padding-bottom: 76px; background: #fff; }
.lp em { color: var(--accent); font-style: normal; }
.btn--lg { padding: 16px 30px; font-size: 15px; border-radius: 999px; }
.btn--glass { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.4); color: #fff; backdrop-filter: blur(6px); }
.btn--glass:hover { background: rgba(255,255,255,0.22); border-color: #fff; }
/* HERO */
.lp-hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 90px clamp(20px,5vw,56px) 70px; background: radial-gradient(120% 90% at 50% 0%, #1b2a4a 0%, #0c1322 55%, #070b14 100%); color: #fff; overflow: hidden; }
.lp-hero__glow { position: absolute; top: -20%; left: 50%; transform: translateX(-50%); width: 720px; height: 720px; max-width: 130%; background: radial-gradient(circle, rgba(0,87,184,0.55) 0%, rgba(0,87,184,0) 65%); filter: blur(20px); pointer-events: none; }
.lp-hero__in { position: relative; max-width: 720px; }
.lp-hero__eyebrow { font-size: 12px; letter-spacing: 0.28em; font-weight: 800; color: #7fb0f5; margin-bottom: 22px; }
.lp-hero__count { display: inline-flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.lp-hero__count span { font-size: 15px; font-weight: 700; opacity: 0.8; }
.lp-hero__count strong { font-size: 56px; font-weight: 800; line-height: 1; color: #fff; letter-spacing: -0.02em; }
.lp-hero__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 22px; }
.lp-hero__chips span { font-size: 12.5px; font-weight: 700; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; padding: 6px 14px; }
.lp-hero__title { font-size: clamp(30px, 6.4vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.28; text-wrap: balance; }
.lp-hero__hook { font-size: clamp(14px, 2.6vw, 17px); opacity: 0.86; margin-top: 18px; text-wrap: balance; }
.lp-hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.lp-hero__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 26px; font-size: 12.5px; opacity: 0.78; }
.lp-hero__down { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); background: rgba(255,255,255,0.08); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; animation: lpBounce 1.8s ease-in-out infinite; }
.lp-hero__down svg { width: 20px; height: 20px; }
@keyframes lpBounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }
/* リード文 */
.lpsec__lead { font-size: 15px; line-height: 1.9; color: var(--ink-soft); margin: -18px 0 30px; max-width: 40em; text-wrap: pretty; }
/* 共感 */
.lp-pains { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.lp-pains li { position: relative; padding: 16px 18px 16px 50px; background: #fff; border: 1px solid var(--line); border-radius: 12px; font-size: 14.5px; font-weight: 600; }
.lp-pains li::before { content: "?"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.lp-empathy__turn { font-size: clamp(17px,3vw,22px); font-weight: 800; text-align: center; margin-top: 28px; letter-spacing: -0.01em; text-wrap: balance; }
.lp-empathy__turn b { color: var(--accent); }
/* つくれるもの */
.lp-make { display: flex; flex-wrap: wrap; gap: 10px; }
.lp-make__chip { font-size: 14px; font-weight: 700; color: var(--ink); background: var(--surface); border: 1px solid var(--line-2); border-radius: 12px; padding: 12px 18px; }
/* 最終CTA */
.lp-final { position: relative; text-align: center; padding: 88px clamp(20px,5vw,56px) 104px; background: radial-gradient(120% 100% at 50% 0%, #1b2a4a 0%, #0c1322 60%, #070b14 100%); color: #fff; overflow: hidden; }
.lp-final__glow { position: absolute; bottom: -30%; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; max-width: 130%; background: radial-gradient(circle, rgba(0,87,184,0.5) 0%, rgba(0,87,184,0) 65%); pointer-events: none; }
.lp-final__in { position: relative; max-width: 640px; margin: 0 auto; }
.lp-final__title { font-size: clamp(24px,5vw,40px); font-weight: 800; line-height: 1.4; letter-spacing: -0.02em; margin: 14px 0 0; text-wrap: balance; }
.lp-final__title em { color: #7fb0f5; font-style: normal; }
.lp-final__sub { font-size: 14.5px; opacity: 0.85; margin: 18px auto 30px; line-height: 1.9; max-width: 30em; text-wrap: balance; }
.lp-final__note { font-size: 12px; opacity: 0.7; margin-top: 18px; }
/* 固定CTAバー */
.lp-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 16px; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); }
.lp-sticky__txt { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.lp-sticky__txt b { font-size: 14px; font-weight: 800; }
.lp-sticky__txt span { font-size: 11.5px; color: var(--ink-soft); }
.lp-sticky .btn { padding: 12px 22px; flex-shrink: 0; }
.deckpage.is-open { padding-bottom: 0; }
/* reveal */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } .lp-hero__down { animation: none; } }

/* ===== ENTRY 2026 LP ===== */
.entry-hero { position: relative; overflow: hidden; min-height: clamp(440px, 68vh, 600px); display: flex; align-items: center; }
.entry-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); }
.entry-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,20,0.5) 0%, rgba(7,11,20,0.82) 100%); }
.entry-hero__in { position: relative; width: 100%; max-width: 1120px; margin: 0 auto; padding: clamp(40px,6vw,80px) clamp(20px,5vw,56px); color: #fff; }
.entry-hero__eyebrow { font-size: 12px; letter-spacing: 0.26em; font-weight: 800; margin-bottom: 18px; }
.entry-hero__title { font-size: clamp(32px,7vw,58px); font-weight: 800; line-height: 1.16; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.entry-hero__sub { font-size: clamp(14px,2.3vw,17px); line-height: 1.9; opacity: 0.92; margin: 22px 0 30px; max-width: 30em; }
.entry-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.entry-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.entry-hero__tags span { font-size: 12px; font-weight: 700; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); padding: 6px 13px; border-radius: 999px; }

.entry-achi { background: var(--ink); color: #fff; border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: repeat(4,1fr); }
.entry-achi__item { text-align: center; padding: 34px 16px; border-left: 1px solid rgba(255,255,255,0.1); }
.entry-achi__item:first-child { border-left: 0; }
.entry-achi__num { font-size: clamp(22px,3.4vw,34px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.entry-achi__num span { font-size: 14px; margin-left: 3px; opacity: 0.7; }
.entry-achi__label { font-size: 12px; opacity: 0.66; margin-top: 10px; line-height: 1.5; }

.entry-concept { text-align: center; }
.entry-concept__kicker { font-size: 12px; letter-spacing: 0.2em; font-weight: 800; color: var(--gold); }
.entry-concept__big { font-size: clamp(38px,8vw,68px); font-weight: 800; letter-spacing: 0.06em; margin: 14px 0 6px; }
.entry-concept__read { font-size: 13px; color: var(--ink-faint); letter-spacing: 0.1em; }
.entry-concept__lead { font-size: clamp(15px,2vw,17px); line-height: 2; color: var(--ink-soft); max-width: 32em; margin: 26px auto 0; text-wrap: balance; }

.deptgrid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.dept { border: 1px solid var(--line); border-radius: 14px; padding: 22px 12px; text-align: center; background: #fff; }
.dept__age { font-size: clamp(22px,3vw,30px); font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.dept__age span { font-size: 14px; }
.dept__name { font-size: 12.5px; color: var(--ink-soft); margin-top: 8px; font-weight: 600; }
.qualrow { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 28px 0 0; }
.qual { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; }
.qual b { color: var(--accent); }
.qualnote { font-size: 12px; color: var(--ink-faint); text-align: center; margin-top: 16px; line-height: 1.7; }

.learn3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.learncat { border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: #fff; }
.learncat__t { font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 9px; }
.learncat__t::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.learncat .taglist { margin-top: 14px; }

.stage { position: relative; overflow: hidden; border-radius: 20px; min-height: 380px; display: flex; align-items: flex-end; }
.stage__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.stage__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,11,20,0.15) 0%, rgba(7,11,20,0.86) 100%); }
.stage__in { position: relative; padding: clamp(26px,4vw,44px); color: #fff; max-width: 640px; }
.stage__eyebrow { font-size: 12px; letter-spacing: 0.24em; font-weight: 800; color: var(--gold); }
.stage__title { font-size: clamp(24px,4vw,38px); font-weight: 800; margin: 12px 0 12px; text-wrap: balance; line-height: 1.3; }
.stage__lead { font-size: 14px; line-height: 1.85; opacity: 0.9; margin: 0 0 16px; }
.stage__points { display: flex; flex-wrap: wrap; gap: 8px; }
.stage__points span { font-size: 12.5px; font-weight: 700; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.32); padding: 6px 13px; border-radius: 999px; }

.pkg { max-width: 540px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: clamp(28px,4vw,40px); box-shadow: var(--shadow-lg); text-align: center; }
.pkg__badge { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; color: var(--gold); border: 1px solid color-mix(in srgb, var(--gold) 40%, var(--line)); border-radius: 999px; padding: 5px 14px; }
.pkg__old { font-size: 14px; color: var(--ink-faint); text-decoration: line-through; margin: 18px 0 2px; }
.pkg__price { font-size: clamp(40px,8vw,60px); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.pkg__price small { font-size: 18px; font-weight: 700; margin-left: 4px; }
.pkg__tax { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }
.pkg__list { text-align: left; margin: 24px auto 0; max-width: 380px; display: grid; gap: 12px; }
.pkg__list li { position: relative; padding-left: 28px; font-size: 14px; color: var(--ink); line-height: 1.6; }
.pkg__list li::before { content: ""; position: absolute; left: 4px; top: 4px; width: 14px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.pkg .btn { margin-top: 28px; width: 100%; }
.pkg__note { font-size: 12px; color: var(--ink-faint); margin-top: 14px; line-height: 1.7; }

.roadmap { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.road { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 20px 22px; }
.road__phase { font-size: 11px; letter-spacing: 0.16em; font-weight: 800; color: var(--accent); text-transform: uppercase; }
.road__when { font-size: 14px; font-weight: 800; margin: 10px 0 6px; }
.road__t { font-size: 14px; font-weight: 700; }
.road__d { font-size: 12.5px; color: var(--ink-soft); margin-top: 6px; line-height: 1.7; }
.road__no { position: absolute; top: -13px; left: 20px; width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }

@media (max-width: 920px) {
  .entry-achi { grid-template-columns: repeat(2,1fr); }
  .entry-achi__item:nth-child(3) { border-left: 0; }
  .entry-achi__item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.1); }
  .deptgrid { grid-template-columns: repeat(2,1fr); }
  .learn3 { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .deptgrid { grid-template-columns: 1fr; }
}

/* ===== 鏡面（ミラー）リッチCTA ＋ ヒーロー反射 ===== */
.btn--mirror {
  position: relative; isolation: isolate; overflow: hidden;
  color: #fff; border: 1px solid rgba(255,255,255,0.22); border-radius: 999px;
  background: linear-gradient(180deg, #3a3a42 0%, #15151b 46%, #050507 100%);
  box-shadow: 0 14px 34px -10px rgba(0,0,0,0.65), 0 2px 6px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.42), inset 0 -1px 0 rgba(0,0,0,0.6);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  -webkit-box-reflect: below 5px linear-gradient(transparent 58%, rgba(255,255,255,0.16));
}
.btn--mirror > span { position: relative; z-index: 2; }
/* 上半分の光沢（ガラスのハイライト） */
.btn--mirror::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 52%; z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.04));
  border-radius: 999px 999px 40% 40% / 999px 999px 100% 100%; pointer-events: none;
}
/* 走る光（スイープ） */
.btn--mirror::after {
  content: ""; position: absolute; top: -20%; bottom: -20%; left: -70%; width: 45%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-18deg); pointer-events: none;
  animation: mirrorSheen 4.6s ease-in-out infinite;
}
.btn--mirror:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(0,0,0,0.72), inset 0 1px 0 rgba(255,255,255,0.5); }
.btn--mirror:active { transform: translateY(0); }
@keyframes mirrorSheen { 0% { left: -70%; } 55% { left: 135%; } 100% { left: 135%; } }

/* ヒーロー：鏡面の床 ＋ タイトルの映り込み */
.entry-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 38%; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.06) 60%, rgba(255,255,255,0.12));
  mix-blend-mode: overlay;
}
.entry-hero__title { -webkit-box-reflect: below 6px linear-gradient(transparent 52%, rgba(255,255,255,0.14)); }

@media (prefers-reduced-motion: reduce) { .btn--mirror::after { animation: none; } }

/* 中央寄せリードの margin:auto を確実に効かせる（.lpsec__lead の後勝ち打ち消し対策） */
.lpsec__lead.lpsec__lead--center { max-width: 34em; margin-left: auto; margin-right: auto; margin-top: 4px; }

/* ===== 掲載プラン（料金カード／オプション） ===== */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; align-items: start; }
.plans--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.plans--3 .plan { padding: clamp(22px,2.4vw,30px); }
@media (max-width: 1080px) { .plans--3 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.plan { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(26px,3vw,38px); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.plan--featured { border-color: var(--accent); box-shadow: 0 22px 54px -22px rgba(0,87,184,0.4); }
.plan__ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em; padding: 5px 16px; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 16px -4px rgba(0,87,184,0.5); }
.plan__for { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; color: var(--accent); }
.plan__name { font-size: 19px; font-weight: 800; margin-top: 6px; }
.plan__price { font-size: clamp(34px,6vw,46px); font-weight: 800; letter-spacing: -0.02em; margin-top: 14px; line-height: 1; }
.plan__price small { font-size: 14px; font-weight: 700; color: var(--ink-soft); margin-left: 5px; letter-spacing: 0; }
.plan__term { display: inline-block; font-size: 11.5px; font-weight: 800; color: var(--ink-soft); background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; margin-top: 12px; }
.plan__free { font-size: 12.5px; color: var(--gold); font-weight: 700; margin-top: 12px; line-height: 1.7; }
.plan__feats { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 13px; }
.plan__feats li { position: relative; padding-left: 28px; font-size: 13.5px; line-height: 1.7; color: var(--ink); }
.plan__feats li::before { content: ""; position: absolute; left: 3px; top: 5px; width: 14px; height: 8px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.plan__cta { margin-top: auto; padding-top: 26px; }
.plan__cta .btn { width: 100%; }

.opts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.opt { border: 1px solid var(--line); border-radius: 16px; padding: 26px; background: #fff; }
.opt__t { font-size: 16px; font-weight: 800; display: flex; align-items: center; gap: 9px; }
.opt__t::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.opt__price { font-size: 24px; font-weight: 800; color: var(--accent); margin: 12px 0 8px; letter-spacing: -0.01em; }
.opt__price small { font-size: 13px; color: var(--ink-soft); font-weight: 700; margin-left: 3px; }
.opt p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.85; margin: 6px 0 0; }
.opt ul { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.opt ul li { font-size: 13px; color: var(--ink); padding-left: 16px; position: relative; line-height: 1.6; }
.opt ul li::before { content: "・"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* ===== ホーム：TikTok広告バナー ＋ 登録募集 ===== */
.htpromo { display: grid; grid-template-columns: 1.5fr 1fr; gap: 22px; align-items: stretch; }
.htpromo__banner { position: relative; display: flex; align-items: center; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); background: #000; box-shadow: var(--shadow); transition: transform 0.18s ease, box-shadow 0.18s ease; }
.htpromo__banner:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.htpromo__banner img { display: block; width: 100%; height: auto; }
.htpromo__pr { position: absolute; top: 10px; left: 10px; z-index: 1; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; color: #fff; background: rgba(0,0,0,0.55); border-radius: 6px; padding: 3px 8px; }
.htpromo__side { display: flex; flex-direction: column; justify-content: center; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: clamp(22px,3vw,30px); box-shadow: var(--shadow); }
.htpromo__eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; margin-bottom: 12px; }
.htpromo__title { font-size: clamp(19px,2.4vw,24px); font-weight: 800; line-height: 1.45; letter-spacing: -0.01em; }
.htpromo__desc { font-size: 13.5px; line-height: 1.9; color: var(--ink-soft); margin: 14px 0 14px; }
.htpromo__code { font-size: 13px; font-weight: 700; line-height: 1.7; color: var(--ink); background: color-mix(in srgb, var(--gold) 12%, #fff); border: 1px solid color-mix(in srgb, var(--gold) 40%, var(--line)); border-radius: 10px; padding: 11px 14px; margin: 0 0 18px; }
.htpromo__code b { color: var(--gold); }
.htpromo__cta { display: flex; flex-wrap: wrap; gap: 10px; }
.htpromo__cta .btn { flex: 1 1 auto; }
@media (max-width: 860px) { .htpromo { grid-template-columns: 1fr; gap: 16px; } }

/* ===== ホーム：ハブ（各ページ入口タイル） ===== */
.hub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hubtile { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 20px 22px; box-shadow: var(--shadow); transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.hubtile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.hubtile__ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.hubtile__ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.hubtile__b { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.hubtile__t { font-size: 15.5px; font-weight: 800; letter-spacing: -0.01em; }
.hubtile__d { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.hubtile__arr { flex-shrink: 0; color: var(--accent); font-weight: 800; transition: transform 0.18s ease; }
.hubtile:hover .hubtile__arr { transform: translateX(3px); }
@media (max-width: 900px) { .hub { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .hub { grid-template-columns: 1fr; } }

/* ===== 出場者の声（サムネイル付きインタビューカード） ===== */
.voicecards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.voicecard { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.voicecard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.voicecard__thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); }
.voicecard__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; }
.voicecard:hover .voicecard__thumb img { transform: scale(1.05); }
.voicecard__body { display: block; padding: 13px 15px 15px; }
.voicecard__name { display: block; font-size: 14.5px; font-weight: 800; letter-spacing: -0.01em; }
.voicecard__note { display: block; font-size: 12px; color: var(--ink-soft); margin-top: 3px; }
.voicecard__more { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; color: var(--accent); margin-top: 11px; }
@media (max-width: 720px) { .voicecards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .voicecards { grid-template-columns: 1fr; } }

/* 出場者の声 ── リスト形式（サムネなし） */
.voice-list { display: flex; flex-direction: column; gap: 4px; }
.voice-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 10px; text-decoration: none; color: inherit; transition: background 0.15s ease, border-color 0.15s ease; }
.voice-item:hover { background: var(--surface-2); border-color: var(--line-2); }
.voice-item__name { font-size: 14.5px; font-weight: 800; min-width: 7em; }
.voice-item__note { font-size: 12px; color: var(--ink-soft); flex: 1; }
.voice-item__link { font-size: 12px; font-weight: 700; color: var(--accent); white-space: nowrap; margin-left: auto; }

.soon-badge { display: inline-block; vertical-align: middle; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; color: #fff; background: var(--gold); border-radius: 999px; padding: 4px 12px; margin-left: 10px; white-space: nowrap; }
.opt--soon { position: relative; border-style: dashed; }
.opt--soon .opt__price { color: var(--ink-soft); }
.opt__soon { position: absolute; top: 16px; right: 16px; font-size: 10px; font-weight: 800; letter-spacing: 0.12em; color: var(--gold); background: #fff; border: 1px solid color-mix(in srgb, var(--gold) 45%, var(--line)); border-radius: 999px; padding: 3px 10px; }

@media (max-width: 860px) {
  .plans { grid-template-columns: 1fr; }
  .opts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .lp-sticky__txt b { font-size: 13px; } .lp-sticky .btn { padding: 11px 16px; font-size: 13px; } }
.slide--dark .deck-card__d { color: rgba(255,255,255,0.76); }

/* ===== サイドプロモ（出場エントリー）を鏡面リッチに ===== */
.side-promo {
  position: relative; overflow: hidden; isolation: isolate;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 16px;
  background: linear-gradient(180deg, #3a3a42 0%, #15151b 46%, #050507 100%);
  box-shadow: 0 14px 32px -12px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.4), inset 0 -1px 0 rgba(0,0,0,0.6);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.side-promo::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 48%; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.02));
}
.side-promo::after {
  content: ""; position: absolute; top: -30%; bottom: -30%; left: -70%; width: 42%; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-18deg); animation: mirrorSheen 4.6s ease-in-out infinite;
}
.side-promo:hover { filter: none; transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.5); }
.side-promo__title, .side-promo__btn { position: relative; z-index: 2; }
.side-promo__btn { color: #f0d488; letter-spacing: 0.01em; }
@media (prefers-reduced-motion: reduce) { .side-promo::after { animation: none; } }

/* SVG アニメーション */
@keyframes aFloat { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-7px); } }
@keyframes aBeat { 0%,100%{ transform: scale(1); } 22%{ transform: scale(1.16); } 38%{ transform: scale(1.02); } }
@keyframes aPulse { 0%,100%{ opacity: 0.22; } 50%{ opacity: 1; } }
@keyframes aRing { 0%{ transform: scale(0.4); opacity: 0.55; } 100%{ transform: scale(1.55); opacity: 0; } }
@keyframes aSpin { to { transform: rotate(360deg); } }
@keyframes aDraw { 0%{ stroke-dashoffset: 260; } 55%,100%{ stroke-dashoffset: 0; } }
@keyframes aBlink { 0%,45%{ opacity: 1; } 50%,95%{ opacity: 0; } 100%{ opacity: 1; } }
@keyframes aRise { 0%,100%{ opacity: 0.35; transform: translateY(5px); } 50%{ opacity: 1; transform: translateY(0); } }
.ani-beat { transform-box: fill-box; transform-origin: center; animation: aBeat 1.2s ease-in-out infinite; }
.ani-pulse { animation: aPulse 1.7s ease-in-out infinite; }
.ani-ring { transform-box: fill-box; transform-origin: center; animation: aRing 2.4s ease-out infinite; }
.ani-spin { transform-box: fill-box; transform-origin: center; animation: aSpin 14s linear infinite; }
.ani-draw { stroke-dasharray: 260; animation: aDraw 3s ease-in-out infinite; }
.ani-float { transform-box: fill-box; transform-origin: center; animation: aFloat 3.6s ease-in-out infinite; }
.ani-blink { animation: aBlink 1.1s steps(1) infinite; }
.ani-rise { transform-box: fill-box; transform-origin: center; animation: aRise 2.6s ease-in-out infinite; }
@keyframes aFlow { to { stroke-dashoffset: -40; } }
.ani-flow { animation: aFlow 1.1s linear infinite; }
@keyframes aDrift { 0%{ opacity: 0; transform: translateY(2px); } 20%{ opacity: 1; } 100%{ opacity: 0; transform: translateY(-28px); } }
.ani-drift { transform-box: fill-box; transform-origin: center; animation: aDrift 3s ease-in infinite; }
@keyframes aGlow { 0%,100%{ opacity: 0.35; } 50%{ opacity: 0.85; } }
.ani-glow { animation: aGlow 2.4s ease-in-out infinite; }

/* 自動拡散フロー（HTML） */
.flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 38px; max-width: 820px; }
.flow__node { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); min-width: 116px; }
.slide--dark .flow__node { border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.04); }
.flow__node svg { width: 26px; height: 26px; color: var(--accent); }
.slide--dark .flow__node svg { color: #7fb0f5; }
.flow__node span { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.flow__arrow { color: var(--accent); font-size: 18px; }
.slide--dark .flow__arrow { color: #7fb0f5; }

/* ダーク面のボタン視認性 */
.slide--dark .btn--primary { background: #fff; color: #18181b; }
.slide--dark .btn--primary:hover { background: #e4e4e7; }
.slide--dark .btn--ghost { border-color: rgba(255,255,255,0.45); color: #fff; }
.slide--dark .btn--ghost:hover { background: rgba(255,255,255,0.1); }

/* 次回予告（ティザー） */
.teaser__count { font-size: clamp(38px, 9vw, 78px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.teaser__count strong { color: #7fb0f5; }
.teaser__count small { font-size: 0.32em; font-weight: 600; opacity: 0.7; margin-left: 4px; }
.teaser__meta { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 14px; }
.teaser__meta span { font-size: 12.5px; font-weight: 600; padding: 5px 13px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); }
.teaser__points { list-style: none; display: flex; flex-direction: column; gap: 13px; margin: 26px auto 0; max-width: 470px; text-align: left; }
.teaser__points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.92); }
.teaser__points li svg { width: 22px; height: 22px; color: #7fb0f5; flex-shrink: 0; margin-top: 1px; }
.teaser__bonus { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; font-size: 14px; font-weight: 700; padding: 9px 16px 9px 9px; border-radius: 999px; background: rgba(251,191,36,0.14); color: #fcd34d; border: 1px solid rgba(251,191,36,0.32); }
.teaser__bonus-tag { font-size: 10px; letter-spacing: 0.12em; font-weight: 800; background: #fcd34d; color: #18181b; border-radius: 999px; padding: 4px 10px; }
.teaser__claim { margin-top: 26px; display: flex; flex-direction: column; gap: 7px; align-items: center; text-align: center; }
.teaser__claim b { font-size: clamp(15px, 2.4vw, 18px); font-weight: 800; color: #fff; letter-spacing: -0.01em; line-height: 1.5; }
.teaser__claim span { font-size: clamp(12.5px, 1.9vw, 14px); color: rgba(255,255,255,0.66); }

/* ホーム：次回の講習バナー */
.next-banner { display: flex; gap: 20px; align-items: center; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 22px 26px; flex-wrap: wrap; transition: transform 0.18s; }
.next-banner:hover { transform: translateY(-2px); }
.next-banner__count { font-size: 36px; font-weight: 800; line-height: 1; letter-spacing: -0.02em; }
.next-banner__count small { font-size: 0.4em; font-weight: 600; color: rgba(255,255,255,0.7); margin-left: 2px; }
.next-banner__body { flex: 1; min-width: 210px; }
.next-banner__label { font-size: 11px; letter-spacing: 0.18em; color: #7fb0f5; font-weight: 700; }
.next-banner__theme { font-size: 18px; font-weight: 800; letter-spacing: -0.01em; margin-top: 7px; line-height: 1.4; }
.next-banner__date { font-size: 13px; color: rgba(255,255,255,0.72); margin-top: 5px; }
.next-banner__go { white-space: nowrap; border: 1px solid rgba(255,255,255,0.5); color: #fff; padding: 11px 20px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.next-banner__go:hover { background: rgba(255,255,255,0.12); }
@media (max-width: 560px) { .next-banner { padding: 20px; } .next-banner__count { font-size: 30px; } }

/* 体験デモ（言葉だけで、つくれる） */
.demo { width: 100%; max-width: 600px; margin: 32px auto 0; }
.demo__bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.demo__select { flex: 1; min-width: 220px; font: inherit; font-size: 15px; padding: 13px 16px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--surface); color: var(--ink); cursor: pointer; }
.slide--dark .demo__select { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.22); color: #fff; }
.slide--dark .demo__select option { color: #18181b; }
.demo__run { white-space: nowrap; }
.demo__result { margin-top: 22px; }
.demo__hint { font-size: 13px; color: var(--ink-faint); padding: 26px 0; }
.slide--dark .demo__hint { color: rgba(255,255,255,0.5); }
.demo__loading { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 40px 0; }
.demo__loading .bar { width: 220px; height: 6px; border-radius: 3px; background: var(--line); overflow: hidden; position: relative; }
.slide--dark .demo__loading .bar { background: rgba(255,255,255,0.15); }
.demo__loading .bar i { position: absolute; top: 0; left: 0; height: 100%; width: 38%; background: var(--accent); border-radius: 3px; animation: aLoad 1.1s ease-in-out infinite; }
@keyframes aLoad { 0%{ left: -40%; } 100%{ left: 100%; } }
.demo__loading span { font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.slide--dark .demo__loading span { color: rgba(255,255,255,0.85); }
.demo__note { margin-top: 16px; font-size: 13px; line-height: 1.8; color: var(--ink-soft); text-align: center; }
.slide--dark .demo__note { color: rgba(255,255,255,0.82); }
.demo__note b { color: var(--accent); }
.slide--dark .demo__note b { color: #7fb0f5; }

.mock { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; text-align: left; box-shadow: var(--shadow-lg); animation: aMock 0.45s ease; }
@keyframes aMock { from{ opacity: 0; transform: translateY(12px) scale(0.98); } to{ opacity: 1; transform: none; } }
.mock__bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; border-bottom: 1px solid #e4e4e7; background: #f4f4f5; }
.mock__bar i { width: 9px; height: 9px; border-radius: 50%; }
.mock__bar .u { margin-left: 8px; font-size: 11px; color: #71717a; background: #fff; border: 1px solid #e4e4e7; border-radius: 6px; padding: 3px 10px; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock__body { padding: 20px; color: #18181b; font-size: 13px; }
.mock__body--flush { padding: 0; }

/* ===== 体験デモ：さわれるモック ===== */
.mkpad { padding: 18px; color: #18181b; }
.mk__h { font-size: 15px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 12px; }
.mk__sub { font-size: 12px; color: #71717a; margin: -6px 0 14px; }
.mk__done { margin-top: 14px; background: #f0f7ec; border: 1px solid #cfe6c2; color: #2f6b21; font-size: 12.5px; font-weight: 600; border-radius: 10px; padding: 11px 13px; line-height: 1.6; }
.mk__done--game { background: #18181b; border-color: #18181b; color: #fff; text-align: center; margin-top: 10px; }

/* オーダー */
.mkrow { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-top: 1px solid #f1f1f3; }
.mkrow__n { font-size: 13px; font-weight: 600; }
.mkrow__p { font-size: 12px; color: #71717a; margin-top: 2px; }
.mkstep { display: flex; align-items: center; gap: 4px; }
.mkstep__b { width: 30px; height: 30px; border: 1px solid #d4d4d8; background: #fff; border-radius: 9px; font-size: 16px; line-height: 1; color: #18181b; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mkstep__b:active { background: #f4f4f5; }
.mkstep__q { min-width: 22px; text-align: center; font-size: 13px; font-weight: 700; }
.mkcart { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.mkcart__c { font-size: 12px; color: #71717a; white-space: nowrap; }
.mkcart__c b { color: #18181b; font-size: 14px; }
.mkcart__go { flex: 1; border: none; background: #18181b; color: #fff; font-weight: 700; font-size: 13px; border-radius: 10px; padding: 12px; cursor: pointer; transition: background 0.2s; }
.mkcart__go:disabled { background: #d4d4d8; cursor: default; }

/* 予約 */
.mkslots { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
.mkslot { position: relative; border: 1px solid #d4d4d8; background: #fff; border-radius: 10px; padding: 12px 10px; font-size: 12.5px; font-weight: 600; color: #18181b; cursor: pointer; text-align: center; transition: border-color 0.15s, background 0.15s; }
.mkslot:hover { border-color: #18181b; }
.mkslot.is-sel { background: #18181b; color: #fff; border-color: #18181b; }
.mkslot.is-full { color: #b8b8bf; cursor: default; background: #fafafa; border-color: #f0f0f2; }
.mkslot.is-full i { display: block; font-style: normal; font-size: 10px; margin-top: 2px; }
.mkslot:disabled { opacity: 0.55; }

/* ピル（サロン／プロフィール） */
.mkpills { display: flex; gap: 7px; flex-wrap: wrap; margin: 4px 0 14px; }
.mkpill { border: 1px solid #d4d4d8; background: #fff; border-radius: 999px; padding: 7px 14px; font-size: 12px; font-weight: 600; color: #52525b; cursor: pointer; transition: all 0.15s; }
.mkpill[aria-pressed="true"] { background: #18181b; border-color: #18181b; color: #fff; }

/* サロン */
.mksalon__ey { font-size: 10px; letter-spacing: 0.24em; color: #71717a; font-weight: 700; }
.mksalon__h { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin-top: 5px; }
.mksalon__sub { font-size: 12px; color: #71717a; margin: 5px 0 14px; }
.mksalon__panel { animation: aFade 0.25s ease; }
.mksalon__pt { font-size: 14px; font-weight: 800; }
.mksalon__pd { font-size: 12.5px; color: #52525b; margin-top: 5px; line-height: 1.7; }
.mksalon__meta { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; font-size: 12px; color: #71717a; }
.mksalon__price { font-weight: 800; color: #18181b; }

/* プロフィール */
.mkprof__top { display: flex; gap: 12px; align-items: center; }
.mkprof__av { width: 50px; height: 50px; border-radius: 13px; background: #18181b; color: #fff; font-weight: 700; font-size: 20px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mkprof__n { font-size: 16px; font-weight: 800; }
.mkprof__r { font-size: 12px; color: #71717a; margin-top: 2px; }
.mkprof__bio { font-size: 12.5px; color: #52525b; line-height: 1.7; margin-top: 12px; }
.mkprof__panel { font-size: 12.5px; color: #52525b; line-height: 1.7; background: #f7f7f8; border-radius: 10px; padding: 12px; min-height: 54px; animation: aFade 0.25s ease; }

/* 練習 */
.mkpr { padding: 12px 0; border-top: 1px solid #f1f1f3; }
.mkpr:first-of-type { border-top: none; padding-top: 0; }
.mkpr__top { display: flex; justify-content: space-between; font-size: 12.5px; }
.mkpr__top b { font-weight: 700; }
.mkpr__bar { height: 7px; background: #f1f1f3; border-radius: 4px; margin: 7px 0 9px; overflow: hidden; }
.mkpr__bar i { display: block; height: 100%; background: #18181b; border-radius: 4px; transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.mkpr__btn { border: 1px solid #d4d4d8; background: #fff; border-radius: 8px; padding: 7px 12px; font-size: 12px; font-weight: 600; color: #18181b; cursor: pointer; }
.mkpr__btn:disabled { color: #b8b8bf; border-color: #ededf0; cursor: default; }

/* チャット */
.mkchat { background: #f7f7f8; border-radius: 12px; padding: 12px; height: 168px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.mkb { max-width: 82%; font-size: 12.5px; line-height: 1.6; padding: 9px 12px; border-radius: 13px; animation: aFade 0.2s ease; }
.mkb--bot { background: #fff; border: 1px solid #ededf0; align-self: flex-start; border-bottom-left-radius: 4px; }
.mkb--me { background: #18181b; color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.mkchat__bar { display: flex; gap: 8px; margin-top: 10px; }
.mkchat__in { flex: 1; font: inherit; font-size: 13px; border: 1px solid #d4d4d8; border-radius: 10px; padding: 10px 12px; color: #18181b; min-width: 0; }
.mkchat__in:focus { outline: none; border-color: #18181b; }
.mkchat__send { border: none; background: #18181b; color: #fff; font-weight: 700; font-size: 12px; border-radius: 10px; padding: 0 16px; cursor: pointer; white-space: nowrap; }

/* ミニゲーム */
.mkpad--game { text-align: center; }
.mkgame__top { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: #71717a; margin-bottom: 8px; }
.mkgame__score b { color: #18181b; font-size: 13px; }
.mkgame__canvas { width: 100%; height: auto; aspect-ratio: 320 / 180; border-radius: 12px; background: #0b0f1a; display: block; touch-action: none; cursor: pointer; }
.mkgame__ctrl { display: flex; gap: 8px; margin-top: 10px; align-items: center; justify-content: center; }
.mkgame__btn { width: 56px; height: 42px; border: 1px solid #d4d4d8; background: #fff; border-radius: 10px; font-size: 18px; cursor: pointer; color: #18181b; touch-action: manipulation; }
.mkgame__btn:active { background: #f4f4f5; }
.mkgame__start { flex: 1; max-width: 160px; border: none; background: #18181b; color: #fff; font-weight: 700; font-size: 13px; border-radius: 10px; padding: 11px; cursor: pointer; }
.mklink { background: none; border: none; color: #7fb0f5; font-weight: 700; cursor: pointer; font-size: 12.5px; text-decoration: underline; margin-left: 8px; }

/* チェックリスト */
.mkck__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.mkck__bar { flex: 1; height: 7px; background: #f1f1f3; border-radius: 4px; overflow: hidden; }
.mkck__bar i { display: block; height: 100%; width: 0; background: #18181b; border-radius: 4px; transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.mkck__val { font-size: 11.5px; color: #71717a; white-space: nowrap; font-weight: 600; }
.mkck__list { display: flex; flex-direction: column; gap: 8px; }
.mkck { display: flex; align-items: center; gap: 11px; width: 100%; text-align: left; border: 1px solid #e7e8eb; background: #fff; border-radius: 10px; padding: 11px 13px; cursor: pointer; font: inherit; }
.mkck__box { width: 20px; height: 20px; border: 2px solid #cfd2d7; border-radius: 6px; flex-shrink: 0; position: relative; transition: all 0.15s; }
.mkck__t { font-size: 13px; color: #1f2937; transition: color 0.15s; }
.mkck.is-on { background: #f7faf6; border-color: #cfe6c2; }
.mkck.is-on .mkck__box { background: #3f9142; border-color: #3f9142; }
.mkck.is-on .mkck__box::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.mkck.is-on .mkck__t { color: #9aa3af; text-decoration: line-through; }

/* 検索アーカイブ */
.mkar__in { width: 100%; font: inherit; font-size: 13px; border: 1px solid #d4d4d8; border-radius: 10px; padding: 10px 13px; margin-bottom: 12px; color: #18181b; }
.mkar__in:focus { outline: none; border-color: #18181b; }
.mkar { padding: 11px 0; border-top: 1px solid #f1f1f3; }
.mkar__t { font-size: 13px; font-weight: 600; color: #1f2937; }
.mkar__m { font-size: 11.5px; color: #9aa3af; margin-top: 3px; }
.mkar__empty { font-size: 12.5px; color: #9aa3af; padding: 16px 0; text-align: center; }

/* メディア記事 */
.mkmedia__h { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; margin-top: 5px; }
.mkmedia__hint { font-size: 11.5px; color: #9aa3af; margin: 6px 0 12px; }
.mkmedia__list { display: flex; flex-direction: column; gap: 9px; }
.mkmedia { display: block; width: 100%; text-align: left; border: 1px solid #e7e8eb; background: #fff; border-radius: 11px; padding: 12px 14px; cursor: pointer; font: inherit; transition: border-color 0.15s; }
.mkmedia:hover { border-color: #b8bcc4; }
.mkmedia__cat { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; color: #b8552f; background: #fbeee6; border-radius: 5px; padding: 3px 8px; }
.mkmedia__t { font-size: 13.5px; font-weight: 700; color: #1f2937; margin-top: 7px; }
.mkmedia__sum { font-size: 12.5px; color: #52525b; line-height: 1.7; margin-top: 7px; padding-top: 8px; border-top: 1px dashed #e4e4e7; animation: aFade 0.2s ease; }

/* 一括送信 */
.mkmail__list { display: flex; flex-direction: column; gap: 8px; }
.mkmail { display: flex; align-items: center; gap: 11px; width: 100%; text-align: left; border: 1px solid #e7e8eb; background: #fff; border-radius: 10px; padding: 10px 13px; cursor: pointer; font: inherit; }
.mkmail__box { width: 20px; height: 20px; border: 2px solid #cfd2d7; border-radius: 6px; flex-shrink: 0; position: relative; }
.mkmail.is-on { background: #eef4fd; border-color: #b9d3f6; }
.mkmail.is-on .mkmail__box { background: #1f6feb; border-color: #1f6feb; }
.mkmail.is-on .mkmail__box::after { content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.mkmail__n { font-size: 13px; font-weight: 600; color: #1f2937; display: block; }
.mkmail__m { font-size: 11.5px; color: #9aa3af; display: block; margin-top: 2px; }

/* ギャラリー */
.mkgal__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mkgal { position: relative; aspect-ratio: 1; border: none; border-radius: 12px; cursor: pointer; overflow: hidden; padding: 8px; display: flex; align-items: flex-end; }
.mkgal__t { font-size: 10.5px; font-weight: 700; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.45); text-align: left; line-height: 1.3; }
.mkgal__hv { position: absolute; top: 7px; right: 7px; width: 20px; height: 20px; fill: rgba(255,255,255,0.55); transition: fill 0.15s, transform 0.15s; }
.mkgal.is-liked .mkgal__hv { fill: #ff5a7a; transform: scale(1.15); }

/* ===== TOP イベントティザー（collection 風 / OSA カラー） ===== */
/* フルスクリーン・ヒーロー */
.hero2--full {
  min-height: 92vh; min-height: 92svh;
  flex-direction: column; align-items: center; justify-content: flex-start;
  padding-top: clamp(30px, 4.5vh, 56px); padding-bottom: 30px;
}
/* 横長写真は縦スマホで高さ基準にcoverされるため、顔(写真の~45-58%)の下から
   白くフェードしてボタン帯(~71%〜)を白い面に乗せる → 顔に被らない */
.hero2--full .hero2__bg { background-position: center 38%; }
.hero2--full .hero2__shade {
  background:
    linear-gradient(to bottom, rgba(8,10,18,0.5) 0%, rgba(8,10,18,0.13) 30%, rgba(252,252,252,0) 60%, rgba(252,252,252,0.97) 68%, #fff 73%);
}
.hero2--full .hero2__in { margin-bottom: 0; padding-top: 0; gap: 6px; justify-content: flex-start; }
.hero2--full .hero2__down { display: none; }
.hero2__foot {
  margin-top: auto; width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding-bottom: 4px;
}
.hero2__eyebrow2 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(12px, 1.6vw, 16px);
  font-weight: 500; letter-spacing: 0.42em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); text-shadow: 0 1px 8px rgba(0,0,0,0.7); margin: 0 0 8px;
}
.hero2__big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 6.6vw, 82px); font-weight: 300; letter-spacing: 0.12em;
  line-height: 1.0; margin: 0; text-wrap: balance;
  text-shadow: 0 3px 22px rgba(0,0,0,0.75);
}
.hero2__season {
  display: flex; align-items: center; gap: 16px; margin-top: 10px;
  font-size: clamp(12px, 1.7vw, 15.5px); font-weight: 700; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.95); text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero2__season::before, .hero2__season::after { content: ""; width: clamp(28px, 6vw, 64px); height: 1px; background: rgba(255,255,255,0.65); }
.hero2__copy {
  margin: 0 0 4px; font-size: clamp(14px, 2.1vw, 18px); line-height: 1.9; letter-spacing: 0.1em;
  font-family: 'Noto Serif JP', Georgia, serif; font-weight: 600;
  color: var(--ink); text-shadow: none; text-wrap: balance;
}
.hero2__ctarow {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; margin-top: 10px; width: 100%; max-width: 460px; margin-left: auto; margin-right: auto;
}
.hero2__btn--wide { width: 100%; }
.hero2__ctasub { display: flex; gap: 10px; width: 100%; }
.hero2__ctasub .hero2__btn { flex: 1 1 0; min-width: 0; padding-left: 14px; padding-right: 14px; }
.hero2__btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: clamp(13px, 1.6vw, 15px); font-weight: 700; letter-spacing: 0.12em;
  border-radius: 100px; padding: 15px 36px; min-width: clamp(180px, 22vw, 230px);
  text-align: center; text-decoration: none; position: relative; overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
/* プレミアム：ゴールドグラデの主役ボタン */
.hero2__btn--solid {
  color: #2a200a;
  background: linear-gradient(135deg, #d9b45c 0%, #f3dc97 44%, #c2982f 100%);
  border: 1px solid rgba(168,128,38,0.55);
  box-shadow: 0 12px 28px -10px rgba(150,110,25,0.7), inset 0 1px 0 rgba(255,255,255,0.45);
}
.hero2__btn--solid::after {
  content: ""; position: absolute; top: 0; left: -85%; width: 55%; height: 100%; z-index: 1;
  background: linear-gradient(105deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.65) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg); opacity: 0; pointer-events: none;
}
.hero2__btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(150,110,25,0.82), inset 0 1px 0 rgba(255,255,255,0.55);
}
.hero2__btn--solid:hover::after { animation: btnShine 0.85s ease forwards; }
@keyframes btnShine { 0% { left: -85%; opacity: 0; } 18% { opacity: 0.9; } 100% { left: 140%; opacity: 0; } }
/* プレミアム：上品なガラスの副ボタン（ゴールドの細枠） */
.hero2__btn--line {
  color: var(--ink); background: rgba(255,255,255,0.78); backdrop-filter: blur(8px);
  border: 1px solid rgba(194,152,47,0.6); text-shadow: none;
  box-shadow: 0 8px 20px -12px rgba(16,19,32,0.45);
}
.hero2__btn--line:hover { background: #fff; border-color: #c2982f; transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(150,110,25,0.5); }
/* 動画導線：ダークガラス＋ゴールドの再生アイコン */
.hero2__btn--play {
  gap: 10px; color: #fff; background: rgba(16,19,32,0.42); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(243,220,151,0.5); box-shadow: 0 8px 22px -12px rgba(0,0,0,0.6);
}
.hero2__btn--play:hover { background: rgba(16,19,32,0.62); border-color: #f3dc97; transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.7); }
.hero2__playico {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #d9b45c, #f3dc97); color: #2a200a;
}
.hero2__playico svg { width: 11px; height: 11px; margin-left: 1px; }
.hero2__btn--play .hero2__playico { animation: heroPlayPulse 2.6s ease-in-out infinite; }
@keyframes heroPlayPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(243,220,151,0.55); } 50% { box-shadow: 0 0 0 6px rgba(243,220,151,0); } }
@media (prefers-reduced-motion: reduce) { .hero2__btn--play .hero2__playico { animation: none; } }
.hero2__infoline {
  display: flex; justify-content: center; gap: 10px; padding: 0 18px;
  font-size: clamp(10.5px, 1.4vw, 12.5px); font-weight: 700; letter-spacing: 0.16em;
  color: var(--ink); text-shadow: none; text-align: center; flex-wrap: wrap;
}
.hero2__infoline b { color: var(--ink); }
.hero2__infoline .sep { opacity: 0.45; }

/* セクション英字大見出し */
.evhead { text-align: center; margin-bottom: clamp(34px, 5vw, 52px); }
.evhead__en {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 5.8vw, 64px); font-weight: 400; letter-spacing: 0.16em;
  line-height: 1.05; color: var(--ink); margin: 0;
}
.evhead__bar { width: 44px; height: 2px; background: #c2982f; margin: 16px auto 0; }
.evhead__ja { margin-top: 12px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.26em; color: #c2982f; }

/* ABOUT ステートメント */
.ev-about__st {
  text-align: center; font-size: clamp(20px, 3.4vw, 30px); font-weight: 700;
  letter-spacing: 0.14em; line-height: 2; margin: 0 0 26px; text-wrap: balance;
}
.ev-about__st em { font-style: normal; color: #c2982f; }
.ev-about__body { max-width: 34em; margin: 0 auto; text-align: center; font-size: clamp(13.5px, 1.8vw, 15.5px); line-height: 2.2; color: var(--ink-soft); text-wrap: balance; }

/* 開催概要テーブル */
.ev-outline { max-width: 680px; margin: 0 auto; border-top: 1px solid var(--line-2); }
.ev-outline__row { display: flex; border-bottom: 1px solid var(--line); padding: 18px 6px; gap: 18px; }
.ev-outline__l { flex-shrink: 0; width: 120px; font-size: 12px; font-weight: 800; letter-spacing: 0.18em; color: #c2982f; padding-top: 3px; }
.ev-outline__v { flex: 1; font-size: 14.5px; font-weight: 600; line-height: 1.9; }
.ev-outline__v small { display: block; font-size: 12px; font-weight: 500; color: var(--ink-faint); margin-top: 3px; }

/* ENTRY 最終セクション */
.ev-entry { position: relative; padding: clamp(76px, 11vw, 130px) 24px; background: var(--ink); color: #fff; text-align: center; overflow: hidden; }
.ev-entry::before { content: ""; position: absolute; inset: 0; background: radial-gradient(820px 420px at 50% 0%, rgba(194,152,47,0.22), transparent 70%); }
.ev-entry__in { position: relative; max-width: 720px; margin: 0 auto; }
.ev-entry__en { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(36px, 6vw, 68px); font-weight: 300; letter-spacing: 0.2em; line-height: 1; margin: 0; }
.ev-entry__ja { font-size: 12.5px; font-weight: 700; letter-spacing: 0.26em; color: #d8b35a; margin-top: 14px; }
.ev-entry__title { font-size: clamp(22px, 3.6vw, 34px); font-weight: 800; letter-spacing: 0.04em; line-height: 1.7; margin: 30px 0 0; text-wrap: balance; }
.ev-entry__title em { font-style: normal; color: #d8b35a; }
.ev-entry__sub { font-size: clamp(13px, 1.8vw, 15px); line-height: 2.1; opacity: 0.82; margin: 18px auto 0; max-width: 30em; text-wrap: balance; }
.ev-entry .btn { margin-top: 32px; }
.ev-entry__note { font-size: 11.5px; opacity: 0.55; margin-top: 18px; letter-spacing: 0.06em; }

/* スクロール・リビール */
[data-hreveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.85s cubic-bezier(0.2, 0.6, 0.25, 1), transform 0.85s cubic-bezier(0.2, 0.6, 0.25, 1); }
[data-hreveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-hreveal] { opacity: 1; transform: none; transition: none; }
}
@media (max-width: 680px) {
  .hero2--full { min-height: 86svh; }

  .ev-outline__row { flex-direction: column; gap: 4px; padding: 14px 4px; }
  .ev-outline__l { width: auto; }
}
.mkgal__hint { font-size: 11.5px; color: #9aa3af; margin-top: 10px; text-align: center; }

/* ===== 協力・協賛企業ロゴ ===== */
.sp-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px; margin-top: 8px; align-items: stretch;
}
.sp-logo {
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 16px;
  background: #fff; padding: 26px 28px; min-height: 140px;
  text-decoration: none; transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
}
.sp-logo:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.sp-logo__img { max-height: 92px; max-width: 100%; object-fit: contain; }
.sp-logo__name {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink); text-align: center; line-height: 1.5;
}
@media (max-width: 560px) {
  .sp-logos { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .sp-logo { min-height: 108px; padding: 18px; }
  .sp-logo__img { max-height: 64px; }
}

/* ===== 日本語明朝体統一 ===== */
.screen h2:not(.evhead__en), .screen h3,
.sec-head__title,
.ev-about__st,
.ev-entry__title,
.hubtile__t,
.mcard__name,
.lp-final__title,
.entry-concept__big,
.entry-hero__title,
.about-hero__title,
.about-cta__title,
.page-title,
.lead__title,
.phero__name,
.lpsec__title,
.card2__title,
.ga-album__title,
.stage__title,
.greet__name,
.sesmodal__title {
  font-family: 'Noto Serif JP', Georgia, serif;
}
.ev-entry__title, .lp-final__title { font-weight: 700; }
.entry-concept__big { font-weight: 700; }

/* ===== メンバー / 講師カード：ポートレート（全体写真）＋高級感 ===== */
.mgrid { grid-template-columns: repeat(auto-fill, minmax(236px, 1fr)); gap: 20px; }
.mcard--portrait {
  padding: 0; text-align: left; border-radius: 18px; overflow: hidden;
  background: #fff; border: 1px solid #ece7db; cursor: pointer;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: 0 1px 2px rgba(28,24,14,0.04), 0 12px 32px -18px rgba(28,24,14,0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.mcard--portrait:hover {
  transform: translateY(-4px); border-color: #e2d4ad;
  box-shadow: 0 2px 4px rgba(28,24,14,0.05), 0 26px 50px -20px rgba(120,92,20,0.30);
}
.mcard__photo {
  position: relative; width: 100%; aspect-ratio: 3 / 4; overflow: hidden;
  background: linear-gradient(150deg, #eceaf2, #dcdae4);
  display: flex; align-items: center; justify-content: center;
}
.mcard__photo-img {
  width: 100%; height: 100%; object-fit: contain; object-position: center top;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1), filter 0.4s ease;
}
.mcard--portrait:hover .mcard__photo-img { transform: scale(1.03); filter: saturate(1.06); }
.mcard__photo.is-noimg::after {
  content: attr(data-ini); color: rgba(80,80,95,0.6);
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 72px; font-weight: 300;
}
/* 黒スクリムは廃止（名前はフロストガラス帯で読ませる） */
.mcard__photo-grad { display: none; }
/* ホバー鏡面（シャイン）スイープ */
.mcard__photo::before {
  content: ""; position: absolute; top: 0; left: -75%; width: 55%; height: 100%; z-index: 2;
  background: linear-gradient(105deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.55) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-18deg); opacity: 0; pointer-events: none;
}
.mcard--portrait:hover .mcard__photo::before {
  animation: mcardShine 0.85s ease forwards;
}
@keyframes mcardShine {
  0% { left: -75%; opacity: 0; }
  18% { opacity: 0.9; }
  100% { left: 130%; opacity: 0; }
}
.mcard__badge {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  background: rgba(194,152,47,0.95); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 999px; box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
/* 名前はフロストガラスの帯（黒くせず、どんな写真でも読める） */
.mcard__photo-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; flex-direction: column; gap: 1px;
  padding: 12px 16px 13px;
  background: linear-gradient(to top, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.82) 72%, rgba(255,255,255,0) 100%);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.mcard__photo-cap .mcard__name {
  font-family: 'Noto Serif JP', Georgia, serif; font-size: 19px; font-weight: 600;
  color: var(--ink); letter-spacing: 0.03em; line-height: 1.3; text-shadow: none;
}
.mcard__photo-cap .mcard__handle {
  font-size: 11.5px; color: var(--ink-soft); letter-spacing: 0.04em;
}
/* ホバーで出るプロフィール導線（フロスト帯の中に濃い文字で） */
.mcard__hint {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: var(--accent); letter-spacing: 0.04em;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.28s ease, margin-top 0.28s ease;
}
.mcard__hint .arr { transition: transform 0.2s ease; }
.mcard--portrait:hover .mcard__hint { max-height: 24px; opacity: 1; margin-top: 6px; }
.mcard--portrait:hover .mcard__hint .arr { transform: translateX(4px); }

/* ===== メンバーゾーン（アンバサダー / 講師 を別々に） ===== */
.memzone { margin-top: 8px; }
.memzone + .memzone { margin-top: clamp(40px, 6vw, 64px); }
.memzone__head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.memzone__en {
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 400; letter-spacing: 0.14em; color: var(--ink); flex-shrink: 0;
}
.memzone__bar { height: 1px; background: var(--line-2); flex: 1; }
.memzone__ja {
  font-family: 'Noto Serif JP', Georgia, serif; font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.16em; color: #c2982f; flex-shrink: 0;
}

@keyframes aFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ===== 体験デモ：claude.ai 風チャットUI ===== */
.slide--try .slide__kicker { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: 0.18em; color: #8aa0b4; text-transform: none; }
.slide--try .slide__title { display: flex; flex-wrap: wrap; gap: 10px 14px; justify-content: center; }
.hl { background: #14c6d4; color: #06121a; padding: 4px 14px; border-radius: 2px; line-height: 1.2; -webkit-box-decoration-break: clone; box-decoration-break: clone; }

.hdemo { width: 100%; max-width: 640px; margin: 30px auto 0; }
.hdemo__frame { background: #fff; border: 1px solid #e4e4e7; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px -28px rgba(15,30,50,0.4); text-align: left; }
.hdemo__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #f4f5f7; border-bottom: 1px solid #e7e8eb; }
.hdemo__dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.hdemo__url { display: inline-flex; align-items: center; gap: 6px; margin-left: 6px; font-size: 12px; color: #6b7280; background: #fff; border: 1px solid #e4e4e7; border-radius: 8px; padding: 5px 12px; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hdemo__shield { width: 14px; height: 14px; color: #34a853; flex-shrink: 0; }
.hdemo__sim { font-size: 10px; letter-spacing: 0.14em; font-weight: 800; color: #1b9aa8; border: 1px solid #b6e6ec; background: #effbfc; border-radius: 7px; padding: 5px 10px; flex-shrink: 0; }

.hdemo__log { background: #fbfbfc; padding: 18px; min-height: 220px; max-height: 460px; overflow-y: auto; display: flex; flex-direction: column; gap: 14px; }
.hchat { display: flex; gap: 10px; align-items: flex-start; animation: aFade 0.25s ease; }
.hchat--me { justify-content: flex-end; }
.hchat__ava { width: 36px; height: 36px; border-radius: 10px; background: #c2643f; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hchat__ava svg { width: 20px; height: 20px; }
.hchat__msg { font-size: 13.5px; line-height: 1.7; color: #1f2937; background: #fff; border: 1px solid #ededf0; border-radius: 14px; border-top-left-radius: 5px; padding: 12px 15px; max-width: 82%; }
.hchat--me .hchat__msg { background: #18181b; color: #fff; border-color: #18181b; border-top-left-radius: 14px; border-top-right-radius: 5px; }
.hchat__hint { margin-top: 8px; font-size: 12px; font-style: italic; color: #9aa3af; }
.hresult { margin-top: 12px; background: #fff; border: 1px solid #e4e4e7; border-radius: 12px; overflow: hidden; }
.htyping { display: inline-flex; gap: 4px; padding: 3px 0; }
.htyping i { width: 7px; height: 7px; border-radius: 50%; background: #c7ccd3; animation: aTyping 1s infinite ease-in-out; }
.htyping i:nth-child(2) { animation-delay: 0.15s; }
.htyping i:nth-child(3) { animation-delay: 0.3s; }
@keyframes aTyping { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

.hdemo__inputbar { display: flex; gap: 10px; padding: 13px 14px; border-top: 1px solid #ededf0; background: #fff; }
.hdemo__select { flex: 1; min-width: 0; font: inherit; font-size: 14px; padding: 13px 14px; border: 1px solid #d4d4d8; border-radius: 12px; background: #fff; color: #18181b; cursor: pointer; }
.hdemo__select:focus { outline: none; border-color: #14c6d4; }
.hdemo__send { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; border: none; background: #14c6d4; color: #06121a; font-weight: 800; font-size: 14px; border-radius: 12px; padding: 0 22px; cursor: pointer; box-shadow: 0 8px 20px -8px rgba(20,198,212,0.85); transition: filter 0.15s; }
.hdemo__send:hover { filter: brightness(1.05); }
.hdemo__arr { font-size: 16px; }
.hdemo__foot { font-size: 11px; color: #9aa3af; text-align: center; padding: 11px 16px; background: #f7f8f9; border-top: 1px solid #ededf0; }

/* ビルド演出（要件→設計→コード→デプロイ） */
.hbuild { width: 100%; max-width: 100% !important; }
.hbuild__steps { display: flex; flex-direction: column; gap: 8px; }
.hbuild__step { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #ededf0; border-radius: 10px; padding: 10px 12px; opacity: 0.4; transition: opacity 0.3s ease; }
.hbuild__step.is-done { opacity: 1; }
.hbuild__ic { width: 20px; height: 20px; border-radius: 50%; border: 2px solid #d4d4d8; flex-shrink: 0; position: relative; transition: background 0.2s, border-color 0.2s; }
.hbuild__step.is-done .hbuild__ic { background: #16c6d4; border-color: #16c6d4; }
.hbuild__step.is-done .hbuild__ic::after { content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.hbuild__t { flex: 1; font-size: 13px; color: #1f2937; }
.hbuild__ms { font-size: 11px; color: #9aa3af; font-variant-numeric: tabular-nums; }
.hbuild__code { background: #0b1220; border-radius: 10px; padding: 12px 14px; margin-top: 10px; overflow: hidden; }
.hbuild__codehead { font-size: 11px; font-weight: 700; color: #16c6d4; letter-spacing: 0.04em; margin-bottom: 7px; }
.hbuild__codebody { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 11.5px; line-height: 1.65; color: #cdd6e4; white-space: pre-wrap; word-break: break-word; margin: 0; }
.hbuild__codebody .tkfn { color: #16c6d4; }
.hbuild__codebody .tks { color: #e0a36b; }
.hbuild__comment { display: block; color: #5f6b7e; margin-top: 3px; }
.hbuild__progresswrap { margin-top: 11px; }
.hbuild__progress { height: 6px; background: #e7e8eb; border-radius: 3px; overflow: hidden; }
.hbuild__progress i { display: block; height: 100%; width: 0; background: #16c6d4; border-radius: 3px; transition: width 0.18s linear; }
.hbuild__plabel { display: flex; justify-content: space-between; margin-top: 5px; font-size: 10px; letter-spacing: 0.1em; color: #9aa3af; font-weight: 700; }
.hdone { display: inline-flex; align-items: center; gap: 7px; margin-top: 11px; background: #effbfc; border: 1px solid #b6e6ec; color: #128090; font-weight: 800; font-size: 12.5px; border-radius: 8px; padding: 8px 12px; }
.hdone__ic { width: 15px; height: 15px; flex-shrink: 0; }
.hdone span { font-weight: 600; color: #5aa5ad; font-size: 11px; }

/* 公開中サイトのライブプレビュー */
.mklive__bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #f4f5f7; border-bottom: 1px solid #e7e8eb; }
.mklive__bar i { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.mklive__u { margin-left: 6px; font-size: 11px; color: #6b7280; background: #fff; border: 1px solid #e4e4e7; border-radius: 6px; padding: 3px 10px; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mklive__pop { color: #6b7280; text-decoration: none; font-size: 13px; padding: 0 4px; flex-shrink: 0; }
.mklive__view { position: relative; height: 380px; background: #fff; overflow: hidden; }
.mklive__if { width: 100%; height: 100%; border: 0; display: block; background: #fff; }
.mklive__open { display: block; text-align: center; font-size: 12.5px; font-weight: 800; color: #06121a; background: #14c6d4; text-decoration: none; padding: 12px; }
.mklive__open:hover { filter: brightness(1.05); }

@media (max-width: 480px) {
  .hdemo__sim { display: none; }
  .hdemo__send { padding: 0 16px; }
  .hchat__msg { max-width: 86%; }
}

/* 講習内容（ざっくり 2カラム） */
.curric { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; max-width: 780px; width: 100%; text-align: left; }
.curric__col { border: 1px solid var(--line); border-radius: 16px; padding: 24px; background: var(--surface); }
.slide--dark .curric__col { border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.04); }
.curric__h { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 16px; }
.curric__h svg { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; }
.slide--dark .curric__h svg { color: #7fb0f5; }
.curric__list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.curric__list li { position: relative; padding-left: 20px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.curric__list li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.slide--dark .curric__list li { color: rgba(255,255,255,0.78); }
.slide--dark .curric__list li::before { background: #7fb0f5; }

/* ロードマップ（スライド内） */
.road { display: flex; flex-direction: column; gap: 14px; margin-top: 36px; max-width: 600px; width: 100%; text-align: left; }
.road__item { display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: baseline; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.slide--dark .road__item { border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.04); }
.road__when { font-size: 13px; font-weight: 800; color: var(--accent); }
.slide--dark .road__when { color: #7fb0f5; }
.road__t { font-size: 15px; font-weight: 700; }
.road__d { font-size: 13px; color: var(--ink-soft); margin-top: 3px; }
.slide--dark .road__d { color: rgba(255,255,255,0.72); }
@media (prefers-reduced-motion: reduce) {
  .slide-down, .ani-beat, .ani-pulse, .ani-ring, .ani-spin, .ani-draw, .ani-float, .ani-blink, .ani-rise { animation: none; }
  .ani-rise { opacity: 1; }
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); transition: transform 0.28s cubic-bezier(0.22,0.61,0.36,1); box-shadow: 0 0 40px rgba(10,14,26,0.18); }
  .sidebar.is-open { transform: none; }
  .content { margin-left: 0; }
  .entry-fab { left: 50%; }
  .topbar { display: flex; }
  .subnav { top: 56px; }
  .card2, .about-grid { scroll-margin-top: 132px; }
  .profile-screen { left: 0; z-index: 70; }
}
@media (max-width: 880px) {
  .lead { grid-template-columns: 1fr; }
  .lead__media { order: -1; }
  .info-grid { grid-template-columns: 1fr; }
  .pbody { grid-template-columns: 1fr; }
  .paside { position: static; }
}
@media (max-width: 560px) {
  .demo-banner { font-size: 11px; }
  .hdr__right .clock { display: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 108px; gap: 9px; }
  .gallery__item:nth-child(1) { grid-column: span 2; }
  .gallery__item:nth-child(7) { grid-column: span 2; }
  .mgrid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mcard { padding: 16px; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .field--inline { flex-direction: column; gap: 2px; }
  .field--inline .field__label { min-width: 0; }
  .deck-cards { grid-template-columns: 1fr; }
  .curric { grid-template-columns: 1fr; }
}

/* ============================================================
   動画で知る（OSA Story Movie / 自動再生のシネマ風リール）
   prefix: .osm__  ─ 既存スタイルと衝突しないよう全て名前空間化
   ============================================================ */
.page-lead { color: var(--ink-soft); font-size: 14.5px; margin-top: 8px; }

/* 携帯＝縦9:16（ショート）／ PC＝横16:9（フル動画） */
.osm { max-width: 430px; margin: 6px auto 0; }
.osm__player {
  position: relative; width: 100%; aspect-ratio: 9 / 16;
  background: #05060b; border-radius: 18px; overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(8,10,20,.7), 0 0 0 1px rgba(255,255,255,.05) inset;
  color: #fff; user-select: none; cursor: pointer;
}
@media (max-width: 470px) {
  .osm { max-width: none; margin-left: 0; margin-right: 0; }
  .osm__player { border-radius: 14px; }
}
@media (min-width: 760px) {
  .osm { max-width: 880px; }
  .osm__player { aspect-ratio: 16 / 9; }
}

/* 全画面（擬似FS：position:fixed で iPhone でも確実に全画面） */
body.osm-fs-lock { overflow: hidden; }
.osm__player.is-fs {
  position: fixed; inset: 0; z-index: 9999; width: 100vw; height: 100vh; height: 100dvh;
  max-width: none; aspect-ratio: auto; border-radius: 0; margin: 0;
  background: #000;
}
/* ネイティブFS（デスクトップは9:16を中央に・上下左右は黒帯） */
.osm__player:fullscreen { width: auto; height: 100vh; aspect-ratio: 9 / 16; max-width: 100vw; border-radius: 0; background: #000; }
.osm__player:-webkit-full-screen { width: auto; height: 100vh; aspect-ratio: 9 / 16; max-width: 100vw; border-radius: 0; background: #000; }

/* ステージ / シーン */
.osm__stage { position: absolute; inset: 0; }
.osm__scene { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .7s ease; }
.osm__scene.is-active { opacity: 1; visibility: visible; }
.osm__scene--dark { background: radial-gradient(120% 90% at 50% 18%, #1a2036 0%, #0a0c14 70%); }

.osm__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center 35%;
  transform: scale(1.08); filter: saturate(1.02);
}
.osm__scene.is-active .osm__bg { animation: osmKen 8s ease-out forwards; }
@keyframes osmKen { from { transform: scale(1.18) translateY(-1%); } to { transform: scale(1.02) translateY(1%); } }

.osm__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(125% 80% at 50% 50%, rgba(8,10,20,.5) 0%, rgba(8,10,20,.2) 42%, rgba(8,10,20,.72) 100%),
    linear-gradient(180deg, rgba(8,10,20,.5) 0%, rgba(8,10,20,.12) 34%, rgba(8,10,20,.85) 100%);
}
.osm__veil--dim { background: linear-gradient(180deg, rgba(8,10,20,.82) 0%, rgba(8,10,20,.72) 50%, rgba(8,10,20,.92) 100%); }

/* SVG/グラデ背景のデザインシーン（写真に頼りすぎない） */
.osm__grad { position: absolute; inset: 0; }
.osm__grad--a { background: radial-gradient(130% 90% at 50% 22%, #1b2440 0%, #0a0d18 68%); }
.osm__grad--b { background: radial-gradient(120% 85% at 50% 78%, #23203f 0%, #0b0f1c 70%); }
.osm__grad--c { background: linear-gradient(155deg, #16203a 0%, #0a0d18 55%, #2a1830 100%); }
.osm__grad::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 40% at 50% 30%, rgba(243,220,151,.10), transparent 70%); }

/* 誰でも：SVGアイコン群 */
.osm__facts { display: flex; flex-wrap: wrap; gap: 16px 14px; justify-content: center; margin-top: 24px; }
.osm__fact { display: flex; flex-direction: column; align-items: center; gap: 7px; width: 68px; }
.osm__fact svg { width: 27px; height: 27px; color: #f3dc97; }
.osm__fact i { font-style: normal; font-size: 11px; color: rgba(255,255,255,.92); letter-spacing: .02em; }

/* 実績：大きな数字 */
.osm__nums { display: flex; gap: 8px; justify-content: center; margin-top: 22px; }
.osm__numi { flex: 1; max-width: 108px; }
.osm__numi b { display: block; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 44px; line-height: 1; color: #f3dc97; }
.osm__numi b span { font-family: var(--sans); font-size: 13px; font-weight: 700; color: #fff; margin-left: 2px; }
.osm__numi i { display: block; font-style: normal; font-size: 10.5px; line-height: 1.5; color: rgba(255,255,255,.78); margin-top: 9px; }

/* コンセプト：SVGエンブレム */
.osm__emblem { display: block; width: 86px; height: 86px; margin: 0 auto 8px; filter: drop-shadow(0 4px 22px rgba(0,0,0,.5)); animation: osmEmblem 16s linear infinite; }
@keyframes osmEmblem { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .osm__emblem { animation: none; } }

/* 学び：タグ群 */
.osm__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 22px; }
.osm__tags span { font-size: 12px; color: #fff; border: 1px solid rgba(243,220,151,.42); border-radius: 999px; padding: 7px 13px; }
.osm__chips--wrap { flex-wrap: wrap; justify-content: center; }

/* 道のり：タイムライン */
.osm__road { max-width: 290px; margin: 18px auto 0; text-align: left; }
.osm__roadi { position: relative; padding: 9px 0 9px 26px; border-left: 2px solid rgba(243,220,151,.32); }
.osm__roadi:last-child { border-left-color: transparent; }
.osm__roadn { position: absolute; left: -11px; top: 9px; width: 20px; height: 20px; border-radius: 50%; background: #f3dc97; color: #2a200a; font-size: 11px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.osm__roadi b { display: block; font-size: 14px; color: #fff; font-weight: 700; }
.osm__roadi i { font-style: normal; font-size: 11px; color: #f3dc97; }

/* SVG装飾レイヤー（ゴールドのコーナー枠＋きらめき） */
.osm__deco { position: absolute; inset: 0; z-index: 14; pointer-events: none; }
.osm__corner { position: absolute; width: 26px; height: 26px; opacity: .85; filter: drop-shadow(0 1px 4px rgba(0,0,0,.5)); }
.osm__corner--tl { top: 12px; left: 12px; } .osm__corner--tr { top: 12px; right: 12px; }
.osm__corner--bl { bottom: 66px; left: 12px; } .osm__corner--br { bottom: 66px; right: 12px; }
.osm__spark { position: absolute; width: 14px; height: 14px; opacity: 0; animation: osmSpark 3.2s ease-in-out infinite; }
.osm__spark--a { top: 17%; left: 13%; animation-delay: .2s; }
.osm__spark--b { top: 27%; right: 12%; animation-delay: 1.2s; }
.osm__spark--c { bottom: 28%; left: 18%; animation-delay: 2.2s; }
@keyframes osmSpark { 0%,100% { opacity: 0; transform: scale(.6); } 50% { opacity: .9; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .osm__spark { animation: none; opacity: .5; } }

/* キャプション配置 */
/* キャプションは常に中央寄せ（縦横どちらの比率でもきれいに収まる） */
.osm__cap { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); padding: 0 clamp(22px, 6vw, 60px); pointer-events: none; text-align: center; }
.osm__cap a, .osm__cap button { pointer-events: auto; }
.osm__cap--lower, .osm__cap--center { top: 50%; bottom: auto; transform: translateY(-50%); }
/* 見出しの上にゴールドのSVG飾り */
.osm__cap::before {
  content: ""; display: block; width: 62px; height: 8px; margin: 0 auto 16px; opacity: .9;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 8'%3E%3Cpath d='M0 4H26M38 4H64' stroke='%23f3dc97' stroke-width='1.4'/%3E%3Cpath d='M32 1l3 3-3 3-3-3z' fill='%23f3dc97'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* 文字の登場アニメ */
.osm__cap > * { opacity: 0; transform: translateY(14px); }
.osm__scene.is-active .osm__cap > * { animation: osmUp .7s cubic-bezier(.2,.7,.2,1) forwards; }
.osm__scene.is-active .osm__cap > *:nth-child(1) { animation-delay: .18s; }
.osm__scene.is-active .osm__cap > *:nth-child(2) { animation-delay: .42s; }
.osm__scene.is-active .osm__cap > *:nth-child(3) { animation-delay: .66s; }
.osm__scene.is-active .osm__cap > *:nth-child(4) { animation-delay: .9s; }
.osm__scene.is-active .osm__cap > *:nth-child(5) { animation-delay: 1.12s; }
@keyframes osmUp { to { opacity: 1; transform: none; } }

.osm__ey {
  font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: #e7c98a; margin-bottom: 12px;
}
.osm__ey::before { content: ""; display: inline-block; width: 18px; height: 1px; background: #e7c98a; vertical-align: middle; margin-right: 8px; }
.osm__cap--center .osm__ey::before { display: none; }

.osm__big {
  font-family: 'Noto Serif JP', serif; font-weight: 600;
  font-size: clamp(25px, 7.4vw, 33px); line-height: 1.42; letter-spacing: .01em;
  color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.5); margin: 0;
}
.osm__big--sm { font-size: clamp(21px, 6vw, 27px); }
.osm__big--cta { font-size: clamp(27px, 8vw, 36px); margin: 14px 0 4px; }
.osm__sub { margin-top: 14px; font-size: 14.5px; line-height: 1.8; color: rgba(255,255,255,.86); font-weight: 500; }
.osm__sub--c { color: rgba(255,255,255,.8); }
.osm__hi {
  margin-top: 16px; font-size: clamp(16px, 4.6vw, 19px); font-weight: 700; color: #f3dca6;
  letter-spacing: .02em;
}
.osm__note { margin-top: 14px; font-size: 11.5px; color: rgba(255,255,255,.62); letter-spacing: .02em; }

/* ロゴシーン */
.osm__brand { width: min(76%, 280px); filter: drop-shadow(0 6px 30px rgba(0,0,0,.5)); }
.osm__brand--sm { width: min(54%, 200px); margin-bottom: 6px; }
.osm__motto {
  margin-top: 22px; font-family: 'Noto Serif JP', serif; font-size: 24px; font-weight: 600;
  letter-spacing: .3em; color: #f3dca6;
}
.osm__motto span { display: block; font-size: 11px; letter-spacing: .34em; color: rgba(255,255,255,.6); margin-top: 8px; font-family: var(--sans); }

/* 数字 */
.osm__numrow { display: flex; align-items: baseline; gap: 8px; margin-top: 18px; }
.osm__num { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 64px; line-height: 1; color: #f3dca6; }
.osm__numu { font-size: 16px; font-weight: 700; color: #fff; }

/* チップ（TOKYO → NY → DUBAI） */
.osm__chips { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 20px; }
.osm__chips span {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; color: #fff;
  border: 1px solid rgba(243,220,166,.55); border-radius: 999px; padding: 7px 14px;
}
.osm__chips i { color: #e7c98a; font-style: normal; font-weight: 700; }

/* 体験談の引用 */
.osm__quote {
  font-family: 'Noto Serif JP', serif; font-weight: 600; font-size: clamp(30px, 9vw, 42px);
  line-height: 1.4; color: #fff; margin: 6px 0 0; text-shadow: 0 2px 30px rgba(0,0,0,.5);
}

/* 説明会リスト */
.osm__list { list-style: none; margin: 20px auto 0; padding: 0; max-width: 280px; text-align: left; }
.osm__list li { position: relative; padding: 8px 0 8px 26px; font-size: 14px; color: rgba(255,255,255,.9); border-bottom: 1px solid rgba(255,255,255,.1); }
.osm__list li::before { content: ""; position: absolute; left: 2px; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: #e7c98a; }

/* CTA */
.osm__cap--cta { padding: 0 24px; }
.osm__line {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 18px; width: 100%; max-width: 320px; padding: 15px 20px;
  background: #06c755; color: #fff; font-weight: 800; font-size: 15.5px; border-radius: 14px;
  box-shadow: 0 14px 34px -10px rgba(6,199,85,.6); text-decoration: none;
}
.osm__line svg { width: 22px; height: 22px; flex: 0 0 auto; }
.osm__line:hover { background: #05b54d; }
.osm__sublinks { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.osm__sublinks a {
  font-size: 12.5px; font-weight: 700; color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.32); border-radius: 999px; padding: 9px 16px; text-decoration: none;
}
.osm__sublinks a:hover { border-color: #f3dca6; color: #f3dca6; }
.osm__fine { margin-top: 16px; font-size: 11px; line-height: 1.7; color: rgba(255,255,255,.6); }

/* HUD（ロゴ・ヒント） */
.osm__hud {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 18px 0; pointer-events: none;
}
.osm__hudlogo { height: 18px; opacity: .9; filter: drop-shadow(0 1px 6px rgba(0,0,0,.5)); }
.osm__hint { font-size: 10.5px; letter-spacing: .08em; color: rgba(255,255,255,.7); background: rgba(0,0,0,.25); padding: 4px 10px; border-radius: 999px; }
/* 音声 ON/OFF ボタン（YouTube/SNS の「タップで音」パターン） */
.osm__sound {
  pointer-events: auto; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  font: 700 11px/1 inherit; letter-spacing: .06em; color: #fff;
  background: rgba(8,10,20,.5); border: 1px solid rgba(255,255,255,.4); border-radius: 999px;
  padding: 6px 12px 6px 9px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .15s, border-color .15s;
}
.osm__sound svg { width: 16px; height: 16px; }
.osm__sound:hover { background: rgba(8,10,20,.72); }
.osm__sound.is-on { border-color: #f3dc97; color: #f3dc97; }
.osm__sound:not(.is-on) { animation: osmSoundNudge 2.4s ease-in-out infinite; }
@keyframes osmSoundNudge { 0%,100% { box-shadow: 0 0 0 0 rgba(243,220,151,.5); } 50% { box-shadow: 0 0 0 5px rgba(243,220,151,0); } }
@media (prefers-reduced-motion: reduce) { .osm__sound:not(.is-on) { animation: none; } }

/* 中央の大きな再生ボタン（YouTube風・停止中のみ表示） */
.osm__bigplay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 15;
  width: clamp(56px, 9vw, 78px); height: clamp(56px, 9vw, 78px); border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,10,20,.55); border: 1px solid rgba(255,255,255,.5); color: #fff;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: transform .18s ease, background .18s ease, opacity .25s ease;
}
.osm__bigplay svg { width: 42%; height: 42%; margin-left: 6%; }
.osm__bigplay:hover { transform: translate(-50%, -50%) scale(1.08); background: rgba(8,10,20,.72); }
.osm__player.is-playing .osm__bigplay { opacity: 0; pointer-events: none; }

/* 下部コントロール（YouTube風） */
.osm__controls {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 20; padding: 28px 12px 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.78) 100%);
}
.osm__seek {
  display: block; width: 100%; padding: 8px 0; margin: 0 0 2px; border: 0; background: none; cursor: pointer;
}
.osm__seek__track { display: block; position: relative; height: 4px; border-radius: 4px; background: rgba(255,255,255,.3); overflow: hidden; }
.osm__seek:hover .osm__seek__track { height: 6px; }
.osm__seek__fill { display: block; height: 100%; width: 0; background: #f3dc97; border-radius: 4px; }
.osm__ctrlrow { display: flex; align-items: center; gap: 6px; padding: 0 4px; }
.osm__cbtn {
  pointer-events: auto; width: 38px; height: 38px; border-radius: 8px; cursor: pointer;
  background: none; border: 0; color: #fff; font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .15s, transform .15s;
}
.osm__cbtn:hover { background: rgba(255,255,255,.16); }
.osm__cbtn--play { font-size: 18px; }
.osm__time { font-size: 12px; font-weight: 600; letter-spacing: .04em; color: rgba(255,255,255,.92); margin-left: 4px; font-variant-numeric: tabular-nums; }
.osm__spacer { flex: 1 1 auto; }
@media (max-width: 520px) {
  .osm__controls { padding: 20px 6px 6px; }
  .osm__cbtn { width: 32px; height: 32px; font-size: 14px; }
  .osm__time { font-size: 10.5px; }
}

/* 下部の常設CTA */
.osm__below { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.osm__below .btn { width: 100%; }

/* 動画画面では右下のFAB（エントリー/シェア）を隠してシネマに集中 */
body.osm-active .entry-fab, body.osm-active .sharefab { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  .osm__scene { transition: none; }
  .osm__scene.is-active .osm__bg,
  .osm__scene.is-active .osm__cap > * { animation: none; }
  .osm__cap > * { opacity: 1; transform: none; }
  .osm__bg { transform: scale(1.04); }
}

/* ============================================================
   玲於クエスト（加藤玲於 8bit RPG風プロフィール）  prefix: .lq__
   ============================================================ */
.lq { max-width: 430px; margin: 6px auto 0; }
.lq__screen {
  position: relative; width: 100%; aspect-ratio: 9 / 16; overflow: hidden;
  background: #05060e; border-radius: 14px; cursor: pointer; user-select: none;
  font-family: 'DotGothic16', 'Noto Sans JP', sans-serif; color: #fff;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.8), 0 0 0 3px #11142a inset, 0 0 0 4px #2a2f55 inset;
  image-rendering: pixelated;
}
@media (max-width: 470px) { .lq { max-width: none; margin-left: 0; margin-right: 0; } }

/* CRTスキャンライン＋ビネット */
.lq__crt { position: absolute; inset: 0; z-index: 12; pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 2px, rgba(0,0,0,.22) 3px, rgba(0,0,0,0) 4px),
    radial-gradient(120% 100% at 50% 50%, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  mix-blend-mode: multiply;
}
.lq__crt::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,0,80,.04), rgba(0,255,120,.03), rgba(0,120,255,.04)); }

/* ステージ／ビュー */
.lq__stage { position: absolute; inset: 0; }
.lq__view { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; padding: 26px 26px 128px; }
/* タイトル・エンディングはセリフ枠なし → 全体で中央 */
.lq__view[data-view="title"], .lq__view[data-view="ending"] { padding: 26px; }
.lq__screen.is-title .lq__box { display: none; }
.lq__view.is-active { display: flex; }
.lq__view { animation: none; }
.lq__view.is-active { animation: lqIn .25s steps(3) both; }
@keyframes lqIn { from { opacity: 0; } to { opacity: 1; } }

/* タイトル */
.lq__title { text-align: center; }
.lq__title-en { font-family: 'Press Start 2P', monospace; font-size: clamp(34px, 12vw, 52px); line-height: 1.15; color: #f3dc97; text-shadow: 4px 4px 0 #b3471e, 0 0 18px rgba(243,220,151,.4); letter-spacing: 1px; }
.lq__title-ja { margin-top: 18px; font-size: 15px; color: #fff; letter-spacing: .12em; }
.lq__press { margin-top: 34px; font-size: 13px; color: #4fe0d0; animation: lqBlink 1s steps(1) infinite; }
@keyframes lqBlink { 50% { opacity: 0; } }

/* 勇者スプライト（kato.png をドット絵風に） */
.lq__hero { text-align: center; }
/* 正方形画像(1254²)を正方形ボックスに全部おさめる（切れ防止）＋ドット絵化 */
.lq__sprite { position: relative; display: block; box-sizing: border-box; width: 184px; height: 184px; margin: 0 auto; overflow: hidden; border: 3px solid #fff; box-shadow: 5px 5px 0 rgba(0,0,0,.5), 0 0 0 2px #2a2f55; background: #0b1c3a; }
.lq__sprite img { position: absolute; top: 0; left: 0; width: 84px; height: 84px; object-fit: cover; image-rendering: pixelated; transform: scale(2.19); transform-origin: top left; filter: saturate(1.12) contrast(1.04); animation: lqBob 1.1s steps(2) infinite; }
@keyframes lqBob { 50% { transform: scale(2.19) translateY(-2px); } }
.lq__sprite--sm { width: 132px; height: 132px; }
.lq__sprite--sm img { width: 64px; height: 64px; transform: scale(2.0); animation: none; }
.lq__plate { box-sizing: border-box; width: 184px; margin: 14px auto 0; display: block; font-size: 16px; font-weight: 700; letter-spacing: .12em; line-height: 1.4; text-align: center; background: #0b1c3a; border: 3px solid #fff; padding: 12px 10px; box-shadow: 5px 5px 0 rgba(0,0,0,.5), 0 0 0 2px #2a2f55; }
.lq__plate span { display: block; margin-top: 6px; font-family: 'Press Start 2P', monospace; font-size: 9px; letter-spacing: .04em; color: #9fb4e6; }
.lq__plate em { display: block; margin-top: 7px; padding-top: 7px; border-top: 1px dotted rgba(255,255,255,.25); font-style: normal; font-size: 10px; letter-spacing: .02em; color: #f3dc97; }

/* RPGウィンドウ（ステータス／とくぎ／クエスト） */
.lq__win { width: 100%; max-width: 320px; background: rgba(8,16,40,.92); border: 3px solid #fff; box-shadow: 6px 6px 0 rgba(0,0,0,.55), 0 0 0 2px #2a2f55; padding: 16px 16px 18px; }
.lq__win-h { font-size: 14px; color: #f3dc97; letter-spacing: .1em; margin-bottom: 12px; }
.lq__row { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; padding: 4px 0; border-bottom: 1px dotted rgba(255,255,255,.25); }
.lq__row span { color: #9fb4e6; } .lq__row b { color: #fff; font-weight: 400; }
.lq__bar { display: flex; justify-content: space-between; align-items: center; gap: 8px; font-size: 12px; margin-top: 8px; color: #9fb4e6; }
.lq__bar i { color: #4fe0d0; font-style: normal; letter-spacing: 2px; } .lq__bar em { color: rgba(255,255,255,.25); font-style: normal; }
.lq__stats3 { display: flex; gap: 8px; margin-top: 14px; }
.lq__stats3 > div { flex: 1; text-align: center; background: rgba(79,224,208,.1); border: 1px solid rgba(79,224,208,.4); padding: 8px 4px; }
.lq__stats3 b { display: block; font-size: 18px; color: #f3dc97; } .lq__stats3 span { font-size: 9.5px; color: #9fb4e6; }
.lq__cmd { list-style: none; margin: 0; padding: 0; } .lq__cmd li { font-size: 15px; padding: 7px 0; color: #fff; }
.lq__cmd li:hover { color: #4fe0d0; }
.lq__cap { margin-top: 12px; font-size: 12px; color: #9fb4e6; line-height: 1.8; }
.lq__quests { list-style: none; margin: 0; padding: 0; } .lq__quests li { padding: 2px 0; }
.lq__quests li a { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 13px; padding: 7px 8px; color: #fff; text-decoration: none; border-bottom: 1px dotted rgba(255,255,255,.18); }
.lq__quests li a:hover { color: #4fe0d0; background: rgba(79,224,208,.08); }
.lq__quests .lq__ext { color: #f3dc97; font-size: 12px; }
.lq__more { margin-top: 12px; font-size: 12px; color: #f3dc97; }

/* 「つづきを見る」ボタン（操作する画面でのみ表示） */
.lq__next { position: absolute; right: 12px; bottom: 10px; z-index: 3; display: none; cursor: pointer; align-items: center; gap: 4px; font: 700 12px/1 inherit; color: #0b1c3a; background: #f3dc97; border: 2px solid #fff; box-shadow: 3px 3px 0 rgba(0,0,0,.5); padding: 9px 13px; }
.lq__next:hover { background: #fff; }
.lq__screen.is-inter .lq__next { display: inline-flex; }
.lq__screen.is-inter .lq__arrow { display: none; }
.lq__screen.is-inter .lq__text { padding-right: 120px; }

/* 目次（章ジャンプ）パネル */
.lq__menu { position: absolute; inset: 0; z-index: 28; display: flex; flex-direction: column; background: rgba(5,6,14,.96); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }
.lq__menu[hidden] { display: none; }
.lq__menu-h { display: flex; align-items: center; justify-content: space-between; padding: 16px 16px 12px; font-size: 14px; letter-spacing: .14em; color: #f3dc97; border-bottom: 2px solid rgba(255,255,255,.2); }
.lq__menu-x { cursor: pointer; width: 30px; height: 30px; font-size: 14px; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4); }
.lq__menu-list { list-style: none; margin: 0; padding: 8px; overflow-y: auto; flex: 1; }
.lq__menu-list li { margin: 0; }
.lq__menu-list button { width: 100%; text-align: left; cursor: pointer; display: flex; align-items: center; gap: 10px; font: inherit; font-size: 14px; color: #fff; background: none; border: 0; border-bottom: 1px dotted rgba(255,255,255,.16); padding: 12px 8px; }
.lq__menu-list button:hover { color: #4fe0d0; background: rgba(79,224,208,.08); }
.lq__menu-n { font-family: 'Press Start 2P', monospace; font-size: 9px; color: #f3dc97; }

button.lq__ebtn { font: inherit; cursor: pointer; }

/* 実績・動画を動画内で開くオーバーレイ */
.lq__viewer { position: absolute; inset: 0; z-index: 30; display: flex; flex-direction: column; background: #05060e; }
.lq__viewer[hidden] { display: none; }
.lq__viewer-bar { display: flex; align-items: center; gap: 8px; padding: 8px 10px; background: #0b1c3a; border-bottom: 2px solid #fff; }
.lq__viewer-title { flex: 1; min-width: 0; font-size: 12px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lq__viewer-ext { flex: 0 0 auto; font-size: 11px; color: #4fe0d0; text-decoration: none; padding: 4px 8px; border: 1px solid rgba(79,224,208,.5); }
.lq__viewer-close { flex: 0 0 auto; cursor: pointer; width: 30px; height: 30px; font-size: 14px; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4); }
.lq__viewer-close:hover { background: rgba(255,255,255,.25); }
.lq__viewer-body { flex: 1; min-height: 0; background: #fff; }
.lq__viewer-body iframe { width: 100%; height: 100%; border: 0; display: block; }

/* エンディングのメール依頼ボタン */
.lq__ebtn--mail { background: #4fe0d0; color: #06202a; border-color: #fff; }
.lq__end-row { display: flex; gap: 10px; justify-content: center; }
.lq__end-row .lq__ebtn { width: auto; flex: 1; max-width: 160px; }

/* 作品ギャラリー（実績画像） */
.lq__win--wide { max-width: 340px; }
.lq__gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.lq__gal-i { display: block; aspect-ratio: 1 / 1; overflow: hidden; border: 2px solid #fff; box-shadow: 3px 3px 0 rgba(0,0,0,.5); background: #0b1c3a; }
.lq__gal-i img { width: 100%; height: 100%; object-fit: cover; image-rendering: auto; display: block; }
/* 経歴タイムライン（ドット絵マーカー） */
.lq__tl { list-style: none; margin: 2px 0 0; padding: 0; }
.lq__tl li { position: relative; padding: 6px 0 6px 16px; border-bottom: 1px dotted rgba(255,255,255,.18); }
.lq__tl li::before { content: ""; position: absolute; left: 1px; top: 11px; width: 7px; height: 7px; background: #4fe0d0; box-shadow: 0 0 0 1px #0b1c3a, 2px 2px 0 rgba(0,0,0,.4); }
.lq__tl-y { display: block; font-size: 10px; letter-spacing: .08em; color: #f3dc97; }
.lq__tl-t { display: block; margin-top: 2px; font-size: 11.5px; line-height: 1.5; color: #fff; }

/* 動画 */
.lq__movies { display: flex; flex-direction: column; gap: 8px; }
.lq__movie-card { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; border: 2px solid #fff; box-shadow: 4px 4px 0 rgba(0,0,0,.5); background: #000; }
.lq__movie-card img { width: 100%; height: 100%; object-fit: cover; image-rendering: auto; display: block; }
.lq__play { position: absolute; inset: 0; margin: auto; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.55); border: 2px solid #fff; border-radius: 50%; color: #fff; font-size: 14px; }
.lq__movie-card:hover .lq__play { background: #ff3b3b; }

/* ドット絵装飾（ピクセルSVG） */
.lq__pixrow { display: flex; gap: 10px; justify-content: center; margin: 14px 0 2px; }
.lq__pix { width: 18px; height: 18px; image-rendering: pixelated; }
.lq__pix--star { fill: #f3dc97; } .lq__pix--heart { fill: #ff6ad5; } .lq__pix--coin { fill: #f3dc97; }
.lq__pix--film { fill: #4fe0d0; } .lq__pix--bolt { fill: #ffd84a; }

/* セクション見出しのドットアイコン */
.lq__win-h { display: flex; align-items: center; gap: 7px; }
.lq__win-h .lq__pix { width: 15px; height: 15px; flex: 0 0 auto; animation: none; }

/* ステータスの ♥LIFE 表示 */
.lq__life { display: flex; align-items: center; gap: 4px; margin: 0 0 12px; }
.lq__life .lq__pix { width: 15px; height: 15px; animation: none; }
.lq__life span { margin-left: 6px; font-size: 10px; letter-spacing: .14em; color: #9fb4e6; font-family: 'Press Start 2P', monospace; }

/* ピクセル星空（背景レイヤー） */
.lq__stars {
  position: absolute; inset: 0; pointer-events: none; opacity: .6;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 16%, #fff 60%, transparent 60%),
    radial-gradient(1.5px 1.5px at 80% 10%, #9fb4e6 60%, transparent 60%),
    radial-gradient(1.5px 1.5px at 33% 40%, #f3dc97 60%, transparent 60%),
    radial-gradient(1.5px 1.5px at 90% 52%, #fff 60%, transparent 60%),
    radial-gradient(1.5px 1.5px at 18% 74%, #9fb4e6 60%, transparent 60%),
    radial-gradient(1.5px 1.5px at 64% 86%, #fff 60%, transparent 60%),
    radial-gradient(1.5px 1.5px at 52% 24%, #ff6ad5 60%, transparent 60%),
    radial-gradient(1.5px 1.5px at 72% 68%, #f3dc97 60%, transparent 60%),
    radial-gradient(1.5px 1.5px at 42% 90%, #fff 60%, transparent 60%),
    radial-gradient(1.5px 1.5px at 6% 46%, #fff 60%, transparent 60%);
  animation: lqTwinkle 2.6s steps(2) infinite;
}
@keyframes lqTwinkle { 50% { opacity: .28; } }
@media (prefers-reduced-motion: reduce) { .lq__stars { animation: none; } }
.lq__pixrow .lq__pix { animation: lqBlink 1.4s steps(1) infinite; }
.lq__pixrow .lq__pix:nth-child(2) { animation-delay: .45s; } .lq__pixrow .lq__pix:nth-child(3) { animation-delay: .9s; }
@media (prefers-reduced-motion: reduce) { .lq__pixrow .lq__pix { animation: none; } }

/* 子ども心 */
.lq__phil { text-align: center; }
.lq__phil-big { margin-top: 14px; font-size: clamp(26px, 8vw, 38px); color: #ff6ad5; text-shadow: 3px 3px 0 #5a1840; letter-spacing: .04em; }

/* エンディング */
.lq__end { text-align: center; width: 100%; }
.lq__end-h { font-family: 'Press Start 2P', monospace; font-size: clamp(15px, 5vw, 20px); line-height: 1.5; color: #f3dc97; text-shadow: 3px 3px 0 #b3471e; }
.lq__end-msg { margin: 20px 0 22px; font-size: 15px; line-height: 1.9; color: #fff; }
.lq__end-cta { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.lq__ebtn { width: 100%; max-width: 280px; padding: 13px 16px; font-size: 13px; letter-spacing: .06em; text-decoration: none; color: #fff; background: rgba(11,28,58,.9); border: 2px solid #fff; box-shadow: 4px 4px 0 rgba(0,0,0,.5); }
.lq__ebtn:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 rgba(0,0,0,.5); }
.lq__ebtn--main { background: #f3dc97; color: #2a200a; border-color: #fff; font-weight: 700; }

/* HUD（♪・⛶） */
.lq__hud { position: absolute; top: 0; right: 0; z-index: 20; display: flex; gap: 8px; padding: 12px; }
.lq__hbtn { width: 38px; height: 38px; cursor: pointer; font-size: 16px; color: #fff; background: rgba(11,28,58,.8); border: 2px solid #fff; box-shadow: 3px 3px 0 rgba(0,0,0,.5); display: flex; align-items: center; justify-content: center; font-family: inherit; }
.lq__hbtn.is-on { color: #4fe0d0; border-color: #4fe0d0; }

/* ダイアログボックス */
.lq__box { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 16; min-height: 92px;
  background: rgba(6,12,30,.96); border: 3px solid #fff; box-shadow: 0 0 0 2px #2a2f55, 6px 6px 0 rgba(0,0,0,.5);
  padding: 14px 16px; }
.lq__screen.is-ending .lq__box { display: none; }
.lq__text { margin: 0; font-size: 14.5px; line-height: 1.85; letter-spacing: .02em; min-height: 1.85em; }
.lq__arrow { position: absolute; right: 12px; bottom: 8px; color: #4fe0d0; font-size: 13px; opacity: 0; animation: lqBlink 1s steps(1) infinite; }
.lq__arrow.is-show { opacity: 1; }

/* 下部ボタン */
.lq__below { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.lq__below .btn { width: 100%; }

/* 全画面（玲於クエストも擬似FS対応） */
.lq__screen.is-fs { position: fixed; inset: 0; z-index: 9999; width: 100vw; height: 100vh; height: 100dvh; max-width: none; aspect-ratio: auto; border-radius: 0; background: #05060e; }
.lq__screen:fullscreen { width: auto; height: 100vh; aspect-ratio: 9 / 16; max-width: 100vw; border-radius: 0; }
.lq__screen:-webkit-full-screen { width: auto; height: 100vh; aspect-ratio: 9 / 16; max-width: 100vw; border-radius: 0; }

@media (prefers-reduced-motion: reduce) {
  .lq__view.is-active, .lq__sprite img, .lq__press, .lq__arrow { animation: none; }
}

/* PR動画（インタラクティブ：最後にボタンが出る） */
.prv { max-width: 420px; margin: 0 auto; }
.prv__stage { position: relative; width: 100%; aspect-ratio: 9 / 16; background: #000; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 60px -28px rgba(8,10,20,.6); cursor: pointer; }
.prv__video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.prv__big { position: absolute; inset: 0; margin: auto; width: 72px; height: 72px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.5); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: transform .18s, background .18s; }
.prv__big svg { width: 40%; height: 40%; margin-left: 4%; }
.prv__big:hover { transform: scale(1.08); background: rgba(0,0,0,.6); }
.prv__stage.is-playing .prv__big { opacity: 0; pointer-events: none; }
/* 終盤に動画の上へ重なって出る押せるボタン（ボトムシート） */
.prv__cta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; display: none; padding: 28px 18px 18px; background: linear-gradient(180deg, rgba(5,6,14,0), rgba(5,6,14,.55) 32%, rgba(5,6,14,.92)); }
.prv__cta.is-show { display: block; animation: prvUp .45s ease; }
@keyframes prvUp { from { transform: translateY(36%); opacity: 0; } to { transform: none; opacity: 1; } }
.prv__cta-in { width: 100%; text-align: center; }
.prv__cta-h { font-family: 'Noto Serif JP', serif; font-size: clamp(16px, 4.6vw, 20px); font-weight: 600; color: #fff; letter-spacing: .04em; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.prv__btn { display: block; width: 100%; max-width: 300px; margin: 0 auto 11px; padding: 15px 18px; border-radius: 12px; font-size: 15px; font-weight: 800; letter-spacing: .03em; text-decoration: none; }
.prv__btn--main { color: #2a200a; background: linear-gradient(135deg, #d9b45c, #f3dc97 45%, #c2982f); border: 1px solid rgba(168,128,38,.55); box-shadow: 0 12px 26px -10px rgba(150,110,25,.7); }
.prv__btn--line { color: #fff; background: #06c755; box-shadow: 0 12px 26px -12px rgba(6,199,85,.7); }
.prv__btn--main:hover, .prv__btn--line:hover { transform: translateY(-2px); }
.prv__replay { display: inline-flex; align-items: center; gap: 5px; margin-top: 6px; cursor: pointer; font: 700 13px/1 inherit; color: rgba(255,255,255,.92); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.4); border-radius: 999px; padding: 9px 16px; }
.prv__replay:hover { background: rgba(255,255,255,.22); }
.prv__below { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.prv__below .btn { width: 100%; }

/* 紹介動画ページ（YouTube埋め込み → 無料説明会CTA） */
.introv { max-width: 880px; margin: 0 auto; }
.ytlite { position: relative; aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; cursor: pointer; background: #000; box-shadow: 0 24px 60px -28px rgba(8,10,20,.6), 0 0 0 1px rgba(255,255,255,.04) inset; }
.ytlite__thumb { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease, filter .35s ease; }
.ytlite:hover .ytlite__thumb { transform: scale(1.03); filter: brightness(.88); }
.ytlite__play { position: absolute; inset: 0; margin: auto; width: 72px; height: 50px; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.ytlite__play svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 14px rgba(0,0,0,.5)); transition: transform .2s ease; opacity: .92; }
.ytlite:hover .ytlite__play svg { transform: scale(1.08); opacity: 1; }
.ytlite__frame { width: 100%; height: 100%; border: 0; display: block; }
.introv__cta { margin-top: 22px; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: clamp(20px, 4vw, 30px); box-shadow: var(--shadow); }
.introv__lead { font-size: 15px; line-height: 1.9; color: var(--ink-soft); margin-bottom: 18px; }
.introv__lead b { color: var(--ink); font-weight: 700; }
.introv__cta .btn--lg { width: 100%; max-width: 360px; }
.introv__sub { display: flex; gap: 10px; justify-content: center; margin-top: 14px; flex-wrap: wrap; }

/* 講師プロフィール内「動画で見る」ボタン（加藤玲於のみ表示） */
.phero__movie { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 11px 20px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-decoration: none; color: #2a200a; background: linear-gradient(135deg, #d9b45c 0%, #f3dc97 45%, #c2982f 100%); border: 1px solid rgba(168,128,38,.55); box-shadow: 0 10px 24px -12px rgba(150,110,25,.7), inset 0 1px 0 rgba(255,255,255,.45); transition: transform .18s ease, box-shadow .18s ease; }
.phero__movie:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(150,110,25,.85), inset 0 1px 0 rgba(255,255,255,.55); }
.phero__movie-ic { display: inline-flex; width: 20px; height: 20px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(0,0,0,.22); color: #fff; font-size: 9px; }

/* ============================================================
   全体の文字を少しだけ小さく（px指定が多いため zoom で一律縮小）
   ※全画面プレーヤーは zoom を打ち消して画面いっぱいを維持
   ============================================================ */
body { zoom: 0.92; }
.osm__player.is-fs, .lq__screen.is-fs { zoom: calc(1 / 0.92); }
.osm__player:fullscreen, .lq__screen:fullscreen,
.osm__player:-webkit-full-screen, .lq__screen:-webkit-full-screen { zoom: 1; }
