/* ==========================================================================
   HADO SATELLITE Theme — main.css
   Palette: orange (main) / black (accent) / white (base)
   Type   : Kanit (latin display) + Zen Kaku Gothic New (japanese)
   ========================================================================== */

:root {
  /* --- ベース --- */
  --c-paper:     #FFFFFF;
  --c-paper-2:   #F2F2F2;
  --c-ink:       #101010;
  --c-ink-deep:  #070707;

  /* --- メインカラー：オレンジ --- */
  --c-orange:      #FF6A00;
  --c-orange-lt:   #FF9E45;
  --c-orange-deep: #D14A00;

  /* --- 暗い面での文字・罫線 --- */
  --c-on-dark:      #FFFFFF;
  --c-on-dark-60:   rgba(255, 255, 255, .62);
  --c-on-dark-35:   rgba(255, 255, 255, .38);
  --c-on-dark-15:   rgba(255, 255, 255, .16);

  /* --- 明るい面での文字・罫線 --- */
  --c-on-light:     var(--c-ink);
  --c-on-light-60:  rgba(16, 16, 16, .62);
  --c-on-light-35:  rgba(16, 16, 16, .40);
  --c-on-light-15:  rgba(16, 16, 16, .13);

  /* 既定は暗い面（ヒーローが黒のため） */
  --c-bg:       var(--c-ink);
  --c-bg-deep:  var(--c-ink-deep);
  --c-frost:    var(--c-on-dark);
  --c-frost-60: var(--c-on-dark-60);
  --c-frost-35: var(--c-on-dark-35);
  --c-frost-15: var(--c-on-dark-15);
  --c-cyan:     var(--c-orange);
  --c-white:    #FFFFFF;

  --grad-head:  linear-gradient(180deg, #FF6A00 0%, #FFC79A 100%);
  --grad-cta:   linear-gradient(123deg, #7A2600 0%, #FF6A00 45%, #FF9E45 100%);
  --shadow-cta: 0 4px 4px rgba(209, 74, 0, .25), 4px 4px 12px rgba(255, 158, 69, .55) inset;

  --r-lg: clamp(28px, 5vw, 60px);
  --r-md: clamp(18px, 3vw, 32px);

  --ease: cubic-bezier(.25, .1, .25, 1);

  --shell: min(1280px, 100% - 2.5rem);
}

/* 明るいセクション：トークンを差し替えるだけで配下すべてが反転する */
.sec-light {
  --c-bg:       var(--c-paper);
  --c-bg-deep:  var(--c-paper-2);
  --c-frost:    var(--c-on-light);
  --c-frost-60: var(--c-on-light-60);
  --c-frost-35: var(--c-on-light-35);
  --c-frost-15: var(--c-on-light-15);
  --c-cyan:     var(--c-orange-deep);
  background: var(--c-paper);
  color: var(--c-ink);
}

.sec-dark {
  background: var(--c-ink);
  color: var(--c-on-dark);
}

/* 明るい面では見出しのグラデーションを解除して黒ベタに */
.sec-light .display,
.sec-light .section-head {
  background: none;
  -webkit-text-fill-color: var(--c-ink);
  color: var(--c-ink);
}

@media (min-width: 768px) { :root { --shell: min(1280px, 100% - 5rem); } }

/* --------------------------------------------------------- reset / base */

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

html, body { margin: 0; padding: 0; background: var(--c-paper); }

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

body {
  color: var(--c-ink);
  font-family: 'Kanit', 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, p, figure, ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }

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

:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.shell { width: var(--shell); margin-inline: auto; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 999;
  padding: .75rem 1.25rem; background: var(--c-ink); color: #FFFFFF;
  font-weight: 700; border-radius: 999px; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------- typography */

.display {
  background: var(--grad-head);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .88;
}

.section-head {
  font-size: clamp(3rem, 12vw, 160px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-align: center;
}

.eyebrow {
  font-size: clamp(.68rem, 1.1vw, .82rem);
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--c-cyan);
}

.lede {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.95;
}

/* --------------------------------------------------------- buttons */

.btn-energy {
  display: inline-block;
  padding: .95rem 2.4rem;
  border-radius: 999px;
  background: var(--c-ink);
  box-shadow: 0 0 0 2px var(--c-orange) inset, 0 6px 18px rgba(255, 106, 0, .32);
  color: #FFFFFF;
  font-weight: 500;
  font-size: clamp(.75rem, 1.3vw, 1rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-energy:hover {
  transform: translateY(-2px);
  background: var(--c-orange);
  color: var(--c-ink);
  box-shadow: 0 0 0 2px var(--c-orange) inset, 0 10px 26px rgba(255, 106, 0, .5);
}
@media (min-width: 768px) { .btn-energy { padding: 1.05rem 3rem; } }

.btn-ghost {
  display: inline-block;
  padding: .8rem 2.2rem;
  border: 2px solid var(--c-frost);
  border-radius: 999px;
  color: var(--c-frost);
  font-weight: 500;
  font-size: clamp(.78rem, 1.2vw, 1rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.btn-ghost:hover { background: var(--c-orange); border-color: var(--c-orange); color: var(--c-ink); }

/* 明るい面のゴーストボタン */
.sec-light .btn-ghost { border-color: rgba(16, 16, 16, .35); color: var(--c-ink); }
.sec-light .btn-ghost:hover { background: var(--c-orange); border-color: var(--c-orange); color: var(--c-ink); }

.btn-ghost--ink { border-color: rgba(12, 12, 12, .45); color: var(--c-ink); }
.btn-ghost--ink:hover { background: rgba(12, 12, 12, .07); }

/* --------------------------------------------------------- reveal motion */

[data-reveal] {
  opacity: 0;
  transform: translate3d(var(--rx, 0), var(--ry, 30px), 0);
  transition:
    opacity var(--rd, .7s) var(--ease) var(--rdelay, 0s),
    transform var(--rd, .7s) var(--ease) var(--rdelay, 0s);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* インライン要素には transform が効かないため */
span[data-reveal] { display: inline-block; }

/* ==========================================================================
   1. HERO
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow-x: clip;
}
@media (max-width: 767px) {
  .hero {
    min-height: 50svh; /* スマホ画面の高さの半分 */
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 -10% 0;
  height: 60%;
  pointer-events: none;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.pattern {
  width: 100%;
  height: 100%;
  background: url(https://hado-satellite-fukuoka-area.com/wp-content/uploads/2026/07/yokojima.png);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

/* --- navbar --- */
.site-nav {
  position: fixed; /* absolute から固定配置に変更 */
  top: 0;          /* 画面の上端に固定 */
  padding: 1.5rem 1.5rem 1rem;
  z-index: 100;    /* スクロール時に他の要素より確実に前面に出す */
  width: 100%;
  background: rgba(0,0,0,0.8);
}
@media (min-width: 768px) { .site-nav { padding: 2rem 2.5rem 1rem; } }

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 767px) {
  .custom-logo-link {
    width: 50%;
  }
}

.site-nav__brand {
  flex: 0 1 auto;
  min-width: 0;
  font-weight: 900;
  font-size: clamp(.82rem, 2vw, 1.35rem);
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--c-frost);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-nav__brand img { max-height: 44px; width: auto; }

.site-nav__list {
  display: none;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
@media (min-width: 768px) { .site-nav__list { display: flex; } }

.site-nav__list a {
  font-weight: 500;
  font-size: clamp(.85rem, 1.4vw, 1.4rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-frost);
  transition: opacity .2s;
}
.site-nav__list a:hover { opacity: .7; }

.nav-toggle {
  display: flex;
  flex-direction: column;    /* 縦並びに変更 */
  justify-content: center;   /* 縦の中央揃え */
  align-items: center;       /* 横の中央揃え */
  gap: 5px;                  /* margin-topの代わりにgapで隙間を作る */
  width: 46px; height: 46px;
  border: 1px solid var(--c-frost-35);
  border-radius: 999px;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--c-frost);
  transition: transform .3s var(--ease), opacity .2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-content: center;
  gap: 1.5rem;
  background: rgba(7, 7, 7, .97);
  backdrop-filter: blur(14px);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.nav-drawer.is-open { opacity: 1; visibility: visible; }
.nav-drawer ul { display: grid; gap: 1.25rem; }
.nav-drawer { color: #FFFFFF; }
.nav-drawer a {
  font-size: clamp(1.4rem, 7vw, 2.2rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.nav-drawer__close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 2rem; line-height: 1;
}
/* PC表示用の右側ラッパー（メニュー＋SNS） */
.site-nav__right {
  display: none; /* スマホサイズでは非表示（ハンバーガーメニューがあるため） */
  flex-direction: column; /* 縦並びに設定 */
  align-items: flex-end; /* 右寄せに設定 */
  gap: 0.75rem; /* メニューとSNSの上下の隙間 */
}

@media (min-width: 768px) { 
  .site-nav__right { 
    display: flex; 
  } 
}

/* SNSリストのスタイル */
.site-nav__sns {
  display: flex;
  gap: 1.25rem; /* アイコン同士の横の隙間 */
  align-items: center;
}

.site-nav__sns a {
  display: block;
  width: 24px; /* アイコンのサイズ（お好みで調整してください） */
  transition: opacity 0.2s var(--ease);
}

.site-nav__sns a:hover {
  opacity: 0.6; /* ホバー時に少し薄くする */
}

/* ==========================================================================
   Mobile SNS Bar (hero直下)
   ========================================================================== */

.mobile-sns-bar {
  background: var(--c-ink); /* 背景色（黒系）。デザインに合わせて変更可 */
  padding: 1.5rem 1.25rem;
  display: flex;
  justify-content: center; /* 中央揃え */
}

.mobile-sns-list {
  display: flex;
  gap: 1.5rem; /* アイコン同士の横の隙間 */
  align-items: center;
}

.mobile-sns-list a {
  display: block;
  width: 28px; /* スマホでは指で押しやすいように少し大きめ */
  transition: opacity 0.2s var(--ease);
}

.mobile-sns-list a:hover {
  opacity: 0.6;
}

/* ★PCサイズ（768px以上）になったら非表示にする */
@media (min-width: 768px) {
  .mobile-sns-bar {
    display: none;
  }
}

/* --- hero heading --- */
/* --- hero heading --- */
.hero__headline {
  overflow: hidden;
  padding-inline: 1.25rem;
  
  /* 以下を変更 */
  position: relative; /* absoluteから変更 */
  z-index: 10;        /* 動画(0)より前面に出す */
  margin-top: 100px;  /* スマホ時のナビゲーションとの隙間 */
  /* top: 150px; は削除 */
}

@media (min-width: 768px) { 
  .hero__headline { 
    padding-inline: 2.5rem; 
    margin-top: 130px; /* PC時は少し隙間を広げる */
  } 
}
@media (max-width: 767px) {
  .hero__headline {
    display: none;
  }
}

.hero__headline h1 {
  width: 100%;
  white-space: nowrap;
  font-size: clamp(3.5rem, 17.5vw, 17.5vw);
  line-height: .82;
}

.hero__sub {
  padding-inline: 1.25rem;
  
  /* 以下を変更 */
  position: relative; /* absoluteから変更 */
  z-index: 10;        /* 動画(0)より前面に出す */
  margin-top: 1rem;   /* メインタイトルとの隙間（常に一定） */
  /* top: 350px; は削除 */
  
  font-size: clamp(.9rem, 2.2vw, 1.45rem);
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-frost-60);
}
@media (min-width: 768px) { .hero__sub { padding-inline: 2.5rem; } }
@media (max-width: 767px) {
  .hero__sub {
    display: none;
  }
}

/* --- hero bottom bar --- */
.hero__bar {
  position: absolute;
  z-index: 20;
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding: 0 1.25rem 1.75rem;
  bottom: 30px;
  width: 100%;
}
@media (min-width: 768px) { .hero__bar { padding: 0 2.5rem 2.5rem; } }

.hero__claim {
  max-width: 160px;
  font-size: clamp(.75rem, 1.4vw, 1.5rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: .04em;
  color: var(--c-frost);
}
@media (min-width: 640px) { .hero__claim { max-width: 240px; } }
@media (min-width: 768px) { .hero__claim { max-width: 300px; } }

/* --- hero key visual (magnetic) --- */
/* 位置決めは .hero__visual、フェードは内側の .hero__visual__fx が担当し
   transform の指定が競合しないようにする */
.hero__visual {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 10;
  width: min(84vw, 520px);
  pointer-events: none;
}
.hero__visual .magnet { pointer-events: auto; }
.hero__visual img {
  width: 100%;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 24px 60px rgba(255, 106, 0, .32));
}

@media (max-width: 639px) {
  .hero__visual { top: 46%; bottom: auto; transform: translate(-50%, -50%); opacity: .35; }
}

.magnet { display: inline-block; will-change: transform; }

/* --- scroll cue --- */
.hero__cue {
  position: absolute;
  left: 50%; bottom: .5rem;
  transform: translateX(-50%);
  z-index: 25;
  display: none;
  writing-mode: vertical-rl;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-frost-35);
}
@media (min-width: 1024px) { .hero__cue { display: block; } }

/* ==========================================================================
   2. MARQUEE
   ========================================================================== */

.marquee {
  background: var(--c-bg);
  padding: clamp(4rem, 12vw, 10rem) 0 2.5rem;
  overflow: hidden;
}

.marquee__row {
  display: flex;
  gap: .75rem;
  width: max-content;
  will-change: transform;
}
.marquee__row + .marquee__row { margin-top: .75rem; }

.marquee__tile {
  position: relative;
  flex: 0 0 auto;
  width: clamp(220px, 34vw, 420px);
  aspect-ratio: 420 / 270;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #101318;
}
.marquee__tile img { width: 100%; height: 100%; object-fit: cover; }

.marquee__caption {
  width: var(--shell);
  margin: 2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-frost-35);
}

/* ==========================================================================
   3. ABOUT
   ========================================================================== */

.about {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(4rem, 10vw, 7rem) 1.25rem;
  overflow: hidden;
}

.about__inner {
  position: relative;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.about__body {
  max-width: 620px;
  display: grid;
  gap: 1.5rem;
}

.about__cta { margin-top: clamp(1rem, 4vw, 2.5rem); }

/* signature: floating energy orbs (SVGで描画・画像不要)
   .orb は位置決め＋フェード、.orb__fx が浮遊アニメーション */
.orb {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.orb__fx {
  display: block;
  animation: orb-float 9s ease-in-out infinite;
}
.orb--tl { top: 5%;  left: 2%;  width: clamp(110px, 17vw, 210px); }
.orb--tr { top: 6%;  right: 2%; width: clamp(100px, 15vw, 190px); }
.orb--bl { bottom: 8%; left: 4%; width: clamp(90px, 13vw, 170px); }
.orb--br { bottom: 7%; right: 4%; width: clamp(120px, 18vw, 220px); }

.orb--tr .orb__fx { animation-delay: -2.5s; }
.orb--bl .orb__fx { animation-delay: -4s; }
.orb--br .orb__fx { animation-delay: -6s; }

@keyframes orb-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(0, -18px, 0) scale(1.04); }
}

@media (max-width: 767px) {
  .orb--bl, .orb--br { opacity: .5; }
}

/* character reveal */
.reveal-text { display: inline; }
.reveal-text .char {
  opacity: .18;
  transition: opacity .25s linear;
}
.reveal-text .char.is-lit { opacity: 1; }

/* ==========================================================================
   4. PLAN (light section)
   ========================================================================== */

.plan {
  position: relative;
  z-index: 2;
  background: var(--c-paper);
  padding: clamp(3rem, 7vw, 5rem) 1.25rem clamp(5rem, 12vw, 9rem);
}

.plan .section-head { margin-bottom: clamp(2.5rem, 7vw, 6rem); }

.plan__tag { background: var(--c-ink); }

.plan__list { max-width: 1024px; margin-inline: auto; }

.plan__item {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(12, 12, 12, .15);
}
.plan__item:last-child { border-bottom: 1px solid rgba(12, 12, 12, .15); }

@media (min-width: 768px) {
  .plan__item {
    flex-direction: row;
    align-items: baseline;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    padding: clamp(2rem, 4vw, 3rem) 0;
  }
}

.plan__price {
  flex: 0 0 auto;
  min-width: min(38%, 320px);
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: .95;
  letter-spacing: -.03em;
  color: var(--c-orange-deep);
}
.plan__price small {
  display: block;
  margin-top: .35rem;
  font-size: clamp(.7rem, 1.3vw, .9rem);
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .5;
}

.plan__name {
  font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  line-height: 1.35;
}
.plan__desc {
  max-width: 46rem;
  margin-top: .5rem;
  font-weight: 300;
  font-size: clamp(.85rem, 1.6vw, 1.15rem);
  line-height: 1.85;
  opacity: .62;
}
.plan__tag {
  display: inline-block;
  margin-bottom: .5rem;
  padding: .2rem .8rem;
  border-radius: 999px;
  background: var(--c-red);
  color: #fff;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
}
.plan__more { margin-top: 1rem; }

/* ==========================================================================
   5. FACILITY — sticky stacking cards
   ========================================================================== */

.venue {
  position: relative;
  z-index: 3;
  margin-top: clamp(-3.5rem, -4vw, -2.5rem);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: clamp(4rem, 10vw, 8rem) 1.25rem clamp(2rem, 6vw, 5rem);
}

.venue__lead {
  max-width: 42rem;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  font-weight: 300;
  font-size: clamp(.9rem, 1.7vw, 1.1rem);
  line-height: 1.95;
  text-align: center;
  color: var(--c-on-dark-60);
}

.venue .section-head { margin-bottom: clamp(1rem, 3vw, 1.5rem); }
.venue .stack { margin-top: clamp(2rem, 6vw, 4rem); }

.stack { max-width: 1180px; margin-inline: auto; }

.stack__slot { height: 88vh; }
@media (max-width: 767px) { .stack__slot { height: auto; margin-bottom: 1.5rem; } }

.stack__card {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1rem;
  border: 2px solid var(--c-orange);
  border-radius: var(--r-lg);
  background: var(--c-ink);
  transform-origin: top center;
  will-change: transform;
}
@media (min-width: 768px) { .stack__card { top: 8rem; padding: 2rem; } }
@media (max-width: 767px) { .stack__card { position: static; } }

.stack__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem clamp(1rem, 3vw, 2.5rem);
}

.stack__num {
  font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 7rem);
  line-height: .8;
  letter-spacing: -.04em;
  color: var(--c-frost-15);
}

.stack__meta { flex: 1 1 220px; }
.stack__cat {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  align-items: center;
  font-size: .68rem;
  letter-spacing: .18em;
}
.stack__area {
  padding: .15rem .7rem;
  border-radius: 999px;
  background: var(--c-orange);
  color: var(--c-ink);
  font-weight: 700;
}
.stack__term { color: var(--c-orange-lt); letter-spacing: .1em; }
.stack__addr {
  margin-top: .5rem;
  font-size: clamp(.75rem, 1.2vw, .85rem);
  font-weight: 300;
  color: var(--c-on-dark-35);
}
.stack__name {
  font-weight: 500;
  font-size: clamp(1.1rem, 2.6vw, 2rem);
  line-height: 1.3;
}
.stack__note {
  margin-top: .5rem;
  font-size: clamp(.8rem, 1.4vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--c-frost-60);
}

.stack__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: .75rem;
}
.stack__col { display: grid; gap: .75rem; }
.stack__grid img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  background: #10141a;
}
/* カード全体が1画面に収まるよう高さを調整 */
.stack__col--a img:first-child { height: clamp(96px, 12vw, 170px); }
.stack__col--a img:last-child  { height: clamp(118px, 17.2vw, 250px); }
.stack__col--b img { height: 100%; min-height: clamp(226px, 30vw, 432px); }

/* ==========================================================================
   6. NEWS
   ========================================================================== */

.news {
  position: relative;
  z-index: 4;
  margin-top: clamp(-3.5rem, -4vw, -2.5rem);
  background: var(--c-paper);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: clamp(4rem, 10vw, 7rem) 1.25rem clamp(3rem, 7vw, 5rem);
}
.news__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.news__title {
  font-size: clamp(2.2rem, 8vw, 5rem);
  text-align: left;
}
.news__list { display: grid; gap: 0; }

.news__item {
  display: grid;
  gap: .35rem .5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--c-frost-15);
  transition: background .25s var(--ease);
}
.news__item:last-child { border-bottom: 1px solid var(--c-frost-15); }
@media (min-width: 768px) {
  .news__item {
    grid-template-columns: 9rem 12rem 1fr;
    align-items: baseline;
  }
}
.news__date { font-size: .85rem; letter-spacing: .1em; color: var(--c-frost-60); }
.news__cat {
  justify-self: start;
  padding: .15rem .8rem;
  border-radius: 999px;
  background: var(--c-orange);
  color: var(--c-ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
}
.news__link { font-weight: 500; font-size: clamp(.95rem, 1.6vw, 1.1rem); line-height: 1.6; }
.news__item:hover .news__link { color: var(--c-orange-deep); }

/* ==========================================================================
   7. FAQ
   ========================================================================== */

.faq { background: var(--c-paper); padding: clamp(2rem, 5vw, 3rem) 1.25rem clamp(4rem, 10vw, 8rem); }
.faq__list { max-width: 900px; margin: 2.5rem auto 0; }

.faq__item { border-top: 1px solid var(--c-frost-15); }
.faq__item:last-child { border-bottom: 1px solid var(--c-frost-15); }

.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  padding: 1.4rem 0;
  text-align: left;
  font-weight: 500;
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  line-height: 1.65;
}
.faq__q::before {
  content: 'Q';
  flex: 0 0 auto;
  font-weight: 900;
  color: var(--c-orange);
}
.faq__q::after {
  content: '';
  flex: 0 0 auto;
  width: 14px; height: 14px;
  margin-left: auto;
  margin-top: .45em;
  border-right: 2px solid var(--c-frost);
  border-bottom: 2px solid var(--c-frost);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
}
.faq__q[aria-expanded="true"]::after { transform: rotate(-135deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p {
  padding: 0 0 1.5rem 1.7rem;
  font-weight: 300;
  font-size: clamp(.85rem, 1.5vw, 1rem);
  line-height: 1.9;
  color: var(--c-frost-60);
}

/* ==========================================================================
   8. ACCESS
   ========================================================================== */

.info {
  background: var(--c-paper-2);
  padding: clamp(4rem, 10vw, 8rem) 1.25rem;
}
.info__grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (min-width: 900px) { .info__grid { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; } }
.info__grid--single { max-width: 760px; margin-inline: auto; }

.info__table { width: 100%; border-collapse: collapse; }
.info__table th,
.info__table td {
  padding: 1.1rem .5rem;
  border-bottom: 1px solid var(--c-frost-15);
  text-align: left;
  vertical-align: top;
  font-size: clamp(.85rem, 1.5vw, 0.9rem);
  line-height: 1.8;
}
.info__table th {
  width: 8rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--c-orange-deep);
}
.info__table td { font-weight: 300; color: var(--c-ink); }

.info__map {
  min-height: 320px;
  border: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  filter: grayscale(.2) contrast(1.02);
}

/* ==========================================================================
   9. CTA + FOOTER
   ========================================================================== */

.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--c-orange);
  color: var(--c-ink);
  padding: clamp(4rem, 12vw, 9rem) 1.25rem;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 65% at 22% 35%, rgba(255, 255, 255, .28), transparent 70%),
    radial-gradient(45% 65% at 80% 65%, rgba(16, 16, 16, .14), transparent 70%);
  pointer-events: none;
}
.cta-band .display { background: none; -webkit-text-fill-color: var(--c-ink); color: var(--c-ink); }
.cta-band .eyebrow { color: var(--c-ink); opacity: .7; }
.cta-band .btn-ghost { border-color: var(--c-ink); color: var(--c-ink); }
.cta-band .btn-ghost:hover { background: var(--c-ink); border-color: var(--c-ink); color: #FFFFFF; }
/* オレンジの上では黒ボタンで引き締める */
.cta-band .btn-energy {
  background: var(--c-ink);
  color: #FFFFFF;
  box-shadow: 0 0 0 2px var(--c-ink) inset, 0 8px 22px rgba(0, 0, 0, .28);
}
.cta-band .btn-energy:hover {
  background: #FFFFFF;
  color: var(--c-ink);
  box-shadow: 0 0 0 2px var(--c-ink) inset, 0 12px 28px rgba(0, 0, 0, .32);
}
.cta-band__inner { position: relative; z-index: 2; display: grid; gap: 1.5rem; justify-items: center; }
.cta-band__title { font-size: clamp(2.4rem, 10vw, 7rem); }
.cta-band__note { max-width: 40rem; font-weight: 400; color: var(--c-ink); }

.site-footer {
  background: var(--c-ink-deep);
  color: var(--c-on-dark);
  border-top: 3px solid var(--c-orange);
  padding: clamp(3rem, 7vw, 5rem) 1.25rem 2rem;
}
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; } }

.site-footer h3 {
  color: var(--c-orange);
  margin-bottom: 1rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.site-footer li + li { margin-top: .6rem; }
.site-footer a:hover { color: var(--c-orange); }
.site-footer p { font-size: .9rem; font-weight: 300; color: var(--c-on-dark-60); line-height: 1.9; }

.site-footer__sns { display: flex; gap: 1rem; margin-top: 1.25rem; }
.site-footer__sns a {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--c-on-dark-35);
  border-radius: 999px;
  transition: border-color .25s, background .25s, color .25s;
}
.site-footer__sns a:hover { background: var(--c-orange); border-color: var(--c-orange); color: var(--c-ink); }

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-on-dark-15);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--c-on-dark-35);
}

/* sticky reserve button (mobile) */
.reserve-dock {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 35;
  transition: opacity .3s, transform .3s;
}
@media (min-width: 768px) { .reserve-dock { display: none; } }
.reserve-dock[hidden] { display: none; }
.reserve-dock:hover { transform: translateX(-50%) translateY(-2px); }


/* ==========================================================================
   3.5 HOW TO PLAY — 試合スペック ＋ 楽しいポイント
   ========================================================================== */

.howto {
  position: relative;
  z-index: 2;
  background: var(--c-paper-2);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: clamp(4rem, 10vw, 7rem) 1.25rem clamp(4rem, 10vw, 8rem);
}

.howto__lead {
  max-width: 40rem;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
  font-weight: 300;
  font-size: clamp(.9rem, 1.7vw, 1.15rem);
  line-height: 1.95;
  text-align: center;
  color: var(--c-frost-60);
}

/* --- スペック帯 --- */
.spec {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  max-width: 900px;
  border-top: 1px solid var(--c-frost-15);
  border-bottom: 1px solid var(--c-frost-15);
}
.spec__item {
  padding: clamp(1.25rem, 3vw, 2rem) .5rem;
  text-align: center;
}
.spec__item + .spec__item { border-left: 1px solid var(--c-frost-15); }

.spec__value {
  font-weight: 900;
  font-size: clamp(1.6rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--c-frost);
}
.spec__value em {
  font-style: normal;
  font-weight: 400;
  font-size: .38em;
  letter-spacing: .06em;
  color: var(--c-orange);
}
.spec__label {
  margin-top: .6rem;
  font-size: clamp(.66rem, 1.2vw, .78rem);
  font-weight: 300;
  letter-spacing: .16em;
  color: var(--c-frost-60);
}

/* --- ポイント --- */
.points {
  display: grid;
  gap: 0;
  max-width: 1024px;
  margin: clamp(2.5rem, 6vw, 4.5rem) auto 0;
}
@media (min-width: 768px) {
  .points { grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 5vw, 4rem); }
}

.point {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    'glyph label'
    'glyph name'
    'desc  desc';
  align-items: center;
  column-gap: 1.25rem;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
  border-top: 1px solid var(--c-frost-15);
}
.point:last-child { border-bottom: 1px solid var(--c-frost-15); }
@media (min-width: 768px) {
  .point:nth-child(2) { border-bottom: 0; }
  .point:nth-last-child(-n+2) { border-bottom: 1px solid var(--c-frost-15); }
}

.point__glyph {
  grid-area: glyph;
  width: clamp(56px, 9vw, 76px);
  align-self: start;
}
.point__glyph img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 999px;
}

.point__label {
  grid-area: label;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-orange-deep);
}
.point__name {
  grid-area: name;
  margin-top: .3rem;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
}
.point__desc {
  grid-area: desc;
  margin-top: 1rem;
  font-weight: 300;
  font-size: clamp(.85rem, 1.5vw, 1rem);
  line-height: 1.9;
  color: var(--c-frost-60);
}

/* ==========================================================================
   8.5 HOW TO VISIT — ご利用の流れ
   ========================================================================== */

.visit {
  background: var(--c-paper);
  padding: clamp(4rem, 10vw, 8rem) 1.25rem;
}

.steps {
  position: relative;
  display: grid;
  gap: 2rem;
  max-width: 1100px;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
}
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
  /* 4つを貫く点線 */
  .steps::before {
    content: '';
    position: absolute;
    top: 1.15em;
    left: 6%;
    right: 6%;
    border-top: 1px dashed rgba(16, 16, 16, .2);
  }
}

.step { position: relative; }

.step__num {
  display: inline-block;
  padding-right: .6rem;
  background: var(--c-paper);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-orange);
}

.step__name {
  margin-top: .75rem;
  font-weight: 500;
  font-size: clamp(1rem, 1.9vw, 1.25rem);
  line-height: 1.5;
}
.step__desc {
  margin-top: .6rem;
  font-weight: 300;
  font-size: clamp(.82rem, 1.4vw, .95rem);
  line-height: 1.9;
  color: var(--c-frost-60);
}

/* ==========================================================================
   Generic pages / posts (single.php, page.php, archive.php, 404.php)
   ========================================================================== */

.page-hero {
  background: var(--c-paper);
  color: var(--c-ink);
  padding: clamp(7rem, 16vw, 11rem) 1.25rem clamp(2rem, 5vw, 4rem);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 7vw, 4.5rem); }
.page-hero .display { background: none; -webkit-text-fill-color: var(--c-ink); color: var(--c-ink); }
.page-hero .eyebrow { color: var(--c-orange-deep); }
.page-hero .eyebrow { display: block; margin-bottom: 1rem; }

.entry {
  width: min(760px, 100% - 2.5rem);
  margin: 0 auto clamp(4rem, 10vw, 8rem);
}
.entry h2 { margin: 2.5rem 0 1rem; font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 500; }
.entry h3 { margin: 2rem 0 .75rem; font-size: clamp(1.1rem, 2.4vw, 1.4rem); font-weight: 500; }
.entry p  { margin-bottom: 1.5rem; font-weight: 300; }
.entry a  { color: var(--c-orange-deep); text-decoration: underline; text-underline-offset: 3px; }
.entry ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.5rem; }
.entry li { margin-bottom: .5rem; font-weight: 300; }
.entry img { border-radius: var(--r-md); margin: 1.5rem 0; }
.entry blockquote {
  margin: 2rem 0; padding: 1rem 1.5rem;
  border-left: 3px solid var(--c-orange);
  color: var(--c-on-light-60);
}

.pagination { display: flex; gap: .5rem; justify-content: center; margin-bottom: 5rem; }
.pagination .page-numbers {
  display: grid; place-items: center;
  min-width: 42px; height: 42px; padding: 0 .5rem;
  border: 1px solid var(--c-on-light-15); border-radius: 999px;
  color: var(--c-ink); font-size: .9rem;
}
.pagination .current { background: var(--c-orange); border-color: var(--c-orange); color: var(--c-ink); }

/* ==========================================================================
   Accessibility: reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .reveal-text .char { opacity: 1 !important; }
  .marquee__row { transform: none !important; }
  .stack__card { transform: none !important; }
}

/* ==========================================================================
   PAGE TOP BUTTON
   ========================================================================== */

.page-top {
  /* 画面の右下に固定 */
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90; /* ほかのコンテンツより前面に出す */
  
  /* 〇の形を作る */
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  
  /* 色の設定（オレンジ背景に黒文字） */
  background: var(--c-orange);
  color: var(--c-ink);
  font-size: 1.2rem;
  text-decoration: none;
  
  /* 少し影をつけて浮いているように見せる */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  
  /* ホバー時のアニメーション設定 */
  transition: transform .25s var(--ease), background .25s var(--ease);
}

/* ホバー（マウスオーバー）時の動き */
.page-top:hover {
  transform: translateY(-4px); /* 少し上に浮く */
  background: #FFFFFF;         /* 背景を白にする */
  color: var(--c-orange);      /* ▲をオレンジにする */
}

/* PCサイズではボタンを少し大きく、余白も広くする */
@media (min-width: 768px) {
  .page-top {
    right: 2.5rem;
    bottom: 2.5rem;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* ==== SNSバー（hero / header_nav 共通） ==== */
.msb{background:#101010;padding:32px 20px 16px;text-align:center;}
.msb ul{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:12px;margin:0;padding:0;list-style:none;}
.msb li{flex:0 0 auto;margin:0;padding:0;list-style:none;}
.msb a{display:flex;align-items:center;justify-content:center;width:48px;height:48px;border:1px solid rgba(255,255,255,.16);border-radius:999px;background:rgba(255,255,255,.04);overflow:hidden;text-decoration:none;}
.msb a:hover{background:#FF6A00;border-color:#FF6A00;}
.msb img{display:block;width:30px;height:30px;object-fit:contain;}
@media (min-width:768px){.msb{display:none;}}

/* サブページ用：浮いているヘッダーの高さ分を確保する */
.msb-wrap{position:relative;z-index:1;padding-top:112px;background:#101010;}
.msb-wrap .msb{padding-top:0;}
@media (min-width:768px){.msb-wrap{display:none;}}


/* ==== HADO オフィシャルパートナー ==== */
.partner{background:#101010;padding:56px 20px 32px;}
.partner__inner{display:flex;align-items:center;gap:28px;max-width:760px;margin:0 auto;padding:24px 32px;border:1px solid rgba(255,255,255,.14);border-radius:20px;background:rgba(255,255,255,.04);}
.partner__badge{flex:0 0 auto;width:110px;}
.partner__badge img{display:block;width:100%;height:auto;}
.partner__body{flex:1 1 auto;min-width:0;}
.partner__title{margin:0 0 10px;color:#fff;font-size:22px;font-weight:700;line-height:1.4;letter-spacing:.02em;}
.partner__text{margin:0;color:rgba(255,255,255,.68);font-size:14px;font-weight:300;line-height:1.9;}

/* パートナーの直後に来るマーキーは上余白を詰める */
.partner + .marquee{padding-top:32px;}

@media (max-width:767px){
.partner{padding:32px 20px 24px;}
.partner__inner{flex-direction:column;text-align:center;gap:20px;padding:28px 24px;}
.partner__badge{width:60%;max-width:260px;}
.partner__title{font-size:18px;}
.partner__text{font-size:13px;text-align:left;}
.partner + .marquee{padding-top:24px;}
}
