@charset "UTF-8";


a:link,
a:visited {
  color: #ffffff;   /* 白に固定なのだ */
}

a:hover {
  color: #cccccc;   /* 好みで変えてOK */
}

a:active {
  color: #aaaaaa;   /* 押した瞬間 */
}



/* スクロールに応じてJSが更新するパラメータ */
:root{ --blur: 0px; --dim: 0 }

*{ box-sizing: border-box }
html,body{ height:100% }
body{
  margin:0; line-height:1.65;
  font-family: system-ui, -apple-system, "Segoe UI", "Noto Sans JP", sans-serif;
  color:#f7f8fc;
}

/* ===== 固定背景（画像＋暗幕） ===== */
.hero-bg{
  position: fixed; inset:0; z-index:-2; overflow:hidden; isolation:isolate;
}
.hero-bg img{
  width:100%; height:100%; object-fit:contain;
  transform:none;
  filter: blur(var(--blur));
  transition: filter .16s linear;
  background:#000; /* 画像外の余白は黒 */
  will-change: filter;
}
.hero-bg .hero-dim{
  position: fixed; inset:0; pointer-events:none;
  background: rgba(0,0,0,var(--dim));
  transition: background-color .16s linear;
}

/* ===== ヒーロー帯 ===== */
.hero{
  display:grid; place-items:center; text-align:center;
  min-height: 72vh; padding: 8vh 1rem 10vh;
}
.hero h1{
  margin:0 0 .5rem; font-size: clamp(1.8rem, 4vw, 3rem);
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero .sub{ margin:0; opacity:.9 }

/* ▼ スクロールでタイトル出現（初期は非表示） */
.hero--hidden{
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.hero--shown{
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition: opacity .35s ease, transform .35s ease;
}

/* ===== コンテンツ ===== */
.container{ width:min(1000px,92%); margin-inline:auto }
.section{ padding:2.5rem 0; border-top:1px solid rgba(255,255,255,.08) }
.defs{ display:grid; gap:.5rem }
.defs dt{ font-weight:700 }
.defs dd{ margin:0; color:#cbd3ff }

.cards{ list-style:none; padding:0; margin:1rem 0 0;
  display:grid; gap:1rem; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)) }
.card{ background: rgba(10,14,32,.65); border:1px solid rgba(255,255,255,.08);
  border-radius:14px; padding:1rem; min-height:110px; backdrop-filter: blur(6px) }
.card__link{ color:#e6fefb; text-decoration:none; display:grid; gap:.25rem }
.card__link:hover{ text-decoration:underline }
.card__title{ font-weight:700 }
.card__meta{ color:#b5c1e8; font-size:.9rem }
.card--soon{ display:flex; align-items:center; justify-content:center; color:#b5c1e8; font-weight:700 }

.placeholder{ padding:2.2rem; border:2px dashed rgba(255,255,255,.2);
  border-radius:12px; text-align:center; color:#b5c1e8 }
.note{ color:#b5c1e8 }

.footer{ border-top:1px solid rgba(255,255,255,.08); padding:1.5rem 0; text-align:center; color:#b5c1e8 }

/* ▼ コンテンツもスクロールで出現（初期は隠す） */
.locked .reveal{ opacity:0; transform: translateY(18px); pointer-events:none }
.reveal{ opacity:0; transform: translateY(18px) }
.reveal.is-shown{
  opacity:1; transform:none;
  transition: opacity .35s ease, transform .35s ease;
}

/* 低速端末や“動きが苦手”設定ではアニメ弱め */
@media (prefers-reduced-motion: reduce){
  .hero-bg img, .hero-bg .hero-dim{ transition:none }
  .hero--shown, .reveal.is-shown{ transition:none }
}

/* ===== ステージゲストカード ===== */
.guest-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.guest-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform .3s ease;
  max-width: 640px;
  margin-inline: auto;
}
.guest-card:hover { transform: translateY(-3px); }

.guest-card__figure { 
  margin: 0;
  background: #000;
  overflow: hidden;
  border-radius: 8px;
}
.guest-card__photo {
  display: block;
  width: 500px;
  height: auto;
  max-width: 33vw;      /* ← 画面幅の1/3を上限に縮小 */
  object-fit: contain;  /* ← アスペクト比を維持して縮小 */
  object-position: center;
  margin-inline: auto;
  transition: transform .3s ease;
}
.guest-card:hover .guest-card__photo { transform: scale(1.03); }

.guest-card__caption {
  padding: .75rem;
  font-size: .95rem;
}
.guest-card__name {
  display: block;
  font-weight: 700;
  margin-bottom: .25rem;
}
.guest-card__note {
  font-size: .85rem;
  color: rgba(255,255,255,0.8);
  margin-top: .25rem;
}

/* 近日公開用 */
.guest-card--soon {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  background: repeating-linear-gradient(
    45deg, rgba(255,255,255,.05), rgba(255,255,255,.05) 10px,
    transparent 10px, transparent 20px
  );
}

.visit-members ul {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;        /* リストの外側の箱を中央へ */
  text-align: left;      /* 文字だけ左揃え */
  width: fit-content;    /* 中身の幅だけを中央配置 */
}

.visit-members li {
  text-align: left;
  /* margin-left は付けない */
}

/* 疑似要素はこのまま or ちょい調整 */
.visit-members li::before {
  content: "•";
  color: #fff;
  margin-right: 0.5em;
  /* 必要なら： */
  /* display: inline-block;
     width: 1em; */
}


/* ===== クーポン画像 ===== */
.coupon-fig img {
  display: block;
  width: 500px;
  height: auto;
  max-width: 33vw;       /* 画面幅の1/3を上限に縮小 */
  object-fit: contain;
  object-position: left;
  border-radius: 8px;
  background: #000;
}

/* ===== PDFモーダル：画面の85%で中央表示、スクロールなし ===== */
.modal {
  width: auto;                 /* dialog 自体は中身に合わせる */
  padding: 0;
  border: none;
  background: transparent;
}
.modal::backdrop { background: rgba(0,0,0,.6); }


.modal__inner {
  position: relative;
  margin: 0;
  padding: 0;
  width: 85vw;                 /* 横：画面の85% */
  height: 85vh;                /* 縦：画面の85% */
  background: #000;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;            /* 余白・スクロールを出さない */
}

.modal__doc {
  display: block;
  width: 100%;
  height: 100%;                /* 枠いっぱいにフィット */
  border: 0;
}

/* 閉じるボタン */
.modal__close {
  position: absolute;
  top: 8px; right: 8px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}
.modal__close:hover { background: rgba(255,255,255,.25); }

/* スマホで見やすく（枠を少し広め） */
@media (max-width: 640px) {
  .modal__inner { width: 92vw; height: 92vh; }
}

/* ===== お知らせセクション ===== */
.news-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
}

.news-item__title {
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.news-item__button {
  margin-top: 0.75rem;
  background: #4a90e2;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.news-item__button:hover {
  background: #6aa7ff;
}