/* ============================================================
   STRIKE STUDIO — Concept Build
   Ink × Bone × Aged Brass / motion-heavy showcase
   ============================================================ */
:root {
  --ink: #17181b;
  --ink-2: #202127;
  --bone: #e9e5db;
  --bone-2: #f2efe7;
  --brass: #a98b4f;
  --brass-bright: #c9a75f;
  --oxblood: #7a3b34;
  --smoke: #8b8a85;
  --line-ink: rgba(233, 229, 219, 0.14);
  --line-bone: rgba(23, 24, 27, 0.16);

  --font-en: "Big Shoulders", "Arial Narrow", sans-serif;
  --font-jp: "Zen Kaku Gothic New", sans-serif;
  --font-min: "Shippori Mincho B1", serif;

  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.25, 0.8, 0.25, 1);

  --ss-admin-bar-offset: 0px;
  --ss-mobile-header-height: 69px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scrollbar-width: thin; scrollbar-color: var(--brass) var(--ink); overflow-x: clip; }
body.admin-bar { --ss-admin-bar-offset: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar { --ss-admin-bar-offset: 46px; }
}
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
li { list-style: none; }

/* grain */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 90;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 1.4%); }
  100% { transform: translate(1.6%, -1%); }
}

::selection { background: var(--brass); color: var(--ink); }

/* ============================================================
   PRELOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  color: var(--bone);
}
.loader__panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5%;
  background: var(--ink-2);
  z-index: -1;
}
.loader__panel--1 { top: 0; }
.loader__panel--2 { bottom: 0; }
.loader__word {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(34px, 6vw, 72px);
  letter-spacing: 0.04em;
  overflow: hidden;
}
.loader__word .ch {
  display: inline-block;
  transform: translateY(110%);
  animation: ch-up 0.9s var(--ease-out) forwards;
  animation-delay: calc(var(--i) * 0.04s + 0.1s);
}
@keyframes ch-up { to { transform: translateY(0); } }
.loader__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.loader__count {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--brass);
  min-width: 3.4em;
}
.loader__bar {
  position: relative;
  width: min(38vw, 320px);
  height: 1px;
  background: var(--line-ink);
}
.loader__bar i {
  position: absolute;
  inset: 0;
  background: var(--brass);
  transform-origin: left;
  transform: scaleX(0);
}
/* exit */
.loader.is-done .loader__inner { opacity: 0; transition: opacity 0.3s; }
.loader.is-done .loader__panel--1 { transform: translateY(-101%); transition: transform 0.9s var(--ease-out) 0.15s; }
.loader.is-done .loader__panel--2 { transform: translateY(101%); transition: transform 0.9s var(--ease-out) 0.15s; }
.loader.is-gone { display: none; }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor { position: fixed; inset: 0; z-index: 95; pointer-events: none; }
.cursor__dot,
.cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__dot {
  width: 6px;
  height: 6px;
  background: var(--brass-bright);
}
.cursor__ring {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(169, 139, 79, 0.55);
  transition: width 0.35s var(--ease-soft), height 0.35s var(--ease-soft),
    background-color 0.35s var(--ease-soft), border-color 0.35s var(--ease-soft);
}
.cursor__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.25s;
}
.cursor.is-hover .cursor__ring {
  width: 74px;
  height: 74px;
  background: var(--brass-bright);
  border-color: var(--brass-bright);
}
.cursor.is-hover .cursor__label { opacity: 1; }
.cursor.is-hover .cursor__dot { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ============================================================
   PROGRESS THREAD
   ============================================================ */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  z-index: 80;
  background: rgba(169, 139, 79, 0.12);
}
.progress i {
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--brass), var(--brass-bright));
  transform-origin: top;
  transform: scaleY(0);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: var(--ss-admin-bar-offset);
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  mix-blend-mode: difference; /* どのトーンの上でも成立させる */
  color: #fff;
  transition: transform 0.5s var(--ease-soft);
}
.header.is-hidden { transform: translateY(-110%); }
.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  line-height: 1;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.header__mark {
  width: 11px;
  height: 11px;
  background: var(--brass-bright);
  transform: skewX(-12deg);
}
.header__nav { display: flex; gap: clamp(18px, 3vw, 40px); }
.header__nav a {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  padding: 4px 0;
}
[data-hover-flip] {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: top;
}
[data-hover-flip] span {
  display: block;
  transition: transform 0.45s var(--ease-out);
}
[data-hover-flip] span + span {
  position: absolute;
  inset: 0;
  transform: translateY(105%);
  color: var(--brass-bright);
}
a:hover [data-hover-flip] span:first-child { transform: translateY(-105%); }
a:hover [data-hover-flip] span + span { transform: translateY(0); }
.header__cta {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 22px;
  border-radius: 99px;
  transition: background-color 0.35s, color 0.35s, border-color 0.35s;
}
.header__cta:hover { background: #fff; color: #000; border-color: #fff; }
@media (max-width: 720px) { .header__nav { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.strike-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: clamp(90px, 14vh, 140px) clamp(20px, 5vw, 64px) 90px;
  overflow: clip;
}
.strike-hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.strike-hero__frame-line {
  position: absolute;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  height: 1px;
  background: var(--line-ink);
  transform: scaleX(0);
  transition: transform 1.4s var(--ease-out) 0.9s;
}
.is-loaded .strike-hero__frame-line { transform: scaleX(1); }
.strike-hero__frame-line--t { top: 84px; transform-origin: left; }
.strike-hero__frame-line--b { bottom: 72px; transform-origin: right; }

.strike-hero__inner { position: relative; }
.strike-hero__eyebrow {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--brass);
  margin-bottom: clamp(20px, 3vh, 36px);
}
.strike-hero__title {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(88px, 17.5vw, 300px);
  line-height: 0.82;
  letter-spacing: 0.005em;
  margin-left: -0.04em;
}
.strike-hero__row { display: block; overflow: hidden; padding-bottom: 0.05em; }
.strike-hero__row--2 { margin-left: clamp(30px, 9vw, 180px); }
.strike-hero__word { display: inline-block; }
.strike-hero__word--stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--bone);
}
.strike-hero__word .ch {
  display: inline-block;
  transform: translateY(115%) rotate(6deg);
  transform-origin: bottom left;
}
.is-loaded .strike-hero__word .ch {
  animation: hero-ch 1.1s var(--ease-out) forwards;
  animation-delay: calc(var(--i) * var(--stagger, 0.032s) + var(--delay, 0s));
}
@keyframes hero-ch { to { transform: translateY(0) rotate(0); } }

.strike-hero__foot {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: clamp(20px, 4vw, 56px);
  margin-top: clamp(30px, 5vh, 56px);
}
.strike-hero__ja {
  font-family: var(--font-min);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 27px);
  letter-spacing: 0.06em;
}
.strike-hero__desc { font-size: 14px; color: var(--smoke); }
.strike-hero__actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 32px);
  margin-top: 8px;
}
@media (max-width: 720px) {
  .strike-hero__foot { grid-template-columns: 1fr; }
  .sp { display: inline; }
}

/* reveal-line: マスク付き行リビール */
.reveal-line { overflow: hidden; }
.reveal-line > span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 1s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-line.is-in > span { transform: translateY(0); }

/* reveal-up */
.reveal-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-up.is-in { opacity: 1; transform: none; }

/* reveal-mask: 画像のクリップリビール + 内側ズーム */
.reveal-mask { overflow: hidden; }
.reveal-mask { clip-path: inset(0 0 100% 0); transition: clip-path 1.15s var(--ease-out); }
.reveal-mask img { transform: scale(1.28); transition: transform 1.4s var(--ease-out); }
.reveal-mask.is-in { clip-path: inset(0 0 0% 0); }
.reveal-mask.is-in img { transform: scale(1); }

/* buttons */
.btn-pill {
  position: relative;
  display: inline-grid;
  place-items: center;
  padding: 16px 38px;
  border-radius: 99px;
  overflow: hidden;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--ink);
  isolation: isolate;
}
.btn-pill__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--bone);
  border-radius: inherit;
  transition: transform 0.5s var(--ease-out);
}
.btn-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--brass-bright);
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
}
.btn-pill:hover::after { transform: translateY(0); }
.btn-under {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding-bottom: 6px;
}
.btn-under__line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.btn-under:hover .btn-under__line { transform: scaleX(0); transform-origin: left; transition-delay: 0s; }
.btn-under:hover .btn-under__line { animation: line-replay 0.9s var(--ease-out); }
@keyframes line-replay {
  0% { transform: scaleX(1); transform-origin: right; }
  50% { transform: scaleX(0); transform-origin: right; }
  50.01% { transform-origin: left; }
  100% { transform: scaleX(1); transform-origin: left; }
}

.strike-hero__scroll {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--smoke);
}
.strike-hero__scroll i {
  width: 52px;
  height: 1px;
  background: var(--brass);
  transform-origin: left;
  animation: scroll-line 2s var(--ease-soft) infinite;
}
@keyframes scroll-line {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  50.01% { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
  padding: 14px 0;
  overflow: clip;
  background: var(--ink);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(15px, 2vw, 22px);
  letter-spacing: 0.22em;
  color: var(--brass);
}

/* ============================================================
   PHILOSOPHY — scrollytelling
   ============================================================ */
.philosophy { position: relative; height: 320vh; background: var(--bone); color: var(--ink); }
.philosophy__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  align-content: center;
  padding: 0 clamp(20px, 8vw, 120px);
}
.philosophy__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--brass);
  margin-bottom: 30px;
}
.philosophy__text {
  font-family: var(--font-min);
  font-weight: 600;
  font-size: clamp(26px, 4.6vw, 58px);
  line-height: 1.75;
  letter-spacing: 0.04em;
  max-width: 20em;
}
.philosophy__text .w {
  display: inline-block;
  opacity: 0.13;
  transition: opacity 0.25s linear;
}
.philosophy__text .w.is-lit { opacity: 1; }

/* ============================================================
   PROGRAMS — horizontal pin
   ============================================================ */
.hwrap { position: relative; background: var(--ink); }
.hwrap__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: clip;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hwrap__head {
  position: absolute;
  top: clamp(76px, 12vh, 120px);
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  display: flex;
  align-items: baseline;
  gap: 28px;
  z-index: 2;
}
.hwrap__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--brass);
}
.hwrap__title {
  font-family: var(--font-min);
  font-weight: 600;
  font-size: clamp(24px, 3.4vw, 40px);
}
.hwrap__hint {
  margin-left: auto;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--smoke);
  animation: hint-x 1.8s var(--ease-soft) infinite;
}
@keyframes hint-x { 50% { transform: translateX(8px); } }

.hwrap__track {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 0 clamp(20px, 6vw, 90px);
  will-change: transform;
  margin-top: clamp(40px, 8vh, 80px);
}
.panel {
  position: relative;
  flex: 0 0 auto;
  width: min(74vw, 560px);
}
.panel__idx {
  position: absolute;
  top: -0.55em;
  left: -0.1em;
  z-index: 2;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(64px, 8vw, 120px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(169, 139, 79, 0.7);
}
.panel__media {
  aspect-ratio: 4 / 3;
  background: var(--ink-2);
}
.panel__media img { transition: transform 1.4s var(--ease-out), filter 0.6s; filter: saturate(0.9); }
.panel:hover .panel__media img { transform: scale(1.06) !important; filter: saturate(1.1); }
.panel__body { padding: 22px 4px 0; }
.panel__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--brass);
  margin-bottom: 8px;
}
.panel__title {
  font-family: var(--font-min);
  font-weight: 600;
  font-size: clamp(21px, 2.4vw, 28px);
  line-height: 1.5;
  margin-bottom: 8px;
}
.panel__catch { font-size: 15px; margin-bottom: 6px; }
.panel__meta { font-size: 12px; color: var(--smoke); letter-spacing: 0.04em; }
.panel--last {
  display: grid;
  place-items: center;
  width: min(60vw, 480px);
}

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--ink); padding: clamp(80px, 14vh, 160px) clamp(20px, 5vw, 64px); }
.stats__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-ink);
}
.stats__item {
  padding: clamp(28px, 4vw, 48px) clamp(16px, 2vw, 32px);
  border-bottom: 1px solid var(--line-ink);
  border-right: 1px solid var(--line-ink);
}
.stats__item:first-child { border-left: 1px solid var(--line-ink); }
.stats__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1;
  color: var(--bone);
}
.stats__num i,
.stats__pre {
  font-style: normal;
  font-size: 0.42em;
  font-weight: 700;
  color: var(--brass);
  margin-left: 4px;
}
.stats__pre { margin: 0 4px 0 0; }
.stats__label {
  margin-top: 14px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.26em;
  color: var(--brass);
}
.stats__label span {
  display: block;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--smoke);
  margin-top: 4px;
}
@media (max-width: 860px) {
  .stats__list { grid-template-columns: 1fr 1fr; }
  .stats__item:nth-child(odd) { border-left: 1px solid var(--line-ink); }
}

/* ============================================================
   CULTURE — parallax collage
   ============================================================ */
.culture {
  background: var(--bone);
  color: var(--ink);
  padding: clamp(90px, 16vh, 180px) clamp(20px, 5vw, 64px);
  overflow: clip;
}
.culture__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--brass);
  margin-bottom: 22px;
}
.culture__title {
  font-family: var(--font-min);
  font-weight: 600;
  font-size: clamp(30px, 5.4vw, 64px);
  line-height: 1.5;
}
.culture__title em { font-style: normal; color: var(--oxblood); }
.culture__stage {
  position: relative;
  height: clamp(420px, 78vh, 720px);
  margin-top: clamp(40px, 7vh, 80px);
}
.culture__card { position: absolute; box-shadow: 0 30px 80px rgba(23, 24, 27, 0.18); }
.culture__card--1 { left: 4%; top: 6%; width: min(38vw, 420px); aspect-ratio: 4/3; }
.culture__card--2 { right: 6%; top: 0; width: min(26vw, 300px); aspect-ratio: 3/4; }
.culture__card--3 { left: 38%; bottom: 0; width: min(30vw, 360px); aspect-ratio: 4/3; }
.culture__big {
  position: absolute;
  right: -0.05em;
  bottom: 8%;
  z-index: -1;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(90px, 16vw, 260px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(169, 139, 79, 0.5);
  white-space: nowrap;
}
.culture__body { max-width: 560px; margin-top: clamp(36px, 6vh, 64px); }
@media (max-width: 720px) {
  .culture__card--1 { width: 56vw; }
  .culture__card--2 { width: 38vw; }
  .culture__card--3 { width: 46vw; }
}

/* ============================================================
   FLOW
   ============================================================ */
.flow2 {
  background: var(--bone);
  color: var(--ink);
  padding: 0 clamp(20px, 5vw, 64px) clamp(90px, 16vh, 180px);
}
.flow2__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--brass);
  margin-bottom: 18px;
}
.flow2__title {
  font-family: var(--font-min);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 44px);
  margin-bottom: clamp(36px, 6vh, 64px);
}
.flow2__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-bone); border: 1px solid var(--line-bone); }
.flow2__item { background: var(--bone-2); padding: clamp(28px, 4vw, 44px); }
.flow2__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 42px;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--brass);
}
.flow2__item h3 {
  font-family: var(--font-min);
  font-weight: 600;
  font-size: 21px;
  margin: 14px 0 8px;
}
.flow2__item p { font-size: 14px; color: rgba(23, 24, 27, 0.72); }
@media (max-width: 820px) { .flow2__list { grid-template-columns: 1fr; } }

/* ============================================================
   CTA
   ============================================================ */
.cta2 {
  background: var(--ink);
  padding: clamp(100px, 18vh, 200px) clamp(20px, 5vw, 64px);
  text-align: center;
}
.cta2__label {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--brass);
  margin-bottom: 26px;
}
.cta2__giant { display: inline-block; }
.cta2__line {
  display: block;
  font-family: var(--font-min);
  font-weight: 700;
  font-size: clamp(38px, 8.4vw, 110px);
  letter-spacing: 0.04em;
  line-height: 1.3;
  transition: color 0.4s;
}
.cta2__line .ch { display: inline-block; transition: transform 0.5s var(--ease-out); }
.cta2__giant:hover .cta2__line { color: var(--brass-bright); }
.cta2__giant:hover .cta2__line .ch { transform: translateY(-0.08em); transition-delay: calc(var(--i) * 0.02s); }
.cta2__sub {
  display: block;
  margin-top: 22px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--smoke);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer2 {
  background: var(--ink);
  border-top: 1px solid var(--line-ink);
  padding: clamp(50px, 8vh, 90px) clamp(20px, 5vw, 64px) 30px;
  overflow: clip;
}
.footer2__giant {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(52px, 12.5vw, 210px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: var(--ink-2);
  -webkit-text-stroke: 1px rgba(169, 139, 79, 0.35);
  margin-left: -0.03em;
}
.footer2__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  font-size: 12.5px;
  color: var(--smoke);
}
.footer2__copy { font-family: var(--font-en); letter-spacing: 0.2em; }

/* ============================================================
   Reduced motion — 全演出停止
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  body::after { animation: none; }
  .loader { display: none; }
  .cursor { display: none; }
  .reveal-line > span, .reveal-up, .reveal-mask, .reveal-mask img { transform: none; opacity: 1; clip-path: none; }
  .strike-hero__word .ch { transform: none; }
  .philosophy { height: auto; padding: 90px 0; }
  .philosophy__text .w { opacity: 1; }
  .hwrap__track { flex-wrap: wrap; transform: none !important; margin-top: 160px; padding-bottom: 90px; }
  .hwrap__sticky { position: static; height: auto; }
  .hwrap { height: auto !important; }
}
.no-js .loader, .no-js .cursor { display: none; }
.no-js .reveal-line > span, .no-js .reveal-up, .no-js .reveal-mask { transform: none; opacity: 1; clip-path: none; }
.no-js .strike-hero__word .ch { transform: none; }

/* ============================================================
   v2 EXTENSIONS — サブページ / ナビ / フォーム / テーブル
   (Concept トークンで v1 コンポーネントを再構成)
   ============================================================ */

/* ---------- A11y ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 120; padding: 10px 16px; background: var(--ink); color: var(--bone); }
.skip-link:focus { left: 8px; top: 8px; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

/* ---------- Tone / generic section ---------- */
.tone-ink { background: var(--ink); color: var(--text-on-ink, var(--bone)); }
.tone-bone { background: var(--bone); color: var(--ink); }
.sec { position: relative; padding: clamp(76px, 12vw, 150px) clamp(20px, 5vw, 64px); }
.sec__inner { max-width: 1160px; }
.sec__inner--narrow { max-width: 780px; }
.sec__inner--program { max-width: 880px; }
/* SiteOriginの全幅行をテーマ側の本文幅・左右余白で二重に制限しない */
.sec--siteorigin { padding-left: 0; padding-right: 0; }
.sec__inner--siteorigin, .siteorigin-content { width: 100%; max-width: none; }
.siteorigin-content > .panel-grid:first-child { margin-top: 0; }
.siteorigin-content > .panel-grid:last-child { margin-bottom: 0; }
.sec__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--brass);
  margin-bottom: 18px;
}
.sec__title {
  font-family: var(--font-min);
  font-weight: 600;
  font-size: clamp(26px, 4.4vw, 44px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.sec__title--small { font-size: clamp(20px, 3vw, 28px); }
.sec__body { max-width: 640px; }
.sec__body p + p { margin-top: 1.4em; }
.sec--404 { min-height: 70svh; display: grid; align-content: center; }
.sec--404 .sec__inner { width: 100%; min-width: 0; max-width: 780px; box-sizing: border-box; }
.sec--404 .strike-hero__actions { display: flex; flex-wrap: wrap; min-width: 0; max-width: 100%; gap: 16px; margin-top: 28px; }
.sec--404 .strike-hero__actions .btn { min-width: 0; max-width: 100%; box-sizing: border-box; white-space: normal; }

/* ---------- Page hero(下層) ---------- */
.page-hero { padding: clamp(120px, 18vh, 180px) clamp(20px, 5vw, 64px) clamp(48px, 8vh, 90px); }
.page-hero__en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.34em;
  color: var(--brass);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-min);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.page-hero__lead { margin-top: 16px; max-width: 640px; color: color-mix(in srgb, var(--bone) 75%, transparent); }
.breadcrumb { margin-bottom: clamp(18px, 3vw, 28px); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; font-family: var(--font-en); font-weight: 500; font-size: 11px; letter-spacing: 0.12em; color: var(--smoke); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 6px; opacity: 0.5; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--brass); }

/* ---------- Media ---------- */
.media { position: relative; overflow: hidden; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media__temp { position: absolute; right: 10px; bottom: 8px; font-family: var(--font-en); font-size: 10px; letter-spacing: 0.2em; color: rgba(255,255,255,0.55); }

/* ---------- Program archive rows ---------- */
.program-list { display: flex; flex-direction: column; gap: clamp(40px, 7vw, 88px); margin-top: clamp(32px, 5vw, 56px); }
.program-list li { list-style: none; }
.program-row__link { display: grid; grid-template-columns: minmax(0,7fr) minmax(0,5fr); gap: clamp(20px,4vw,56px); align-items: center; text-decoration: none; }
.program-row:nth-child(even) .program-row__link { grid-template-columns: minmax(0,5fr) minmax(0,7fr); }
.program-row:nth-child(even) .program-row__media { order: 2; }
.program-row__media .media { aspect-ratio: 4/3; }
.program-row__media img { transition: transform 0.8s var(--ease-out); }
.program-row__link:hover img { transform: scale(1.05); }
.program-row__en { font-family: var(--font-en); font-weight: 700; font-size: 13px; letter-spacing: 0.3em; color: var(--brass); margin-bottom: 10px; }
.program-row__title { font-family: var(--font-min); font-weight: 600; font-size: clamp(21px,2.6vw,28px); letter-spacing: 0.04em; margin-bottom: 10px; }
.program-row__catch { margin-bottom: 8px; }
.program-row__cap { font-size: 13px; color: var(--smoke); margin-bottom: 16px; }
.program-row__more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; border-bottom: 1px solid rgba(169,139,79,0.45); padding-bottom: 3px; }
.arrow { font-family: var(--font-en); transition: transform 0.3s var(--ease-soft); }
.program-row__link:hover .arrow { transform: translateX(4px); }
.program-list--compact { gap: clamp(28px,4vw,48px); }
.program-list--compact .program-row__title { font-size: clamp(18px,2vw,22px); }

/* ---------- Panel(横トラック)追加分 ---------- */
.panel__link { display: block; text-decoration: none; color: inherit; }
.panel__media .media { aspect-ratio: 4/3; }

/* ---------- Data table / lists / blocks ---------- */
.data-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.data-table th, .data-table td { text-align: left; padding: 16px 12px 16px 0; border-bottom: 1px solid rgba(23,24,27,0.16); vertical-align: top; }
.data-table tr:first-child th, .data-table tr:first-child td { border-top: 1px solid rgba(23,24,27,0.16); }
.data-table th { font-weight: 500; width: 42%; color: color-mix(in srgb, var(--ink) 82%, transparent); }
.data-table--price strong { font-family: var(--font-min); font-size: 17px; }
.data-table__note { display: block; font-size: 12px; color: var(--smoke); margin-top: 2px; }
.data-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table--matrix { min-width: 620px; }
.program-price-group { margin-top: 28px; }
.program-price-group:first-child { margin-top: 0; }
.program-price-group__title { margin-bottom: 10px; font-family: var(--font-min); font-size: 17px; font-weight: 600; }

.check-list { padding: 0; }
.check-list li { position: relative; list-style: none; padding: 10px 0 10px 26px; border-bottom: 1px dashed rgba(23,24,27,0.16); }
.check-list li::before { content: ""; position: absolute; left: 2px; top: 20px; width: 8px; height: 5px; border-left: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass); transform: rotate(-45deg); }

.program-block { margin-top: clamp(44px, 7vw, 72px); }
.program-block:first-child { margin-top: 0; }
.program-block__title { display: flex; flex-direction: column; gap: 4px; font-family: var(--font-min); font-weight: 600; font-size: 21px; margin-bottom: 20px; }
.program-block__title .en { font-family: var(--font-en); font-weight: 700; font-size: 12px; letter-spacing: 0.3em; color: var(--brass); }
.program-block__cap { font-size: 13px; color: var(--smoke); margin-bottom: 12px; }
.program-block__note { font-size: 13px; color: var(--smoke); margin-top: 14px; }
.program-detail__media { margin-bottom: clamp(32px,5vw,48px); }
.program-detail__media .media { aspect-ratio: 16/8; }
.program-detail__actions { margin-top: clamp(40px,6vw,64px); }

/* ---------- Prose ---------- */
.prose p + p { margin-top: 1.4em; }
.prose a { color: var(--oxblood); }
.prose--onink a { color: var(--brass); }
.prose h2 { font-family: var(--font-min); font-size: 24px; margin: 2em 0 0.8em; }
.prose h3 { font-family: var(--font-min); font-size: 19px; margin: 1.8em 0 0.7em; }
.prose ul { list-style: disc; padding-left: 1.4em; margin: 1em 0; }
.prose img { margin: 1.5em 0; }

/* ---------- Price teaser / facts / values / flow ---------- */
.price-teaser { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(23,24,27,0.16); border: 1px solid rgba(23,24,27,0.16); max-width: 720px; }
.price-teaser__item { background: color-mix(in srgb, var(--bone) 80%, #fff); padding: 26px 28px; }
.price-teaser__label { font-size: 12px; letter-spacing: 0.14em; color: var(--smoke); margin-bottom: 8px; }
.price-teaser__value { font-family: var(--font-min); font-weight: 600; font-size: 22px; }
.price-teaser__small { display: block; font-family: var(--font-jp); font-weight: 400; font-size: 12px; color: var(--smoke); margin-top: 4px; }

.fact-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: clamp(32px,5vw,56px); background: var(--line-on-ink, rgba(231,227,217,0.18)); border-top: 1px solid var(--line-on-ink, rgba(231,227,217,0.18)); border-bottom: 1px solid var(--line-on-ink, rgba(231,227,217,0.18)); }
.fact { background: var(--ink); padding: 28px 24px; }
.fact dt { font-size: 12px; letter-spacing: 0.16em; color: var(--brass); margin-bottom: 10px; }
.fact dd { margin: 0; font-family: var(--font-min); font-weight: 600; font-size: 20px; }
.fact__small { display: block; font-family: var(--font-jp); font-weight: 400; font-size: 12px; color: var(--smoke); margin-top: 6px; }

.value-list { display: flex; flex-direction: column; }
.value { padding: 28px 0; border-top: 1px solid rgba(23,24,27,0.16); }
.value:last-child { border-bottom: 1px solid rgba(23,24,27,0.16); }
.value dt { font-family: var(--font-min); font-weight: 600; font-size: 19px; margin-bottom: 8px; }
.value dd { margin: 0; }

.flow { counter-reset: step; display: flex; flex-direction: column; gap: clamp(28px,4vw,44px); margin: clamp(28px,4vw,44px) 0; padding: 0; }
.flow__step { position: relative; list-style: none; padding-left: 28px; border-left: 1px solid rgba(169,139,79,0.45); }
.flow__node { position: absolute; top: 8px; left: -5px; width: 9px; height: 9px; background: var(--bone); border: 1.5px solid var(--brass); border-radius: 50%; }
.flow__en { font-family: var(--font-en); font-weight: 700; font-size: 12px; letter-spacing: 0.26em; color: var(--brass); margin-bottom: 6px; }
.flow__title { font-family: var(--font-min); font-weight: 600; font-size: 21px; margin-bottom: 6px; }
.flow__text { max-width: 560px; }
.tone-ink .flow__node { background: var(--ink); }
.tone-ink .flow__step { border-left-color: rgba(169,139,79,0.5); }

/* ---------- FAQ accordion ---------- */
.faq-list { margin-top: clamp(24px,4vw,36px); border-top: 1px solid rgba(23,24,27,0.16); }
.faq-item { border-bottom: 1px solid rgba(23,24,27,0.16); }
.faq-item dt { margin: 0; }
.faq-item__q { display: flex; align-items: baseline; gap: 14px; width: 100%; padding: 20px 44px 20px 0; position: relative; text-align: left; font-weight: 700; letter-spacing: 0.03em; background: none; border: 0; font-family: inherit; font-size: inherit; color: inherit; cursor: pointer; transition: color 0.3s var(--ease-soft); }
.faq-item__q:hover { color: var(--oxblood); }
.faq-item__mark { font-family: var(--font-en); font-weight: 700; font-size: 17px; color: var(--brass); }
.faq-item__icon { position: absolute; right: 8px; top: 50%; width: 14px; height: 14px; margin-top: -7px; }
.faq-item__icon::before, .faq-item__icon::after { content: ""; position: absolute; top: 50%; left: 0; width: 100%; height: 1.5px; background: currentColor; transition: transform 0.35s var(--ease-soft); }
.faq-item__icon::after { transform: rotate(90deg); }
.faq-item__q[aria-expanded="true"] .faq-item__icon::after { transform: rotate(0deg); }
.faq-item__a { margin: 0; overflow: hidden; }
.faq-item__a-inner { padding: 0 0 24px 31px; color: color-mix(in srgb, var(--ink) 85%, transparent); }
.faq-item__a-inner p + p { margin-top: 1em; }

/* ---------- Access / contact / trainer / posts ---------- */
.access-mini { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,5vw,64px); align-items: center; }
.access-mini__address { font-family: var(--font-min); font-weight: 600; font-size: 18px; margin-bottom: 12px; }
.access-mini__hours { color: var(--smoke); font-size: 14px; }
.access-mini__media .media { aspect-ratio: 4/3; }
.access-detail__list { margin: 0; }
.access-detail__list > div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(23,24,27,0.16); }
.access-detail__list dt { font-size: 13px; letter-spacing: 0.12em; color: var(--smoke); padding-top: 3px; }
.access-detail__list dd { margin: 0; }
.map { margin-top: clamp(32px,5vw,48px); }
.map iframe { display: block; filter: grayscale(0.6) contrast(1.02); border: 0; width: 100%; }

.contact-line { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 28px; border: 1px solid rgba(23,24,27,0.16); background: color-mix(in srgb, var(--bone) 80%, #fff); margin-bottom: clamp(40px,6vw,56px); }
.contact-fallback__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 10px 28px; font-weight: 700; font-size: 14px; letter-spacing: 0.1em; text-decoration: none; border: 1px solid transparent; }
.btn--solid { background: var(--ink); color: var(--bone-2); }
.btn--solid:hover { background: var(--oxblood); }
.btn--line { background: #06c755; color: #fff; }
.btn--line:hover { background: #05a648; }
.btn--bone { background: var(--bone-2); color: var(--ink); }
.btn--ghost { border-color: currentColor; }

.trainer { display: grid; grid-template-columns: minmax(0,2fr) minmax(0,3fr); gap: clamp(24px,4vw,48px); align-items: start; }
.trainer__media .media { aspect-ratio: 3/4; }
.trainer__name { font-family: var(--font-min); font-weight: 600; font-size: 26px; margin-bottom: 4px; }
.trainer__en { display: inline-block; margin-left: 12px; font-family: var(--font-en); font-weight: 700; font-size: 13px; letter-spacing: 0.24em; color: var(--brass); }
.trainer__role { font-size: 13px; color: var(--smoke); margin-bottom: 18px; }

.post-list__item a { display: flex; gap: 20px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid rgba(23,24,27,0.16); text-decoration: none; }
.post-list__item time { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.1em; color: var(--brass); flex-shrink: 0; }
.post-list__item h2 { font-size: 16px; font-weight: 500; margin: 0; }
.post-date { font-family: var(--font-en); color: var(--brass); letter-spacing: 0.1em; margin-bottom: 20px; }
.pagination { margin-top: 40px; }
.pagination .nav-links { display: flex; gap: 10px; }
.pagination a, .pagination span { display: inline-grid; place-items: center; min-width: 40px; height: 40px; border: 1px solid rgba(23,24,27,0.2); text-decoration: none; }
.pagination .current { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ---------- Contact Form 7 ---------- */
.contact-form .wpcf7-form p { margin: 0 0 22px; }
.contact-form label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"],
.contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 14px; font: inherit; color: var(--ink);
  background: color-mix(in srgb, var(--bone) 75%, #fff);
  border: 1px solid rgba(23,24,27,0.2); border-radius: 0;
  transition: border-color 0.3s var(--ease-soft);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--brass); }
.contact-form .wpcf7-submit { min-height: 52px; padding: 12px 44px; background: var(--ink); color: var(--bone-2); border: 0; font-weight: 700; letter-spacing: 0.1em; cursor: pointer; transition: background-color 0.3s var(--ease-soft); }
.contact-form .wpcf7-submit:hover { background: var(--oxblood); }
.contact-form .wpcf7-not-valid-tip { color: var(--oxblood); font-size: 12px; }
.contact-form .wpcf7-response-output { border: 1px solid var(--brass); padding: 14px; margin: 20px 0 0; }
.contact-form fieldset { margin: 0 0 24px; padding: 0; border: 0; }
.contact-form legend { margin-bottom: 10px; font-weight: 700; font-size: 14px; }
.contact-form .wpcf7-list-item { margin: 0 18px 8px 0; }
.contact-form .wpcf7-acceptance .wpcf7-list-item { margin-right: 0; }
.contact-form input[type="checkbox"], .contact-form input[type="radio"] { inline-size: 1.1em; block-size: 1.1em; margin-right: 6px; vertical-align: -0.15em; }
.contact-location { margin-top: 28px; line-height: 1.8; }
.contact-location strong { font-family: var(--font-en); letter-spacing: 0.18em; }
.wpcf7 input[type="submit"], .wpcf7 .wpcf7-submit { max-width: 100%; box-sizing: border-box; }

/* ---------- CTA band v2 追加分 ---------- */
.cta2__en { font-family: var(--font-en); font-weight: 700; font-size: 12px; letter-spacing: 0.34em; color: var(--brass); margin-bottom: 26px; display: block; }
.cta2__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 36px; }
.btn-pill--line .btn-pill__bg { background: #06c755; }
.btn-pill--line { color: #fff; }
.btn-pill--line::after { background: #05a648; }
.philosophy__more { margin-top: 34px; align-self: start; }

/* ---------- Footer v2 ---------- */
.footer2__grid { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr); gap: clamp(24px,5vw,64px); margin-top: 30px; }
.footer2__info { font-size: 13px; color: var(--smoke); }
.footer2__info p + p { margin-top: 8px; }
.footer2__info a { color: inherit; }
.footer2__nav { display: flex; flex-wrap: wrap; gap: 10px 22px; align-content: start; }
.footer2__nav a { font-family: var(--font-en); font-weight: 700; font-size: 12px; letter-spacing: 0.2em; text-decoration: none; color: var(--smoke); transition: color 0.3s; }
.footer2__nav a:hover { color: var(--brass); }
.footer2__copy { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(231,227,217,0.14); font-family: var(--font-en); font-size: 11px; letter-spacing: 0.2em; color: var(--smoke); }

/* ---------- Mobile nav ---------- */
.nav-toggle { display: none; align-items: center; gap: 8px; padding: 8px; background: none; border: 0; color: inherit; cursor: pointer; }
.nav-toggle__bar { position: relative; width: 22px; height: 1px; background: currentColor; }
.nav-toggle__bar::before, .nav-toggle__bar::after { content: ""; position: absolute; left: 0; width: 100%; height: 1px; background: currentColor; transition: transform 0.3s var(--ease-soft); }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }
.nav-toggle__label { font-family: var(--font-en); font-weight: 700; font-size: 12px; letter-spacing: 0.2em; }
.nav-open .nav-toggle__bar { background: transparent; }
.nav-open .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

.mnav {
  position: fixed;
  top: calc(var(--ss-admin-bar-offset) + var(--ss-mobile-header-height));
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 65;
  background: var(--ink);
  color: var(--bone);
  display: block;
  padding: 12px clamp(24px,8vw,60px) calc(32px + env(safe-area-inset-bottom));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-soft), visibility 0.4s;
}
.nav-open .mnav { opacity: 1; visibility: visible; }
.mnav__inner { display: flex; flex-direction: column; gap: 4px; min-height: min-content; }
.mnav__link { display: flex; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(231,227,217,0.14); text-decoration: none; opacity: 0; transform: translateY(16px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); transition-delay: calc(var(--i) * 0.05s + 0.1s); }
.nav-open .mnav__link { opacity: 1; transform: none; }
.mnav__en { font-family: var(--font-en); font-weight: 700; font-size: clamp(28px, 8vw, 40px); letter-spacing: 0.04em; }
.mnav__ja { font-size: 12px; color: var(--smoke); }
.mnav__foot { margin-top: 28px; }
html.nav-open, body.nav-open { overflow: hidden; }
.nav-open .header { transform: none; background: var(--ink); mix-blend-mode: normal; }

/* ---------- Sticky CTA(モバイル) ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--ink) 94%, transparent); backdrop-filter: blur(8px); transform: translateY(110%); transition: transform 0.45s var(--ease-soft); }
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn-pill { flex: 1; text-align: center; }
.sticky-cta .btn-pill--line { flex: 0 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 359px) {
  .sec--404 .strike-hero__actions { flex-direction: column; align-items: stretch; }
  .sec--404 .strike-hero__actions .btn { width: 100%; }
  .wpcf7 input[type="submit"], .wpcf7 .wpcf7-submit { width: 100%; margin-left: 0; margin-right: 0; white-space: normal; }
}

@media (max-width: 860px) {
  .header { min-height: var(--ss-mobile-header-height); gap: 8px; }
  .header__nav { display: none; }
  .header__cta { display: none; }
  .nav-toggle { display: flex; flex-shrink: 0; }
  .sticky-cta { display: flex; }
  .footer2 { padding-bottom: 96px; }
  .footer2__grid { grid-template-columns: 1fr; }
  .program-row__link, .program-row:nth-child(even) .program-row__link { grid-template-columns: 1fr; gap: 16px; }
  .program-row:nth-child(even) .program-row__media { order: 0; }
  .price-teaser { grid-template-columns: 1fr; }
  .access-mini { grid-template-columns: 1fr; }
  .access-detail__list > div { grid-template-columns: 1fr; gap: 4px; }
  .trainer { grid-template-columns: 1fr; }
  .trainer__media { max-width: 380px; }
  .fact-list { grid-template-columns: 1fr; }
}

/* ---------- Print ---------- */
@media print {
  .header, .sticky-cta, .cursor, .progress, .loader, .mnav, .strike-hero__scroll, .marquee { display: none !important; }
}

/* ---------- v3: ヘッダードロップダウン ---------- */
.header__dd { position: relative; }
.header__submenu {
  position: absolute; top: 100%; left: -14px; min-width: 220px;
  background: var(--ink); border: 1px solid rgba(231,227,217,0.14);
  padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.25s var(--ease-soft), transform 0.25s var(--ease-soft), visibility 0.25s;
}
.header__dd:hover .header__submenu,
.header__dd:focus-within .header__submenu { opacity: 1; visibility: visible; transform: none; }
.header__submenu a { display: block; padding: 10px 18px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; color: var(--bone); transition: color 0.2s, padding-left 0.25s var(--ease-soft); }
.header__submenu a:hover { color: var(--brass); padding-left: 24px; }
/* differenceヘッダー内でも視認できるようサブメニューはblend解除 */
.header__submenu { mix-blend-mode: normal; }

/* ---------- v3: Instagramグリッド(Smash Balloon微調整) ---------- */
.ig-feed { margin-top: 10px; }
.ig-feed #sb_instagram { padding-bottom: 0 !important; }
.sec--ig .sec__inner { max-width: 1160px; }

/* ---------- v3: フロントのお知らせ見出し ---------- */
.post-list__item h3 { font-size: 16px; font-weight: 500; margin: 0; }
.sec--contact .contact-form { margin: 26px 0 6px; }
