[x-cloak] { display: none !important; }

html {
  scroll-behavior: smooth;
}

body {
  background-color: #463d33;
  background-image: linear-gradient(180deg, #4d4438 0%, #3c342b 100%);
}

/* ── ヒーロー ─────────────────────────── */
.tj-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .tj-hero { background-attachment: scroll; }
}

/* 明るい写真の上でもロゴ・文字がくっきり見えるよう、中央に暗いグラデーションを敷く */
.tj-hero-glow {
  width: min(94vw, 760px);
  height: min(64vh, 520px);
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.34) 42%, rgba(0,0,0,0) 74%);
  filter: blur(8px);
}

.tj-logo-shadow {
  filter: drop-shadow(0 10px 26px rgba(0,0,0,0.75)) drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

.tj-edition-text {
  text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.5);
}

/* チケット先行販売バッジ：目を引くよう控えめにパルスさせる */
.tj-presale-badge {
  animation: tj-presale-pulse 2.4s ease-in-out infinite;
}
@keyframes tj-presale-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(232, 84, 47, 0.45); transform: scale(1); }
  50%      { box-shadow: 0 4px 24px rgba(232, 84, 47, 0.8); transform: scale(1.035); }
}
@media (prefers-reduced-motion: reduce) {
  .tj-presale-badge { animation: none; }
}

/* ── レイアウト共通 ───────────────────── */
.tj-section {
  padding: 72px 20px;
  max-width: 1120px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.tj-section:last-of-type { border-bottom: none; }
.tj-container { width: 100%; }

.tj-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: #cfa428;
  text-align: center;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.tj-lead {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}
.tj-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  color: #cfa428;
  text-align: center;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

/* ── パネル / カード ──────────────────── */
.tj-panel {
  background: rgba(74, 64, 51, 0.55);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.22);
}

.tj-card {
  display: block;
  width: 100%;
  background: rgba(74, 64, 51, 0.5);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
  cursor: pointer;
}
.tj-card:hover {
  transform: translateY(-4px);
  border-color: rgba(207,164,40,0.55);
  background: rgba(84, 73, 58, 0.58);
  box-shadow: 0 14px 26px rgba(0,0,0,0.25);
}
.tj-card:focus-visible {
  outline: 2px solid #cfa428;
  outline-offset: 2px;
}

.tj-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #cfa428;
}

/* ── バッジ ───────────────────────────── */
.tj-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: rgba(255,255,255,0.24);
  color: #fff;
}
.tj-badge[data-badge="NEW"],
.tj-badge[data-badge="LIVE配信中"] { background: #e8542f; }
.tj-badge[data-badge="RESULT"] { background: rgba(255,255,255,0.28); }
.tj-badge[data-badge="BOOTH"] { background: #8a7328; }
.tj-badge[data-badge="配信予定"] { background: rgba(255,255,255,0.28); }
.tj-badge[data-badge="アーカイブ公開中"] { background: #5a5248; }

/* ── 本文中の箇条書き ─────────────────── */
.tj-list, .tj-modal-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tj-list li, .tj-modal-body li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  line-height: 1.6;
}
.tj-list li::before, .tj-modal-body li::before {
  content: "✓";
  color: #cfa428;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}
.tj-modal-body p { margin-bottom: 12px; line-height: 1.75; }
.tj-modal-body p:last-child { margin-bottom: 0; }

/* ── 出場者：横スクロールカルーセル ──────── */
.tj-scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 16px;
  scrollbar-width: none;
}
.tj-scroll-row::-webkit-scrollbar { display: none; }

.tj-player-card {
  flex: 0 0 auto;
  width: 240px;
  background: rgba(74, 64, 51, 0.5);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  transition: transform .25s ease, border-color .25s ease;
  cursor: pointer;
}
.tj-player-card:hover {
  transform: translateY(-4px);
  border-color: rgba(207,164,40,0.55);
}

.tj-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(20,17,13,0.35);
  border: 1px solid rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background .2s ease, transform .2s ease;
}
.tj-arrow:hover {
  background: rgba(20,17,13,0.6);
  transform: translateY(-50%) scale(1.08);
}

/* ── line-clamp フォールバック（念のため） ── */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
