/* それスタ main.css v5 — PASTEL IDOL */
:root {
  --bg:        #FFF5F8;   /* 薄ピンクベース */
  --bg-alt:    #FFF0F8;   /* セクション交互1 */
  --bg-lav:    #F8F0FF;   /* セクション交互2 */
  --bg-mint:   #F0FBF7;   /* セクション交互3 */
  --bg-peach:  #FFF4EC;   /* セクション交互4 */
  --white:     #FFFFFF;
  --yellow:    #FFD84D;
  --orange:    #FF9A5C;
  --pink:      #FF85A1;
  --pink-soft: #FFB3C6;
  --lav:       #C5A8FF;
  --lav-soft:  #E8DDFF;
  --mint:      #8EE3C8;
  --sky:       #8BD4F5;
  --ink:       #2A1F3D;
  --mid:       #5A4E70;
  --light:     #9A8EAE;
  --border:    rgba(180,160,210,0.18);
  --shadow:    rgba(180,140,200,0.12);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Noto Sans JP',sans-serif; background:var(--bg); color:var(--ink); overflow-x:hidden; }
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }

/* カスタムカーソルはマウス(pointer:fine)のみ — スマホはデフォルトカーソルを維持 */
@media (pointer:fine) {
  *, *::before, *::after { cursor:none !important; }
}

/* CURSOR — PC(マウス)のみ表示 */
#cursor { display:none; }
@media (pointer:fine) {
  #cursor { display:block; position:fixed; top:0; left:0; z-index:9999; width:16px; height:16px; background:var(--pink); border-radius:50%; pointer-events:none; transform:translate(-50%,-50%); transition:width .15s,height .15s; opacity:.8; }
  #cursor.big { width:32px; height:32px; opacity:.35; }
}

/* ── NAV ── */
#global-nav {
  position:fixed; top:0; width:100%; z-index:500;
  padding:14px 48px;
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(255,245,248,0.95);
  -webkit-backdrop-filter:blur(16px); /* Safari */
  backdrop-filter:blur(16px);
  border-bottom:2px solid var(--pink-soft);
  box-shadow:0 2px 20px rgba(255,133,161,0.1);
}
.gnav-logo { font-family:'Outfit',sans-serif; font-weight:900; font-size:20px; display:flex; align-items:center; gap:8px; color:var(--ink); }
.gnav-logo em { background:linear-gradient(135deg,var(--yellow),var(--orange)); border-radius:50%; width:28px; height:28px; display:inline-flex; align-items:center; justify-content:center; font-size:14px; font-style:normal; box-shadow:0 2px 10px rgba(255,154,92,.3); }
.gnav-links { display:flex; gap:28px; list-style:none; font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }
.gnav-links a { color:var(--mid); padding-bottom:2px; border-bottom:2px solid transparent; transition:all .2s; }
.gnav-links a:hover, .gnav-links a.active { color:var(--ink); border-bottom-color:var(--pink); }
.gnav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; padding:4px; }
.gnav-hamburger span { display:block; width:22px; height:2px; background:var(--ink); border-radius:2px; }

/* ハンバーガー展開メニュー — クラスで制御（インラインstyle不要） */
@media (max-width:768px) {
  .gnav-links.is-open {
    display:flex !important;
    flex-direction:column;
    position:absolute;
    top:60px; right:24px;
    background:rgba(10,7,18,.97);
    padding:16px 24px;
    border-radius:12px;
    box-shadow:0 8px 32px rgba(0,0,0,.3);
    gap:16px;
    z-index:499;
  }
}

/* ── TOP ── */
.page-top-dark { background:var(--bg); padding-top:56px; }

/* NEWS CAROUSEL */
.news-carousel-wrap { position:relative; overflow:hidden; }
.news-carousel { display:flex; transition:transform .5s cubic-bezier(.4,0,.2,1); }
.news-slide {
  min-width:100%; height:400px; cursor:pointer; display:flex; overflow:hidden;
  background:linear-gradient(135deg,#2A1840,#1A0F30);
}
/* aspect-ratio非対応環境(iOS14以下等)のフォールバック */
.news-card-img { aspect-ratio:1; overflow:hidden; }
.news-card-img::before { content:''; display:block; padding-top:100%; } /* fallback */
@supports (aspect-ratio:1) { .news-card-img::before { display:none; } }
.news-slide-img { width:50%; height:100%; object-fit:cover; flex-shrink:0; }
.news-slide-img-placeholder { width:50%; height:100%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:80px; }
.news-slide-info { flex:1; padding:48px 56px; display:flex; flex-direction:column; justify-content:center; }
.nslide-cat { font-size:10px; font-weight:900; letter-spacing:.2em; text-transform:uppercase; color:var(--yellow); margin-bottom:12px; }
.nslide-title { font-family:'Zen Maru Gothic',sans-serif; font-size:26px; font-weight:900; color:#fff; line-height:1.4; margin-bottom:16px; }
.nslide-date { font-size:11px; color:rgba(255,255,255,.4); font-family:'Outfit',sans-serif; }
.nslide-btn { margin-top:20px; padding:10px 24px; background:linear-gradient(135deg,var(--pink),var(--lav)); border-radius:100px; font-size:11px; font-weight:900; color:#fff; align-self:flex-start; transition:all .2s; display:inline-block; box-shadow:0 4px 16px rgba(255,133,161,.3); }
.nslide-btn:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(255,133,161,.4); }
.carousel-prev, .carousel-next { position:absolute; top:50%; transform:translateY(-50%); z-index:10; width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.25); color:#fff; font-size:20px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:all .2s; }
.carousel-prev { left:20px; } .carousel-next { right:20px; }
.carousel-prev:hover, .carousel-next:hover { background:var(--pink); border-color:var(--pink); }
.carousel-dots { display:flex; justify-content:center; gap:8px; padding:14px 0; background:linear-gradient(135deg,#2A1840,#1A0F30); }
.carousel-dot { width:24px; height:3px; border-radius:2px; background:rgba(255,255,255,.2); cursor:pointer; transition:all .2s; }
.carousel-dot.active { background:var(--pink-soft); width:40px; }

/* SECTIONS */
.top-section { padding:72px 64px; }
.sec-white  { background:var(--white); }
.sec-pink   { background:var(--bg); }
.sec-lav    { background:var(--bg-lav); }
.sec-peach  { background:var(--bg-peach); }
.sec-mint   { background:var(--bg-mint); }

.top-section-label { font-family:'Outfit',sans-serif; font-size:11px; letter-spacing:.3em; text-transform:uppercase; color:var(--light); margin-bottom:8px; }
.top-section-title { font-family:'Zen Maru Gothic',sans-serif; font-size:32px; font-weight:900; color:var(--ink); margin-bottom:28px; }
.top-section-title span,
.list-title span,
.news-page-title span,
.goods-page-title span {
  /* Firefox非対応のため color fallback を先に定義 */
  color:var(--pink);
  background:linear-gradient(135deg,var(--pink),var(--lav));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  /* Firefox用: -webkit-text-fill-color未サポート時はcolorにフォールバック */
}

/* NOW ON AIR */
.now-on-air-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.twitch-embed-wrap { border-radius:20px; overflow:hidden; aspect-ratio:16/9; position:relative; border:2px solid var(--lav-soft); box-shadow:0 8px 32px var(--shadow); background:linear-gradient(135deg,#2A1840,#1A0F30); }
.twitch-embed-wrap iframe,
.twitch-embed-wrap #twitch-embed-player,
.twitch-embed-wrap #twitch-embed-player iframe { width:100%; height:100%; border:none; display:block; }
#twitch-embed-player { width:100%; height:100%; }
.twitch-placeholder { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; cursor:pointer; }
.twitch-logo { font-size:40px; }
.twitch-live-badge { background:#9147FF; color:#fff; border-radius:6px; padding:4px 10px; font-size:10px; font-weight:900; }
.twitch-channel-name { color:#fff; font-size:14px; font-weight:700; }
.twitch-viewer { color:rgba(255,255,255,.5); font-size:11px; }
.now-on-air-list { display:flex; flex-direction:column; gap:10px; overflow-y:auto; max-height:360px; }
.onair-card { display:flex; gap:12px; background:var(--white); border-radius:16px; padding:12px; border:1.5px solid var(--border); cursor:pointer; transition:all .2s; box-shadow:0 2px 12px var(--shadow); }
.onair-card:hover { transform:translateY(-2px); box-shadow:0 8px 24px var(--shadow); border-color:var(--lav-soft); }
.onair-thumb { width:90px; height:64px; border-radius:10px; flex-shrink:0; position:relative; overflow:hidden; }
.onair-live-dot { position:absolute; top:5px; left:5px; width:7px; height:7px; border-radius:50%; background:#FF4040; animation:blink 1s ease-in-out infinite; border:1.5px solid #fff; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.onair-info { flex:1; min-width:0; }
.onair-member-row { display:flex; align-items:center; gap:6px; margin-bottom:4px; }
.onair-icon { width:20px; height:20px; border-radius:50%; object-fit:cover; border:2px solid var(--pink-soft); }
.onair-member-name { font-size:10px; font-weight:700; color:var(--mid); }
.onair-title { font-size:12px; font-weight:700; color:var(--ink); line-height:1.4; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.onair-meta { font-size:10px; color:var(--light); margin-top:4px; }

/* TALENT STANDING */
.talent-stand-section { padding:72px 0 56px; background:linear-gradient(160deg,#fffafd 0%,#f5eeff 60%,#ffedf5 100%); overflow:hidden; }
.talent-stand-header { padding:0 64px 40px; display:flex; align-items:flex-end; justify-content:space-between; }

/* ── 自動スクロールトラック ── */
.talent-stand-outer { overflow:hidden; position:relative; }
/* フェードエッジ */
.talent-stand-outer::before,
.talent-stand-outer::after { content:''; position:absolute; top:0; bottom:0; width:80px; z-index:10; pointer-events:none; }
.talent-stand-outer::before { left:0; background:linear-gradient(to right,#f8f2ff,transparent); }
.talent-stand-outer::after  { right:0; background:linear-gradient(to left,#fff4fa,transparent); }

.talent-stand-scroll {
  display:flex; width:max-content;
  animation:soresuta-scroll 35s linear infinite;
  will-change:transform;          /* GPU合成を促進 iOS Safariにも有効 */
  -webkit-backface-visibility:hidden; /* Safari ちらつき防止 */
  backface-visibility:hidden;
}
/* PCホバーで一時停止 */
.talent-stand-section:hover .talent-stand-scroll { animation-play-state:paused; }
/* JSタッチ一時停止用クラス */
.talent-stand-scroll.is-paused { animation-play-state:paused; }

@keyframes soresuta-scroll {
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

/* アクセシビリティ: アニメーション低減設定を尊重 */
@media (prefers-reduced-motion: reduce) {
  .talent-stand-scroll { animation:none; overflow-x:auto; scrollbar-width:thin; }
  .talent-stand-scroll::-webkit-scrollbar { height:4px; }
  .talent-stand-scroll::-webkit-scrollbar-thumb { background:var(--lav-soft); border-radius:2px; }
}

/* スマホ(hover不可)ではカード名を常時表示 */
@media (hover:none) {
  .talent-stand-info { opacity:1; }
  .talent-stand-card:hover { width:200px; }  /* hoverによる拡大無効化 */
}

/* width:max-content のSafari古いバージョン向けフォールバック */
@supports not (width:max-content) {
  .talent-stand-scroll { width:9999px; }
}

/* カード */
.talent-stand-card {
  position:relative; width:200px; height:520px; overflow:hidden;
  cursor:pointer; flex-shrink:0;
  border-right:1.5px solid rgba(255,255,255,.55);
  transition:width .45s cubic-bezier(.4,0,.2,1), box-shadow .3s;
}
.talent-stand-card:hover { width:270px; box-shadow:inset -4px 0 20px rgba(0,0,0,.08); }
.talent-stand-bg { position:absolute; inset:0; background:var(--bg); transition:opacity .3s; }

/* 白→メンバーカラーのグラデーション */
.talent-stand-card img {
  position:absolute; bottom:-5%; left:50%;
  transform:translateX(-50%);
  height:105%; width:100%;
  max-width:none;
  object-fit:cover; object-position:top center;
  z-index:2;
  filter:drop-shadow(0 6px 18px rgba(0,0,0,.10));
  transition:transform .5s cubic-bezier(.34,1.56,.64,1);
}
.talent-stand-card:hover img { transform:translateX(-50%) scale(1.75) translateY(28%); }

.talent-stand-info {
  position:absolute; bottom:0; left:0; right:0; z-index:3;
  padding:36px 14px 18px;
  background:linear-gradient(to top,rgba(0,0,0,.38) 0%,transparent 100%);
  opacity:0; transition:opacity .3s;
}
.talent-stand-card:hover .talent-stand-info { opacity:1; }
.talent-stand-name { font-family:'Zen Maru Gothic',sans-serif; font-size:13px; font-weight:900; color:#fff; text-align:center; letter-spacing:.04em; text-shadow:0 2px 8px rgba(0,0,0,.5); }

.talent-placeholder { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:64px; z-index:2; }

.talent-viewall { display:inline-flex; align-items:center; gap:8px; padding:10px 28px; background:linear-gradient(135deg,var(--pink),var(--lav)); color:#fff; border-radius:100px; font-size:12px; font-weight:900; letter-spacing:.06em; transition:all .2s; box-shadow:0 4px 20px rgba(255,133,161,.25); white-space:nowrap; }
.talent-viewall:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(255,133,161,.35); }

/* SNS */
.sns-section { padding:72px 64px; background:var(--bg-peach); text-align:center; }
.sns-title-large { font-family:'Outfit',sans-serif; font-size:clamp(28px,5vw,56px); font-weight:900; color:var(--ink); letter-spacing:.1em; margin-bottom:8px; }
.sns-sub { font-size:12px; color:var(--light); letter-spacing:.1em; margin-bottom:36px; }
.sns-icons { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }
.sns-icon-btn { width:60px; height:60px; border-radius:16px; display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:900; cursor:pointer; transition:transform .2s,box-shadow .2s; box-shadow:0 4px 16px var(--shadow); }
.sns-icon-btn:hover { transform:translateY(-4px); box-shadow:0 12px 28px rgba(180,140,200,.2); }

/* FOOTER */
.site-footer { background:var(--ink); padding:48px 64px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:24px; }
.footer-logo { font-family:'Outfit',sans-serif; font-weight:900; font-size:20px; color:#fff; display:flex; align-items:center; gap:8px; }
.footer-logo em { background:linear-gradient(135deg,var(--yellow),var(--orange)); border-radius:50%; width:26px; height:26px; display:inline-flex; align-items:center; justify-content:center; font-size:13px; font-style:normal; color:var(--ink); }
.footer-copy { font-size:11px; color:rgba(255,255,255,.3); margin-top:8px; }
.footer-nav { display:flex; gap:20px; }
.footer-nav a { font-size:11px; color:rgba(255,255,255,.4); transition:color .2s; }
.footer-nav a:hover { color:rgba(255,255,255,.8); }

/* ── TALENT LIST ── */
.archive-talent { background:var(--bg); color:var(--ink); }
.list-header { padding:80px 64px 0; }
.list-breadcrumb { font-size:11px; color:var(--light); font-weight:700; margin-bottom:20px; }
.list-title { font-family:'Zen Maru Gothic',sans-serif; font-size:44px; font-weight:900; color:var(--ink); }
.list-sub { font-size:13px; color:var(--light); margin-top:8px; }
.list-filter-wrap { padding:28px 64px 22px; border-bottom:2px solid var(--border); display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.lfilter-label { font-size:10px; font-weight:900; letter-spacing:.15em; text-transform:uppercase; color:var(--light); }
.lpill { padding:7px 18px; border-radius:100px; border:1.5px solid var(--border); background:var(--white); font-family:'Noto Sans JP',sans-serif; font-size:11px; font-weight:700; color:var(--mid); cursor:pointer; transition:all .2s; box-shadow:0 2px 8px var(--shadow); }
.lpill:hover, .lpill.active { background:linear-gradient(135deg,var(--pink),var(--lav)); border-color:transparent; color:#fff; box-shadow:0 4px 16px rgba(255,133,161,.25); }
.list-grid-wrap { padding:40px 64px 80px; }
.list-gen-section { margin-bottom:48px; }
.list-gen-label { font-family:'Outfit',sans-serif; font-size:10px; letter-spacing:.25em; text-transform:uppercase; color:var(--light); font-weight:700; margin-bottom:20px; display:flex; align-items:center; gap:16px; }
.list-gen-label span { flex:1; height:1px; background:var(--border); display:block; }
.list-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:20px; }
.lcard { border-radius:20px; overflow:hidden; background:var(--white); border:2px solid var(--border); cursor:pointer; transition:transform .3s cubic-bezier(.34,1.56,.64,1),box-shadow .3s; animation:cardIn .5s ease both; display:block; box-shadow:0 2px 16px var(--shadow); }
.lcard:hover { transform:translateY(-8px); box-shadow:0 20px 48px rgba(180,140,200,.18); border-color:var(--lav-soft); }
@keyframes cardIn { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
.lcard-img-wrap { position:relative; aspect-ratio:1; overflow:hidden; display:flex; align-items:center; justify-content:center; padding:14%; }
.lcard-img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .4s; border-radius:50%; box-shadow:0 4px 20px rgba(0,0,0,.12); position:relative; z-index:1; }
.lcard:hover .lcard-img-wrap img { transform:scale(1.07); }
.lcard-glow { position:absolute; inset:0; pointer-events:none; }
.lcard-body { padding:14px 16px 16px; }
.lcard-gen { font-size:9px; font-weight:900; letter-spacing:.15em; text-transform:uppercase; color:var(--light); margin-bottom:3px; }
.lcard-name { font-family:'Zen Maru Gothic',sans-serif; font-size:15px; font-weight:900; color:var(--ink); }
.lcard-name-en { font-size:10px; color:var(--light); margin-top:1px; font-family:'Outfit',sans-serif; }
.lcard-tags { display:flex; flex-wrap:wrap; gap:4px; margin-top:10px; }
.ltag { font-size:9px; font-weight:700; border-radius:100px; padding:3px 9px; background:var(--lav-soft); color:var(--mid); }

/* ── NEWS ── */
.page-news, .blog { background:var(--bg); color:var(--ink); padding-top:72px; }
.news-page-header { padding:48px 64px 0; }
.news-page-title { font-family:'Zen Maru Gothic',sans-serif; font-size:40px; font-weight:900; color:var(--ink); }
.news-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:28px; padding:40px 64px 80px; }
.news-card { border-radius:20px; overflow:hidden; background:var(--white); border:2px solid var(--border); cursor:pointer; transition:transform .3s cubic-bezier(.34,1.56,.64,1),box-shadow .3s; animation:cardIn .5s ease both; display:block; color:var(--ink); box-shadow:0 2px 16px var(--shadow); }
.news-card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(180,140,200,.18); border-color:var(--lav-soft); }
.news-card-img { aspect-ratio:1; overflow:hidden; }
.news-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.news-card:hover .news-card-img img { transform:scale(1.06); }
.news-card-img-placeholder { aspect-ratio:1; display:flex; align-items:center; justify-content:center; font-size:52px; }
.news-card-body { padding:16px 18px 20px; }
.news-card-cat { font-size:9px; font-weight:900; letter-spacing:.12em; text-transform:uppercase; background:linear-gradient(135deg,var(--pink),var(--lav)); color:#fff; border-radius:6px; padding:3px 10px; display:inline-block; margin-bottom:8px; }
.news-card-title { font-size:14px; font-weight:700; color:var(--ink); line-height:1.5; }
.news-card-date { font-size:10px; color:var(--light); margin-top:8px; font-family:'Outfit',sans-serif; }

/* ── GOODS ── */
.goods-page-header { padding:48px 64px 0; }
.goods-page-title { font-family:'Zen Maru Gothic',sans-serif; font-size:40px; font-weight:900; color:var(--ink); }
.goods-page-sub { font-size:13px; color:var(--light); margin-top:8px; }
.goods-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:28px; padding:40px 64px 80px; }
.goods-card { border-radius:20px; overflow:hidden; background:var(--white); border:2px solid var(--border); cursor:pointer; transition:transform .3s cubic-bezier(.34,1.56,.64,1),box-shadow .3s; display:block; color:var(--ink); box-shadow:0 2px 16px var(--shadow); }
.goods-card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(180,140,200,.18); border-color:var(--lav-soft); }
.goods-card-img { aspect-ratio:1; overflow:hidden; display:flex; align-items:center; justify-content:center; font-size:52px; }
.goods-card-img img { width:100%; height:100%; object-fit:cover; }
.goods-card-body { padding:14px 18px 18px; }
.goods-card-title { font-size:14px; font-weight:700; color:var(--ink); }
.goods-card-sub { font-size:11px; color:var(--light); margin-top:4px; }
.goods-card-link { display:inline-flex; align-items:center; gap:4px; font-size:10px; font-weight:700; color:var(--pink); margin-top:10px; }

/* ── DETAIL ── */
.single-talent { background:var(--bg); color:var(--ink); }
.detail-hero { position:relative; min-height:100vh; overflow:hidden; padding-top:60px; }
.detail-bg-grad { position:absolute; inset:0; pointer-events:none; }
.detail-back { position:absolute; top:80px; left:48px; z-index:10; font-size:12px; font-weight:700; color:var(--mid); padding:8px 18px; background:var(--white); border-radius:100px; box-shadow:0 2px 16px var(--shadow); transition:all .2s; display:inline-block; border:1.5px solid var(--border); }
.detail-back:hover { transform:translateY(-1px); box-shadow:0 4px 20px rgba(180,140,200,.2); }

.detail-layout { display:grid; grid-template-columns:300px 1fr; gap:48px; padding:100px 64px 80px; max-width:1100px; margin:0 auto; position:relative; z-index:1; }

/* 左カラム */
.detail-left { display:flex; flex-direction:column; align-items:center; gap:16px; }

/* 丸アイコン */
.detail-icon-wrap { width:200px; height:200px; border-radius:50%; overflow:hidden; border:3px solid; flex-shrink:0; }
.detail-icon-wrap img { width:100%; height:100%; object-fit:cover; }
.detail-no-img { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:64px; }

/* 立ち絵ギャラリー */
.detail-gallery-wrap { position:relative; width:100%; }
.detail-gallery-viewport { overflow:hidden; border-radius:16px; }
.detail-gallery { display:flex; transition:transform .4s cubic-bezier(.4,0,.2,1); }
.detail-gallery-slide { min-width:100%; display:flex; justify-content:center; background:transparent; }
.detail-gallery-slide img { max-height:420px; width:auto; max-width:100%; object-fit:contain; display:block; filter:drop-shadow(0 8px 24px rgba(0,0,0,.12)); }

.detail-gallery-arrow { position:absolute; top:50%; transform:translateY(-50%); width:36px; height:36px; border-radius:50%; border:1.5px solid; display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:700; cursor:pointer; transition:all .2s; z-index:5; backdrop-filter:blur(4px); }
.detail-gallery-arrow:hover { transform:translateY(-50%) scale(1.15); }
.detail-gallery-arrow.prev { left:-14px; }
.detail-gallery-arrow.next { right:-14px; }

.detail-gallery-dots { display:flex; justify-content:center; gap:6px; margin-top:10px; }
.dgal-dot { width:8px; height:8px; border-radius:50%; background:var(--border); transition:all .25s; cursor:pointer; }
.dgal-dot.active { width:20px; border-radius:4px; }

/* SNS・ハッシュタグ */
.detail-socials { display:flex; gap:10px; width:100%; }
.dsocial { flex:1; padding:10px; border-radius:12px; font-size:11px; font-weight:700; text-align:center; transition:transform .2s; display:block; box-shadow:0 2px 8px var(--shadow); border:1.5px solid; }
.dsocial:hover { transform:translateY(-2px); }
/* ハッシュタグ：白背景ピルにしてどのメンバーカラーでも読める */
.detail-hash {
  font-family:'Outfit',sans-serif; font-size:13px; font-weight:700; text-align:center;
  background:#fff; border-radius:100px; padding:6px 18px;
  border:1.5px solid var(--border);
  box-shadow:0 2px 8px var(--shadow);
  display:inline-block; width:auto; align-self:center;
}

/* 右カラム */
.detail-right { display:flex; flex-direction:column; gap:16px; }
.detail-gen-badge { display:inline-block; font-size:10px; font-weight:900; letter-spacing:.12em; border-radius:100px; padding:5px 16px; margin-bottom:4px; background:#fff !important; box-shadow:0 2px 8px var(--shadow); }
.detail-name { font-family:'Zen Maru Gothic',sans-serif; font-size:44px; font-weight:900; color:var(--ink); line-height:1.1; }
.detail-name-en { font-family:'Outfit',sans-serif; font-size:13px; color:var(--light); margin-top:4px; }
.detail-divider { height:3px; width:60px; border-radius:2px; margin:4px 0 8px; }
.detail-tags { display:flex; flex-wrap:wrap; gap:8px; }
.dtag { font-size:11px; font-weight:700; border-radius:100px; padding:4px 14px; background:#fff !important; box-shadow:0 1px 4px var(--shadow); }

/* ── 白ボックス（可読性改善） ── */
.detail-box {
  background:#fff;
  border-radius:16px;
  padding:20px 22px 22px;
  border:1.5px solid var(--border);
  box-shadow:0 2px 20px rgba(180,140,200,.10);
}
.detail-box-label { font-size:10px; font-weight:900; letter-spacing:.15em; text-transform:uppercase; margin-bottom:12px; }
.detail-appeal-text { font-size:14px; color:var(--ink); line-height:1.9; white-space:pre-wrap; }

/* プロフィールグリッド */
.detail-info-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.detail-info-item { background:var(--bg); border-radius:10px; padding:11px 14px; border:1.5px solid var(--border); }
.dinfo-label { font-size:9px; font-weight:900; letter-spacing:.15em; text-transform:uppercase; color:var(--light); display:block; margin-bottom:3px; }
.dinfo-val { font-size:12px; font-weight:700; color:var(--ink); }

/* 最新VOD */
.detail-vod-wrap { aspect-ratio:16/9; border-radius:12px; overflow:hidden; margin-bottom:12px; background:#0e0e0e; }
.detail-vod-wrap iframe { width:100%; height:100%; border:none; display:block; }
.detail-vod-link { display:inline-flex; align-items:center; gap:4px; font-size:11px; font-weight:700; color:#9147FF; transition:opacity .2s; }
.detail-vod-link:hover { opacity:.7; }
.detail-vod-none { font-size:12px; color:var(--light); line-height:1.7; }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* RESPONSIVE */
@media (max-width:900px) {
  .now-on-air-grid { grid-template-columns:1fr; }
  .detail-layout { grid-template-columns:1fr; padding:80px 24px 60px; }
  .detail-left { flex-direction:row; flex-wrap:wrap; justify-content:center; }
  .detail-icon-wrap { width:140px; height:140px; }
  .detail-gallery-slide img { max-height:300px; }
}
@media (max-width:768px) {
  #global-nav { padding:14px 24px; }
  .gnav-links { display:none; }
  .gnav-hamburger { display:flex; }
  .top-section, .list-header, .list-filter-wrap, .list-grid-wrap,
  .news-page-header, .news-grid, .goods-page-header, .goods-grid,
  .talent-stand-header { padding-left:24px; padding-right:24px; flex-wrap:wrap; gap:16px; }
  .sns-section { padding-left:24px; padding-right:24px; }
  .talent-stand-card { width:160px; height:420px; }
  .talent-stand-card:hover { width:200px; }
  .list-grid { grid-template-columns:repeat(2,1fr); gap:12px; }
  .detail-info-grid { grid-template-columns:1fr; }
  .detail-back { top:68px; left:16px; }
  .news-slide { flex-direction:column; height:auto; min-height:unset; }
  .news-slide-img, .news-slide-img-placeholder { width:100%; height:200px; }
  .news-slide-info { padding:24px; }
  .site-footer { padding:40px 24px; }
}

/* Now on Air — アクティブカードとオフライン */
.onair-card.active { border-color:var(--pink); background:var(--bg); box-shadow:0 4px 20px rgba(255,133,161,.15); }
.onair-offline-msg { text-align:center; color:var(--light); font-size:13px; padding:32px 16px; }

/* ══════════════════════════════════════════
   静的ページ共通（contact / legal）
══════════════════════════════════════════ */
.page-static { padding-bottom: 80px; background: #FFF5F8; }

.page-hero {
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lav-soft) 100%);
  padding: 72px 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.45) 0%, transparent 60%);
}
.page-breadcrumb {
  font-size: 11px; letter-spacing: .12em; color: var(--ink);
  opacity: .5; margin-bottom: 16px; font-family: 'Outfit', sans-serif;
}
.page-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900; color: var(--ink);
  margin: 0 0 12px; letter-spacing: .04em;
  position: relative;
}
.page-title span { color: var(--pink); }
.page-subtitle {
  font-size: 14px; color: var(--ink); opacity: .6;
  margin: 0; position: relative;
}
.legal-updated { font-size: 12px; }

/* ── 法的ページ共通 ── */
.legal-body {
  max-width: 820px; margin: 0 auto;
  padding: 48px 32px 80px;
  background: transparent;
}
.legal-notice {
  background: rgba(255,255,255,.75);
  border-left: 4px solid var(--lav);
  border-radius: 0 16px 16px 0;
  padding: 20px 24px;
  font-size: 14px; line-height: 1.9;
  margin-bottom: 40px; color: var(--ink);
  box-shadow: 0 2px 12px rgba(180,140,220,.10);
}
.legal-section {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1px solid rgba(255,180,200,.2);
}
.legal-section h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px; font-weight: 900;
  color: var(--ink);
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-soft);
  margin-bottom: 18px;
}
.legal-section h2::before {
  content: '';
  display: inline-block;
  width: 4px; height: 18px;
  background: linear-gradient(180deg, var(--pink) 0%, var(--lav) 100%);
  border-radius: 4px;
  flex-shrink: 0;
}
.legal-section p { font-size: 14px; line-height: 1.9; color: #444; margin-bottom: 10px; }
.legal-section ul, .legal-section ol {
  padding-left: 0; margin-bottom: 12px; list-style: none;
}
.legal-section ul li, .legal-section ol li {
  font-size: 14px; line-height: 1.9; color: #444;
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}
.legal-section ul li::before {
  content: '•';
  color: var(--pink);
  font-weight: 900;
  position: absolute; left: 6px;
}
.legal-section ol { counter-reset: legal-counter; }
.legal-section ol li::before {
  counter-increment: legal-counter;
  content: counter(legal-counter);
  position: absolute; left: 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--lav) 100%);
  color: #fff; font-size: 11px; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  top: 4px;
  line-height: 16px; text-align: center;
}
.legal-section a { color: var(--pink); text-decoration: underline; }
.legal-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; margin-bottom: 12px;
  border-radius: 10px; overflow: hidden;
}
.legal-table th, .legal-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--pink-soft);
  vertical-align: top;
}
.legal-table th {
  background: linear-gradient(135deg, var(--pink-soft) 0%, rgba(210,190,240,.25) 100%);
  font-weight: 700; width: 30%;
  color: var(--ink);
}
.legal-table td { background: #fff; }
.legal-footer-note {
  text-align: right; font-size: 12px;
  color: var(--ink); opacity: .4;
  margin-top: 32px;
}

/* ── 二次創作ガイドライン 目次 ── */
.fanworks-toc {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  border: 1px solid rgba(255,180,200,.25);
}
.ftoc-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px; font-weight: 900;
  color: var(--pink); margin-bottom: 12px;
  letter-spacing: .04em;
}
.fanworks-toc ol {
  padding-left: 0; list-style: none;
  counter-reset: toc-counter;
  margin: 0;
}
.fanworks-toc ol li {
  counter-increment: toc-counter;
  padding-left: 26px; position: relative;
  margin-bottom: 8px; font-size: 14px;
}
.fanworks-toc ol li::before {
  content: counter(toc-counter) '.';
  position: absolute; left: 0;
  color: var(--pink); font-weight: 700; font-size: 13px;
}
.fanworks-toc a { color: var(--ink); text-decoration: none; }
.fanworks-toc a:hover { color: var(--pink); text-decoration: underline; }
/* ── お問い合わせ ── */
.contact-body {
  max-width: 760px; margin: 0 auto;
  padding: 64px 32px;
}
.contact-notes {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 40px;
}
.contact-note-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px;
  font-size: 13px; line-height: 1.7; color: #555;
}
.cnote-icon { font-size: 20px; flex-shrink: 0; line-height: 1.4; }
.contact-note-item strong { color: var(--ink); }

.contact-error {
  background: #fff0f0; border: 1.5px solid #f5a0a0;
  color: #c00; border-radius: 10px;
  padding: 14px 20px; font-size: 14px;
  margin-bottom: 28px;
}

/* フォーム */
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.cform-group { display: flex; flex-direction: column; gap: 7px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cform-label {
  font-size: 13px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.cform-req {
  background: var(--pink); color: #fff;
  font-size: 10px; padding: 2px 7px; border-radius: 4px;
  font-weight: 700; letter-spacing: .04em;
}
.cform-opt {
  background: var(--border); color: #888;
  font-size: 10px; padding: 2px 7px; border-radius: 4px;
  font-weight: 700;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%; box-sizing: border-box;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px; color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,133,161,.15);
}
.cform-select-wrap { position: relative; }
.cform-select-wrap::after {
  content: '▾';
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; color: #aaa; font-size: 14px;
}
.contact-form select { appearance: none; cursor: pointer; }
.contact-form textarea { resize: vertical; min-height: 160px; }

.cform-agree { margin-top: 4px; }
.cform-checkbox-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink); cursor: pointer;
}
.cform-checkbox-label input[type="checkbox"] { display: none; }
.cform-check-custom {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--border); border-radius: 5px;
  background: #fff; transition: all .2s;
  position: relative;
}
.cform-checkbox-label input:checked ~ .cform-check-custom {
  background: var(--pink); border-color: var(--pink);
}
.cform-checkbox-label input:checked ~ .cform-check-custom::after {
  content: '✓'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: #fff; font-size: 12px; font-weight: 900;
}
.cform-checkbox-label a { color: var(--pink); text-decoration: underline; }

.cform-submit { text-align: center; margin-top: 8px; }
.cform-submit-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--pink), var(--lav));
  color: #fff; border: none; border-radius: 100px;
  font-size: 15px; font-weight: 900;
  letter-spacing: .06em; cursor: pointer;
  box-shadow: 0 6px 24px rgba(255,133,161,.35);
  transition: transform .2s, box-shadow .2s;
}
.cform-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,133,161,.45);
}

/* 送信完了 */
.contact-thanks {
  text-align: center; padding: 80px 24px;
}
.contact-thanks-icon {
  font-size: 56px; margin-bottom: 24px;
  animation: bounce .6s ease-out;
}
@keyframes bounce {
  0%{ transform:scale(.5);opacity:0; }
  70%{ transform:scale(1.1); }
  100%{ transform:scale(1);opacity:1; }
}
.contact-thanks h2 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 22px; font-weight: 900; margin-bottom: 16px; color: var(--ink);
}
.contact-thanks p { font-size: 14px; line-height: 1.9; color: #555; margin-bottom: 10px; }
.contact-thanks-note { font-size: 13px; color: #888; }
.contact-thanks-note a { color: var(--pink); }
.contact-back-btn {
  display: inline-block; margin-top: 32px;
  padding: 13px 36px;
  background: linear-gradient(135deg, var(--pink), var(--lav));
  color: #fff; border-radius: 100px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,133,161,.3);
  transition: transform .2s, box-shadow .2s;
}
.contact-back-btn:hover { transform: translateY(-2px); }

/* ── 二次創作ガイドライン固有 ── */
.fanworks-toc {
  background: #fff;
  border-radius: 16px; padding: 24px 28px;
  margin-bottom: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1px solid rgba(255,180,200,.2);
}
.ftoc-title {
  font-weight: 900; font-size: 13px;
  letter-spacing: .06em; color: var(--pink);
  margin-bottom: 12px;
}
.fanworks-toc ol {
  padding-left: 1.4em; margin: 0;
}
.fanworks-toc li {
  font-size: 14px; margin-bottom: 6px;
}
.fanworks-toc a { color: var(--pink); text-decoration: underline; }

.fanworks-ok-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 16px;
}
.fw-ok-item {
  display: flex; align-items: center; gap: 10px;
  background: #f0fff5; border: 1.5px solid #a0d9b0;
  border-radius: 10px; padding: 12px 16px;
  font-size: 14px; color: #2a7a3a; font-weight: 600;
}
.fw-ok-icon { font-size: 14px; }

.fw-ng-list { list-style: none; padding: 0; }
.fw-ng-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: #444;
}
.fw-ng-list li:last-child { border-bottom: none; }
.fw-ng-icon { color: #c00; font-weight: 900; flex-shrink: 0; margin-top: 2px; }

.fw-rule-box {
  border-radius: 12px; padding: 20px 24px; margin-bottom: 16px;
}
.fw-rule-box.fw-ok {
  background: #f0fff5; border: 2px solid #a0d9b0;
}
.fw-rule-box.fw-ng {
  background: #fff5f5; border: 2px solid #f5a0a0;
}
.fw-rule-label {
  font-weight: 900; font-size: 13px; margin-bottom: 10px;
}
.fw-rule-box.fw-ok .fw-rule-label { color: #2a7a3a; }
.fw-rule-box.fw-ng .fw-rule-label { color: #c00; }
.fw-rule-box p, .fw-rule-box li {
  font-size: 14px; line-height: 1.8; color: #444;
}
.fw-note {
  font-size: 12px !important;
  color: #888 !important; line-height: 1.7 !important;
}

/* ── トップページ 二次創作バナー ── */
.fanworks-banner-section {
  background: linear-gradient(135deg, var(--bg-lav) 0%, var(--bg-alt) 50%, var(--lav-soft) 100%);
  padding: 80px 64px;
}
.fanworks-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px;
}
.fanworks-banner-en {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 900;
  letter-spacing: .2em; color: var(--pink);
  margin-bottom: 12px;
}
.fanworks-banner-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900; color: #fff;
  margin: 0 0 16px; letter-spacing: .04em;
}
.fanworks-banner-title span { color: var(--pink); }
.fanworks-banner-desc {
  font-size: 14px; line-height: 1.8;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px; max-width: 440px;
}
.fanworks-banner-btn {
  display: inline-flex; align-items: center;
  padding: 13px 32px;
  background: transparent;
  border: 2px solid var(--pink);
  color: var(--pink); border-radius: 100px;
  font-size: 13px; font-weight: 900;
  letter-spacing: .06em; text-decoration: none;
  transition: all .25s;
}
.fanworks-banner-btn:hover {
  background: var(--pink); color: #fff;
  box-shadow: 0 6px 24px rgba(255,133,161,.35);
}
.fanworks-banner-deco {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; text-align: center;
}
.fanworks-banner-deco span {
  font-size: 28px; opacity: .3;
  animation: pulse 3s ease-in-out infinite;
}
.fanworks-banner-deco span:nth-child(2) { animation-delay: .4s; }
.fanworks-banner-deco span:nth-child(3) { animation-delay: .8s; }
.fanworks-banner-deco span:nth-child(4) { animation-delay: 1.2s; }
.fanworks-banner-deco span:nth-child(5) { animation-delay: .6s; opacity: .7; }
.fanworks-banner-deco span:nth-child(6) { animation-delay: 1.6s; }
.fanworks-banner-deco span:nth-child(7) { animation-delay: 2s; }
.fanworks-banner-deco span:nth-child(8) { animation-delay: 1.0s; }
.fanworks-banner-deco span:nth-child(9) { animation-delay: 1.4s; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .3; }
  50% { transform: scale(1.15); opacity: .55; }
}

/* フッター更新 */
.footer-tagline {
  font-size: 11px; letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  font-family: 'Outfit', sans-serif;
  margin: 2px 0 10px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: flex-end; }
.footer-nav a {
  color: rgba(255,255,255,.6); font-size: 12px;
  text-decoration: none; transition: color .2s;
}
.footer-nav a:hover { color: var(--pink); }

/* ── レスポンシブ ── */
@media (max-width: 768px) {
  .page-hero { padding: 48px 24px 40px; }
  .legal-body, .contact-body { padding: 40px 20px; }
  .cform-row { grid-template-columns: 1fr; }
  .fanworks-ok-grid { grid-template-columns: 1fr; }
  .fanworks-banner-section { padding: 56px 24px; }
  .fanworks-banner-inner { flex-direction: column; text-align: center; }
  .fanworks-banner-desc { margin-left: auto; margin-right: auto; }
  .fanworks-banner-right { display: none; }
  .footer-nav { justify-content: center; }
}


/* ── ヘッダーロゴ画像 ── */
.gnav-logo-img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.18));
  transition: opacity .2s;
}
.gnav-logo:hover .gnav-logo-img { opacity: .8; }

/* ── SNS セクション（新デザイン） ── */
.sns-section {
  background: linear-gradient(135deg, var(--bg-lav) 0%, var(--lav-soft) 50%, var(--bg-alt) 100%);
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}
.sns-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(197,168,255,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(255,133,161,.10) 0%, transparent 60%);
  pointer-events: none;
}
.sns-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.sns-logo-wrap { display: flex; justify-content: center; }
.sns-logo-img {
  height: 56px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(197,168,255,.5));
}
.sns-logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: .08em;
  text-shadow: 0 0 12px rgba(197,168,255,.4);
}
.sns-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.sns-en {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--ink);
}
.sns-ja {
  font-size: .9rem;
  color: var(--mid);
  letter-spacing: .12em;
}
.sns-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.sns-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: 18px;
  text-decoration: none;
  min-width: 260px;
  flex: 1;
  max-width: 340px;
  border: 1.5px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.sns-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s;
}
.sns-card:hover { transform: translateY(-4px); }
.sns-card:hover::before { opacity: 1; }
.sns-card--x {
  background: rgba(255,255,255,.85);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(180,140,200,.15);
  border-color: var(--border);
}
.sns-card--x::before { background: linear-gradient(135deg, rgba(197,168,255,.08), transparent); }
.sns-card--x:hover { border-color: var(--lav); box-shadow: 0 8px 32px rgba(180,140,200,.25); }
.sns-card--yt {
  background: rgba(255,240,240,.9);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(255,0,0,.08);
  border-color: rgba(255,180,180,.4);
}
.sns-card--yt::before { background: linear-gradient(135deg, rgba(255,60,60,.06), transparent); }
.sns-card--yt:hover { border-color: rgba(255,100,100,.5); box-shadow: 0 8px 32px rgba(255,0,0,.15); }
.sns-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
}
.sns-card--x .sns-card-icon { background: rgba(255,255,255,.12); }
.sns-card--yt .sns-card-icon { background: rgba(255,0,0,.25); }
.sns-card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.sns-card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .04em;
}
.sns-card-handle {
  font-size: .82rem;
  color: var(--light);
}
.sns-card-arrow {
  font-size: 1.1rem;
  color: var(--light);
  transition: transform .2s, color .2s;
}
.sns-card:hover .sns-card-arrow {
  transform: translateX(4px);
  color: var(--pink);
}
@media (max-width: 600px) {
  .sns-cards { flex-direction: column; align-items: center; }
  .sns-card { max-width: 100%; min-width: unset; width: 100%; }
}

/* ── フッターロゴ画像 ── */
.footer-logo-img {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(197,168,255,.4));
  transition: opacity .2s;
}
.footer-logo a:hover .footer-logo-img,
.footer-logo-img:hover { opacity: .8; }


/* ════════════════════════════════════════
   ABOUT US SECTION
════════════════════════════════════════ */
.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f8f0ff 0%, #fff0f8 40%, #f0f8ff 100%);
  padding: 100px 24px 120px;
}
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(197,168,255,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 60%, rgba(100,160,255,.12) 0%, transparent 55%);
  pointer-events: none;
}
.about-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-52%);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  letter-spacing: .05em;
  color: rgba(42,31,61,.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.about-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.about-logo-wrap { display: flex; justify-content: center; }
.about-logo-img {
  height: clamp(60px, 12vw, 110px);
  width: auto;
  max-width: 500px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(197,168,255,.5)) drop-shadow(0 4px 16px rgba(0,0,0,.15));
  animation: about-logo-glow 3s ease-in-out infinite alternate;
}
@keyframes about-logo-glow {
  from { filter: drop-shadow(0 0 20px rgba(197,168,255,.4)) drop-shadow(0 4px 16px rgba(0,0,0,.15)); }
  to   { filter: drop-shadow(0 0 40px rgba(197,168,255,.7)) drop-shadow(0 4px 20px rgba(0,0,0,.2)); }
}
.about-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--ink);
  text-shadow: 0 0 20px rgba(197,168,255,.5);
}
.about-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.about-concept-wrap {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(197,168,255,.4);
  border-radius: 20px;
  padding: 32px 44px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
}
.about-concept-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,168,255,.06), transparent 60%);
  pointer-events: none;
}
.about-concept {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .06em;
  line-height: 1.5;
  margin: 0;
}
.about-concept-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.15rem, 2.8vw, 1.55rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: .06em;
  line-height: 1.5;
  margin: 0;
}
.about-x {
  font-size: 1em;
  color: var(--lav);
  margin-right: 6px;
  font-weight: 800;
}
.about-desc {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--mid);
  letter-spacing: .06em;
  margin: 0;
}
.about-deco-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lav), transparent);
}
.about-catch {
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  color: var(--light);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 600px) {
  .about-concept-wrap { padding: 20px 20px; }
  .about-section { padding: 70px 16px 80px; }
}

/* ════════════════════════════════════════
   NEWS TOP SECTION (HOMEPAGE)
════════════════════════════════════════ */
.news-top-section {
  background: var(--bg-alt);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.news-top-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(197,168,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.news-top-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.news-top-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.news-top-en {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: .2em;
  color: var(--ink);
  line-height: 1;
}
.news-top-ja {
  font-size: .85rem;
  color: var(--light);
  letter-spacing: .12em;
}
.news-top-list { display: flex; flex-direction: column; gap: 0; }
.news-top-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 12px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background .2s;
  border-radius: 8px;
}
.news-top-item:hover { background: rgba(255,255,255,.04); }
.news-top-item-thumb {
  width: 80px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
}
.news-top-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-top-no-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: 1.2rem;
}
.news-top-item-body { flex: 1; min-width: 0; overflow: hidden; max-width: 100%; }
.news-top-item-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.news-top-cat {
  font-size: .72rem;
  background: rgba(197,168,255,.15);
  color: #c5a8ff;
  border: 1px solid rgba(197,168,255,.3);
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.news-top-date {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}
.news-top-item-title {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5;
  max-height: 2.9em;
  word-break: break-all;
}
.news-top-arrow {
  font-size: 1rem;
  color: rgba(255,255,255,.25);
  transition: transform .2s, color .2s;
  flex-shrink: 0;
}
.news-top-item:hover .news-top-arrow { transform: translateX(4px); color: rgba(255,255,255,.7); }
.news-top-footer { display: flex; justify-content: flex-end; margin-top: 24px; }
.news-top-viewall {
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  color: rgba(197,168,255,.8);
  text-decoration: none;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(197,168,255,.3);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.news-top-viewall:hover { color: #c5a8ff; border-color: #c5a8ff; }
.news-top-empty { color: rgba(255,255,255,.4); font-size: .9rem; text-align: center; padding: 40px 0; }
@media (max-width: 600px) {
  .news-top-item-thumb { width: 60px; height: 42px; }
  .news-top-item { gap: 10px; padding: 14px 8px; }
}

/* ════════════════════════════════════════
   NEWS ARCHIVE PAGE (home.php)
════════════════════════════════════════ */
.news-archive-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-lav) 100%);
  padding: 80px 24px 60px;
  text-align: center;
}
.news-archive-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(197,168,255,.20) 0%, transparent 60%);
  pointer-events: none;
}
.news-archive-hero-inner { position: relative; z-index: 1; }
.news-archive-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 900;
  color: rgba(42,31,61,.05);
  letter-spacing: .1em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.news-archive-title-wrap { position: relative; z-index: 1; }
.news-archive-en {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: .2em;
  line-height: 1;
  margin: 0 0 8px;
}
.news-archive-ja {
  font-size: .85rem;
  color: var(--lav);
  letter-spacing: .15em;
}
.news-archive-section {
  background: var(--bg);
  padding: 60px 24px 80px;
  min-height: 60vh;
}
.news-archive-inner { max-width: 800px; margin: 0 auto; }
.news-archive-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.news-archive-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  border-radius: 10px;
  transition: background .2s;
}
.news-archive-item:hover { background: rgba(255,255,255,.04); }
.news-archive-item-thumb {
  width: 120px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--lav-soft);
  border: 1px solid var(--border);
}
.news-archive-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-archive-no-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.5rem;
}
.news-archive-no-thumb-logo { width: 70%; height: auto; object-fit: contain; opacity: .3; }
.news-archive-item-body { flex: 1; min-width: 0; }
.news-archive-item-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.news-archive-cat {
  font-size: .72rem;
  background: linear-gradient(135deg, var(--pink), var(--lav));
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: .04em;
}
.news-archive-date {
  font-size: .8rem;
  color: var(--light);
}
.news-archive-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.5;
}
.news-archive-item-excerpt {
  font-size: .82rem;
  color: var(--mid);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-archive-arrow {
  font-size: 1.1rem;
  color: rgba(255,255,255,.2);
  transition: transform .2s, color .2s;
  flex-shrink: 0;
}
.news-archive-item:hover .news-archive-arrow { transform: translateX(4px); color: rgba(255,255,255,.7); }
.news-archive-empty { color: rgba(255,255,255,.4); text-align: center; padding: 60px 0; }
/* ページネーション */
.news-pagination { display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 48px; }
.news-page-nav { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.news-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  transition: all .2s;
}
.news-page-btn:hover { border-color: #c5a8ff; color: #c5a8ff; background: rgba(197,168,255,.08); }
.news-page-btn.is-current { background: #c5a8ff; border-color: #c5a8ff; color: #0a0a14; }
.news-page-prev, .news-page-next { font-size: 1.2rem; }
.news-back-top {
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  padding: 10px 28px;
  letter-spacing: .1em;
  transition: all .2s;
}
.news-back-top:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.05); }
@media (max-width: 600px) {
  .news-archive-item { flex-direction: column; align-items: flex-start; gap: 12px; }
  .news-archive-item-thumb { width: 100%; height: 160px; }
  .news-archive-arrow { display: none; }
}

/* ════════════════════════════════════════
   SINGLE ARTICLE (index.php)
════════════════════════════════════════ */
.single-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.single-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
}
.single-breadcrumb a { color: rgba(197,168,255,.6); text-decoration: none; }
.single-breadcrumb a:hover { color: #c5a8ff; }
.single-breadcrumb-sep { color: rgba(255,255,255,.2); }
.single-header {
  padding: 32px 0 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.single-header-inner {}
.single-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.single-cat {
  font-size: .75rem;
  background: linear-gradient(135deg, var(--pink), var(--lav));
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 3px 10px;
  letter-spacing: .04em;
}
.single-date {
  font-size: .82rem;
  color: var(--light);
}
.single-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  letter-spacing: .02em;
  margin: 0;
}
.single-eyecatch {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.single-eyecatch-img { width: 100%; height: auto; display: block; }
.single-content-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px 40px;
  margin-bottom: 48px;
  box-shadow: 0 2px 16px var(--shadow);
}
.single-content {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink);
}
.single-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  border-left: 3px solid var(--lav);
  padding-left: 12px;
  margin: 36px 0 16px;
}
.single-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--mid);
  margin: 28px 0 12px;
}
.single-content p { margin: 0 0 20px; }
.single-content a { color: #c5a8ff; }
.single-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 16px 0; }
.single-content ul, .single-content ol { padding-left: 24px; margin: 0 0 20px; }
.single-content li { margin-bottom: 6px; }
.single-footer { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.single-footer-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.single-nav-btn {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 8px 14px;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .2s;
}
.single-nav-btn:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.single-nav-list {
  font-size: .82rem;
  color: rgba(197,168,255,.7);
  text-decoration: none;
  border: 1px solid rgba(197,168,255,.3);
  border-radius: 8px;
  padding: 8px 16px;
  transition: all .2s;
  white-space: nowrap;
}
.single-nav-list:hover { color: #c5a8ff; border-color: #c5a8ff; }
.single-back-top {
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 10px 28px;
  letter-spacing: .1em;
  transition: all .2s;
}
.single-back-top:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.04); }
.page-article { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; }
.page-article-header { margin-bottom: 32px; }
.page-article-title { font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; color: #fff; }
.page-article-content { color: rgba(255,255,255,.8); line-height: 1.9; font-size: 1rem; }
@media (max-width: 600px) {
  .single-content-wrap { padding: 24px 20px; }
  .single-article { padding: 0 16px 60px; }
}

/* ── 個別記事・アーカイブ ページ共通裌地 ── */
.page-single-main {
  background: var(--bg);
  min-height: 100vh;
}

/* ── 個別記事・一覧ページ ボディ背景 ── */
body.single,
body.blog {
  background: #06040f !important;
}/* ════════════════════════════════════════
   NEWS TOP SECTION (HOMEPAGE) カードボックス形式
════════════════════════════════════════ */
.news-top-section {
  background: var(--bg-alt);
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}
.news-top-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(100,140,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.news-top-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.news-top-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 40px;
}
.news-top-en {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: .2em;
  color: var(--ink);
  line-height: 1;
}
.news-top-ja {
  font-size: .85rem;
  color: var(--light);
  letter-spacing: .12em;
}
/* カードグリッド */
.news-top-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 0;
}
.news-top-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.news-top-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  border-color: rgba(197,168,255,.3);
}
.news-top-item-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--lav-soft);
  flex-shrink: 0;
  position: relative;
}
.news-top-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.news-top-item:hover .news-top-item-thumb img {
  transform: scale(1.06);
}
.news-top-no-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 2rem;
}
.news-top-item-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-top-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-top-cat {
  font-size: .7rem;
  background: linear-gradient(135deg, var(--pink), var(--lav));
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.news-top-date {
  font-size: .76rem;
  color: var(--light);
  letter-spacing: .04em;
}
.news-top-item-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-top-arrow { display: none; }
.news-top-footer {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.news-top-viewall {
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: .1em;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  padding: 12px 36px;
  transition: all .25s;
}
.news-top-viewall:hover {
  color: var(--ink);
  border-color: var(--pink);
  background: rgba(255,133,161,.06);
}
.news-top-empty {
  color: var(--light);
  font-size: .9rem;
  text-align: center;
  padding: 40px 0;
}
@media (max-width: 700px) {
  .news-top-list { grid-template-columns: 1fr; }
}



/* ── 個別記事 副タイトルボックス ── */
.single-subtitle-box {
  margin-top: 20px;
  background: var(--lav-soft);
  border: 1.5px solid var(--lav);
  border-left: 4px solid var(--lav);
  border-radius: 10px;
  padding: 14px 20px;
}
.single-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .04em;
  line-height: 1.6;
  margin: 0;
}


/* ============================================
   統一スタイル修正 - Now on Air スタイルに統一
   ============================================ */

/* NEWSセクション：日本語ラベルをOutfitフォントのスモールラベルに */
.news-top-ja {
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--light) !important;
  margin-bottom: 8px !important;
}

/* NEWSセクション：NEWS文字をグラデーションテキストに */
.news-top-en {
  font-family: 'Zen Maru Gothic', sans-serif !important;
  font-size: clamp(28px, 5vw, 40px) !important;
  font-weight: 900 !important;
  color: var(--ink) !important;
  letter-spacing: normal !important;
  background: linear-gradient(135deg, var(--pink), var(--lav)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  line-height: 1.1 !important;
}

/* 二次創作ガイドライン：FAN CREATIONラベルをスモールラベルに */
.fanworks-banner-en {
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  color: var(--light) !important;
  margin-bottom: 8px !important;
}

/* 二次創作ガイドライン：白フォント問題を修正 */
.fanworks-banner-title {
  color: var(--ink) !important;
}

/* ガイドラインのspan（グラデーション表示） */
.fanworks-banner-title span {
  color: var(--pink) !important;
  background: linear-gradient(135deg, var(--pink), var(--lav)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* 説明文の白フォント問題を修正 */
.fanworks-banner-desc {
  color: var(--ink) !important;
  opacity: 0.75 !important;
}

/* お知らせ一覧を見るボタン：タレント一覧と同スタイルに */
.news-top-viewall {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 28px !important;
  background: linear-gradient(135deg, var(--pink), var(--lav)) !important;
  color: #fff !important;
  border-radius: 100px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  transition: all 0.2s !important;
  box-shadow: 0 4px 20px rgba(255, 133, 161, 0.25) !important;
  text-decoration: none !important;
  border: none !important;
}
.news-top-viewall:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(255, 133, 161, 0.35) !important;
  color: #fff !important;
}

/* ガイドラインを読むボタン：タレント一覧と同スタイルに */
.fanworks-banner-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 28px !important;
  background: linear-gradient(135deg, var(--pink), var(--lav)) !important;
  color: #fff !important;
  border-radius: 100px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  transition: all 0.2s !important;
  box-shadow: 0 4px 20px rgba(255, 133, 161, 0.25) !important;
  text-decoration: none !important;
  border: none !important;
}
.fanworks-banner-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(255, 133, 161, 0.35) !important;
  color: #fff !important;
}


/* ============================================================
   GOODS PAGE
   ============================================================ */

/* ── HERO ── */
#goods-page {
  padding-top: 60px;
}
.goods-hero {
  position: relative;
  padding: 80px 64px 72px;
  background: linear-gradient(135deg, var(--bg-lav) 0%, var(--bg) 50%, var(--bg-alt) 100%);
  overflow: hidden;
  text-align: center;
}
.goods-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.goods-hero-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 12px;
}
.goods-hero-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 20px;
}
.goods-hero-title span {
  color: var(--pink);
  background: linear-gradient(135deg, var(--pink), var(--lav));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.goods-hero-sub {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
}
.goods-hero-deco {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0.18;
  font-size: 36px;
  color: var(--lav);
}
.goods-deco-star { display: block; }

/* ── SHOP SECTION ── */
.goods-shop-section {
  padding: 80px 64px;
  background: var(--bg);
}
.goods-shop-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.goods-shop-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(135deg, var(--bg-lav) 0%, var(--bg-alt) 60%, var(--bg) 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(197,168,255,0.18);
  position: relative;
}
.goods-shop-card-deco {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  opacity: 0.35;
  z-index: 1;
  letter-spacing: 6px;
}
.goods-shop-card-body {
  flex: 1;
  padding: 56px 56px;
  position: relative;
  z-index: 2;
}
.goods-shop-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 12px;
}
.goods-shop-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.2;
}
.goods-shop-title span {
  color: var(--pink);
  background: linear-gradient(135deg, var(--pink), var(--lav));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.goods-shop-desc {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 440px;
}
.goods-shop-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.goods-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255,255,255,0.7);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  border: 1px solid var(--border);
}
.goods-feature-icon {
  font-size: 16px;
}
.goods-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--pink), var(--lav));
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(255,133,161,0.3);
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.goods-shop-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255,133,161,0.45);
  color: #fff;
}
.goods-shop-card-img {
  width: 360px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.goods-shop-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,133,161,0.15), rgba(197,168,255,0.25));
}
.goods-shop-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.goods-img-icon {
  font-size: 72px;
  display: block;
}
.goods-img-text {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--pink);
  line-height: 1.6;
}

/* ── INFO SECTION ── */
.goods-info-section {
  padding: 80px 64px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  text-align: center;
}
.goods-info-inner {
  max-width: 960px;
  margin: 0 auto;
}
.goods-info-label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 12px;
}
.goods-info-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 48px;
}
.goods-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.goods-info-card {
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.goods-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(197,168,255,0.2);
}
.goods-info-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.goods-info-card h3 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  margin: 0 0 12px;
}
.goods-info-card p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.8;
  margin: 0;
}

/* ── CTA ── */
.goods-cta-section {
  padding: 80px 64px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--lav) 100%);
  text-align: center;
}
.goods-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.goods-cta-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 32px;
}
.goods-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 48px;
  background: #fff;
  color: var(--pink);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
}
.goods-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.18);
  color: var(--lav);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .goods-hero { padding: 60px 24px; }
  .goods-shop-section { padding: 60px 24px; }
  .goods-shop-card { flex-direction: column; }
  .goods-shop-card-body { padding: 40px 28px; }
  .goods-shop-card-img { width: 100%; }
  .goods-shop-img-wrap { min-height: 200px; }
  .goods-info-section { padding: 60px 24px; }
  .goods-info-grid { grid-template-columns: 1fr; }
  .goods-cta-section { padding: 60px 24px; }
  .goods-hero-deco { display: none; }
}
@media (max-width: 600px) {
  .goods-shop-features { gap: 10px; }
  .goods-feature-item { font-size: 12px; }
}
