/* ============================================================
   🔤 カスタムフォント: Neo둥근모 Pro（韓国語ドット風）
   ファイルは assets/fonts/ に配置
   ============================================================ */
@font-face {
  font-family: 'NeoDunggeunmoPro';
  src: url('./assets/fonts/NeoDunggeunmoPro-Regular.woff2') format('woff2'),
       url('./assets/fonts/NeoDunggeunmoPro-Regular.woff')  format('woff'),
       url('./assets/fonts/NeoDunggeunmoPro-Regular.ttf')   format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg:#0f0f12;
  --card:#17171c;
  --card2:#1f1f25;
  --text:#f3f3f5;
  --muted:#b6b6c2;
  --line:#2b2b34;
  --accent:#ff79b0; /* ほんのりピンク */
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Noto Sans JP", sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,121,176,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 0%, rgba(255,255,255,.06), transparent 55%),
              var(--bg);
  color:var(--text);
  background-repeat: no-repeat;        /* ★ 繰り返し防止 */
  background-size: cover;              /* ★ 画面全体に1枚で */
  background-attachment: fixed;        /* ★ スクロールでズレて見えるの防止（好み） */
}

a{color:inherit}
.muted{color:var(--muted)}

.topbar{
  position:sticky; top:0; z-index:10;
  display:flex; gap:16px; justify-content:space-between; align-items:center;
  padding:14px 18px;
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(10px);
  background: rgba(15,15,18,.65);
}

.brand__title{
  font-family: 'DotGothic16', monospace;
  font-weight: 400;
  letter-spacing: .04em;
}
.brand__sub{
  font-family: 'DotGothic16', monospace;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: .03em;
}
:lang(ko) .brand__title,
:lang(ko) .brand__sub {
  font-family: 'NeoDunggeunmoPro', monospace;
  letter-spacing: .04em;
}

.actions{display:flex; gap:10px; align-items:center}
.lang{display:flex; gap:8px; margin-left: 48px; flex-wrap:wrap}
.chip{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:8px 10px;
  border-radius:999px;
  cursor:pointer;
}
.chip.active{
  border-color: rgba(255,121,176,.7);
  box-shadow: 0 0 0 3px rgba(255,121,176,.15);
}

.tabs{
  display:flex; gap:8px; flex-wrap:wrap;
  padding:10px 14px;
  border-bottom:1px solid var(--line);
  background: rgba(15,15,18,.45);
  position:sticky; top:58px; z-index:9;
  backdrop-filter: blur(10px);
  transition: transform .3s ease, top .3s ease;
}
.tab{
  text-decoration:none;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-size:14px;
}
.tab.active{
  border-color: rgba(255,121,176,.7);
  background: rgba(255,121,176,.12);
}

.container{
  max-width:825px;
  margin:0 auto;
  padding:18px 14px 80px;
  position: relative;
  z-index: 3;        /* topbar(10)/tabs(9)より下 */
  isolation: isolate;
}

/* スマホ：タブが非表示のため、コンテンツが固定ヘッダーと被らないように上余白を追加 */
@media (max-width: 768px){
  .container{
    padding-top: 32px;
  }
}

.hero{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:18px;
  margin:8px 0 16px;
}
.hero h1{margin:0; font-size:26px}
.hero p{margin:8px 0 0}

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius:var(--radius);
  padding:14px;
  margin:14px 0;
  overflow: hidden;   /* ★ ピンクのはみ出しを止める */
}

.card__head{
  display:flex; justify-content:space-between; align-items:baseline;
  gap:10px;
  margin-bottom:12px;
}
.card__head h2{margin:0; font-size:18px}

.schedule img{
  width:100%;
  height:auto;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.06);
  background: var(--card2);
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
@media (max-width: 900px){
  .grid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 560px){
  .grid{grid-template-columns: 1fr;}
}

.event{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  transition: transform .08s ease, border-color .08s ease;
}
.event:hover{ transform: translateY(-1px); border-color: rgba(255,121,176,.45); }
.event__img{ width:100%; aspect-ratio: 16 / 9; object-fit:cover; display:block; background: var(--card2); }
.event__body{ padding:10px 10px 12px; }
.event__title{ margin:0; font-size:15px; font-weight:700; }
.event__meta{ margin-top:6px; font-size:12px; color:var(--muted); display:flex; gap:8px; flex-wrap:wrap; }

.page{display:none; position:relative;}
.page.active{display:block}

.prose{
  line-height:1.75;
  color: var(--text);
  overflow-wrap: break-word; /* ★ 強制折り返し */
  word-break: break-word;
}

.prose a{ color: var(--accent); text-decoration: none; }
.prose a:hover{ text-decoration: underline; }
.prose hr{ border:none; border-top:1px solid var(--line); margin:16px 0; }
.prose ul{ margin:8px 0 8px 20px; }

.footer{
  padding:18px;
  border-top:1px solid var(--line);
  text-align:center;
  background: rgba(15,15,18,.35);
}

/* MODAL */
.modal{ position:fixed; inset:0; display:none; z-index:50; }
.modal.open{ display:block; }
.modal__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.62); }
.modal__panel{
  position:absolute; left:50%; top:50%;
  transform: translate(-50%, -50%);
  width:min(980px, 94vw);
  background: rgba(20,20,26,.98);
  border:1px solid var(--line);
  border-radius:18px;
  overflow: visible;
}
.modal__close{
  position:absolute; right:10px; top:8px;
  width:40px; height:40px;
  border-radius:999px;
  border:1px solid var(--line);
  font-size:22px;
  cursor:pointer;
  z-index:2;
}
.modal__content{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
}
@media (max-width: 860px){
  .modal__content{ grid-template-columns: 1fr; }
}
.modal__img{
  width:100%;
  height:100%;
  max-height: 520px;
  object-fit:cover;
  background: var(--card2);
}
.modal__text{ padding:0; display:flex; flex-direction:column; gap:4px; }
.modal__text h3{ margin:0 0 4px; font-size:16px; }
.modal__links{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  text-decoration:none;
  cursor:pointer;
}
.btn.primary{
  border-color: rgba(255,121,176,.7);
  background: rgba(255,121,176,.14);
}

.asobu-note{
  border: none;
  background: transparent;
  border-radius: 14px;
  padding: 12px 12px 10px;
  margin-bottom: 12px;
}
.asobu-note__label{
  font-weight: 800;
  letter-spacing: .02em;
  margin-bottom: 6px;
}
.asobu-note__text{
  color: var(--text);
}
.asobu-note__text .divider{
  opacity: .6;
}

/* === イベント動画・画像 共通16:9枠 === */
.event__media{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
}

.event__media video,
.event__media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===== Modal scroll lock ===== */
body.modal-open {
  overflow: hidden;
}

/* ===== Split modal: 左=動画 / 右=画像+詳細+ボタン ===== */
.modal__carousel{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}
/* 動画なし（画像のみ）の場合は中央1カラム */
.modal__carousel--image-only{
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}

/* 両ページ常時表示 */
.carpage{
  display: flex;
  flex-direction: column;
  padding: 14px;
  min-height: 0;
}
/* 右カラムはスクロール可能 */
.carpage[data-page="1"]{
  border-left: 1px solid var(--line);
  overflow-y: auto;
  max-height: min(80vh, 600px);
}

/* =====================================================
   スマホ: 上左=動画 / 上右=画像 / 下=テキスト
   CSSグリッドだけで実現（DOM移動不要）
   ===================================================== */
@media (max-width: 680px) {
  .modal__panel {
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  /* カルーセルを grid-areas で3ゾーン定義 */
  .modal__carousel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "video image"
      "text  text";
    flex: 1;
    min-height: 0;
    overflow: hidden;
  }

  /* page0(動画) → videoエリア */
  .carpage[data-page="0"] {
    grid-area: video;
    padding: 10px 6px 6px 10px;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  /* page1自体を消して子要素をgridに直接参加させる */
  .carpage[data-page="1"] {
    display: contents;
    border-left: none;
  }

  /* mediaDetail → imageエリア */
  #modalMediaDetail {
    grid-area: image;
    padding: 10px 10px 6px 6px;
    aspect-ratio: unset;
    height: auto;
    min-height: 0;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
  }
  #modalMediaDetail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
  }

  /* modal__text → textエリア */
  .modal__text {
    grid-area: text;
    border-top: 1px solid var(--line);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 12px 14px 16px;
    min-height: 0;
  }

  /* 動画ラッパー */
  #modalMediaMain {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    flex: none;
  }

  /* 画像のみモード: page0非表示、imageを全幅に */
  .modal__carousel--image-only {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "text";
  }
  .modal__carousel--image-only .carpage[data-page="0"] {
    display: none;
  }
  .modal__carousel--image-only #modalMediaDetail {
    padding: 10px;
  }
}

/* カルーセルボタン非表示 */
.carbtn{ display: none !important; }

/* 左カラム: 動画エリア */
.modal__media{
  width: 100%;
  flex: 1;
  min-height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.modal__media img,
.modal__media video{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #0c0c10;
}

.modal__navhint{ display: none; }

/* ===== Lightbox (image zoom) ===== */
.lightbox{ position:fixed; inset:0; display:none; z-index:80; }
.lightbox.open{ display:block; }
.lightbox__backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.78); }
.lightbox__img{
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%, -50%);
  max-width: 96vw;
  max-height: 92vh;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: #0c0c10;
}


/* ===== Modal close button ===== */
.modal__panel{ overflow: hidden; }
.modal__close{ top: 8px; right: 10px; z-index: 60; }


/* ===== Detail page media (poster/image) ===== */
.modal__media--detail{
  height: 180px;
  flex: none;
  margin-bottom: 10px;
}

@media (max-width: 680px){
  .modal__media--detail{ height: 160px; }
}


/* ===== Home split layout (Schedule left / Events right) ===== */
/* 右を固定の長さ（イベント3枚ぶん）にする：右が増えてもここで止まって中だけスクロール */
:root{
  --homeEventsHeight: 600px; /* ★ ここが固定高さ（だいたいイベント3枚ぶん） */
}

.home-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

/* 左は内容に合わせて伸びる／右だけ固定高さ */
.home-left .card{
  height: auto;              /* ★ 左は伸びる */
  margin: 0;
  display: flex;
  flex-direction: column;
}

.home-right .card{
  height: var(--homeEventsHeight); /* ★ 右だけ固定 */
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* 右カードの中でスクロールさせる領域 */
.events-scroll{
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
}

/* コンテスト / イベントを縦一列にする */
.home-right .grid{
  grid-template-columns: 1fr;
}

/* Responsive: stack on narrow screens */
@media (max-width: 900px){
  .home-split{
    grid-template-columns: 1fr;
  }
  .home-left .card,
  .home-right .card{
    height: auto; /* スマホでは固定しない */
    margin: 14px 0;
  }
  .events-scroll{
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

/* ===== スクロールバーをダークテーマに馴染ませる ===== */

/* WebKit系（Chrome / Edge / Safari） */
.events-scroll::-webkit-scrollbar{
  width: 10px;
}

.events-scroll::-webkit-scrollbar-track{
  background: rgba(255,255,255,0.05); /* 背景 */
  border-radius: 999px;
}

.events-scroll::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.25); /* つまみ */
  border-radius: 999px;
}

.events-scroll::-webkit-scrollbar-thumb:hover{
  background: rgba(255,255,255,0.4);
}

/* Firefox */
.events-scroll{
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) rgba(255,255,255,0.05);
}

/* 押して🖤 ボタンを見やすく（白背景・黒文字） */
.btn.primary{
  background: #ffffff;
  color: #000000;
  border: 2px solid #000000;
  opacity: 1;
}

/* ===== Goods redesign ===== */
.goods-hero{
  display:block;
  margin: 6px 0 14px;
}
.goods-hero h3{ margin:0; font-size:20px; font-weight:900; letter-spacing:.01em; }
.goods-hero .sub{ margin:6px 0 0; color:var(--muted); font-size:13px; line-height:1.6; }

.badges{ display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; }
.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-size:12px;
}
.badge.pink{
  border-color: rgba(255,121,176,.75);
  background: rgba(255,121,176,.14);
}

.goods-box{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.02);
  overflow:hidden;
  margin: 12px 0;
}
.goods-box summary{
  cursor:pointer;
  padding:14px 14px;
  font-weight:900;
  font-size:18px;
}
.goods-box .inner{ padding: 0 14px 14px; }

.goods-summary{
  display:flex; align-items:center; gap:12px;
}
.goods-thumb{
  width:72px; height:72px; flex:0 0 auto;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  object-fit:cover;
}
.goods-summary .title{ font-size:18px; font-weight:900; }
.goods-summary .hint{ color:var(--muted); font-size:12px; margin-top:4px; }

.goods-img{
  width:100%;
  max-width:560px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  margin: 10px 0 14px;
}

.callout{
  border:2px solid rgba(255,121,176,.85);
  background: rgba(255,121,176,.10);
  border-radius:16px;
  padding:12px 12px 10px;
  margin: 12px 0 12px;
}
.callout summary{
  font-size:18px;
  font-weight:900;
  padding:0;
  margin:0;
}
.callout .inner{ margin-top:10px; }

.ruleline{ margin: 12px 0; height:1px; background: rgba(255,255,255,.10); }

.goods-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (max-width: 900px){
  .goods-grid{ grid-template-columns:1fr; }
}
.item-card{
  border:1px solid var(--line);
  border-radius:16px;
  background: rgba(255,255,255,.02);
  padding:12px;
}
.item-card h4{ margin:0 0 6px; font-size:16px; }
.inner h4{ margin-top:18px; margin-bottom:6px; }
.inner h4 + p, .inner h4 + div{ padding-left:0; }
.item-card p{ margin:0; color:var(--text); line-height:1.75; }

/* さっさと購入🤍 ボタン専用 */
.btn.buy-now{
  text-decoration: none;          /* 常時アンダーバーなし */
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.btn.buy-now:hover{
  text-decoration: none;          /* hoverでも絶対出さない */
  background: rgba(255,121,176,.18);
  color: var(--accent);
  border-color: rgba(255,121,176,.7);
}

/* ===== Header social buttons ===== */
.social{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}

/* aタグでもchipを同じ見た目にする */
.chip-link{
  text-decoration:none;
  line-height: 1;
}
.chip-link:hover{
  text-decoration:none;
  border-color: rgba(255,121,176,.7);
  box-shadow: 0 0 0 3px rgba(255,121,176,.10);
}

/* 右上：SNSと言語の塊を「横並びのまま」間をあける */
.actions{
  display:flex;
  align-items:center;
  gap: 18px;            /* ← SNS と 言語の “間” の空白（好みで 12〜28） */
}

/* それぞれの塊の中も少し間隔 */
.social, .lang{
  display:flex;
  align-items:center;
  gap: 10px;            /* ← ボタン同士の間（好みで 8〜14） */
  flex-wrap: wrap;
}

/* aタグもbuttonも「ボタンっぽく」統一（chip既存を強化） */
.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 36px;         /* ← ボタン感 */
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
}

/* リンクの下線を絶対消す */
.chip-link{
  text-decoration:none;
}
.chip-link:hover{
  text-decoration:none;
}

/* ちょい“ボタン感”強化（hover/active） */
.chip:hover{
  border-color: rgba(255,121,176,.7);
  box-shadow: 0 0 0 3px rgba(255,121,176,.12);
  transform: translateY(-1px);
}
.chip:active{
  transform: translateY(0px);
}

/* ハンバーガーボタン */
.menu-btn{
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

/* メニュー本体 */
.menu-panel{
  display: none;
  position: absolute;
  top: 58px;
  right: 14px;
  background: rgba(20,20,26,.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  z-index: 30;
}

.menu-panel.open{
  display: block;
}

.menu-group{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}

.menu-group a,
.menu-group button{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

/* スマホ時の切替 */
@media (max-width: 768px){
  .social,
  .lang{
    display: none;
  }

  .menu-btn{
    display: block;
  }
}

/* ===== Mobile hamburger tabs ===== */

/* まずPCではハンバーガー系は隠す */
.nav-toggle{ display:none; }
.navpanel{ display:none; }

/* スマホ：PC用tabsは消して、ハンバーガーを出す */
@media (max-width: 768px){
  .tabs{ display:none; }              /* ← これが超重要：2重表示を止める */
  .nav-toggle{ display:inline-flex; } /* ☰ を表示 */

  /* 右上のボタン類が詰まらないように */
  .actions{ gap: 10px; }
  .lang{ margin-left: 12px; }         /* PCの大きい余白を縮める */
}

/* ハンバーガーボタンの見た目 */
.nav-toggle{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  cursor: pointer;
  align-items:center;
  justify-content:center;
  font-size: 20px;
  /* 常にヘッダー内インライン配置 */
  position: static;
  z-index: 30;
  transition: opacity 0.3s ease;
}

/* ハンバーガーは常時表示（スクロールで隠さない） */
.nav-toggle.hidden{
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* パネル（初期は非表示） */
.navpanel{
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}
.navpanel.open{ display: block; }

.navpanel__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.navpanel__inner{
  position: absolute;
  right: 12px;
  top: 64px;
  width: min(92vw, 360px);
  border: 1px solid var(--line);
  background: rgba(20,20,26,.98);
  border-radius: 16px;
  padding: 12px;
}

.navpanel__title{
  font-weight: 900;
  margin: 4px 6px 10px;
}

/* SNSボタンを3列横並びに */
.navpanel__group{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.navpanel__group .sns-img-btn{
  flex: 0 0 auto;
}

.navpanel__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* モバイルメニュー内のタブをボタンっぽく */
.tab--mobile{
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}
/* ===== SNS image buttons ===== */
.sns-img-btn {
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  line-height: 0;
  border: 1px solid rgba(255,255,255,.08);
}
.sns-img-btn img {
  display: block;
  width: 80px;
  height: 40px;
  object-fit: cover;
  border-radius: inherit;
}
.sns-img-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px rgba(0,0,0,.45);
  opacity: .92;
}
.sns-img-btn:active {
  transform: translateY(0) scale(.99);
}
/* ===== SUPPORT TAB - 支援ページ専用スタイル ===== */
/* support.html のスタイルを support- プレフィックスで移植 */

.support-card {
  width: 100%;
  max-width: 1060px;
  margin: 24px auto;
  background: #17171c;
  border-radius: 32px;
  box-shadow:
    0 0 0 1px rgba(255,121,176,0.2),
    0 20px 80px rgba(0,0,0,0.5),
    0 4px 16px rgba(0,0,0,0.4);
  overflow: hidden;
  position: relative;
  font-family: 'Noto Sans JP', system-ui, sans-serif;
}
.support-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,121,176,0.1) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.support-top-stripe { display: none; }

.support-inner {
  padding: 40px 48px 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .support-inner { padding: 28px 20px 36px; }
}

/* Header */
.support-header { text-align: center; margin-bottom: 36px; }
.support-tag-row {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 14px;
}
.support-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  padding: 4px 12px; border-radius: 99px;
}
.support-tag-dark { background: #0f0f12; color: #ffb8d8; }
.support-main-title {
  font-family: 'Kaisei Tokumin', serif;
  font-weight: 800; font-size: 27px; color: #f3f3f5;
  line-height: 1.25; letter-spacing: 0.06em;
}
.support-accent { color: #ff79b0; font-size: 0.9em; }
body.no-anim .support-accent { opacity: 1 !important; transition: none !important; }
.support-sub-title { margin-top: 8px; font-size: 13px; color: #b6b6c2; letter-spacing: 0.15em; }
.support-deco-line {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 14px; color: #ff79b0; font-size: 18px; letter-spacing: 4px;
}

/* Section heading */
.support-sec-head {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Kaisei Tokumin', serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.08em;
  color: #ff79b0; text-transform: none; margin-bottom: 14px;
}
.support-sec-head::after {
  content: ''; flex: 1; height: 1.5px;
  background: linear-gradient(to right, rgba(255,121,176,0.5), transparent);
  border-radius: 2px;
}
.support-sec-icon { font-size: 14px; }

/* List items */
.support-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.support-item {
  display: flex; align-items: center; gap: 13px;
  background: #1f1f25; border: 1px solid #3a3a48;
  border-radius: 16px; padding: 13px 16px;
  position: relative; overflow: hidden; transition: transform 0.15s;
}
.support-item:hover { transform: translateX(3px); }
.support-item-top {
  background: linear-gradient(105deg, rgba(255,77,147,0.14) 0%, #1f1f25 100%);
  border-color: rgba(255,121,176,0.55);
}
.support-item-top::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(to bottom, #ff79b0, #ff4d93);
}
.support-nbubble {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Kaisei Tokumin', serif; font-weight: 800; font-size: 15px; flex-shrink: 0;
  background: rgba(255,121,176,0.18); color: #ff79b0;
  border: 1px solid rgba(255,121,176,0.4);
}
.support-item-top .support-nbubble {
  background: #ff79b0; color: #fff; border-color: #ff79b0;
  box-shadow: 0 3px 10px rgba(240,56,120,0.3);
}
.support-ibody { flex: 1; min-width: 0; }
.support-iname {
  font-family: 'Kaisei Tokumin', serif; font-size: 15px; font-weight: 700;
  color: #f3f3f5; line-height: 1.2;
}
.support-inote { font-size: 12px; color: #b6b6c2; margin-top: 3px; line-height: 1.5; }
.support-iright { font-size: 13px; font-weight: 700; color: #ff79b0; text-align: right; flex-shrink: 0; }

/* Bracket */
.support-bracket {
  background: rgba(255,121,176,0.05); border: 2px dashed rgba(255,121,176,0.25);
  border-radius: 18px; padding: 14px 12px 12px; margin-top: 10px;
  position: relative; display: flex; flex-direction: column; gap: 8px;
}
.support-bracket-label {
  position: absolute; top: -11px; left: 14px;
  background: #17171c; padding: 0 8px; font-size: 12px; font-weight: 700;
  color: #b6b6c2; letter-spacing: 0.15em; border-radius: 99px;
}
.support-bracket .support-item { border-radius: 12px; margin: 0; background: #1f1f25; }

/* CF box */
.support-cf-box {
  border-radius: 20px; padding: 2px; margin-bottom: 26px; position: relative;
  background: linear-gradient(135deg, #c8a84b 0%, #f5e27a 22%, #a07830 45%, #f0d060 68%, #c8a84b 100%);
  box-shadow: 0 0 18px rgba(212,175,55,0.25), 0 8px 32px rgba(0,0,0,0.55);
}
.support-cf-inner {
  position: relative; z-index: 1;
  background: linear-gradient(145deg, #1c1408 0%, #0f0f12 55%, #160e06 100%);
  border-radius: 18px; padding: 22px 24px; overflow: hidden;
}
.support-cf-inner::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.support-cf-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.support-cf-badge {
  background: linear-gradient(90deg, #c8a84b, #f5e27a, #c8a84b); color: #1a1000;
  font-size: 14px; font-weight: 900; letter-spacing: 0.06em;
  padding: 6px 16px; border-radius: 99px; box-shadow: 0 3px 12px rgba(212,175,55,0.4);
}
.support-cf-title { font-size: 13px; font-weight: 700; color: #f0d878; letter-spacing: 0.08em; }
.support-cf-rewards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.support-cf-reward {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(212,175,55,0.35);
  border-radius: 12px; padding: 12px 14px;
}
.support-cf-reward-label {
  font-size: 9px; color: rgba(212,175,55,0.75); letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 5px;
}
.support-cf-reward-value {
  font-family: 'Kaisei Tokumin', serif; font-weight: 900;
  font-size: 18px; color: #fff; line-height: 1.3;
}
.support-cf-reward-value span {
  color: #ff9dcb; font-size: 13px; font-weight: 500;
  display: block; margin-top: 4px; line-height: 1.5;
}

/* ➡ アイテム右の外側リンクボタン */
.support-item-link-wrap {
  display: flex; align-items: center; gap: 0;
}
.support-item-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,121,176,0.55);
  background: rgba(255,121,176,0.10);
  color: #ff79b0;
  font-size: 20px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  margin-left: 10px;
}
.support-item-arrow:hover {
  background: rgba(255,121,176,0.25);
  border-color: rgba(255,121,176,0.85);
  transform: translateX(3px);
  text-decoration: none;
}
/* support-list を overflow: visible にして外にはみ出せるように */
.support-list { overflow: visible; }
/* ラップ要素で横並びにする */
.support-item-row {
  display: flex; align-items: center;
}
.support-item-row .support-item {
  flex: 1; min-width: 0;
}

/* Goods note */
.support-goods-box {
  background: #22222a; border: 1px solid #5a3a6a; border-radius: 18px;
  padding: 16px 18px; margin-bottom: 26px; display: flex; gap: 13px; align-items: flex-start;
}
.support-goods-icon { font-size: 26px; flex-shrink: 0; line-height: 1; margin-top: 1px; }
.support-goods-title { font-size: 15px; font-weight: 900; color: #f3f3f5; margin-bottom: 5px; line-height: 1.3; }
.support-goods-text { font-size: 13px; color: #b6b6c2; line-height: 1.75; }
.support-goods-text b { color: #ff79b0; font-weight: 900; }

/* Timeline */
.support-tl-note { font-size: 13px; color: #b6b6c2; letter-spacing: 0.05em; margin-bottom: 12px; padding-left: 2px; }
.support-tl-note b { color: #f3f3f5; }
/* Timeline */
.support-tl-note { font-size: 13px; color: #b6b6c2; letter-spacing: 0.05em; margin-bottom: 12px; padding-left: 2px; }
.support-tl-note b { color: #f3f3f5; }
.support-timeline {
  display: grid;
  grid-template-columns: repeat(4, 100px);
  gap: 24px;
  margin-bottom: 8px;
}
.support-tl-card {
  width: 100px;
  height: 100px;
  background: #1f1f25;
  border: 1px solid #3a3a48;
  border-radius: 14px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.support-tl-start { background: #c34678; border-color: #c34678; box-shadow: 0 4px 18px rgba(240,56,120,0.28); }
.support-tl-card:not(:last-child)::after {
  content: '›'; position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 900; color: #ff4d93; z-index: 3;
}
.support-tl-month { font-family: 'Kaisei Tokumin', serif; font-weight: 800; font-size: 18px; color: #ff79b0; line-height: 1; }
.support-tl-start .support-tl-month { color: #fff; }
.support-tl-action { font-size: 12px; font-weight: 700; color: #b6b6c2; margin-top: 4px; letter-spacing: 0.05em; line-height: 1.4; }
.support-tl-start .support-tl-action { color: rgba(255,255,255,0.95); }
.support-tl-total .support-tl-month { font-size: 13px; color: #b6b6c2; font-family: 'Kaisei Tokumin', serif; font-weight: 900; }
@media (max-width: 600px) {
  .support-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }
  .support-tl-card {
    width: 100%;
    height: 90px;
    border-radius: 8px;
    padding: 4px 2px;
  }
  .support-tl-card:not(:last-child)::after {
    right: -8px;
    font-size: 14px;
  }
}

/* Spread list */
.support-spread-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.support-spread-item {
  display: flex; align-items: flex-start; gap: 13px;
  background: #1f1f25; border: 1px solid #3a3a48; border-radius: 16px;
  padding: 13px 16px; position: relative; overflow: hidden; transition: transform 0.15s;
}
.support-spread-item:hover { transform: translateX(3px); }
.support-pink-dot {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(255,121,176,0.18); border: 1px solid rgba(255,121,176,0.4);
}

/* Accordion */
.support-accordion-wrap { margin-bottom: 28px; }
.support-accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; user-select: none;
}
.support-accordion-header .support-sec-head { margin-bottom: 0; flex: 1; pointer-events: none; }
.support-accordion-arrow { font-size: 12px; color: #ff79b0; transition: transform 0.3s ease; margin-left: 8px; }
.support-accordion-wrap.open .support-accordion-arrow { transform: rotate(180deg); }
.support-accordion-body {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.support-accordion-wrap.open .support-accordion-body { max-height: 3000px; opacity: 1; margin-top: 14px; }

/* Footer */
.support-footer {
  text-align: center; margin-top: 32px; padding-top: 22px;
  border-top: 2px dashed #2b2b34;
}
.support-footer-hearts { font-size: 15px; letter-spacing: 6px; color: #ff4d93; margin-bottom: 8px; }
.support-footer-msg { font-size: 13px; color: #b6b6c2; letter-spacing: 0.15em; margin-bottom: 8px; }
.support-footer-name { font-family: 'Kaisei Tokumin', serif; font-weight: 800; font-size: 26px; color: #f3f3f5; letter-spacing: 0.2em; }
.support-footer-roman { font-family: 'Kaisei Tokumin', serif; font-size: 12px; color: #b6b6c2; letter-spacing: 0.3em; margin-top: 4px; }
/* support-card--wide: 幅はデフォルトで860pxに統一したので追加指定不要 */
/* ===== グローバルフォントベース ===== */
body {
  font-family: 'Noto Sans JP', system-ui, sans-serif;
}

/* 折り畳みタイトルのみKaisei */
.goods-summary .title,
.support-main-title {
  font-family: 'Kaisei Tokumin', serif;
}

/* イベントカードを小さく */
.event__media {
  aspect-ratio: 3 / 2;
}
.event__title { font-size: 13px; }
.event__body { padding: 8px 8px 10px; }
.event__meta { font-size: 11px; margin-top: 4px; }

/* goods-box（details折り畳み）をsupport accordion風に置き換え */
.goods-box {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  margin: 0 0 28px 0;
}
.goods-box > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  list-style: none;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  /* sec-head スタイルを適用 */
  font-family: 'Kaisei Tokumin', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #ff79b0;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 1.5px solid;
  border-image: linear-gradient(to right, rgba(255,121,176,0.5), transparent) 1;
}
.goods-box > summary::after {
  content: '▼';
  font-size: 12px;
  color: #ff79b0;
  transition: transform 0.3s ease;
  margin-left: 8px;
  flex-shrink: 0;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.goods-box[open] > summary::after {
  transform: rotate(180deg);
}
/* WebKit: デフォルトの▶マーカーを消す */
.goods-box > summary::-webkit-details-marker { display: none; }
.goods-box > summary::marker { display: none; }

.goods-box .inner {
  padding: 14px 0 0;
}

/* goods-summary（サマリー内のレイアウト） */
.goods-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.goods-summary .title {
  font-family: 'Kaisei Tokumin', serif;
  font-size: 15px;
  font-weight: 700;
  color: #f3f3f5;
  letter-spacing: 0.04em;
  text-transform: none;
}
.goods-summary .hint {
  color: #b6b6c2;
  font-size: 12px;
  margin-top: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
}

/* callout（ファンクラブ注意書き）も同様に */
.callout > summary {
  font-family: 'Kaisei Tokumin', serif;
  font-size: 14px;
  font-weight: 700;
  color: #ff79b0;
  letter-spacing: 0.04em;
  list-style: none;
  cursor: pointer;
}
.callout > summary::-webkit-details-marker { display: none; }
.callout > summary::marker { display: none; }
.callout > summary::after {
  content: ' ▼';
  font-size: 11px;
  transition: transform 0.3s ease;
  display: inline-block;
}
.callout[open] > summary::after { transform: rotate(180deg); }

/* ホームのスケジュールタイトル */
.asobu-note__label {
  font-size: 13px;
  letter-spacing: 0.08em;
}
/* ===== ホームタイトルをKaiseiに ===== */
.card__head h2 {
  font-family: 'Kaisei Tokumin', serif;
}

/* ===== イベント2列・小サイズ ===== */
.home-right .grid {
  grid-template-columns: 1fr 1fr !important;
}
.home-right .event__media {
  aspect-ratio: 16 / 9;
}
.home-right .event__title { font-size: 10px; }
.home-right .event__body { padding: 4px 6px 6px; }
.home-right .event__meta { font-size: 9px; margin-top: 2px; }

/* ===== goods-summaryの購入ボタンを右端に寄せる ===== */
.goods-summary .btn.buy-now {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 12px;
  padding: 6px 10px;
}
/* ===== Mitarai Asobuタグ行を非表示 ===== */
.support-tag-row { display: none; }

/* ===== ページ内↑ボタン ===== */
.scroll-top-btn {
  display: block;
  margin: 32px auto 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,121,176,0.5);
  background: rgba(255,121,176,0.1);
  color: #ff79b0;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  line-height: 42px;
  transition: background 0.2s, transform 0.2s;
}
.scroll-top-btn:hover {
  background: rgba(255,121,176,0.25);
  transform: translateY(-2px);
}

/* ===== buy-now ボタンのフォントをNoto（Kaisei継承を上書き） ===== */
.btn.buy-now {
  font-family: 'Noto Sans JP', sans-serif;
}
/* iframeタブ（crowdfunding / contest）のpadding除去 */
#page-crowdfunding,
#page-contest {
  padding: 0;
  margin: 0;
}
/* クラファン・コンテストはコンテナ幅を突破してフル表示 */
#page-crowdfunding {
  width: min(calc(100vw - 28px), 1000px);
  margin-left: calc(50% - min(calc(100vw - 28px), 1000px) / 2);
  box-sizing: border-box;
  max-width: none;
}

#page-contest {
  width: min(calc(100vw - 28px), 1100px);
  margin-left: calc(50% - min(calc(100vw - 28px), 1100px) / 2);
  box-sizing: border-box;
}

#page-home {
  width: min(calc(100vw - 28px), 1000px);
  margin-left: calc(50% - min(calc(100vw - 28px), 1000px) / 2);
  box-sizing: border-box;
}
/* ===== Contest mobile banner ===== */
/* デフォルト非表示（PC） */
.ct-mobile-banner{
  display: none;
}
/* スマホのみ表示 */
@media (max-width: 768px) {
.ct-mobile-banner{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,121,176,.12);
  border: 1px solid rgba(255,121,176,.4);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
}
}
.ct-mobile-banner__text{
  flex: 1;
}
.ct-mobile-banner__close{
  flex-shrink: 0;
  background: transparent;
  border: 1px solid rgba(255,121,176,.5);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
  color: var(--text);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.ct-mobile-banner__close:hover{
  background: rgba(255,121,176,.2);
}


/* 韓国語時: スプラッシュ・ブランド・ミッションをNeoDunggeunmoProに */
body.lang-ko .splash__title,
body.lang-ko .splash__sub {
  font-family: 'NeoDunggeunmoPro', monospace;
  letter-spacing: .05em;
}
/* ============================================================
   ✨ ANIMATION SYSTEM
   ============================================================ */

@keyframes charPopUp {
  0%   { opacity: 0; transform: translateY(9px) scale(.91); }
  65%  { transform: translateY(-2px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(.93); }
  65%  { transform: translate(-50%,-50%) scale(1.018); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}

@keyframes glowPulse {
  0%,100% { text-shadow: 0 0 0px rgba(255,121,176,0); }
  50%      { text-shadow: 0 0 20px rgba(255,121,176,.6), 0 0 40px rgba(255,121,176,.25); }
}

@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes sweepLight {
  0%   { left: -60%; opacity: 0; }
  10%  { opacity: 1; }
  60%  { left: 120%; opacity: 0; }
  100% { left: 120%; opacity: 0; }
}

/* support-header 文字アニメ */
body:not(.no-anim) .sh-char {
  display: inline-block;
  opacity: 0;
  animation: charPopUp .55s cubic-bezier(.22,.68,0,1.3) both;
}
body:not(.no-anim) .sh-char--heart {
  display: inline-block;
  opacity: 0;
  animation: charPopUp .65s cubic-bezier(.22,.68,0,1.5) both;
}

/* ページ切り替えアニメ */
body:not(.no-anim) .page.active {
  animation: pageFadeIn .5s cubic-bezier(.22,.68,0,1.1) both;
}

/* ブランドタイトルのグロー */
body:not(.no-anim) .brand__title {
  animation: glowPulse 4s ease-in-out infinite;
}

/* モーダルのポップイン */
body:not(.no-anim) .modal.open .modal__panel {
  animation: popIn .35s cubic-bezier(.22,.68,0,1.2) both;
}

/* カードホバー */
body:not(.no-anim) .card {
  transition: box-shadow .3s ease, transform .25s ease;
}
body:not(.no-anim) .card:hover {
  box-shadow: 0 0 0 1px rgba(255,121,176,.2), 0 10px 36px rgba(255,121,176,.12);
  transform: translateY(-2px);
}

/* イベントカードホバー */
body:not(.no-anim) .event {
  transition: transform .25s cubic-bezier(.22,.68,0,1.4), border-color .2s ease, box-shadow .25s ease;
}
body:not(.no-anim) .event:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(255,121,176,.6);
  box-shadow: 0 10px 32px rgba(255,121,176,.2);
}

/* ボタンホバー */
body:not(.no-anim) .btn {
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
body:not(.no-anim) .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(255,121,176,.24);
}
body:not(.no-anim) .btn.primary:hover {
  box-shadow: 0 5px 22px rgba(255,121,176,.42);
  background: rgba(255,121,176,.24);
}

/* タブホバー */
body:not(.no-anim) .tab {
  transition: border-color .18s ease, background .18s ease;
}
body:not(.no-anim) .tab:not(.active):hover {
  border-color: rgba(255,121,176,.4);
  background: rgba(255,121,176,.07);
}

/* チップホバー */
body:not(.no-anim) .chip {
  transition: border-color .18s ease, box-shadow .18s ease, transform .15s ease;
}
body:not(.no-anim) .chip:hover {
  transform: translateY(-1px);
  border-color: rgba(255,121,176,.45);
}

/* スクロール入場アニメ */
body:not(.no-anim) .anim-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.22,.68,0,1.1), transform .6s cubic-bezier(.22,.68,0,1.1);
}
body:not(.no-anim) .anim-ready.anim-visible {
  opacity: 1;
  transform: translateY(0);
}
body.no-anim .anim-ready {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* クラファン金縁キラキラ */
body:not(.no-anim) .support-cf-box {
  background: linear-gradient(270deg, #c8a84b, #f5e27a, #fff8c0, #f0d060, #a07830, #f5e27a, #c8a84b);
  background-size: 300% 300%;
  animation: goldShimmer 3.5s ease infinite;
  box-shadow: 0 0 28px rgba(212,175,55,.45), 0 8px 32px rgba(0,0,0,.55);
}
body:not(.no-anim) .support-cf-badge {
  background: linear-gradient(90deg, #c8a84b, #f5e27a, #fff8c0, #f0d060, #c8a84b);
  background-size: 200% auto;
  animation: goldShimmer 2.5s ease infinite;
}
body:not(.no-anim) .support-cf-reward {
  position: relative;
  overflow: hidden;
}
body:not(.no-anim) .support-cf-reward::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,248,192,.22) 50%, transparent 100%);
  animation: sweepLight 3.2s ease-in-out infinite;
}

/* ============================================================
   ✨ アニメON/OFFボタン 共通スタイル
   ============================================================ */
.anim-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15,15,18,.80);
  color: var(--muted);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: border-color .18s, color .18s, background .18s;
  user-select: none;
  white-space: nowrap;
  z-index: 35;
}
.anim-toggle-btn:hover {
  border-color: rgba(255,121,176,.5);
  color: var(--text);
  background: rgba(255,121,176,.10);
}
.anim-toggle-btn__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transition: background .25s;
  box-shadow: 0 0 5px rgba(255,121,176,.6);
}
body.no-anim .anim-toggle-btn__dot {
  background: rgba(255,255,255,.22);
  box-shadow: none;
}

/* PC用: 左下フロート固定、スマホでは非表示 */
.anim-toggle-btn--pc {
  position: fixed;
  left: 18px;
  bottom: 20px;
  padding: 5px 10px 5px 8px;
  font-size: 11px;
  box-shadow: 0 3px 12px rgba(0,0,0,.35);
}
@media (max-width: 768px) {
  .anim-toggle-btn--pc { display: none; }
}

/* スマホ用: ヘッダー内インライン、PCでは非表示 */
.anim-toggle-btn--mobile {
  position: static;
  padding: 5px 8px 5px 7px;
  font-size: 10px;
}
@media (min-width: 769px) {
  .anim-toggle-btn--mobile { display: none; }
}

/* スマホ用言語ボタン（🌐）: ヘッダー内、PCでは非表示 */
.mobile-lang-select {
  display: none;
  position: relative;
}
@media (max-width: 768px) {
  .mobile-lang-select { display: flex; align-items: center; }
}

.mobile-lang-globe-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}
.mobile-lang-globe-btn:hover {
  border-color: rgba(255,121,176,.5);
  background: rgba(255,121,176,.10);
}

.mobile-lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: rgba(20,20,26,.97);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  z-index: 100;
  min-width: 110px;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  backdrop-filter: blur(12px);
}

.mobile-lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid var(--line);
}
.mobile-lang-option:last-child { border-bottom: none; }
.mobile-lang-option:hover {
  background: rgba(255,121,176,.12);
  color: var(--accent);
}
/* ============================================================
   🎮 ミッションタイトル オーバーレイ
   ============================================================ */
#mission-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#mission-overlay.mission-overlay--in {
  opacity: 1;
}
#mission-overlay.mission-overlay--out {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.mission-overlay__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
}
.mission-overlay__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  text-align: center;
}
.mission-overlay__label {
  font-family: 'DotGothic16', monospace;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--accent);
  opacity: 0;
  transform: translateY(-8px);
  animation: missionLabelIn 0.4s ease 0.3s forwards;
}
.mission-overlay__title {
  font-family: 'DotGothic16', monospace;
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: .06em;
  color: #fff;
  text-shadow:
    0 0 24px rgba(255,121,176,.8),
    0 0 50px rgba(255,121,176,.3),
    2px 2px 0 rgba(0,0,0,.8);
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  animation: missionTitleIn 0.55s cubic-bezier(.22,.68,0,1.2) 0.5s forwards;
}
:lang(ko) .mission-overlay__label,
:lang(ko) .mission-overlay__title {
  font-family: 'NeoDunggeunmoPro', monospace;
}
.mission-overlay__bar {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #8ad7ff, var(--accent));
  border-radius: 2px;
  animation: missionBarExpand 1.0s ease 0.9s forwards;
  box-shadow: 0 0 8px rgba(255,121,176,.6);
}
@keyframes missionLabelIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes missionTitleIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes missionBarExpand {
  to { width: min(500px, 80vw); }
}

/* ============================================================
   ⬅ タイムライン矢印：アニメなし
   ============================================================ */
.support-item-arrow {
  animation: none;
}
@keyframes arrowWobble {
  0%, 100% { transform: translateX(0); }
  40%       { transform: translateX(5px); }
  60%       { transform: translateX(2px); }
}

/* ============================================================
   🎮 GAME AESTHETIC SYSTEM
   ドット感・ゲーム感の追加スタイル
   ============================================================ */

/* ── ドットフォント適用範囲（コンテストページは除外） ─────── */
.tab,
.chip,
.card__head h2,
.asobu-note__label,
.event__title,
.mission-overlay__label,
.mission-overlay__title,
.support-sec-head,
.support-main-title,
.support-sub-title,
.support-footer-name,
footer .muted {
  font-family: 'DotGothic16', monospace;
}

:lang(ko) .tab,
:lang(ko) .chip,
:lang(ko) .card__head h2,
:lang(ko) .asobu-note__label,
:lang(ko) .event__title,
:lang(ko) .mission-overlay__label,
:lang(ko) .mission-overlay__title,
:lang(ko) .support-sec-head,
:lang(ko) .support-main-title,
:lang(ko) .support-sub-title,
:lang(ko) .support-footer-name,
:lang(ko) footer .muted {
  font-family: 'NeoDunggeunmoPro', monospace;
}

/* ── タブ：ピクセル風 ───────────────────────────────────── */
.tab {
  font-size: 13px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  padding: 8px 12px;
  border-color: rgba(255,255,255,0.08);
  transition: all 0.12s ease;
}

.tab.active {
  border-color: rgba(255,121,176,.75);
  background: rgba(255,121,176,.1);
  box-shadow:
    0 0 0 1px rgba(255,121,176,.3),
    0 2px 0 0 #ff79b0,
    inset 0 1px 0 0 rgba(255,121,176,.15);
}

/* ── チップ（言語切替） ────────────────────────────────── */
.chip {
  border-radius: 4px;
  font-family: 'DotGothic16', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 7px 12px;
  border-color: rgba(255,255,255,0.1);
}
:lang(ko) .chip {
  font-family: 'NeoDunggeunmoPro', monospace;
}
.chip.active {
  background: rgba(255,121,176,.18);
  box-shadow: 0 0 0 1px rgba(255,121,176,.5), 0 0 10px rgba(255,121,176,.2);
}

/* ── カード：上部グローライン ──────────────────────────── */
.card {
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,121,176,0.5) 20%,
    rgba(255,121,176,0.9) 50%,
    rgba(255,121,176,0.5) 80%,
    transparent 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
body:not(.no-anim) .card:hover::before {
  opacity: 1;
}

/* ── イベントメタ：ドットフォント ──────────────────────── */
.event__body {
  padding: 8px 10px 10px;
}
.event__meta {
  font-size: 11px;
  font-family: 'DotGothic16', monospace;
  letter-spacing: 0.02em;
  color: rgba(255,121,176,0.7);
}
:lang(ko) .event__meta {
  font-family: 'NeoDunggeunmoPro', monospace;
}

/* ── トップバー：HUD感 ────────────────────────────────── */
.topbar {
  position: relative;
  border-bottom: 1px solid rgba(255,121,176,0.2);
  background: rgba(8,4,10,.75);
}
.topbar::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,121,176,0.6) 50%,
    transparent 100%);
  pointer-events: none;
}

/* ── タブバー ─────────────────────────────────────────── */
.tabs {
  background: rgba(8,4,10,.55);
  border-bottom: 1px solid rgba(255,121,176,0.15);
  gap: 6px;
}

/* ── ブランド：グリッチ ───────────────────────────────── */
.brand__title {
  position: relative;
  letter-spacing: 0.05em;
}
body:not(.no-anim) .brand__title:hover {
  animation: glitch 0.3s step-end 1, glowPulse 4s ease-in-out infinite;
}
@keyframes glitch {
  0%   { text-shadow: 2px 0 #ff3d9a, -2px 0 #00ffff; clip-path: inset(0 0 85% 0); }
  20%  { text-shadow: -2px 0 #ff3d9a, 2px 0 #00ffff; clip-path: inset(15% 0 65% 0); }
  40%  { text-shadow: 2px 0 #ff3d9a, -2px 0 #00ffff; clip-path: inset(40% 0 40% 0); }
  60%  { text-shadow: -2px 0 #ff3d9a, 2px 0 #00ffff; clip-path: inset(65% 0 15% 0); }
  80%  { text-shadow: 2px 0 #ff3d9a, -2px 0 #00ffff; clip-path: inset(85% 0 0 0); }
  100% { text-shadow: 0 0 8px #ff79b0; clip-path: none; }
}

/* ── ブランドサブ：ゆるいパルス ──────────────────────── */
.brand__sub {
  opacity: 0.8;
  animation: subPulse 5s ease-in-out infinite;
}
@keyframes subPulse {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 1; }
}

/* ── ページ遷移：フェードスライド（clip-pathはbox-shadowを切るため除去） ── */
body:not(.no-anim) .page.active {
  animation: pageGameIn 0.38s cubic-bezier(0.22, 0.68, 0, 1.1) both;
}
@keyframes pageGameIn {
  0%   { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── カスタムカーソル ─────────────────────────────────── */
body:not(.no-anim) {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpolygon points='2,2 2,16 6,12 9,19 11,18 8,11 14,11' fill='%23ffffff' stroke='%23ff6eb4' stroke-width='1'/%3E%3C/svg%3E") 2 2, auto;
}
body:not(.no-anim) a,
body:not(.no-anim) button,
body:not(.no-anim) [role="button"],
body:not(.no-anim) .event,
body:not(.no-anim) .tab,
body:not(.no-anim) .chip {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpolygon points='2,2 2,16 6,12 9,19 11,18 8,11 14,11' fill='%23ff79b0' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E") 2 2, pointer;
}

/* ── フッター：ドットフォント ─────────────────────────── */
.footer {
  border-top: 1px solid rgba(255,121,176,0.2);
  font-family: 'DotGothic16', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  background: rgba(8,4,10,.6);
}
:lang(ko) .footer {
  font-family: 'NeoDunggeunmoPro', monospace;
}

/* ── ドットグリッド背景 ───────────────────────────────── */
.container::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,121,176,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: -1;
  animation: dotDrift 60s linear infinite;
}
@keyframes dotDrift {
  from { background-position: 0 0; }
  to   { background-position: 28px 28px; }
}

/* ── スクロールアップボタン ──────────────────────────── */
.scroll-top-btn {
  font-family: 'DotGothic16', monospace;
  border-radius: 4px;
  letter-spacing: 0.1em;
  font-size: 16px;
}

/* ── スクロールバー：ドット感 ─────────────────────────── */
.events-scroll::-webkit-scrollbar {
  width: 6px;
}
.events-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.04);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.events-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff6eb4, #ff3d9a);
  box-shadow: 0 0 4px rgba(255,60,154,0.4);
}

/* ── 区切り線：ドット点線 ─────────────────────────────── */
.ruleline {
  background: repeating-linear-gradient(
    90deg,
    rgba(255,121,176,0.4) 0px,
    rgba(255,121,176,0.4) 4px,
    transparent 4px,
    transparent 10px
  ) !important;
  height: 1px !important;
  border: none !important;
}
/* ── aboutページ先頭のsupport-cardの上マージンをリセット（上端切れ防止） ── */
#page-about > div > .support-card:first-child,
#page-about .support-card:first-of-type {
  margin-top: 8px;
}
/* ============================================================
   👤 ABOUT プロフィールカード（立ち絵レイアウト）
   ============================================================ */

/* ── 全体ラッパー ────────────────────────────────────────── */
.about-profile-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 0;
  align-items: flex-end;
  margin: 0 0 8px;
  background: linear-gradient(160deg, rgba(255,121,176,.06) 0%, rgba(255,255,255,.02) 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: visible;
  position: relative;
}

@media (max-width: 700px) {
  .about-profile-wrap {
    grid-template-columns: 1fr;
  }
}

/* ── 立ち絵カラム ────────────────────────────────────────── */
.about-stand-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0;
  min-height: 360px;
}

.about-stand-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-stand-img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 4px 32px rgba(255,121,176,.25));
  border-radius: 0 0 0 var(--radius);
}

@media (max-width: 700px) {
  .about-stand-col {
    min-height: 260px;
  }
  .about-stand-img {
    max-width: 220px;
    border-radius: 0;
  }
}

/* ── 情報カラム ──────────────────────────────────────────── */
.about-info-col {
  padding: 24px 24px 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 700px) {
  .about-info-col {
    padding: 18px 18px 24px;
  }
}

/* ── 名前ブロック ────────────────────────────────────────── */
.about-name-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-name-ja {
  margin: 0;
  font-family: 'Kaisei Tokumin', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: .06em;
  background: linear-gradient(135deg, #fff 30%, rgba(255,121,176,.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.about-name-roman {
  margin: 0;
  font-size: .82rem;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
}

.about-sns-row {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.about-sns-btn img {
  height: 28px;
  width: auto;
  opacity: .85;
  transition: opacity .12s;
}

.about-sns-btn:hover img {
  opacity: 1;
}

/* ── キャッチコピー ──────────────────────────────────────── */
.about-catch {
  font-size: .95rem;
  color: rgba(255,200,230,.9);
  font-style: italic;
  letter-spacing: .03em;
}

/* ── ステータス表 ────────────────────────────────────────── */
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-stat-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: .85rem;
  line-height: 1.5;
}

.about-stat-icon {
  font-size: 1em;
  flex-shrink: 0;
  width: 1.4em;
  text-align: center;
}

.about-stat-label {
  color: rgba(255,121,176,.9);
  font-family: 'DotGothic16', monospace;
  font-size: .8rem;
  letter-spacing: .02em;
  min-width: 130px;
  flex-shrink: 0;
}
:lang(ko) .about-stat-label {
  font-family: 'NeoDunggeunmoPro', monospace;
}

.about-stat-val {
  color: var(--text);
  flex: 1;
}

/* ── 自己紹介テキスト ────────────────────────────────────── */
.about-bio-text {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ── お願いボックス ──────────────────────────────────────── */
.about-note-box {
  border: 1px solid rgba(255,121,176,.35);
  background: rgba(255,121,176,.07);
  border-radius: 12px;
  padding: 10px 14px;
}

.about-note-label {
  font-family: 'DotGothic16', monospace;
  font-size: .8rem;
  color: rgba(255,121,176,.9);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: .04em;
}
:lang(ko) .about-note-label {
  font-family: 'NeoDunggeunmoPro', monospace;
}

.about-note-text {
  font-size: .83rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ── 詳細セクション ──────────────────────────────────────── */
.about-details-section {
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════
   サムネイルギャラリー
   ═══════════════════════════════════════════════════════════ */

.thumb-gallery-section {
  margin: 0 0 28px 0;
  padding: 18px 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.thumb-gallery-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 4px;
}

.thumb-gallery-title {
  font-family: 'DotGothic16', monospace;
  font-size: .92em;
  letter-spacing: .05em;
  color: rgba(255,255,255,.65);
}

/* スライダー本体 */
.thumb-gallery-wrap {
  overflow: hidden;
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  cursor: pointer;
}

.thumb-gallery-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.tg-item {
  flex: 0 0 100%;
  min-width: 0;
}

.tg-item img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity .2s;
}

.tg-item img:hover {
  opacity: .85;
}

/* ドット */
.thumb-gallery-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 10px;
}

.tg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.22);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.tg-dot.active {
  background: #ff79b0;
  transform: scale(1.25);
}

/* ─── ギャラリーモーダル ─── */

#tg-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
}

#tg-modal.open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tg-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
}

.tg-modal__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(860px, 96vw);
  width: 100%;
  padding: 16px;
}

.tg-modal__close {
  position: absolute;
  top: -6px;
  right: 6px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.tg-modal__close:hover {
  background: rgba(255,255,255,.22);
}

.tg-modal__img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  object-fit: contain;
}

.tg-modal__footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tg-modal__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95em;
  text-decoration: none;
  transition: opacity .15s;
}

.tg-modal__link:hover {
  opacity: .82;
}

/* ═══════════════════════════════════════════════════════════
   ギャラリー更新：左右ボタン＋PC2枚並び
   ═══════════════════════════════════════════════════════════ */

/* ラッパーを relative にして左右ボタンを重ねる */
.thumb-gallery-wrap {
  position: relative;
}

/* 左右ボタン共通 */
.tg-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(10,10,15,.65);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  padding: 0;
}
.tg-btn:hover { background: rgba(255,121,176,.35); }
.tg-btn--prev { left: 6px; }
.tg-btn--next { right: 6px; }

/* ── PC: 半分サイズ＋2枚並び ── */
@media (min-width: 768px) {
  .thumb-gallery-section {
    /* 親幅の50%に制限してセンタリング */
    max-width: 100%;
  }


  .tg-item {
    flex: 0 0 50%;   /* 2枚並び */
    min-width: 0;
    padding: 0 6px;
    box-sizing: border-box;
  }

  /* goTo() は1枚ずつ動かしているが、50%幅なので
     translateX(-N*50%) になるよう上書きはJSで行う。
     ここではCSS側の見た目だけ整える */
}

/* ── スマホ: 1枚表示（従来通り） ── */
@media (max-width: 767px) {
  .tg-item {
    flex: 0 0 100%;
    padding: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   おすすめ動画（ホーム）
   ═══════════════════════════════════════════════════════════ */

.fv-section {
  margin: 0 0 24px;
  padding: 0;
}

.fv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 640px) {
  .fv-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.fv-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.fv-iframe-wrap {
  position: relative;
  width: 100%;
  height: 0;
}

.fv-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
}

.fv-label {
  padding: 8px 10px;
  font-size: .82em;
  color: rgba(255,255,255,.65);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   叶えたい夢ゴール
   ═══════════════════════════════════════════════════════════ */

.dream-goals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* カード本体 */
.dg-card {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dg-card--done {
  opacity: .38;
  filter: grayscale(.7);
}

.dg-card--done .dg-badge--done {
  opacity: 1;
  filter: none;
}

/* ヘッダー行 */
.dg-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dg-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.dg-titles { flex: 1; min-width: 0; }

.dg-title {
  font-size: .9em;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.dg-sub {
  font-size: .78em;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* バッジ・パーセント */
.dg-badge {
  flex-shrink: 0;
  font-size: .72em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.dg-badge--done {
  background: #ff79b0;
  color: #fff;
}

.dg-badge--lg {
  font-size: 1em;
  padding: 6px 16px;
  letter-spacing: .04em;
}

.dg-pct {
  flex-shrink: 0;
  font-size: .8em;
  font-weight: 700;
  color: rgba(255,255,255,.55);
}

/* プログレスバー */
.dg-bar-wrap {
  height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}

.dg-bar {
  height: 100%;
  border-radius: 99px;
  transition: width .6s ease;
}

.dg-bar--done { background: #ff79b0; }
.dg-bar--prog { background: linear-gradient(90deg, #ff79b0, #8ad7ff); }

/* 月別グリッド */
.dg-months {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

@media (max-width: 480px) {
  .dg-months {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dg-month {
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  padding: 6px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-height: 52px;
  justify-content: center;
}

.dg-month--none {
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.06);
}

.dg-month--done {
  background: rgba(255,121,176,.15);
  border-color: #ff79b0;
}

.dg-month--current {
  background: rgba(138,215,255,.1);
  border-color: rgba(138,215,255,.5);
  animation: dg-pulse 2s ease-in-out infinite;
}

.dg-month--empty {
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.06);
}

@keyframes dg-pulse {
  0%, 100% { border-color: rgba(138,215,255,.5); }
  50%       { border-color: rgba(138,215,255,.9); }
}

.dg-month-label {
  font-size: .65em;
  color: rgba(255,255,255,.45);
  font-weight: 700;
}

.dg-month-val {
  font-size: .68em;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  word-break: break-all;
}

.dg-month--done .dg-month-val { color: #ff79b0; }
.dg-month--current .dg-month-val { color: #8ad7ff; }

.dg-month-x {
  font-size: .75em;
  color: rgba(255,255,255,.2);
}

/* ═══════════════════════════════════════════════════════════
   欲しい物：防音室 — キャラクター吹き出し
   ═══════════════════════════════════════════════════════════ */

.sp-wish {
  margin: 24px 0;
}

/* 見出し「欲しい物」 */
.sp-wish__heading {
  font-size: .78em;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
  margin-bottom: 4px;
}

/* 大きめのアイテム名「防音室」 */
.sp-wish__item-title {
  font-size: 1.35em;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: .02em;
}

/* アイコン＋吹き出しの横並び行：1ブロックとして扱う */
.sp-wish__body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 12px;
  max-width: 640px;
}

.sp-wish__icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,121,176,.45);
  background: rgba(255,121,176,.1);
  flex-shrink: 0;
}

.sp-wish__bubble-wrap {
  display: inline-flex;   /* 内容幅に収縮 */
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  max-width: 520px;       /* 最大横幅 */
  margin-top: 18px;
}

.sp-wish__bubble {
  display: inline-block;  /* 内容幅に合わせる */
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(255,121,176,.1);
  border: 1px solid rgba(255,121,176,.35);
  border-radius: 4px 14px 14px 14px;
  padding: 12px 14px;
  font-size: .88em;
  line-height: 1.75;
  color: rgba(255,255,255,.9);
  position: relative;
  white-space: normal;
  word-break: break-word;
}

/* 長文・改行ありの吹き出し（既存との互換性） */
.sp-wish__bubble--long {
  display: inline-block;
  white-space: normal;
}

.sp-wish__bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 24px; /* アイコン中心42px - bubble-wrap margin-top18px = 24px */
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 8px solid rgba(255,121,176,.35);
}

.sp-wish__bubble b {
  color: #ff79b0;
}

.sp-wish__btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 10px;
  background: #fff;
  color: #17171c;
  font-weight: 700;
  font-size: .85em;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}

.sp-wish__btn:hover {
  opacity: .82;
}

/* ═══════════════════════════════════════════════════════════
   自己紹介動画
   ═══════════════════════════════════════════════════════════ */
.about-intro-video { margin: 0 0 24px; }
.about-intro-video__wrap {
  position: relative; width: 100%; padding-top: 56.25%;
  border-radius: 14px; overflow: hidden; background: #000;
}
.about-intro-video__wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}

/* ═══════════════════════════════════════════════════════════
   寿命同盟 特典カード
   ═══════════════════════════════════════════════════════════ */
.alliance-perks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
@media (max-width: 640px) {
  .alliance-perks { grid-template-columns: 1fr; }
}
.alliance-perk {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,121,176,.4);
  background: rgba(255,121,176,.07);
}
.alliance-perk__icon { font-size: 26px; line-height: 1; }
.alliance-perk__title {
  font-size: .95em; font-weight: 900; color: #ff79b0; letter-spacing: .02em;
}
.alliance-perk__desc {
  font-size: .82em; color: rgba(255,255,255,.7); line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   メンバーシッププラン inner 装飾
   ═══════════════════════════════════════════════════════════ */

/* 価格バッジ：左寄せ */
.mb-price-badge {
  display: inline-block;
  font-size: .82em; font-weight: 900; letter-spacing: .04em;
  padding: 4px 14px; border-radius: 20px;
  background: rgba(255,121,176,.15);
  border: 1px solid rgba(255,121,176,.4);
  color: #ff79b0;
  margin: 10px 0 14px;
}

/* セクション見出し（旧h4） */
.mb-section-head {
  font-size: .88em; font-weight: 900;
  color: rgba(255,255,255,.85);
  margin: 16px 0 6px;
  padding-left: 8px;
  border-left: 2px solid rgba(255,121,176,.6);
}

/* リストアイコン */
.mb-li-dot {
  color: rgba(255,121,176,.7); margin-right: 6px; font-size: .75em;
}
.inner ul {
  padding-left: 4px; list-style: none;
  display: flex; flex-direction: column; gap: 5px;
}
.inner ul li {
  font-size: .88em; color: rgba(255,255,255,.8); line-height: 1.5;
}

/* 注意書き（薄い文字） */
.mb-note {
  font-size: .82em;
  color: rgba(255,255,255,.42);
  line-height: 1.7;
  margin: 8px 0;
}
.mb-note__label {
  font-weight: 700;
  color: rgba(255,255,255,.5);
}/* ============================================================
   自己紹介タブ - スライド式立ち絵
   ============================================================ */
.about-stand-slider {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}

.about-stand-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.about-stand-slide img {
  width: 100%;
  display: block;
}

.about-stand-caption {
  text-align: center;
  font-size: 0.85em;
  color: var(--muted);
  margin-top: 6px;
}

.about-stand-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.about-stand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.3;
  transition: opacity 0.2s;
}

.about-stand-dot.active {
  opacity: 1;
}

/* ============================================================
   夢ゴール - 3月&4月を一緒に囲む
   ============================================================ */
.dg-months {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
  margin-top: 12px;
  position: relative;
}

.dg-month-group {
  display: contents;
}

.dg-month-group-border {
  position: absolute;
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: rgba(255, 121, 176, 0.05);
  pointer-events: none;
}

/* ============================================================
   コンテスト - 可愛いスタイル
   ============================================================ */
.contest-cute-card {
  border: 2px solid rgba(255, 121, 176, 0.3);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(255, 121, 176, 0.08) 0%, rgba(138, 215, 255, 0.05) 100%);
  box-shadow: 0 4px 20px rgba(255, 121, 176, 0.1);
  position: relative;
  overflow: hidden;
}

.contest-cute-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.contest-cute-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.contest-cute-title {
  font-family: 'Kaisei Tokumin', serif;
  font-size: 1.3em;
  font-weight: 900;
  background: linear-gradient(135deg, #ff79b0 0%, #ffaadd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contest-deadline-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85em;
  background: rgba(255, 121, 176, 0.15);
  border: 1px solid rgba(255, 121, 176, 0.4);
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   オニギリスライダー
   ============================================================ */
.onigiri-slider-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto 16px;
}

.onigiri-slider {
  overflow: hidden;
  border-radius: 14px;
}

.onigiri-track {
  display: flex;
  transition: transform 0.3s ease;
}

.onigiri-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.onigiri-slide img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.onigiri-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.onigiri-nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.onigiri-nav-btn--prev {
  left: 10px;
}

.onigiri-nav-btn--next {
  right: 10px;
}

.onigiri-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.onigiri-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  padding: 0;
  opacity: 0.3;
  transition: opacity 0.2s;
}

.onigiri-dot.active {
  opacity: 1;
}

/* ============================================================
   MVクラファン - ステータスバッジ
   ============================================================ */
.mv-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.9em;
  font-weight: 700;
}

.mv-status-badge--completed {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #60a5fa;
}

.mv-status-badge--production {
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.4);
  color: #fde68a;
}

.mv-status-badge--funding {
  background: rgba(255, 121, 176, 0.15);
  border: 1px solid rgba(255, 121, 176, 0.4);
  color: var(--accent);
}

.mv-status-icon {
  font-size: 1.2em;
}
/* ── PC表示: 全体を80%スケール ── */
@media (min-width: 768px) {
  html {
    zoom: 0.9;
  }
}

/* ── 月グループ枠（3月・4月をまとめて囲む） ── */
.dg-month-group-wrap {
  display: contents;
}

/* グリッドアイテムとして展開しつつ外枠を表示するためsubgridを使用 */
.dg-month-group-wrap {
  display: grid;
  grid-column: span 2;
  grid-template-columns: subgrid;
  border: 2px solid var(--accent);
  border-radius: 14px;
  background: rgba(255,121,176,.07);
  padding: 2px;
  gap: inherit;
}

/* ── 自己紹介スライダー アイコン切り替えボタン ── */
.about-stand-icon-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.about-stand-icon-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  padding: 3px;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s;
}

.about-stand-icon-btn img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.about-stand-icon-btn.active {
  opacity: 1;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,121,176,.25);
}

.about-stand-icon-btn:hover {
  opacity: 0.85;
}
/* ── ヘッダー＆タブ スクロールで隠す ── */
.topbar--hidden {
  transform: translateY(-100%);
}
.tabs--hidden {
  transform: translateY(-100%);
  top: 0 !important;
}

/* ── フロートスクロールトップボタン ── */
.scroll-top-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,121,176,0.6);
  background: rgba(15,15,18,.85);
  color: #ff79b0;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
  backdrop-filter: blur(6px);
}
.scroll-top-float.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-float:hover {
  background: rgba(255,121,176,.2);
}
/* ============================================================
   支援タブ - 切り抜きリクエストセクション
   ============================================================ */
.support-clip-request {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,121,176,.12) 0%, rgba(255,255,255,.04) 100%);
  border: 1px solid rgba(255,121,176,.45);
  border-radius: 20px;
  padding: 24px 24px 22px;
  margin: 0 0 20px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,121,176,.1), 0 4px 32px rgba(255,121,176,.1);
}

.support-clip-request::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,121,176,.08) 0%, transparent 65%);
  pointer-events: none;
}

.support-clip-request__img-wrap {
  flex-shrink: 0;
  width: 60%;
  max-width: 400px;
  min-width: 60px;
  margin: 0 auto 14px;
}

.support-clip-request__img {
  width: 100%;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(255,121,176,.25);
  box-shadow: 0 2px 16px rgba(255,121,176,.15);
}

.support-clip-request__body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.support-clip-request__title {
  font-size: 1.1em;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 30%, #ffb8d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.45;
  letter-spacing: .02em;
}

.support-clip-request__desc {
  font-size: 0.88em;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}

.support-clip-request__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,121,176,.35) 0%, rgba(255,80,150,.25) 100%);
  border: 1px solid rgba(255,121,176,.75);
  color: #fff;
  font-weight: 800;
  font-size: 0.95em;
  text-decoration: none;
  transition: background .18s, transform .12s, box-shadow .18s;
  box-shadow: 0 2px 16px rgba(255,121,176,.3), inset 0 1px 0 rgba(255,255,255,.12);
  letter-spacing: .01em;
  margin-top: 4px;
}

.support-clip-request__btn:hover {
  background: linear-gradient(135deg, rgba(255,121,176,.55) 0%, rgba(255,80,150,.4) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,121,176,.42), inset 0 1px 0 rgba(255,255,255,.18);
}

@media (max-width: 560px) {
  .support-clip-request__img-wrap {
    width: 50%;
    max-width: 240px;
  }
}

/* ============================================================
   グッズソートボタン
   ============================================================ */
.goods-sort-btn:hover {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.3) !important;
  transform: translateY(-1px);
}

.goods-sort-btn--active {
  background: rgba(255,110,180,.3) !important;
  border: 1px solid rgba(255,110,180,.5) !important;
}

.goods-sort-btn--active:hover {
  background: rgba(255,110,180,.4) !important;
  border-color: rgba(255,110,180,.6) !important;
}

#goods-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}/* PayPalボタンコンテナの幅を確保 */
[id^="paypal-container-"] {
  min-width: 150px;
  width: auto;
}

/* ============================================================
   PayPal スタンドアロンボタン（⋈の下）
   ============================================================ */
.paypal-standalone-wrap {
  margin: 10px 0 16px;
  display: flex;
  justify-content: center;
}

.paypal-standalone-wrap [id^="paypal-container-"] {
  width: 100%;
  max-width: 340px;
  border: 2px solid #ff79b0;
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 121, 176, 0.05);
  box-shadow: 0 0 0 1px rgba(255, 121, 176, 0.15), 0 4px 20px rgba(255, 121, 176, 0.12);
}

/* PayPal フォーム内：通常テキストは白 */
.paypal-standalone-wrap span,
.paypal-standalone-wrap label,
.paypal-standalone-wrap p,
.paypal-standalone-wrap div {
  color: #ffffff !important;
}

/* 金額入力ボックスを白に近い灰色に */
.paypal-standalone-wrap input#amount {
  background: #ffffff !important;
}

/* ¥ と JPY だけピンク */
.paypal-standalone-wrap .currency-symbol,
.paypal-standalone-wrap [class*="currency-symbol"],
.paypal-standalone-wrap [class*="currency-code"],
.paypal-standalone-wrap [class*="currencyCode"],
.paypal-standalone-wrap [class*="currency-label"] {
  color: #ff79b0 !important;
}

/* PayPal iframeにフィルターを適用 */
/* 記入ボックス：灰色背景・白文字 / ボタン：暗めの色調 */
/* PayPalで支払う ボタン（title属性あり） */
.paypal-standalone-wrap iframe[title]:not([title=""]) {
  filter: hue-rotate(200deg) saturate(1) brightness(1.05) contrast(1.5);
}

/* チェックアウト ボタン（title属性が空） */
.paypal-standalone-wrap iframe[title=""] {
  filter: hue-rotate(200deg) saturate(1) brightness(1.05) contrast(1.5);
}

.support-item-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-item-row .support-item {
  flex: 1;
  min-width: 0;
}

/* PayPalボタンを含む右側のラッパー */
.support-item-row > div:last-child {
  flex-shrink: 0;
  min-width: 150px;
}

/* PayPalボタンのための特別なスタイル */
.support-item-arrow:has([id^="paypal-container-"]) {
  cursor: default;
  background: transparent;
  border: none;
  padding: 0;
  min-width: 150px;
}

.support-item-arrow:has([id^="paypal-container-"]):hover {
  transform: none;
  color: inherit;
}
/* ============================================================
   PayPal - Supportタブ用ワイド版
   ============================================================ */
.paypal-standalone-wrap--wide {
  justify-content: center;
  width: 100%;
}
.paypal-standalone-wrap--wide [id^="paypal-container-"],
.paypal-standalone-wrap--wide [id^="paypal-form-fields-container-"],
.paypal-standalone-wrap--wide [id^="paypal-form-fields-container-"] > *,
.paypal-standalone-wrap--wide [id^="paypal-form-fields-container-"] input,
.paypal-standalone-wrap--wide [id^="paypal-form-fields-container-"] textarea,
.paypal-standalone-wrap--wide [id^="paypal-form-fields-container-"] button,
.paypal-standalone-wrap--wide [id^="paypal-form-fields-container-"] div {
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
/* ── biz-info-block: 企業様向け情報 ── */
.biz-info-block {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.biz-section {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,122,191,.18);
  border-radius: 12px;
  padding: 14px 16px;
}
.biz-section-title {
  font-weight: 700;
  font-size: .95em;
  color: #ff7abf;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.biz-section-body {
  font-size: .88em;
  line-height: 1.75;
  color: #fff;
}
.biz-updated {
  display: inline-block;
  font-size: .8em;
  opacity: .6;
  margin-bottom: 10px;
}
.biz-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin: 10px 0;
}
.biz-stat-group {
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  padding: 10px 12px;
}
.biz-stat-label {
  font-size: .78em;
  font-weight: 700;
  color: #ff7abf;
  opacity: .85;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.biz-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: .85em;
  padding: 2px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.biz-stat-row:last-child { border-bottom: none; }
.biz-details summary {
  cursor: pointer;
  color: #ff7abf;
  font-size: .88em;
  margin: 8px 0 4px;
  opacity: .85;
}
.biz-details summary:hover { opacity: 1; }
.biz-list {
  margin: 8px 0 4px 18px;
  line-height: 1.8;
  font-size: 1.2em;
  color: #fff;
}
.biz-list li {
  margin-bottom: 6px;
  color: #fff;
  list-style-type: disc;
}
@media (max-width: 520px) {
  .biz-stats-grid { grid-template-columns: 1fr 1fr; }
}