*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent}
html{scroll-behavior:smooth}

:root{
  /* ── バナーから抽出したカラー ── */
  --green-deep: #0b1a14;
  --green-dark: #0f2219;
  --green-mid:  #152d22;
  --green-card: #162920;
  --gold:       #c9a55a;
  --gold-lt:    #e8cb8a;
  --gold-line:  rgba(201,165,90,0.25);
  --gold-glow:  rgba(201,165,90,0.10);
  --red:        #c0282a;
  --text:       #f4efe6;
  --muted:      #f5f2e8;
  --muted2:     #6e6554;
  --line:       rgba(255,255,255,0.07);
  --max:        1160px;
  --hh:         72px;
}

body{
  font-family:"Noto Sans JP","Hiragino Sans",sans-serif;
  background:var(--green-deep);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.75;
}
body.locked{overflow:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.wrap{width:min(var(--max),calc(100% - 40px));margin:0 auto}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header{
  position:fixed;inset:0 0 auto;z-index:200;
  height:var(--hh);
  background:rgba(11,26,20,0.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--gold-line);
}
.hdr-inner{
  height:var(--hh);
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.logo{
  font-family:"Bebas Neue",sans-serif;
  font-size:2rem;letter-spacing:0.1em;
  display:flex;align-items:center;gap:0;
  position:relative;z-index:202;
}
.logo img {width: 100%;height: auto; max-width: 300px;}

.site-nav{display:flex;align-items:center;gap:26px}
.site-nav a{
  font-size:0.78rem;letter-spacing:0.16em;
  text-transform:uppercase;color:var(--muted);
  transition:color 0.2s;
}
.site-nav a:hover{color:var(--gold-lt)}

.hdr-btn{
  background:linear-gradient(135deg,var(--gold-lt),var(--gold));
  color:#0b1a14;
  font-size:0.76rem;font-weight:700;
  letter-spacing:0.18em;text-transform:uppercase;
  padding:10px 22px;
  transition:opacity 0.2s;
  white-space:nowrap;
}
.hdr-btn:hover{opacity:0.88}

.hamburger{
  display:none;width:44px;height:44px;
  background:transparent;border:1px solid var(--gold-line);
  cursor:pointer;flex-direction:column;
  align-items:center;justify-content:center;gap:5px;
  position:relative;z-index:202;
}
.hamburger span{
  display:block;width:20px;height:1.5px;
  background:var(--text);
  transition:transform 0.25s,opacity 0.25s;
}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero{
  min-height:100svh;
  position:relative;overflow:hidden;
  display:flex;align-items:flex-end;
  padding-top:var(--hh);
}

/* 施設写真はunsplashのゴルフ室内で代替 */
.hero-bg{
  position:absolute;inset:0;
  background:
    url('https://images.unsplash.com/photo-1592919505780-303950717480?auto=format&fit=crop&w=1800&q=80')
    center/cover no-repeat;
  animation:bgzoom 18s ease-out forwards;
}
@keyframes bgzoom{from{transform:scale(1.06)}to{transform:scale(1.0)}}

/* バナーと同じ斜め分割グラデーション */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index: -1;
  background:
    linear-gradient(105deg,
      rgba(11,26,20,0.96) 0%,
      rgba(11,26,20,0.90) 38%,
      rgba(11,26,20,0.55) 58%,
      rgba(11,26,20,0.82) 100%
    ),
    linear-gradient(to top, rgba(11,26,20,1) 0%, transparent 40%);
}

/* 斜め金線（バナーのゴールドライン再現） */
.hero-goldline{
  position:absolute;
  top:0;bottom:0;
  left:52%;
  width:2px;
  background:linear-gradient(to bottom,transparent,var(--gold) 30%,var(--gold) 70%,transparent);
  transform:skewX(-8deg);
  opacity:0.5;
  pointer-events:none;
}

.hero-content{
  position:relative;z-index:2;
  padding:80px 30px 100px;width:100%;
}

/* ── PRE-OPEN BANNER ── */
@keyframes slideInLeft{
  from{transform:translateX(-110%);opacity:0}
  to{transform:translateX(0);opacity:1}
}
@keyframes preopen-shine{
  0%{left:-80%}
  60%,100%{left:130%}
}
@keyframes pulse-ring{
  0%{transform:scale(1);opacity:.8}
  70%{transform:scale(2.4);opacity:0}
  100%{transform:scale(2.4);opacity:0}
}

.preopen-banner{
  display:inline-flex;
  align-items:center;
  gap:14px;
  background:linear-gradient(100deg,#c0251e 0%,#e04038 45%,#b81e18 100%);
  color:#fff;
  border-left:5px solid #ffd0cc;
  border-radius:0 6px 6px 0;
  padding:12px 28px 12px 20px;
  margin-bottom:28px;
  position:relative;
  box-shadow:
    0 4px 24px rgba(192,37,30,.55),
    0 1px 0 rgba(255,255,255,.12) inset,
    0 -1px 0 rgba(0,0,0,.2) inset;
  animation:slideInLeft .7s cubic-bezier(.22,.68,0,1.15) both;
  animation-delay:.2s;
  overflow:hidden;
  max-width:fit-content;
}
.preopen-banner::after{
  content:'';
  position:absolute;top:0;bottom:0;
  left:-80%;width:50%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
  transform:skewX(-15deg);
  animation:preopen-shine 3.5s ease-in-out 1.2s infinite;
  pointer-events:none;
}

.preopen-pulse{
  position:relative;
  display:inline-block;
  width:10px;height:10px;
  border-radius:50%;
  background:#fff;
  flex-shrink:0;
}
.preopen-pulse::before{
  content:'';
  position:absolute;inset:0;
  border-radius:50%;
  background:#fff;
  animation:pulse-ring 1.8s ease-out infinite;
}

.preopen-label{
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
  background:rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.25);
  border-radius:3px;
  padding:3px 8px;
  white-space:nowrap;
  flex-shrink:0;
}

.preopen-sep{
  display:block;
  width:1px;height:28px;
  background:rgba(255,255,255,.3);
  flex-shrink:0;
}

.preopen-main{
  font-size:1.25rem;
  font-weight:900;
  letter-spacing:.05em;
  white-space:nowrap;
  text-shadow:0 1px 4px rgba(0,0,0,.35);
}

.preopen-date{
  font-size:1.1rem;
  font-weight:700;
  letter-spacing:.08em;
  white-space:nowrap;
  opacity:.92;
  padding-left:4px;
  border-left:1px solid rgba(255,255,255,.3);
}

@media(max-width:860px){
  .preopen-banner{gap:10px;padding:10px 20px 10px 16px}
  .preopen-main{font-size:1.05rem}
  .preopen-date{font-size:.95rem}
  .preopen-label{font-size:.65rem}
}
@media(max-width:576px){
  .preopen-banner{flex-wrap:wrap;max-width:calc(100vw - 40px)}
  .preopen-sep{display:none}
  .preopen-main{font-size:1rem}
  .preopen-date{font-size:.9rem;border-left:none;padding-left:0}
}

.hero-inner{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:48px;align-items:end;
}

/* 左：コピー */
.hero-eyebrow{
  font-size:0.72rem;letter-spacing:0.3em;
  text-transform:uppercase;color:var(--gold);
  margin-bottom:20px;
  display:flex;align-items:center;gap:12px;
}
.hero-eyebrow::before{
  content:"";display:block;
  width:36px;height:1px;background:var(--gold);
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:-1;
  overflow:hidden;
  container-type:size;
}
/* 縦をヒーローに合わせ、16:9想定で横ははみ出しても可（左右見切れ） */
.hero-media iframe{
  position:absolute;
  top:50%;
  left:50%;
  translate:-50% -50%;
  height:100cqh;
  width:max(100cqi,calc(100cqh * 16 / 9));
  max-width:none;
  border:0;
  pointer-events:none;
}
@supports not (height:1cqh){
  .hero-media iframe{
    height:100%;
    width:max(100%,calc(100vh * 16 / 9));
    min-width:100%;
    translate:-50% -50%;
  }
}

h1{
  font-family:"Noto Serif JP",serif;
  font-weight:900;
  font-size:clamp(36px,5.5vw,72px);
  line-height:1.22;
  letter-spacing:0.02em;
  margin-bottom:8px;
  @media (max-width: 1440px) {
    font-size:clamp(30px,4.5vw,56px);
  }
}
h1 .red{color:var(--red)}
h1 .gold{color:var(--gold-lt)}

.hero-tagline{
  font-family:"Noto Serif JP",serif;
  font-size:clamp(42px,6.5vw,88px);
  font-weight:900;
  line-height:1.1;
  letter-spacing:-0.01em;
  margin-bottom:28px;
  color:var(--text);
}

.hero-desc{
  font-size:0.96rem;color:var(--muted);
  max-width:560px;line-height:1.9;margin-bottom:34px;
}

.btn-row{display:flex;gap:14px;flex-wrap:wrap}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:54px;padding:0 30px;
  font-weight:700;font-size:0.88rem;
  letter-spacing:0.12em;
  transition:all 0.22s;white-space:nowrap;
  cursor:pointer;border:none;
}
.btn-gold{
  background:linear-gradient(135deg,var(--gold-lt),var(--gold));
  color:#0b1a14;
  box-shadow:0 10px 30px rgba(201,165,90,0.28);
}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 16px 36px rgba(201,165,90,0.38)}
.btn-outline{
  background:transparent;
  border:1px solid var(--gold-line);
  color:var(--gold-lt);
}
.btn-outline:hover{background:var(--gold-glow);border-color:var(--gold)}

/* 右：インフォカード */
.hero-card{
  background:rgba(11,26,20,0.82);
  border:1px solid var(--gold-line);
  padding:30px 28px;
  backdrop-filter:blur(8px);
  box-shadow:0 30px 70px rgba(0,0,0,0.5);
}

.hc-logo{
  font-family:"Bebas Neue",sans-serif;
  font-size:1.6rem;letter-spacing:0.12em;
  margin-bottom:14px;
}
.hc-logo .r{color:var(--red)}

.hc-headline{
  font-size:1.5rem;font-weight:700;
  color:var(--gold-lt);margin-bottom:4px;
}
.hc-sep{
  width:100%;height:1px;
  background:var(--gold-line);
  margin:16px 0;
}
.hc-note{
  font-size:0.8rem;color:var(--muted);
  letter-spacing:0.08em;margin-bottom:18px;
}
.hc-list{list-style:none;display:grid;gap:9px}
.hc-list li{
  font-size:0.86rem;color:var(--text);
  padding-left:16px;position:relative;
  line-height:1.6;
}
.hc-list li::before{
  content:"—";color:var(--gold);
  position:absolute;left:0;
}

/* ══════════════════════════════════════
   SPORTS TICKER
══════════════════════════════════════ */
.sports-bar{
  background:var(--green-mid);
  border-top:1px solid var(--gold-line);
  border-bottom:1px solid var(--gold-line);
  overflow:hidden;
}
.sports-marquee{
  display:flex;
  width:max-content;
  animation:sticker 28s linear infinite;
  white-space:nowrap;
}
.sports-track{
  display:flex;
  width:max-content;
  flex-shrink:0;
}
@keyframes sticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.s-item{
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
}
.s-item img{
  max-width:250px;
}

/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */
.sec{padding:110px 0}
.sec-sm{padding:72px 0}

.sec-label{
  font-family:"Bebas Neue",sans-serif;
  font-size:0.72rem;letter-spacing:0.38em;
  text-transform:uppercase;color:var(--gold);
  margin-bottom:14px;
  display:flex;align-items:center;gap:12px;
}
.sec-label::before{
  content:"";display:block;
  width:28px;height:1px;background:var(--gold);
}
.sec-center .sec-label{justify-content:center}
.sec-center .sec-label::before{display:none}
.sec-center{text-align:center}

h2{
  font-family:"Noto Serif JP",serif;
  font-weight:900;
  font-size:clamp(30px,4.5vw,56px);
  line-height:1.2;margin-bottom:18px;
}

.gold-rule{
  width:52px;height:2px;
  background:linear-gradient(90deg,var(--gold),transparent);
  margin:18px 0 30px;
}
.sec-center .gold-rule{margin-left:auto;margin-right:auto}

.sec-lead{
  font-size:0.96rem;color:var(--muted);
  max-width:700px;line-height:1.9;
}
.sec-center .sec-lead{margin:0 auto}

/* ══════════════════════════════════════
   PROBLEM
══════════════════════════════════════ */
.sec-problem{background:var(--green-dark)}

.prob-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1px;background:var(--gold-line);
  border:1px solid var(--gold-line);
  margin-top:50px;
}
.prob-cell{
  background:var(--green-dark);
  padding:34px 36px;
  display:flex;gap:20px;align-items:flex-start;
  transition:background 0.2s;
}
.prob-cell:hover{background:var(--green-mid)}
.prob-n{
  font-family:"Bebas Neue",sans-serif;
  font-size:2.4rem;color:rgba(201,165,90,0.18);
  line-height:1;flex-shrink:0;margin-top:2px;
}
.prob-cell p{font-size:0.94rem;color:var(--muted);line-height:1.8}

/* ══════════════════════════════════════
   CONCEPT
══════════════════════════════════════ */
.sec-concept{background:var(--green-deep)}

.concept-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:var(--gold-line);
  border:1px solid var(--gold-line);
  margin-top:52px;
}
.concept-card{
  background:var(--green-deep);
  padding:40px 28px;
  position:relative;overflow:hidden;
  transition:background 0.25s;
}
.concept-card img{
  max-width:100px;
  margin:0 auto 20px;
  opacity: 0.8;
}
.concept-card::after{
  content:"";position:absolute;
  bottom:0;left:0;right:0;height:2px;
  background:linear-gradient(90deg,var(--gold),transparent);
  transform:scaleX(0);transform-origin:left;
  transition:transform 0.35s ease;
}
.concept-card:hover{background:var(--green-card)}
.concept-card:hover::after{transform:scaleX(1)}

.cc-num{
  font-family:"Bebas Neue",sans-serif;
  font-size:3.5rem;color:rgba(201,165,90,0.12);
  line-height:1;margin-bottom:18px;
}
.concept-card h3{
  font-family:"Bebas Neue",sans-serif;
  font-size:1.05rem;letter-spacing:0.22em;
  text-transform:uppercase;color:var(--gold-lt);
  margin-bottom:12px;
}
.concept-card p{font-size:0.88rem;color:var(--muted);line-height:1.8}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.sec-feat{background:var(--green-dark)}

.feat-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:1px;background:var(--gold-line);
  border:1px solid var(--gold-line);
  margin-top:52px;
}
.feat-card{
  background:var(--green-dark);
  padding:38px 36px;
  display:grid;grid-template-columns:54px 1fr;
  gap:22px;align-items:start;
  transition:background 0.2s;
}
.feat-card:hover{background:var(--green-mid)}
.feat-no{
  font-family:"Bebas Neue",sans-serif;
  font-size:2rem;color:rgba(201,165,90,0.2);
  line-height:1;padding-top:4px;
}
.feat-card h3{
  font-family:"Noto Serif JP",serif;
  font-size:1.05rem;font-weight:700;
  color:var(--gold-lt);margin-bottom:10px;
}
.feat-card p{font-size:0.88rem;color:var(--muted);line-height:1.8}

/* ══════════════════════════════════════
   SPORTS LIST（バナーのゲームサムネイル再現）
══════════════════════════════════════ */
.sec-sports{background:var(--green-deep)}

.sports-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:1px;background:var(--gold-line);
  border:1px solid var(--gold-line);
  margin-top:52px;
}
.sport-card{
  background:var(--green-deep);
  padding:0 0 22px;
  text-align:center;
  transition:background 0.2s;
  position:relative;overflow:hidden;
  cursor:pointer;
}
.sport-card:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:2px;
}
.sport-card::before{
  content:"";position:absolute;
  inset:0;background:var(--gold-glow);
  opacity:0;transition:opacity 0.25s;
}
.sport-card:hover{background:var(--green-card)}
.sport-card:hover::before{opacity:1}
.sport-card img{
  max-width:100%;
  object-fit: cover;
  margin:0 auto 12px;
  opacity: 1;
}
.sport-icon{
  font-family:"Bebas Neue",sans-serif;
  font-size:2.6rem;color:rgba(201,165,90,0.16);
  line-height:1;margin-bottom:12px;
}
.sport-en{
  font-family:"Bebas Neue",sans-serif;
  font-size:0.82rem;letter-spacing:0.22em;
  color:var(--gold);margin-bottom:4px;
}
.sport-jp{font-size:0.78rem;color:var(--muted)}

body.sport-modal-open{overflow:hidden}

.sport-modal{
  position:fixed;inset:0;z-index:400;
  display:flex;align-items:center;justify-content:center;
  padding:24px calc(16px + env(safe-area-inset-right,0px)) 24px calc(16px + env(safe-area-inset-left,0px));
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity 0.22s ease,visibility 0.22s ease;
}
.sport-modal.is-open{
  opacity:1;visibility:visible;pointer-events:auto;
}
.sport-modal__backdrop{
  position:absolute;inset:0;
  background:rgba(8,15,12,0.92);
  border:0;cursor:pointer;padding:0;margin:0;
}
.sport-modal__content{
  position:relative;z-index:1;
  max-width:min(92vw,960px);
  max-height:min(88vh,900px);
}
.sport-modal__media{
  display:flex;
  flex-direction:column;
  align-items:center;
  max-width:100%;
}
.sport-modal__figure{
  position:relative;
  display:inline-block;
  max-width:100%;
}
.sport-modal__caption{
  width:100%;
  max-width:100%;
  text-align:center;
  margin-top:18px;
  padding:0 8px;
}
.sport-modal__en{
  font-family:"Bebas Neue",sans-serif;
  font-size:1rem;
  letter-spacing:0.22em;
  color:var(--gold);
  margin-bottom:6px;
  text-transform:uppercase;
}
.sport-modal__jp{
  font-size:1.4rem;
  color:var(--muted);
  line-height:1.5;
}
.sport-modal__img{
  display:block;max-width:100%;max-height:min(82vh,860px);
  width:auto;height:auto;object-fit:contain;
  border:1px solid var(--gold-line);
  box-shadow:0 24px 60px rgba(0,0,0,0.55);
  opacity:1;
  transition:opacity 0.38s ease;
}
.sport-modal__img.is-fading{
  opacity:0;
}
.sport-modal__nav{
  position:absolute;top:50%;transform:translateY(-50%);
  z-index:2;
  width:44px;height:44px;padding:0;
  display:flex;align-items:center;justify-content:center;
  font-size:1.6rem;line-height:1;
  font-family:"Bebas Neue",sans-serif;
  color:var(--text);
  background:rgb(11,26,20);
  border:1px solid var(--gold-line);
  cursor:pointer;
  transition:background 0.2s,color 0.2s,opacity 0.2s;
}
.sport-modal__nav:hover{
  background:var(--green-card);
  color:var(--gold-lt);
}
.sport-modal__nav:disabled{
  opacity:0.35;
  cursor:not-allowed;
  pointer-events:none;
}
.sport-modal__prev{left:10px}
.sport-modal__next{right:10px}
@media(max-width:480px){
  .sport-modal__nav{width:40px;height:40px;font-size:1.35rem}
  .sport-modal__prev{left:6px}
  .sport-modal__next{right:6px}
}
.sport-modal__close{
  position:absolute;top:-6px;right:-6px;
  width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  font-size:1.75rem;line-height:1;
  color:var(--text);
  background:var(--green-mid);
  border:1px solid var(--gold-line);
  cursor:pointer;
  transition:background 0.2s,color 0.2s;
  z-index:3;
}
.sport-modal__close:hover{background:var(--green-card);color:var(--gold-lt)}

.policy-modal{
  position:fixed;
  inset:0;
  z-index:260;
  display:grid;
  place-items:center;
  padding:24px;
  opacity:0;
  pointer-events:none;
  transition:opacity .24s ease;
}
.policy-modal.is-open{
  opacity:1;
  pointer-events:auto;
}
.policy-modal__backdrop{
  position:absolute;
  inset:0;
  border:0;
  background:rgba(2,6,5,.72);
}
.policy-modal__content{
  position:relative;
  width:min(860px,100%);
  max-height:min(86vh,920px);
  border:1px solid var(--gold-line);
  background:linear-gradient(180deg,rgba(11,26,20,.98),rgba(8,15,12,.98));
  box-shadow:0 24px 60px rgba(0,0,0,.45);
  overflow:hidden;
}
.policy-modal__body{
  padding:28px 24px 30px;
  overflow:auto;
  max-height:min(86vh,920px);
}
.policy-modal__title{
  margin:0 0 22px;
  text-align:center;
  font-family:"Noto Serif JP",serif;
  font-size:1.5rem;
  color:var(--gold-lt);
}
.policy-modal__title::after{
  content:"";
  display:block;
  width:70px;
  height:3px;
  margin:16px auto 0;
  border-radius:999px;
  background:var(--gold);
}
.policy-modal__body h4{
  margin:28px 0 10px;
  padding-left:10px;
  border-left:4px solid var(--gold);
  color:var(--text);
  font-size:1rem;
}
.policy-modal__body p,
.policy-modal__body li{
  color:var(--muted);
  line-height:1.95;
  font-size:.92rem;
}
.policy-modal__body ul{
  margin:10px 0 0 20px;
}
.policy-modal__body a{
  color:var(--gold-lt);
}
.policy-modal__close{
  position:absolute;
  top:10px;
  right:10px;
  z-index:2;
  width:40px;
  height:40px;
  border:1px solid var(--gold-line);
  border-radius:999px;
  background:rgba(8,15,12,.92);
  color:var(--gold-lt);
  font-size:1.3rem;
  cursor:pointer;
}
.policy-modal__close:hover{
  background:var(--green-card);
}
body.policy-modal-open{
  overflow:hidden;
}

/* ══════════════════════════════════════
   SCENES
══════════════════════════════════════ */
.sec-scenes{background:var(--green-dark)}

.scenes-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--gold-line);
  border:1px solid var(--gold-line);
  margin-top:52px;
}
.scene-card{background:var(--green-dark);overflow:hidden;position:relative}
.scene-img{height:220px;overflow:hidden;background:var(--green-mid)}
.scene-img img{width:100%;height:100%;object-fit:cover;filter:brightness(1) saturate(0.85);transition:transform 0.5s}
.scene-card:hover .scene-img img{transform:scale(1.05)}
.scene-placeholder{
  height:100%;display:flex;align-items:center;justify-content:center;
}
.scene-placeholder span{
  font-family:"Bebas Neue",sans-serif;
  font-size:4rem;color:rgba(201,165,90,0.08);letter-spacing:0.06em;
}
.scene-body{padding:26px 28px 30px}
.scene-en{
  font-family:"Bebas Neue",sans-serif;
  font-size:0.68rem;letter-spacing:0.32em;
  color:var(--gold);margin-bottom:8px;
}
.scene-body h3{
  font-family:"Noto Serif JP",serif;
  font-size:1.1rem;font-weight:700;
  color:var(--text);margin-bottom:10px;
}
.scene-body p{font-size:0.86rem;color:var(--muted);line-height:1.8}

/* ══════════════════════════════════════
   PRICE
══════════════════════════════════════ */
.sec-price{background:var(--green-deep)}

.price-main{
  margin-top:52px;
  border:1px solid var(--gold-line);
}
.price-main .swiper-wrapper{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;background:var(--gold-line);
}
.price-card{
  background:var(--green-deep);
  padding:36px 26px;position:relative;
  transition:background 0.2s;
}
.price-card:hover{background:var(--green-card)}
.price-card.star{
  background:linear-gradient(180deg,rgba(201,165,90,0.1),var(--green-deep) 55%);
}
.price-card.star::before{
  content:"人気プラン";
  position:absolute;top:0;left:0;right:0;
  background:linear-gradient(135deg,var(--gold-lt),var(--gold));
  color:#0b1a14;
  font-family:"Noto Serif JP",serif;
  font-weight:700;font-size:0.68rem;
  letter-spacing:0.2em;text-align:center;
  padding:6px 0;
}
.price-card.star{padding-top:46px}

.plan-name{
  font-family:"Noto Serif JP",serif;
  font-weight:700;font-size:0.96rem;
  color:var(--gold-lt);margin-bottom:16px;
}
.price-amount{
  font-family:"Bebas Neue",sans-serif;
  font-size:2.6rem;line-height:1;
  color:var(--text);margin-bottom:4px;
}
.price-amount small{font-family:"Noto Sans JP",sans-serif;font-size:0.82rem;color:var(--muted)}
.plan-note{font-size:0.8rem;color:var(--muted);margin-bottom:20px}
.p-div{height:1px;background:var(--gold-line);margin-bottom:18px}
.plan-list{list-style:none}
.plan-list li{
  font-size:0.84rem;color:var(--muted);
  padding:8px 0;border-bottom:1px solid rgba(255,255,255,0.04);
  display:flex;gap:8px;
}
.plan-list li::before{content:"—";color:var(--gold);flex-shrink:0}
.plan-list .li-note::before{content:"※";color:var(--gold)}

/* ── VIDEO BUTTON ── */
.btn-video-open{
  display:inline-flex;align-items:center;gap:10px;
  margin-top:16px;
  background:transparent;
  border:1px solid rgba(201,165,90,.45);
  color:var(--gold-lt);
  font-size:.88rem;font-weight:700;
  letter-spacing:.12em;
  padding:10px 22px;
  cursor:pointer;
  transition:background .2s,border-color .2s,color .2s;
  position:relative;
  overflow:hidden;
}
.btn-video-open::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(90deg,transparent,rgba(201,165,90,.08),transparent);
  transform:translateX(-100%);
  transition:transform .4s;
}
.btn-video-open:hover{background:rgba(201,165,90,.1);border-color:var(--gold-lt)}
.btn-video-open:hover::before{transform:translateX(100%)}
.btn-video-open__icon{
  width:28px;height:28px;
  border-radius:50%;
  background:var(--gold);
  flex-shrink:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon points='8,5 19,12 8,19' fill='%230b1a14'/%3E%3C/svg%3E");
  background-size:55%;
  background-position:54% 50%;
  background-repeat:no-repeat;
  font-size:0;
}

/* ── VIDEO MODAL ── */
.video-modal{
  position:fixed;inset:0;z-index:500;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;
  transition:opacity .3s;
}
.video-modal.is-open{opacity:1;pointer-events:auto}

.video-modal__backdrop{
  position:absolute;inset:0;
  background:rgba(5,12,9,.88);
  backdrop-filter:blur(4px);
  cursor:pointer;
  z-index:1;
}
.video-modal iframe {filter: unset;}
.video-modal__container{
  position:relative;
  width:100%;
  background:var(--green-dark);
  border:1px solid var(--gold-line);
  box-shadow:0 0 0 1px rgba(201,165,90,.08),0 24px 60px rgba(0,0,0,.6);
  padding:4px;
}
/* corner accents */
.video-modal__container::before,
.video-modal__container::after{
  content:'';position:absolute;
  width:18px;height:18px;
  border-color:var(--gold);border-style:solid;
}
.video-modal__container::before{top:-1px;left:-1px;border-width:2px 0 0 2px}
.video-modal__container::after{bottom:-1px;right:-1px;border-width:0 2px 2px 0}

.video-modal__wrap{
  position:relative;
  z-index:2;
  width:min(880px,90vw);
}
.video-modal__close{
  position:absolute;
  top:-50px;right:0;
  background:rgba(11,26,20,.9);
  border:1px solid rgba(201,165,90,.5);
  color:var(--gold-lt);
  width:44px;height:44px;
  font-size:1.1rem;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s,border-color .2s;
  z-index:10;
  border-radius:2px;
  touch-action:manipulation;
  -webkit-tap-highlight-color:rgba(201,165,90,.2);
}
.video-modal__close:hover{background:rgba(201,165,90,.2);border-color:var(--gold)}

.video-modal__frame{
  position:relative;width:100%;padding-top:56.25%;
}
.video-modal__frame iframe{
  position:absolute;inset:0;width:100%;height:100%;
  border:0;
}

@media(max-width:768px){
  .video-modal__close{
    top:12px;right:12px;
  }

  .video-modal__wrap{width:100vw}
  .video-modal__container{
    width:100vw;height:100dvh;
    border:none;box-shadow:none;padding:0;
  }
  .video-modal__container::before,
  .video-modal__container::after{display:none}
  .video-modal__frame{padding-top:0;height:100dvh}
}


/* sub / ticket */
.price-secondary{
  border:1px solid var(--line);border-top:none;
}
.price-secondary .swiper-wrapper{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--line);
}
.price-sub-card{background:var(--green-dark);padding:24px 26px}
.price-sub-card h4{
  font-size:0.84rem;font-weight:700;
  color:var(--muted);letter-spacing:0.06em;margin-bottom:8px;
}
.sub-amt{
  font-family:"Bebas Neue",sans-serif;
  font-size:1.5rem;color:var(--text);margin-bottom:4px;
}
.price-sub-card p{font-size:0.78rem;color:var(--muted)}

.ticket-row{
  border:1px solid var(--line);border-top:none;
}
.ticket-row .swiper-wrapper{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1px;background:var(--line);
}
.ticket-card{
  background:var(--green-dark);padding:20px 26px;
  display:flex;align-items:center;gap:16px;
}
.ticket-name{font-size:0.9rem;color:var(--muted);letter-spacing:0.06em}
.ticket-sub{font-size:0.74rem;color:var(--muted);margin-top:2px}
.sub-amt-unit{font-size:0.78rem;color:var(--muted);font-family:'Noto Sans JP',sans-serif}
.ticket-price{
  font-family:"Bebas Neue",sans-serif;
  font-size:1.45rem;color:var(--text);margin-left:auto;
}
.notice{
  font-size:0.8rem;color:#b0a98a;
  margin-top:18px;padding-left:14px;
  border-left:2px solid var(--gold-line);
}

.sec-price .swiper-pagination{display:none}

.sec-price .price-swiper-nav{
  display:none;
}
.sec-price .price-swiper-btn{
  box-sizing:border-box;
  width:44px;height:44px;padding:0;margin:0;
  display:inline-flex;align-items:center;justify-content:center;
  font-family:"Bebas Neue",sans-serif;
  font-size:1.5rem;line-height:1;
  color:var(--text);
  background:rgba(11,26,20,0.9);
  border:1px solid var(--gold-line);
  cursor:pointer;
  transition:background 0.2s,color 0.2s,opacity 0.2s;
}
.sec-price .price-swiper-btn:hover{
  background:var(--green-card);
  color:var(--gold-lt);
}
.sec-price .price-swiper-btn.swiper-button-disabled{
  opacity:0.35;
  cursor:not-allowed;
  pointer-events:none;
}

/* ══════════════════════════════════════
   FLOW
══════════════════════════════════════ */
.sec-flow{background:var(--green-dark)}

.flow-track{
  display:grid;grid-template-columns:repeat(5,1fr);
  margin-top:54px;position:relative;
}
.flow-track::before{
  content:"";position:absolute;
  top:31px;left:10%;right:10%;height:1px;
  background:linear-gradient(to right,var(--gold),rgba(201,165,90,0.1));
  z-index:0;
}
.flow-step{text-align:center;padding:0 8px;position:relative;z-index:1}
.flow-num{
  width:62px;height:62px;margin:0 auto 18px;
  border:1px solid var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-family:"Bebas Neue",sans-serif;
  font-size:1.4rem;color:var(--gold);
  background:var(--green-dark);
  position:relative;
}
.flow-num::before{
  content:"";position:absolute;inset:4px;
  border:1px solid rgba(201,165,90,0.15);
}
.flow-step h4{
  font-family:"Noto Serif JP",serif;
  font-weight:700;font-size:0.96rem;
  color:var(--text);margin-bottom:8px;
}
.flow-step p{font-size:0.8rem;color:var(--muted);line-height:1.75}

/* ══════════════════════════════════════
   ACCESS
══════════════════════════════════════ */
.sec-access{background:var(--green-deep)}

.access-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:1px;background:var(--gold-line);
  border:1px solid var(--gold-line);
  margin-top:52px;
}
.access-card{background:var(--green-deep);padding:46px 44px}
.access-card h3{
  font-family:"Bebas Neue",sans-serif;
  font-size:1.4rem;letter-spacing:0.18em;
  color:var(--gold-lt);margin-bottom:20px;
  line-height: 1;
}

.access-card img {width: 100%; max-width: 33%;height: auto;}
.access-card p{font-size:0.9rem;color:var(--muted);line-height:2}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.sec-cta{background:var(--green-dark);padding:120px 0}

.cta-box{
  border:1px solid var(--gold-line);
  padding:80px 60px;text-align:center;
  position:relative;overflow:hidden;
}
.cta-box::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(ellipse at 50% 0%,rgba(201,165,90,0.12),transparent 60%);
  pointer-events:none;
}
.cta-watermark{
  position:absolute;inset:0;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;pointer-events:none;
  z-index: 0;
  opacity: 0.15;
  max-width: 85%;
  margin: 0 auto;
}
.cta-watermark span{
  font-family:"Bebas Neue",sans-serif;
  font-size:18vw;color:rgba(201,165,90,0.04);
  letter-spacing:-0.02em;text-transform:uppercase;
  white-space:nowrap;
}
.cta-box h2{position:relative;z-index:1;margin-bottom:16px}
.cta-box p{
  position:relative;z-index:1;
  font-size:0.88rem;color:var(--muted);
  max-width:580px;margin:0 auto 38px;line-height:1.8;
}
.cta-box .btn-row{position:relative;z-index:1;justify-content:center}

.trial-form{
  position:relative;
  z-index:1;
  width:min(760px,100%);
  margin:0 auto;
  text-align:left;
  border:2px solid var(--gold);
  background:rgba(11,26,20,0.78); /*rgb(24 64 48 / 70%)*/
  padding:28px 22px;
}
.trial-form__title{
  font-family:"Noto Serif JP",serif;
  color:var(--gold-lt);
  font-size:1.25rem;
  margin-bottom:10px;
}
.trial-form__lead{
  color:var(--muted);
  font-size:0.9rem;
  margin:0 0 20px;
}
.trial-form__field{margin-bottom:14px}
.trial-form__field label{
  display:block;
  color:var(--text);
  font-size:0.86rem;
  margin-bottom:6px;
}
.trial-form .required{
  color:#ff8686;
  font-size:0.72rem;
  margin-left:6px;
}
.trial-form input,
.trial-form select,
.trial-form textarea{
  width:100%;
  background:rgb(255 255 255 / 85%); /*rgba(8, 15, 12, 0.85) #1e3528*/
  border:1px solid var(--gold-line);
  color:#8a6820;
  font-size:0.9rem;
  font-weight:500;
  padding:10px 12px;
}

.trial-form input::placeholder,
.trial-form textarea::placeholder{
  color:#8a6820;
  font-weight:500;
}
.trial-form textarea{resize:vertical}
.trial-form select option:disabled{color:#999;background:#f0f0f0}
.date-mmdd{
  display:flex;align-items:center;gap:8px;flex-wrap:nowrap;
}
.date-year-badge{
  color:#8a6820;
  font-size:.9rem;font-weight:700;
  white-space:nowrap;letter-spacing:.02em;
  padding:10px 10px;
  background:rgb(255 255 255 / 85%);
  border:1px solid var(--gold-line);
  line-height:1;
}
.date-mmdd select{flex:1;min-width:0;}
input[type="date"]::-webkit-calendar-picker-indicator{
  filter:invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(1.2);
  cursor:pointer;
}
.trial-form__check{
  display:flex;
  gap:8px;
  align-items:flex-start;
  color:var(--muted);
  font-size:0.82rem;
  margin:12px 0 16px;
}
.trial-form__check input{
  width:auto;
  margin-top:2px;
}
.trial-form__policy-link{
  appearance:none;
  border:0;
  padding:0;
  background:none;
  color:var(--gold-lt);
  text-decoration:underline;
  cursor:pointer;
  font:inherit;
}
.trial-form__policy-link:hover{
  color:var(--gold);
}
.trial-form__submit{
  width:100%;
  justify-content:center;
}
.trial-form__submit:disabled{
  opacity:0.65;
  cursor:not-allowed;
}
.trial-form__submit-row{
  display:flex;
  align-items:start;
  gap:20px;
  flex-wrap:wrap;
}
.trial-form__submit-row > *{
  flex:1 1 calc(50% - 10px);
}
.trial-form__line-note{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-size:.82rem;
  line-height:1.6;
  color:var(--gold-lt) !important;
  padding:12px 16px;
  border-left:3px solid #06c755;
  background:rgba(6,199,85,.05);
  border-radius:0 4px 4px 0;
}
.trial-form__line-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#06c755;
  font-weight:700;
  font-size:.85rem;
  text-decoration:none;
  transition:opacity .2s;
}
.trial-form__line-link::before{
  content:'';
  display:inline-block;
  width:18px;height:18px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2306c755'%3E%3Cpath d='M19.365 9.863c.349 0 .63.285.63.631 0 .345-.281.63-.63.63H17.61v1.125h1.755c.349 0 .63.283.63.63 0 .344-.281.629-.63.629h-2.386c-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63h2.386c.346 0 .627.285.627.63 0 .349-.281.63-.63.63H17.61v1.125h1.755zm-3.855 3.016c0 .27-.174.51-.432.596-.064.021-.133.031-.199.031-.211 0-.391-.09-.51-.25l-2.443-3.317v2.94c0 .344-.279.629-.631.629-.346 0-.626-.285-.626-.629V8.108c0-.27.173-.51.43-.595.06-.023.136-.033.194-.033.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63.345 0 .63.285.63.63v4.771zm-5.741 0c0 .344-.282.629-.631.629-.345 0-.627-.285-.627-.629V8.108c0-.345.282-.63.63-.63.346 0 .628.285.628.63v4.771zm-2.466.629H4.917c-.345 0-.63-.285-.63-.629V8.108c0-.345.285-.63.63-.63.348 0 .63.285.63.63v4.141h1.756c.348 0 .629.283.629.63 0 .344-.281.629-.629.629M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608.391.082.923.258 1.058.59.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645 1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink:0;
}
.trial-form__line-link:hover{filter:brightness(1.5);}
.trial-form__line-note-sub{
  font-size:.74rem;
  color:var(--gold-lt);
}
@media(max-width:600px){
  .trial-form__submit-row{flex-direction:column}
  .trial-form__submit-row > *{flex:none;width:100%}
  .trial-form__line-note{border-radius:4px;border-left:3px solid #06c755}
}
.trial-form__status{
  margin-top:12px;
  font-size:0.84rem;
  color:var(--muted);
  min-height:1.4em;
}
.trial-form__status.is-success{
  color:#9be0a7;
}
.trial-form__status.is-error{
  color:#ff9d9d;
}
.is-hidden{
  display:none !important;
}
.trial-confirm{
  position:relative;
  z-index:1;
  width:min(760px,100%);
  margin:0 auto;
  text-align:left;
  border:1px solid var(--gold-line);
  background:rgba(11,26,20,0.78);
  padding:28px 22px;
}
.trial-confirm__list{
  margin:0 0 18px;
  border-top:1px solid var(--line);
}
.trial-confirm__row{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.trial-confirm__row dt{
  color:var(--muted);
  font-size:0.82rem;
}
.trial-confirm__row dd{
  margin:0;
  color:var(--text);
  font-size:0.9rem;
  white-space:pre-wrap;
  word-break:break-word;
}
.trial-confirm__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.trial-confirm__actions .btn{
  flex:1 1 220px;
  justify-content:center;
}

/* ══════════════════════════════════════
   FLOATING CTA（mobile）
══════════════════════════════════════ */
.float-cta{
  display:none;position:fixed;inset:auto 0 0;z-index:199;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom,0px));
  background:rgba(11,26,20,0.97);
  border-top:1px solid var(--gold-line);
}
.float-inner{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.float-inner .btn{height:50px;font-size:0.8rem;padding:0 14px}

#floatCta .btn {display:flex;align-items:center;justify-content:center;flex-direction: column; font-size: 1.2rem; line-height: 1.2;;}
#floatCta .btn span {display:flex;align-items:center;justify-content:center; font-size:0.8em;}
#floatCta .btn span::before {
  content: '＼';
  font-size: 1.2rem;
  margin-right: 10px;
}
#floatCta .btn span::after {
  content: '／';
  font-size: 1.2rem;
  margin-left: 10px;
}
.grecaptcha-badge {display:none;}
/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer{
  background:#080f0c;
  border-top:1px solid var(--gold-line);
  padding:32px 0;
}
.foot-links{
  display:flex;justify-content:center;align-items:center;
  gap:32px;flex-wrap:wrap;padding-bottom:20px;
  border-bottom:1px solid rgba(255,255,255,0.08);
  margin-bottom:20px;
}
.foot-links a{
  font-size:0.88rem;color:var(--muted);text-decoration:none; font-weight: 600;
  transition:color .2s;
}
.foot-links a:hover{color:#fff;}
/* .foot-inner — layout for logo / address / copyright row */
.foot-inner{
  display:flex;justify-content:space-between;
  align-items:center;gap:16px;flex-wrap:wrap;
}
.foot-logo img{width: 100%;height: auto; max-width: 200px;}
footer p{font-size:0.76rem;color:var(--muted)}

/* ══════════════════════════════════════
   LEGAL PAGES (tokusho / terms)
══════════════════════════════════════ */
.legal-page{
  padding:calc(var(--hh) + 60px) 0 80px;
  min-height:80vh;
}
.legal-container{
  width:min(860px,100%);
  margin:0 auto;
  background:linear-gradient(180deg,rgba(11,26,20,.98),rgba(8,15,12,.98));
  border:1px solid var(--gold-line);
  box-shadow:0 24px 60px rgba(0,0,0,.45);
  padding:40px 36px 48px;
}
.legal-title{
  text-align:center;
  font-family:"Noto Serif JP",serif;
  font-size:1.6rem;
  color:var(--gold-lt);
  margin-bottom:8px;
}
.legal-title::after{
  content:"";
  display:block;
  width:70px;height:3px;
  margin:16px auto 32px;
  border-radius:999px;
  background:var(--gold);
}
.legal-lead{
  color:var(--muted);
  font-size:.92rem;
  line-height:1.95;
  margin-bottom:28px;
}
.legal-container h4{
  margin:28px 0 10px;
  padding-left:10px;
  border-left:4px solid var(--gold);
  color:var(--text);
  font-size:1rem;
}
.legal-container p,
.legal-container li{
  color:var(--muted);
  line-height:1.95;
  font-size:.92rem;
}
.legal-container ul,
.legal-container ol{margin:10px 0 0 20px;}
.policy-modal__body ol{margin:10px 0 0 20px;}
.policy-modal__body ol li,.policy-modal__body li{color:var(--muted);line-height:1.95;font-size:.92rem;}
.legal-container a{color:var(--gold-lt);}
.legal-table{
  width:100%;border-collapse:collapse;
  margin-top:8px;
}
.legal-table th,
.legal-table td{
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  font-size:.92rem;
  line-height:1.8;
  vertical-align:top;
}
.legal-table th{
  width:32%;
  color:var(--gold-lt);
  font-weight:700;
  white-space:nowrap;
}
.legal-table td{color:var(--muted);}
.legal-table a{color:var(--gold-lt);}
@media(max-width:600px){
  .legal-container{padding:28px 18px 36px;}
  .legal-table th{width:40%;white-space:normal;}
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.sec-faq{background:var(--green-dark);padding-top: 0;}

.faq-list{
  max-width:800px;
  margin:0 auto;
}

.faq-category{
  font-size:.85rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  padding:36px 0 14px;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight: 600;
}
.faq-category:first-child{padding-top:4px;}
.faq-category::before{
  content:"";
  display:block;
  width:24px;height:1px;
  background:var(--gold);
  flex-shrink:0;
}

.faq-item{
  background:var(--green-card);
  border:1px solid var(--gold-line);
  margin-bottom:8px;
  overflow:hidden;
  transition:border-color .22s,box-shadow .22s;
}
.faq-item:hover{border-color:rgba(201,165,90,0.45);}
.faq-item.is-open{
  border-color:var(--gold);
  box-shadow:0 4px 24px rgba(201,165,90,0.10);
}

.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px;
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  color:var(--text);
  font-size:1rem;
  font-family:inherit;
  line-height:1.6;
  transition:color .2s;
}
.faq-q:hover{color:var(--gold-lt);}
.faq-item.is-open .faq-q{color:var(--gold-lt);}

.faq-icon{
  flex-shrink:0;
  width:26px;height:26px;
  border:1px solid var(--gold-line);
  border-radius:50%;
  position:relative;
  transition:background .22s,border-color .22s;
}
.faq-icon::before,
.faq-icon::after{
  content:"";
  position:absolute;
  top:50%;left:50%;
  background:var(--gold-lt);
  border-radius:2px;
  transition:transform .28s ease,opacity .28s ease;
}
.faq-icon::before{
  width:10px;height:1.5px;
  transform:translate(-50%,-50%);
}
.faq-icon::after{
  width:1.5px;height:10px;
  transform:translate(-50%,-50%);
}
.faq-item.is-open .faq-icon{
  background:var(--gold-glow);
  border-color:var(--gold);
}
.faq-item.is-open .faq-icon::after{
  transform:translate(-50%,-50%) rotate(90deg);
  opacity:0;
}

/* ── Answer: max-height approach (no padding bleed bug) ── */
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq-item.is-open .faq-a{
  max-height:400px;
}
.faq-a p{
  padding:0 22px 20px;
  border-top:1px solid var(--line);
  padding-top:16px;
  color:var(--muted);
  font-size:.97rem;
  line-height:1.95;
  margin:0;
}

/* CTA */
.footer-cta {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 16px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  /* 初期状態は下に隠して透明に */
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  gap: 3%;
}

/* 表示された時のクラス */
.footer-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.footer-cta .btn {
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.footer-cta .btn-secondary {
  background-color: rgba(8, 8, 8, .78);
}

/* ══════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════ */
@media(max-width:860px){
  .hamburger{display:flex}
  .site-nav{
    position:fixed;inset:0;
    background:var(--green-deep);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    flex-direction:column;align-items:flex-start;justify-content:flex-start;
    padding:calc(var(--hh) + 24px) 28px 28px;
    gap:0;transform:translateX(100%);
    transition:transform 0.3s ease;z-index:201;
    box-shadow:0 0 0 1px rgba(201,165,90,0.15),-12px 0 48px rgba(0,0,0,0.55);
  }
  .site-nav.open{transform:translateX(0); height: 100vh;}
  .site-nav a{
    width:100%;padding:16px 0;
    font-size:1.05rem;color:var(--text);
    border-bottom:1px solid var(--line);
  }
  .hdr-btn{display:none}
}
@media(max-width:640px){
  .trial-confirm__row{
    grid-template-columns:1fr;
    gap:4px;
  }
}
iframe { width: 100%; height: 450px; border: 0; filter: grayscale(0.7);}
.show-sp {display: none;}
/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1060px){
  .price-main .swiper-wrapper{grid-template-columns:repeat(2,1fr)}
  .concept-grid{grid-template-columns:repeat(2,1fr)}
  .sports-grid{grid-template-columns:repeat(4,1fr)}
}

@media(max-width:860px){
  .hero-inner{grid-template-columns:1fr}
  .hero-card{display:none}
  .hero-goldline{display:none}
}

@media(max-width:780px){
  .logo img {max-width: 200px;}
  .sec{padding:72px 0}
  h1{font-size:clamp(28px,8vw,44px)}
  h2{font-size:clamp(26px,7vw,40px)}
  .hero {align-items: center;}
  .hero-content {padding: 40px 20px 50px;}
  .hero-tagline{font-size:clamp(36px,10vw,60px)}
  .prob-grid,
  .feat-grid,
  .scenes-grid,
  .access-grid,
  .concept-grid{grid-template-columns:1fr; margin-bottom: 20px;}
  .price-main .swiper-wrapper,
  .price-secondary .swiper-wrapper,
  .ticket-row .swiper-wrapper{display:flex;gap:0;background:transparent}
  .price-main .swiper-slide,
  .price-secondary .swiper-slide,
  .ticket-row .swiper-slide{height:auto}
  .price-main,
  .price-secondary,
  .ticket-row{
    overflow:hidden;
    margin-bottom:20px;
    position:relative;
    padding-bottom:48px;
  }
  .sec-price .price-swiper-nav{
    display:flex;
    align-items:center;
    gap:8px;
    position:absolute;
    right:10px;
    bottom: 37px;
    z-index:6;
  }
  .price-main .swiper-pagination,
  .price-secondary .swiper-pagination,
  .ticket-row .swiper-pagination{
    display:block;
    position:static;
    margin-top:14px;
    padding-right:100px;
  }
  .sec-price .swiper-pagination-bullet{
    width:7px;height:7px;
    background:rgba(201,165,90,0.38);
    opacity:1;
  }
  .sec-price .swiper-pagination-bullet-active{background:var(--gold-lt)}
  .sports-grid{grid-template-columns:repeat(3,1fr)}
  .flow-track{grid-template-columns:1fr;gap:28px 0}
  .flow-track::before{display:none}
  .cta-box{padding:35px 15px}
  .float-cta{display:block}
  footer{padding-bottom:86px}
  .sec-lead {text-align:left;}
  .concept-card {display:flex; flex-wrap: wrap; gap:10px;}
  .concept-card img {width:20%;}
  .concept-card-content {width: calc(80% - 10px);padding-left:10px;}
  .feat-no {font-size: 4rem;}
  .scene-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 10px;
  }
  .price-main {border: none;}
  .price-card {border: 1px solid var(--gold-line);}
  .price-secondary {border: none;}
  .price-sub-card {border: 1px solid var(--gold-line);}
  .ticket-row {border: none;}
  .ticket-card {border: 1px solid var(--gold-line);}
  .flow-step {display: flex; flex-direction: row; align-items: center; gap: 10px;}
  .flow-step-content {display: flex; flex-direction: column; align-items: flex-start;}
  .flow-num {margin: 0;}
  .access-card {display: flex;gap: 20px;flex-wrap: wrap; padding: 15px;}
  .access-card h3 {margin-bottom: 0;}
  .access-card img { max-width: 40%}
  .show-sp {display: flex; flex-direction: column; gap: 10px;}
}

@media(max-width:480px){
  .feat-card{grid-template-columns:1fr 4fr;padding: 15px;gap: 0;}
  .feat-no {font-size: 3rem;}
  .sports-grid{grid-template-columns:repeat(2,1fr)}
  .concept-card {flex-wrap: nowrap; padding: 15px;}
  .concept-card h3 {margin-bottom: 0;}
  .concept-card p {font-size: 0.8rem;}
  .concept-card img {max-width: 20%;}
  .concept-card-content {width:100%;padding-left:0;}
}
