/* ============================================================
   ストーリープレイングシアター メインサイト CSS
   front-page & 共通スタイル
   ============================================================ */

/* ── CSS Variables ── */
:root {
  /* ── 背景 ── */
  --c-bg: #0b1a45; /* ページ背景・ボタン文字色 */
  --c-surface: #051133; /* カード背景など */

  /* ── ボーダー ── */
  --c-border: rgba(255, 255, 255, 0.3); /* 共通ボーダー */

  /* ── ゴールド ── */
  --c-gold: #ffc444; /* メインゴールド（ボタン・見出し・リンク） */
  --c-gold-dim: rgba(255, 196, 68, 0.8); /* カーソルリング・薄いゴールド */
  --c-gold-light: #d69d24; /* フローティングボタンhover */

  /* ── テキスト ── */
  --c-text: #fff; /* メインテキスト */
  --c-muted: rgba(255, 255, 255, 0.65); /* サブテキスト */
  --c-question: #9f72cc; /* Qの文字 */
  --c-answer: #9f72cc; /* Aの文字 */

  /* ── タグ ── */
  --c-tag-now-playing: #ff9046; /* 公演中 */
  --c-tag-coming-soon: #00bfff; /* 近日公開 */
  --c-tag-genre: #fff; /* ジャンル */

  /* ── フィードバック ── */
  --c-error: #ff3e3e; /* フォームエラー文字色 */

  /* ── フォント ── */
  --f-serif-ja: "Shippori Mincho", "Noto Serif JP", "Georgia", serif;
  --f-display: "Playfair Display", serif;

  /* ── イージング ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Site Loader ── */
#site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 2s var(--ease-out);
}
#site-loader.is-done {
  opacity: 0;
  pointer-events: none;
}
.loader-skip #site-loader {
  display: none;
}
.loader-text {
  display: flex;
  flex-direction: row-reverse;
  gap: 1rem;
  align-items: flex-start;
}
.loader-line {
  writing-mode: vertical-rl;
  font-family: var(--f-serif-ja);
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.35em;
  color: var(--c-gold);
}
.loader-char {
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.loader-char.is-visible {
  opacity: 1;
}
/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
ul,
ol {
  list-style: none;
}
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}
input,
textarea,
select {
  font: inherit;
}

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

body.site-main-active {
  background: #07060e;
  color: var(--c-text);
  font-family: var(--f-serif-ja);
  line-height: 1.8;
  overflow-x: hidden;
  cursor: auto;
}

/* ── コンテンツをstarfieldより上に ── */

/* ── サイト全体カラム制約 ── */
#page {
  max-width: 560px;
  margin: 0 auto;
  background: url('../img/page-bg.jpg') center top / 560px auto fixed;
  min-height: 100vh;
  min-height: 100dvh;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

/* ── Nebula ── */
.nebula {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
body.site-main-active .nebula {
  display: none;
}
.nebula-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: nebulaFloat linear infinite;
}
.nebula-blob:nth-child(1) {
  width: 80vw;
  height: 80vw;
  top: -15%;
  left: -10%;
  background: radial-gradient(ellipse, rgba(80, 30, 160, 0.5) 0%, transparent 70%);
  animation-duration: 28s;
  animation-delay: 0s;
}
.nebula-blob:nth-child(2) {
  width: 70vw;
  height: 70vw;
  top: 10%;
  right: -15%;
  background: radial-gradient(ellipse, rgba(20, 60, 140, 0.45) 0%, transparent 70%);
  animation-duration: 34s;
  animation-delay: -8s;
}
.nebula-blob:nth-child(3) {
  width: 90vw;
  height: 60vw;
  bottom: 5%;
  left: 10%;
  background: radial-gradient(ellipse, rgba(100, 20, 130, 0.45) 0%, transparent 70%);
  animation-duration: 40s;
  animation-delay: -16s;
}
.nebula-blob:nth-child(4) {
  width: 50vw;
  height: 50vw;
  top: 40%;
  left: 30%;
  background: radial-gradient(ellipse, rgba(20, 70, 160, 0.35) 0%, transparent 70%);
  animation-duration: 22s;
  animation-delay: -5s;
}
@keyframes nebulaFloat {
  0% {
    opacity: 0;
    transform: scale(1) translate(0, 0);
  }
}

/* ── カーソル ── */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--c-gold-dim);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 2147483647;
  transition: transform 0.15s ease;
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.25);
}
.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid var(--c-gold-dim);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 2147483646;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.9);
}

/* ── Stars ── */
.starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.starfield canvas {
  width: 100%;
  height: 100%;
}

/* ── 背景スライドショー（カラム外・PC用） ── */
.bg-slideshow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.bg-slideshow__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease;
  filter: blur(4px) brightness(0.5) saturate(0.7);
}
.bg-slideshow__slide.is-active {
  opacity: 1;
  animation: kenBurns 7s ease-in-out forwards;
}
@keyframes kenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

/* コンテンツは星・霧より前面に */

/* ── ノイズオーバーレイ ── */
body.site-main-active::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

/* コンテンツは星・霧より前面に */
#site-main {
  position: relative;
  z-index: 5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a,
a:visited {
  color: inherit;
  text-decoration: none;
}

/* ── ユーティリティ ── */
.u-pc-only {
  display: none;
}
/* ── ページ共通ラッパー ── */
.wrapper {
  padding: 3rem 1.5rem 2rem;
}

/* ── ページ共通：内側ラッパー ── */
.inner {
  margin: 0 auto;
}

/* ── ボタン ── */
.fp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2.5rem;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  border: 1px solid var(--c-gold);
  border-radius: 4px;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.fp-btn::after {
  content: "\203A";
  font-size: 1.1em;
  line-height: 1;
  transition: transform 0.2s var(--ease-out);
  margin-top: -3px;
}
.fp-btn:hover::after {
  transform: translateX(3px);
}
.fp-btn--primary,
.fp-btn--primary:visited,
.fp-btn--ghost,
.fp-btn--ghost:visited {
  background: transparent;
  color: var(--c-gold);
}
.fp-btn--primary:hover,
.fp-btn--ghost:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}
.fp-btn:active {
  transform: scale(0.97);
}

/* ── セクション共通ヘッダー ── */
.fp-section-header {
  text-align: center;
  margin: 3rem 0 0 ;
}
.fp-section-header--left {
  text-align: left;
}
.fp-section-label {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: bold;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--c-gold);
  margin-bottom: 0.4rem;
  line-height: 1;
}
.fp-section-title {
  font-family: var(--f-serif-ja);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: bold;
  letter-spacing: 0.2em;
  color: var(--c-muted);
}

/* ============================================================
   Contents
   ============================================================ */
.fp-shows {
  padding: 0 1.5rem 2rem;
  margin: 0 auto;
}

.fp-shows__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  margin: 0 auto 2rem;
}
.fp-show-card {
  transition: opacity 0.3s;
}
.fp-show-card:hover {
  opacity: 0.95;
}
.fp-show-card__inner {
  display: block;
}

.fp-show-card__img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 297 / 210;
  overflow: hidden;
  border-radius: 4px;
}
.fp-show-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.fp-show-card:hover .fp-show-card__img {
  transform: scale(1.03);
}
.fp-shows__empty,
.fp-news__empty {
  text-align: center;
  padding: 3rem 0;
}

/* ============================================================
   News
   ============================================================ */
.fp-news__list {
  margin: 0 auto;
  list-style: none;
}
.fp-news__item {
  border-bottom: 1px solid var(--c-border);
}
.fp-news__item:first-child {
  border-top: 1px solid var(--c-border);
}

.fp-news__link {
  display: grid;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  transition: color 0.2s;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  row-gap: 0.15rem;
}
.fp-news__link:hover {
  color: var(--c-gold);
}
.fp-news__link:hover .fp-news__arrow {
  transform: translateX(4px);
  color: var(--c-gold);
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scrollLine {
  0% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform: scaleY(0);
    transform-origin: top;
  }
}

/* ============================================================
   Archive: Contents（公演一覧）
   ============================================================ */
.arch-shows__header,
.sshow-page-header .inner,
.spage-header .inner {
  text-align: center;
}
.arch-shows__header,
.spage-header {
  margin-bottom: 3rem;
}
.arch-show-card{
  margin-bottom: 2rem;
}
.arch-show-card__img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 297 / 210;
  overflow: hidden;
  border-radius: 4px;
}
.arch-show-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.arch-show-card:hover .arch-show-card__img-wrap img {
  transform: scale(1.03);
}
.arch-show-card:hover .arch-show-card__hover-overlay {
  opacity: 1;
}
.arch-show-card__badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  pointer-events: none;
}
.arch-show-card__status,
.arch-show-card__genre-badge {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  backdrop-filter: blur(10px);
  background: rgba(7, 7, 15, 0.6);
  color: var(--c-tag-genre);
  border: 1px solid var(--c-tag-genre);
}
.arch-show-card__status--now-playing {
  color: var(--c-tag-now-playing);
  border: 1px solid var(--c-tag-now-playing);
}
.arch-show-card__status--coming-soon {
  color: var(--c-tag-coming-soon);
  border: 1px solid var(--c-tag-coming-soon);
}
.arch-show-card__body {
  padding: 1rem 0 0 0;
}
.arch-show-card__title {
  font-family: var(--f-serif-ja);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--c-gold);
}
.arch-show-card__meta {
  border-top: 1px solid var(--c-border);
  font-size: 0.85rem;
}
.arch-show-card__meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.arch-show-card__meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--c-border);
}
.arch-show-card__meta-row dt{
  color: var(--c-gold);
}
.arch-show-card__meta-grid .arch-show-card__meta-row:first-child {
  padding-right: 1rem;
  border-right: 1px solid var(--c-border);
}
.arch-show-card__meta-grid .arch-show-card__meta-row:last-child {
  padding-left: 1rem;
}
.arch-show-card__meta-row--full {
  width: 100%;
}
.arch-price {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5em;
}
.arch-price span {
  white-space: nowrap;
}
/* ============================================================
   Single: Shows（公演詳細）
   ============================================================ */

.sshow-page-header{
  margin-bottom: 3rem;
}
.sshow-kv {
  position: relative;
  aspect-ratio: 297 / 210;
  width: 100%;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
}
.sshow-kv__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sshow-kv__badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.sshow-kv__status,
.sshow-kv__genre {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  background: rgba(7, 7, 15, 0.6);
  color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 1);
}
.sshow-kv__status--now-playing {
  color: var(--c-tag-now-playing);
  border: 1px solid var(--c-tag-now-playing);
}
.sshow-kv__status--coming-soon {
  color: var(--c-tag-coming-soon);
  border: 1px solid var(--c-tag-coming-soon);
}
.sshow-kv__title-wrap {
  margin: 2rem auto 1.5rem;
}

.sshow-kv__title {
  font-family: var(--f-serif-ja);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: var(--c-gold);
}
.sshow-info__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.sshow-info__excerpt {
  font-size: 1rem;
  line-height: 2;
}
.sshow-info__excerpt p {
  margin-bottom: 1rem;
}
.sshow-info__excerpt strong {
  font-weight: bold;
  color: var(--c-error);
}
.sshow-info__excerpt > *:last-child {
  margin-bottom: 0;
}
.sshow-meta-dl {
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 1.5rem;
}
.sshow-meta-dl dt {
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--c-gold);
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--c-border);
}
.sshow-meta-dl dt:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.sshow-meta-dl dd {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  margin-top: 0.3rem;
}
.sshow-price {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5em;
}
.sshow-price span {
  white-space: nowrap;
}
/* ── 中見出し共通スタイル（sshow-section-title / snews h2 / spage h2 で共有） */
.sshow-section-title {
  font-family: var(--f-serif-ja);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  margin: 3rem 0 1.3rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-border);
}
.sshow-cancel-policy__body,
.sshow-day-flow__body {
  text-align: left;
  font-size: 0.8rem;
}
.sshow-cancel-policy__body h3,
.sshow-day-flow__body h3 {
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  font-weight: bold;
  color: var(--c-gold);
  margin: 1rem 0 0.5rem;
}
.sshow-cancel-policy__body p,
.sshow-day-flow__body p {
  margin-bottom: 1rem;
}
.sshow-cancel-policy__body p:last-of-type {
  margin-bottom: 0;
  text-align: right;
}
.sshow-cancel-policy__body ul,
.sshow-day-flow__body ul{
  margin: 0 0 1rem 0;
}
.sshow-cancel-policy__body li,
.sshow-day-flow__body li {
  list-style: none;
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.3em;
}
.sshow-cancel-policy__body li::before,
.sshow-day-flow__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-gold);
}
.sshow-other{
  margin-top: 3rem;;
}
.sshow-other__center {
  display: flex;
  justify-content: center;
}
.sshow-booking .am-ecs__side{
  display: none;
}
.top-archive-amelia-list #amelia-container,
.sshow-amelia-list #amelia-container{
border: 1px solid rgba(255, 255, 255, 0.1)!important;
margin-top: 1rem!important;
}
.sshow-booking__other{
  margin-top: 2rem;
  text-align: center;
}
/* フェードインアップ（スクロールトリガー用） */
.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-fade--d1 {
  transition-delay: 0.15s;
}
.js-fade--d2 {
  transition-delay: 0.3s;
}
.js-fade--d3 {
  transition-delay: 0.45s;
}
.js-fade--d4 {
  transition-delay: 0.6s;
}

/* ============================================================
   Site Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 560px;
  z-index: 210;
  background: rgba(5, 17, 51, var(--header-opacity, 0));
  backdrop-filter: blur(calc(12px * var(--header-opacity, 0)));
  -webkit-backdrop-filter: blur(calc(12px * var(--header-opacity, 0)));
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  justify-content: center;
}

/* ロゴ中央・スクロールで表示 */
.header-logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out);
}
.header-logo.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.header-logo img {
  height: 48px;
  width: auto;
  transition: opacity 0.2s;
}
.header-logo:hover img {
  opacity: 0.6;
}

/* ── ハンバーガーボタン（全画面幅で表示） ── */
.header-hamburger {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 220;
}
.header-hamburger__line {
  display: block;
  height: 1px;
  background: var(--c-gold);
  transition:
    transform 0.4s var(--ease-out),
    opacity 0.3s,
    width 0.3s var(--ease-out);
  transform-origin: center;
}
.header-hamburger__line:nth-child(1) {
  width: 28px;
}
.header-hamburger__line:nth-child(2) {
  width: 20px;
}
.header-hamburger__line:nth-child(3) {
  width: 14px;
}

.header-hamburger.is-open .header-hamburger__line:nth-child(1) {
  width: 28px;
  transform: translateY(9px) rotate(45deg);
}
.header-hamburger.is-open .header-hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header-hamburger.is-open .header-hamburger__line:nth-child(3) {
  width: 28px;
  transform: translateY(-9px) rotate(-45deg);
}

/* ── フルスクリーンナビ（全画面幅共通） ── */
.header-nav {
  position: fixed;
  inset: 0;
  height: 100%;
  background: rgba(5, 17, 51, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
  z-index: 190;
}
.header-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  pointer-events: none;
}
.header-nav.is-open ul {
  pointer-events: auto;
}
.header-nav a {
  font-family: var(--f-serif-ja);
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: 0.2em;
  transition: color 0.3s;
  position: relative;
}
.header-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--c-gold);
  transition:
    left 0.35s var(--ease-out),
    right 0.35s var(--ease-out);
}
.header-nav a:hover {
  color: var(--c-gold);
}
.header-nav a:hover::after {
  left: 0;
  right: 0;
}

/* ── メインビジュアル ── */
.fp-main-visual {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.fp-main-visual__img {
  width: 100%;
  height: auto;
  display: block;
  animation: mvCircleReveal 1.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes mvCircleReveal {
  from {
    clip-path: circle(0% at 50% 50%);
    transform: scale(1.08);
  }
  to {
    clip-path: circle(150% at 50% 50%);
    transform: scale(1);
  }
}

/* ── カルーセル（無限横スクロール） ── */
.fp-whats {
  width: 100%;
  margin-bottom: 3rem;
}
.fp-whats__img {
  display: block;
  width: 100%;
  height: auto;
}
.fp-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
}
.fp-carousel__track {
  display: flex;
  width: max-content;
  animation: carouselScroll 7s linear infinite;
}
.fp-carousel__item {
  flex-shrink: 0;
  width: min(50vw, 300px);
  margin-right: 1rem;
}
.fp-carousel__item img {
  width: 100%;
  aspect-ratio: 297 / 210;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
@keyframes carouselScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ============================================================
   Site Footer
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--c-border);
  padding: 2rem 1.5rem;
  margin-top: 2rem;
  line-height: 1.4;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  color: var(--c-text);
  transition:
    color 0.25s,
    transform 0.25s;
}
.footer-social a:hover {
  color: var(--c-gold);
  transform: scale(1.2);
}
.footer-social svg {
  width: 1.3rem;
  height: 1.3rem;
}
.footer-logo:hover img {
  opacity: 0.6;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  list-style: none;
}
.footer-nav a {
  font-family: var(--f-serif-ja);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--c-gold);
}

.footer-nav--legal a {
  font-size: 0.6rem;
  color: var(--c-muted);
}
.footer-nav--legal a:hover {
  color: var(--c-gold);
}

.footer-copy {
  font-family: var(--f-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

/* ============================================================
   お知らせ一覧（archive.php）
   ============================================================ */
.snews-archive {
  padding: 0;
}
.snews-archive__header {
  text-align: center;
  margin-bottom: 3rem;
}

/* リスト */
.snews-list {
  list-style: none;
}
.snews-list__item {
  border-bottom: 1px solid var(--c-border);
}
.snews-list__item:first-child {
  border-top: 1px solid var(--c-border);
}
.snews-list__link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  color: var(--c-text);
  transition: color 0.2s;
}
.snews-list__link:hover {
  color: var(--c-gold);
}

.snews-list__thumb {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--c-surface);
}
.snews-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out);
}
.snews-list__link:hover .snews-list__thumb img {
  transform: scale(1.04);
}

.snews-list__body {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  justify-content: center;
  min-width: 0;
}
.snews-list__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.snews-list__date {
  font-family: var(--f-serif-ja);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  white-space: nowrap;
}
.snews-list__title {
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: bold;
}
.snews-list__excerpt {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--c-muted);
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.snews-list__link:hover .snews-list__arrow {
  transform: translateX(4px);
  color: var(--c-gold);
}

/* ページネーション（WP-PageNavi） */
.snews-archive-paging {
  text-align: center;
}
.snews-archive-paging .wp-pagenavi a,
.snews-archive-paging .wp-pagenavi span {
  font-family: var(--f-serif-ja);
  font-size: 0.8rem;
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  transition:
    color 0.2s,
    border-color 0.2s;
  line-height: 1;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.snews-archive-paging .wp-pagenavi a:hover {
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.snews-archive-paging .wp-pagenavi span.current {
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.snews-archive-paging .wp-pagenavi span.pages,
.snews-archive-paging .wp-pagenavi span.extend {
  border: none;
  width: auto;
  color: var(--c-muted);
}

.snews-empty {
  text-align: center;
  padding: 4rem 0;
}

/* ============================================================
   お知らせ詳細（single.php）
   ============================================================ */
.snews-header {
  margin: 0 0 3rem;
  text-align: center;
}
.snews-header__inner {
  max-width: 780px;
}
.snews-title-wrap {
  padding: 2rem 0 0;
  text-align: left;
}
.snews-title-wrap__inner {
  max-width: 780px;
}
.snews-title {
  font-family: var(--f-serif-ja);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: bold;
  color: var(--c-gold);
  margin: 0.5rem 0 0;
  line-height: 1.6;
}
.snews-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}
.snews-meta__date {
  font-family: var(--f-serif-ja);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--c-muted);
}
.snews-meta__cat {
  font-family: var(--f-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  padding: 0.2em 0.7em;
  border-radius: 4px;
  text-transform: uppercase;
}

/* アイキャッチ */
.snews-kv {
  padding: 0;
}
.snews-kv__inner {
  max-width: 780px;
  border-radius: 4px;
  overflow: hidden;
}
.snews-kv__inner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* 本文 */
.snews-body {
  padding: 2rem 0 0;
}
.snews-body__inner {
  max-width: 780px;
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  line-height: 1.9;
}
.snews-body__inner h2 {
  font-family: var(--f-serif-ja);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--c-border);
}
.snews-body__inner h3 {
  font-size: 1rem;
  color: var(--c-text);
  margin: 2rem 0 0.75rem;
}
.snews-body__inner p {
  margin-bottom: 1rem;
}
.snews-body__inner strong {
  font-weight: bold;
  color: var(--c-gold);
}
.snews-body__inner p:last-child {
  margin-bottom: 0;
}
.snews-body__inner a {
  color: var(--c-gold);
  text-underline-offset: 3px;
  transition: 0.35s var(--ease-out);
  text-decoration: underline;
}
.snews-body__inner a:hover {
  opacity: 0.75;
}
.snews-body__inner img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5rem 0;
}
.snews-body__inner ul,
.snews-body__inner ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.snews-body__inner li {
  margin-bottom: 0.4em;
}

/* フッターナビ */
.snews-nav {
  padding: 2rem 0 0;
}
.snews-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.snews-nav__pager:hover {
  color: var(--c-gold);
}
.snews-nav__pager-arrow {
  flex-shrink: 0;
}
.snews-nav__pager-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.snews-nav__pager-placeholder {
  flex: 1;
}
/* ============================================================
   固定ページ共通（page.php）
   ============================================================ */

.spage-body {
  padding: 0;
}
.spage-body__inner {
  max-width: 780px;
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  line-height: 1.9;
}
.spage-body__inner h3 {
  font-size: 1rem;
  color: var(--c-text);
  margin: 2rem 0 0.75rem;
}
.spage-body__inner p {
  margin-bottom: 1rem;
}
.spage-body__inner p:last-child {
  margin-bottom: 0;
}
.spage-body__inner > *:last-child {
  margin-bottom: 0;
}
.spage-body__inner .text-right {
  text-align: right;
}
.spage-body__inner ul,
.spage-body__inner ol {
  margin-bottom: 1rem;
}
.spage-body__inner li {
  list-style: none;
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 0.3em;
}
.spage-body__inner li::before {
  content: "●";
  color: var(--c-gold);
  font-size: 0.45em;
  position: absolute;
  left: 0;
  top: 1.25em;
}
.spage-info-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3em 1.5em;
  margin-bottom: 1.5em;
}
.spage-info-dl dt {
  white-space: nowrap;
}
.spage-body__inner a {
  color: var(--c-gold);
  text-underline-offset: 3px;
  transition: 0.35s var(--ease-out);
}
.spage-body__inner a:hover {
  opacity: 0.75;
}
.spage-body__inner .fp-btn:hover {
  opacity: 1;
}

/* 特商法テーブル */
.stpl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  line-height: 1.8;
  border-top: 1px solid var(--c-border);
}
.stpl-table th,
.stpl-table td {
  padding: 0 1em;
  border-bottom: 1px solid var(--c-border);
  text-align: left;
  display: block;
}
.stpl-table th {
  white-space: nowrap;
  color: var(--c-gold);
  font-weight: bold;
  border-bottom: none;
  padding-top: 1.3rem;
  margin-bottom: 0.5rem;
}
.stpl-table td {
  padding-bottom: 1.3rem;
}
.spage-body__inner iframe.access-iframe {
  filter: invert(0.9) hue-rotate(180deg) saturate(0.4);
  border-radius: 4px;
}
.spage-body__inner img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* 固定ページ内レイアウト */

/* フルブリード（端まで画像） */
.spage-full {
  width: calc(100% + 3rem); 
  position: relative;
  overflow: hidden;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
   max-width: none !important;
}
.spage-body__inner .spage-full img,
.spage-full img {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
  margin: 0 !important;
}

.spage-full__caption p {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.8;
  margin: 0;
  font-weight: bold;
  max-width: 600px;
}

/* 2カラム行 */
.spage-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}
.spage-row--reverse {
  direction: ltr;
}
.spage-row--reverse > * {
  direction: ltr;
}
.spage-row__img img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin: 0;
}
.spage-row__body h2 {
  border-bottom: none !important;
  margin: 0 0 1.5rem 0 !important;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--c-gold);
  padding-bottom: 0 !important;
}

/* 区切り線 */
.spage-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 0;
}

/* パノラマ写真 */
.panorama-img{
  margin-bottom: 3rem;
}
.panorama-img h3{
  color: var(--c-gold);
  font-weight: bold;
  font-size: 1.3rem;
  margin-top: 3rem;
} 

/* 観劇ガイド */
.spage-guide {
  margin: 3rem 0 0;
}
.spage-guide > h2::before,
.spage-guide > h2::after {
  content: "" !important;
  flex: 1 !important;
  height: 1px !important;
  background: linear-gradient(to right, transparent, var(--c-gold)) !important;
}
.spage-guide > h2::after {
  background: linear-gradient(to left, transparent, var(--c-gold)) !important;
}

/* ============================================================
   FAQ
   ============================================================ */
.sfaq-group {
  margin-bottom: 3rem;
}
.sfaq-group__title {
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  color: var(--c-gold) !important;
  padding-bottom: 0.75rem;
  margin-bottom: 0 !important;
  border-bottom: 1px solid var(--c-gold);
}
.sfaq-list {
  border-bottom: 1px solid var(--c-border);
}
.sfaq-item {
  border-top: 1px solid var(--c-border);
}
.sfaq-item:first-child {
  border-top: none;
}

/* Question row */
.sfaq-q {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--c-text);
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.sfaq-q:hover {
  color: var(--c-gold);
}

.sfaq-q__label {
  flex-shrink: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: bold;
  color: var(--c-question);
  line-height: 1.7;
}
.sfaq-q__icon {
  flex-shrink: 0;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
}
.sfaq-q__icon::before,
.sfaq-q__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--c-text);

  transition:
    transform 0.35s var(--ease-out),
    opacity 0.35s;
  width: 12px;
  height: 1px;
}
.sfaq-q__icon::before {
  width: 1px;
  height: 12px;
}
.sfaq-item.is-open .sfaq-q__icon::before {
  transform: rotate(90deg);
  opacity: 0;
}

/* Answer panel */
.sfaq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}
.sfaq-item.is-open .sfaq-a {
  grid-template-rows: 1fr;
}
.sfaq-a__inner {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0;
  transition: padding-bottom 0.4s var(--ease-out);
  color: var(--c-muted);
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  line-height: 1.9;
}
.sfaq-item.is-open .sfaq-a__inner {
  padding-bottom: 1.5rem;
}
.sfaq-a__label {
  flex-shrink: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: bold;
  color: var(--c-answer);
  line-height: 1.9;
}

/* ============================================================
   Contact Form
   ============================================================ */
.scontact-lead {
  font-family: var(--f-serif-ja);
  line-height: 1.9;
  margin-bottom: 3rem;
}

.vip-lead{
  margin-bottom: 2rem!important;
}

.scontact-form__row > p > br {
  display: none;
}
.scontact-form__req {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--c-bg);
  background: var(--c-gold);
  padding: 0.1em 0.45em;
  border-radius: 4px;
  line-height: 1.6;
}

.scontact-form__note{
  font-size: 0.8rem;
  color: var(--c-muted);
}

/* CF7 入力フィールド共通 */
.scontact-form input[type="text"],
.scontact-form input[type="email"],
.scontact-form input[type="tel"],
.scontact-form input[type="date"],
.scontact-form select,
.scontact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  color: var(--c-text);
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  line-height: 1.6;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  resize: vertical;
}
.scontact-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(1);
  cursor: pointer;
}
.scontact-form input:focus,
.scontact-form select:focus,
.scontact-form textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(236, 211, 129, 0.15);
}
.scontact-form input::placeholder,
.scontact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* セレクトボックス */
.scontact-form .wpcf7-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255, 255, 255,1)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* チェックボックス */
.scontact-form .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.scontact-form .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  line-height: 1.5;
}
.scontact-form .wpcf7-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
  margin-top: 0.2rem;
  border: 1px solid var(--c-gold-dim);
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}
.scontact-form .wpcf7-checkbox input[type="checkbox"]:checked {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.scontact-form .wpcf7-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 7px;
  border: 2px solid var(--c-bg);
  border-top: none;
  border-left: none;
  transform: translate(-50%, -60%) rotate(45deg);
}

/* 送信ボタン */
.scontact-form__submit {
  text-align: center;
}
.scontact-form__submit .wpcf7-spinner {
  display: none;
}
.scontact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 0.75rem 2.5rem;
  background: transparent;
  border: 1px solid var(--c-gold);
  border-radius: 4px;
  color: var(--c-gold);
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s;
}
.scontact-form .wpcf7-submit::after {
  content: "\203A";
  font-size: 1.1em;
  line-height: 1;
  margin-left: 0.75rem;
  transition: transform 0.2s var(--ease-out);
  margin-top: -3px;
}
.scontact-form .wpcf7-submit:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}
.scontact-form .wpcf7-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}
.scontact-form .wpcf7-submit:hover::after {
  transform: translateX(3px);
}

/* フローティング予約ボタン */
.floating-reserve {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  padding: 0.7rem 1.2rem;
  z-index: 1000;
  background: var(--c-gold);
  color: #07070f !important;
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  letter-spacing: 0.12em;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(236, 211, 129, 0.5);
  opacity: 0;
  transform: translateY(16px);
  font-weight: bold;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    background 0.2s;
  pointer-events: none;
}
.floating-reserve.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-reserve:hover {
  background: var(--c-gold-light);
}
/* reCAPTCHA バッジを非表示（フォーム下に表記を追加） */
.grecaptcha-badge {
  visibility: hidden;
}
.page-id-83 .grecaptcha-badge,
.page-id-201 .grecaptcha-badge {
  visibility: visible;
  z-index: 10 !important;
}

/* CF7 バリデーション・レスポンス */
.wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: var(--c-error);
  margin-top: 0.35rem;
  display: block;
}
.wpcf7-response-output {
  margin-top: 2rem 0 0 !important;
  padding: 1rem 1.25rem !important;
  border-radius: 4px !important;
  font-family: var(--f-serif-ja);
  font-size: 0.8rem;
  border: 1px solid var(--c-border) !important;
}

/* ── 404ページ ── */
.error404 .spage-body__inner {
  text-align: center;
  padding-bottom: 0;
}

/* ── トップ・公演一覧のAmeliaカレンダー：左右余白なし ── */
.fp-shows__calendar {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
  margin: 3rem auto 0;
}

.fp-shows__calendar .am-ecs__side {
  display: none;
}

.fp-show-card__sp-btn {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 0;
}

/* Show single */ /* News archive */
.snews-list__arrow {
  flex-shrink: 0;
  transition:
    transform 0.2s,
    color 0.2s;
  grid-column: 2;
  align-self: center;
}
.snews-nav__paging {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 1rem;
  flex-direction: column;
}
.snews-nav__pager {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  max-width: 100%;
  transition: color 0.2s;
}
.snews-nav__pager--next {
  margin-left: 0;
  align-self: flex-end;
}
.fp-news {
  padding: 0rem 1.5rem;
}

.fp-show-card__sp-btn .fp-btn {
  font-size: 0.8rem;
  padding: 0.4rem 0.9rem;
  display: flex;
  width: 100%;
  justify-content: center;
}
.fp-shows__more .fp-btn,
.fp-news__more .fp-btn {
  display: flex;
  width: 100%;
  justify-content: center;
}
.fp-shows__more .fp-btn {
  background: var(--c-gold);
  color: #07070f;
  border-color: var(--c-gold);
  font-weight: bold;
}
.fp-shows__more .fp-btn:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  color: #07070f;
}
.fp-shows__more,
.fp-news__more {
  text-align: center;
  margin-top: 1.5rem;
}

/* ============================================================
   Front Page — Access (brief)
   ============================================================ */
.fp-access-brief {
  padding: 2rem 1.5rem 2rem;
}
.fp-access-brief__map {
  margin-bottom: 1rem;
}
.fp-access-brief__text {
  font-size: 1rem;
  line-height: 2;
}
.fp-access-brief__map iframe {
  display: block;
  width: 100%;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.4);
  border-radius: 4px;
  vertical-align: top;
}
.spage-row__img {
  order: -1;
}
.spage-guide > h2 {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  border-bottom: none !important;
  margin-top: 0 !important;
  margin-bottom: 2rem !important;
  font-family: var(--f-serif-ja) !important;
  font-size: 1.3rem !important;
  font-weight: bold !important;
  letter-spacing: 0.25em !important;
  color: var(--c-gold) !important;
  padding-bottom: 0 !important;
}
.spage-guide h3 {
  font-weight: bold;
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  background: rgba(15, 15, 26, 0.6) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid var(--c-border) !important;
  border-radius: 4px 4px 0 0 !important;
  padding: 1rem 1.25rem !important;
  margin-bottom: 0 !important;
  margin-top: 1rem !important;
  font-size: 1.1rem !important;
  line-height: 1.4 !important;
  letter-spacing: 0.05em !important;
}
.spage-guide h3::before {
  content: attr(data-num) !important;
  font-family: var(--f-display) !important;
  font-size: 2rem !important;
  font-style: italic !important;
  font-weight: bold !important;
  color: var(--c-gold) !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  width: 3rem !important;
  text-align: center !important;
  transform: translateY(-0.15em) !important;
}
.spage-guide h3 + p {
  background: rgba(15, 15, 26, 0.4) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid var(--c-border) !important;
  border-top: none !important;
  border-radius: 0 0 4px 4px !important;
  padding: 1rem 1.25rem 1.25rem 1.25rem !important;
  margin-bottom: 0 !important;
  color: var(--c-muted) !important;
  font-size: 0.8rem !important;
}
.spage-full__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 7rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}
.spage-body__inner h2 {
  font-family: var(--f-serif-ja);
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  margin: 3rem 0 1.3rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-border);
}
.snews-archive-paging .wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.wrapper.contact .spage-body__inner > p:first-child,
.wrapper.request .spage-body__inner > p:first-child {
  margin-bottom: 2rem;
}
.scontact-form__row > p {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  width: 100%;
}
.scontact-form__label {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-serif-ja);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  flex: none;
  padding-top: 0;
  white-space: normal;
}
.scontact-form__row > p > .wpcf7-form-control-wrap {
  flex: none;
  width: 100%;
}
.scontact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sfaq-q__text {
  flex: 1;
  font-size: 1rem;
}
.sfaq-a__text {
  flex: 1;
  font-size: 0.8rem;
}
#calendar {
  scroll-margin-top: 1rem;
}
.arch-shows__calendar .inner {
  margin: 0 auto;
}
.arch-shows__calendar .am-ecs__side {
  display: none;
}
.footer-logo img {
  height: 35px;
  width: auto;
  opacity: 1;
  transition: opacity 0.2s;
}
.footer-social__x svg {
  width: 1.3rem;
  height: 1.3rem;
}
.fp-news__date {
  font-family: var(--f-serif-ja);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color:var(--c-muted);
  white-space: nowrap;
  grid-column: 1;
  grid-row: 1;
}
.fp-news__cat {
  font-family: var(--f-display);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  padding: 0.15rem 0.5rem;
  white-space: nowrap;
  grid-column: 1;
  grid-row: 2;
}
.fp-news__title {
  font-size: 1rem;
  line-height: 1.5;
  grid-column: 1;
  grid-row: 3;
}
.fp-news__arrow {
  transition:
    transform 0.2s,
    color 0.2s;
  grid-column: 2;
  grid-row: 1 / 4;
  align-self: center;
}

.arch-show-card__hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: transparent;
  opacity: 1;
  transition: opacity 0.3s var(--ease-out);
  border-radius: 4px;
  padding: 0.75rem;
}
.arch-show-card__hover-overlay .fp-btn--ghost {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--c-text);
}


/* ── キャストページ ── */
.scast {
  padding: 0 0 4rem;
}
.scast-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}
.scast-card {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s;
  width: 100%;
}
.scast-card__img {
  width: calc(100% - 12px);
  margin: 6px auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--c-gold);
  box-shadow: 0 0 0 4px var(--c-surface), 0 0 0 5px var(--c-gold);
}
.scast-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.scast-card:hover .scast-card__img img {
  transform: scale(1.05);
}
.scast-card__name {
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  color: var(--c-gold);
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: bold;
  line-height: 1.65;
}

/* Cast Modal */
.scast-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.scast-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.scast-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.scast-modal__inner {
  position: relative;
  background: #0e0b20;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  width: calc(100% - 3rem);
  max-width: 480px;
  max-height: 90svh;
  overflow-y: auto;
  z-index: 1;
  padding: 1.5rem;
}
.scast-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 1px solid var(--c-border);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-border);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.scast-modal__close:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.scast-modal__img-wrap {
  width: calc(65% - 12px);
  margin: 6px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--c-gold);
  box-shadow: 0 0 0 4px var(--c-surface), 0 0 0 5px var(--c-gold);
  aspect-ratio: 1;
}
.scast-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.scast-modal__body {
  text-align: center;
}
.scast-modal__name {
  font-family: var(--f-serif-ja);
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  color: var(--c-gold);
  margin: 1rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-border);
}
.scast-modal__profile {
  font-size: 0.8rem;
  color: var(--c-text);
  text-align: left;
  margin-bottom: 1rem;
}
#castModalXLink::after {
  display: none;
}

/* ── SNS ループ ── */
.fp-sns-loop {
  overflow: hidden;
  padding: 1.5rem 0;
  position: relative;
  line-height: 1;
}
.fp-sns-loop__track {
  display: flex;
  width: max-content;
  will-change: transform;
  user-select: none;
}
.fp-sns-loop__seq {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fp-sns-loop__item {
  flex-shrink: 0;
  margin-right: 3rem;
}
.fp-sns-loop__item:last-child {
  margin-right: 3rem;
}
.fp-sns-loop__item a {
  display: inline-flex;
  align-items: center;
  color: var(--c-text);
  text-decoration: none;
  transition:
    color 0.2s,
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.fp-sns-loop__item a:hover {
  color: var(--c-gold);
  transform: scale(1.4);
}
.fp-sns-loop__item svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}
.fp-sns-loop--sm {
  padding: 1rem 0;
}
.fp-sns-loop--sm .fp-sns-loop__item {
  margin-right: 2rem;
}
.fp-sns-loop--sm .fp-sns-loop__item:last-child {
  margin-right: 2rem;
}
.fp-sns-loop--sm .fp-sns-loop__item svg {
  width: 1.3rem;
  height: 1.3rem;
}

/* ============================================================
   Session Memory（観劇記念ページ）
   ============================================================ */

/* パスワードフォーム */
.smemory-password {
  text-align: center;
}
.smemory-password__lead {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.smemory-password p.pwbox,
.smemory-password form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}
.smemory-password input[type="password"] {
  width: 100%;
  max-width: 320px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  color: var(--c-text);
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.smemory-password input[type="password"]:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(236, 211, 129, 0.15);
  outline: none;
}
.smemory-password input[type="submit"] {
  background: transparent;
  border: 1px solid var(--c-gold);
  border-radius: 4px;
  color: var(--c-gold);
  cursor: pointer;
  font-family: var(--f-serif-ja);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 0.6rem 2rem;
  transition: background 0.2s, color 0.2s;
  font-weight: bold;
}
.smemory-password input[type="submit"]:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}

/* 共通見出し */
.smemory-section-heading {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  font-size: 1.2rem!important;
  border-bottom: 1px solid var(--c-gold);
}

/* 記念写真グリッド */
.smemory-photos {
  margin-bottom: 2.5rem;
}
.smemory-photos__note {
  font-size: 0.8em;
  color: var(--c-text);
  opacity: 0.7;
}
.smemory-photos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.smemory-photos__item {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.smemory-photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.smemory-photos__grid a:hover{
  opacity: 1!important;
}
.smemory-photos__item:hover img {
  transform: scale(1.03);
}

/* GMメッセージ */
.smemory-message {
  margin-bottom: 3rem;
}
.smemory-message__body {
  font-size: 1rem;
  line-height: 2;
  color: var(--c-text);
}

/* ハッシュタグ */
.smemory-hashtag {
  text-align: center;
  padding: 1.5rem;
  background:rgba(15, 15, 26, 0.6) ;
  border-radius: 4px;
  border: 1px solid var(--c-gold);
}
.smemory-hashtag .smemory-section-heading {
  color: var(--c-text);
  margin-top: 0;
  margin-bottom: 0.8rem;
}
.smemory-hashtag__tags {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.smemory-hashtag__tag {
  font-size: 1rem;
  font-family: var(--f-display);
  color: var(--c-gold);
  letter-spacing: 0.05em;
}

/* ============================================================
   公演記念 — 体験後アンケート
   ============================================================ */
.smemory-survey__field,
.smemory-survey__rating-field {
  margin-bottom: 1.75rem;
}
.smemory-survey-lead{
  margin-bottom: 2rem!important;
}
.smemory-survey__label {
  display: block;
  font-family: var(--f-serif-ja);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.smemory-survey .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin-top: 0.25rem;
}
.smemory-survey .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.smemory-survey .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-family: var(--f-serif-ja);
  font-size: 0.95rem;
}
.smemory-survey .wpcf7-radio input[type="radio"] {
  accent-color: var(--c-gold);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  flex-shrink: 0;
}
.smemory-survey__hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 0.7rem 0 0;
}
.smemory-survey__pinch-title {
  font-family: var(--f-serif-ja);
  font-size: 1.1rem!important;
  color: var(--c-gold)!important;
  margin: 0 0 1rem!important;
  font-weight: bold;
}
.smemory-survey__pinch-sub {
  font-family: var(--f-serif-ja);
  font-size: 1rem;
  color: var(--c-text);
  margin-bottom: 1rem;
  font-weight: bold;
}
.smemory-survey__pinch-lead {
  font-family: var(--f-serif-ja);
  font-size: 0.8rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.smemory-survey__pinch-box {
  font-family: var(--f-serif-ja);
  font-size: 0.8rem;
  line-height: 1.6;
  background: rgba(15, 15, 26, 0.6); 
  border: 1px solid var(--c-gold);
  border-radius: 4px;
  padding: 1rem;
}
.smemory-survey__pinch-merit{
  background: var(--c-gold);
  color: var(--c-bg);
  font-weight: bold;
  padding: 0.7rem;
  line-height: 1.6;
}
.smemory-survey__pinch-box-title{
  font-weight: bold;
  color: var(--c-gold);
}
.smemory-survey__pinch-box p {
  margin-bottom: 0.7rem;
}
.smemory-survey__pinch-box p:last-child {
  margin-bottom: 0;
}
.smemory-survey__pinch-cta {
  color: var(--c-gold) !important;
  font-weight: bold;
}
.smemory-survey__submit {
  text-align: center;
  margin-top: 2rem;
}

/* 公演前情報 */
.smemory-info {
  margin-bottom: 2.5rem;
}
.smemory-info__list {
  margin: 0;
  padding: 0;
}
.smemory-info__row {
  display: flex;
  gap: .5rem;
  padding: 0.7rem 0;
  border-bottom: 1px dotted var(--c-border);
}
.smemory-info__row:first-child{
  padding-top: 0;
}
.smemory-info__row:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}
.smemory-info__row dt {
  flex-shrink: 0;
  width: 5.3em;
  color: var(--c-gold);
}
.smemory-info__row dd {
  margin: 0;
}
@media (min-width: 450px) {
  .smemory-dt-br { display: none; }
}
.smemory-info__row--notes dt,
.smemory-info__row--notes dd {
  word-break: break-all;
}

/* MAP */
.smemory-map {
  margin-bottom: 2.5rem;
}
.smemory-map__iframe {
  margin-bottom: 1rem;
}
.smemory-map__iframe iframe {
  display: block;
  width: 100%;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.4);
  border-radius: 4px;
  vertical-align: top;
}

/* 掲示板 */
.smemory-board {
  margin-bottom: 2.5rem;
}
.smemory-board__posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.smemory-board__post {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 0.9rem 1rem;
}
.smemory-board__post-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.smemory-board__name {
  font-size: 0.8rem;
  color: var(--c-gold);
  font-weight: bold;
  flex: 1;
  min-width: 0;
  word-break: break-all;
}
.smemory-board__time {
  font-size: 0.8rem;
  color: var(--c-muted);
  flex-shrink: 0;
  white-space: nowrap;
}
.smemory-board__body {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--c-text);
}
.smemory-board-lead{
  color: var(--c-muted);
  font-size: 0.8rem;
}
.smemory-board__empty {
  margin-bottom: 1.5rem;
}
.smemory-board__form {
  margin-top: 1rem;
}
.smemory-board__form .form-submit {
  text-align: center;
  order: 9;
}
.smemory-board__form .comment-form-author { order: 1; }
.smemory-board__form .comment-form-comment { order: 2; }
.smemory-board__form #commentform p:has(img) { order: 3; }
.smemory-board__form #commentform p:has(#siteguard_captcha) { order: 4; }
.smemory-board__form #commentform p > br {
  display: none;
}
.smemory-board__form #commentform p:has(label[for="siteguard_captcha"]) {
  margin-top: -1rem;
}
.smemory-board__form label[for="siteguard_captcha"]::after {
  content: "必須";
  display: inline-block;
  font-size: 0.8rem;
  color: var(--c-bg);
  background: var(--c-gold);
  padding: 0.1em 0.45em;
  border-radius: 4px;
  vertical-align: middle;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
.smemory-board__form #commentform {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.smemory-board__form #commentform p {
  margin: 0;
}
.smemory-board__form label {
  display: flex;
  font-size: 0.8rem;
  margin-bottom: 0.7rem;
  font-weight: bold;
  gap: 0.5rem;
}
.smemory-board__form input[type="text"],
.smemory-board__form textarea {
  width: 100%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 3px;
  color: #fff;
  font-size: 0.9rem;
  padding: 0.6rem 0.75rem;
  box-sizing: border-box;
  font-family: var(--f-serif-ja);
  line-height: 1.6;
  transition: border-color 0.2s;
}
.smemory-board__form input[type="text"]:focus,
.smemory-board__form textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(236, 211, 129, 0.15);
}
.smemory-board__form #comment_parent {
  display: none;
}
.smemory-board__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 200px;
  padding: 0.75rem 2.5rem;
  background: transparent;
  border: 1px solid var(--c-gold);
  border-radius: 4px;
  color: var(--c-gold);
  font-family: var(--f-display);
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.smemory-board__submit span {
  font-size: 1.1em;
  transition: transform 0.2s;
  margin-top: -2px;
}
.smemory-board__submit:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}
.smemory-board__submit:hover span {
  transform: translateX(3px);
}
#reply-title {
  font-size: 0.8rem;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--c-gold);
  padding-left: 0.75rem;
  font-weight: bold;
}
.smemory-required {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--c-bg);
    background: var(--c-gold);
    padding: 0.1em 0.45em;
    border-radius: 4px;
    line-height: 1.6;
}
.smemory-board__delete {
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--c-error);
  color: var(--c-error);
  font-size: 0.7rem;
  padding: 0.15rem 0.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.smemory-board__delete:hover {
  background: #ff3e3e3c;
  color: var(--c-error);
}

/* ============================================================
   Media Queries
   ============================================================ */

/* PC: starfieldをコンテンツ幅でクリップ */
@media (min-width: 561px) {
  .starfield {
    clip-path: inset(0 calc(50vw - 280px));
  }
}

/* タッチデバイス: カーソル非表示 */
@media (hover: none), (pointer: coarse) {
  .main-cursor,
  .main-cursor-ring,
  .cursor,
  .cursor-ring {
    display: none;
  }
}

/* ============================================================
   Stars Decoration — 汎用
   使い方: 親要素に position:relative を付け、その中に
   <img src="star0N.png" class="fp-star fp-star--close" aria-hidden="true" alt="">
   を置いて top/left/right を各セクションで上書き
   ============================================================ */
.fp-star {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform;
  z-index: 3;
  top: var(--top-sp);
}
@media (min-width: 701px) {
  .fp-star {
    scale: 1.35;
    translate: calc(var(--star-nudge, 0) * 30px) 0;
    top: var(--top-pc, var(--top-sp));
  }
}

/* 近い（手前）: 大きめ・blur強 */
.fp-star--close {
  --star-speed: 0.04;
  opacity: 1;
  width: 30px;
  filter: drop-shadow(10px 10px 5px rgba(1, 0, 38, 0.8));
  z-index: 4;
}

/* 中間 */
.fp-star--mid {
  --star-speed: 0.08;
  filter: blur(0.8px) drop-shadow(10px 10px 5px rgba(1, 0, 38, 0.5));
  opacity: 1;
  width: 50px;
  z-index: 5;
}

/* 遠い（奥）: シャープ・小さめ */
.fp-star--far {
  --star-speed: 0.13;
  filter: blur(2.5px) drop-shadow(10px 10px 5px rgba(1, 0, 38, 0.5));
  opacity: 1;
  width: 80px;
  z-index: 6;
}
@media (min-width: 561px) {
  #site-main      { z-index: auto; }
  .fp-star--close { z-index: 213; }
  .fp-star--mid   { z-index: 212; }
  .fp-star--far   { z-index: 211; }
  .header-nav     { z-index: 215; }
}
