/*
Theme Name: mp_theme
Version: 2.0.0
Text Domain: mp-theme
*/

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --off-white:  #FFFFFF;
  --paper:      #EFEFED;
  --ink:        #111111;
  --ink-light:  #555555;
  --ink-faint:  #AAAAAA;
  --rule:       rgba(17,17,17,0.10);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --max-w:   480px;
  --sidebar: 52px;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; }

/* ─── Intro Screen ───────────────────────────────────────────── */
#intro-screen {
  position: fixed; inset: 0;
  background: var(--ink);
  display: flex; /* デフォルト表示、JSで初回以外は即非表示 */
  align-items: center; justify-content: center;
  z-index: 300;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
  pointer-events: all;
}
#intro-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-logo {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 600; letter-spacing: 0.06em;
  color: #fff;
  animation: logoPulse 2s var(--ease) forwards;
}
.intro-logo-img {
  display: flex; align-items: center; justify-content: center;
  animation: logoPulse 2s var(--ease) forwards;
}
.intro-logo-img img {
  max-width: 200px; max-height: 120px;
  width: auto; height: auto; object-fit: contain;
  filter: brightness(0) invert(1);
}
@keyframes logoPulse {
  0%   { opacity: 0; transform: scale(0.94); }
  30%  { opacity: 1; transform: scale(1); }
  80%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.04); }
}

/* ─── Shell ──────────────────────────────────────────────────── */
#shell {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

/* ─── Main Column ────────────────────────────────────────────── */
#main-col {
  width: 100%;
  max-width: var(--max-w);
  background: var(--white);
  min-height: 100vh;
  position: relative;
}

/* ─── Navigation ─────────────────────────────────────────────── */
#site-header {
  position: static;
  background: var(--white);
  padding: 24px 20px;
  display: flex; align-items: center;
  max-width: var(--max-w); width: 100%; box-sizing: border-box;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; color: var(--ink);
}
.nav-logo-img {
  height: 56px; width: auto;
  display: block; object-fit: contain;
}

/* スプラッシュ表示中はハンバーガーを非表示 */
#intro-screen:not(.hidden) ~ * #mob-hbg,
body:has(#intro-screen:not(.hidden)) #mob-hbg { display: none !important; }

/* ─── Hamburger（fixed・スクロール追随） ────────────────────── */
#mob-hbg {
  position: fixed;
  top: 30px;
  left: min(calc(50% + 176px), calc(100% - 64px));
  right: auto;
  z-index: 99999;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.admin-bar #mob-hbg { top: 62px; }
@media screen and (max-width: 782px) {
  .admin-bar #mob-hbg { top: 76px; }
}
#mob-hbg span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
#mob-hbg.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
#mob-hbg.open span:nth-child(2) { opacity: 0; }
#mob-hbg.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile Drawer ──────────────────────────────────────────── */
#mob-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  z-index: 99998;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0;
}
#mob-drawer-logo {
  text-align: center;
  margin-bottom: 24px;
}
#mob-drawer-logo a {
  display: inline-block !important;
  width: auto !important;
  padding: 0 !important;
  border: none !important;
}
.drawer-logo-img { height: 36px; width: auto; display: block; object-fit: contain; opacity: 0.7; }
#mob-drawer.open { transform: translateX(0); }
#mob-drawer-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: var(--ink-faint); padding: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
#mob-drawer-close:hover { color: var(--ink); }
#mob-drawer a {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-light);
  padding: 16px 0;
  width: 200px; text-align: center;
  display: block; transition: color 0.2s;
  text-decoration: none;
  border: none;
}
#mob-drawer a:hover { color: var(--ink); }
#mob-drawer-sns {
  display: flex; gap: 20px; align-items: center; flex-wrap: nowrap;
  margin-top: 28px; padding-top: 24px;
  border-top: 0.5px solid var(--rule);
  max-width: 320px; width: 100%; justify-content: center;
  overflow: visible;
}
#mob-drawer-sns a {
  color: var(--ink-faint);
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: none; padding: 0;
  transition: color 0.2s;
}
#mob-drawer-sns a:hover { color: var(--ink); background: none; }
#mob-drawer-sns svg { width: 24px; height: 24px; }

/* ─── Hero ───────────────────────────────────────────────────── */
#hero { position: relative; width: 100%; padding: 0 20px 0; }
.hero-image {
  width: 100%; aspect-ratio: 1 / 1;
  overflow: hidden; position: relative;
  background: var(--paper);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── Section Utility ────────────────────────────────────────── */
.ssec { padding: 56px 20px; }
.ssec-off { padding: 56px 20px; background: var(--off-white); }

/* ★ セクションラベル大きく */
.sec-label {
  font-family: var(--font-mono);
  font-size: 16px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-light); margin-bottom: 36px;
  display: flex; align-items: center; gap: 12px;
}.sec-label::after { content: ''; flex: 1; height: 0.5px; background: var(--rule); }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-line {
  display: inline-block;
  padding: 11px 26px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 0.5px solid var(--ink);
  background: transparent; color: var(--ink);
  transition: background 0.2s, color 0.2s;
  border-radius: 1px;
}
.btn-line:hover { background: var(--ink); color: var(--white); }
.btn-line:disabled { opacity: 0.35; pointer-events: none; }
.view-more-wrap { margin-top: 32px; text-align: center; }

/* ─── Banner Carousel ────────────────────────────────────────── */
.banner-carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.banner-carousel {
  display: flex;
  gap: 12px;
  padding: 0 20px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.banner-carousel::-webkit-scrollbar { display: none; }
.banner-slide {
  flex: 0 0 80%;
  scroll-snap-align: center;
  display: block;
  text-decoration: none;
  border-radius: 2px;
  overflow: hidden;
}
.banner-slide img {
  width: 100%; height: auto;
  display: block;
  object-fit: cover;
}
/* 両端グラデーション */
.banner-fade-left,
.banner-fade-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  pointer-events: none;
  z-index: 2;
}
.banner-fade-left  { left: 0;  background: linear-gradient(to right, var(--white), transparent); }
.banner-fade-right { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

/* ─── Information ────────────────────────────────────────────── */
.info-list { display: flex; flex-direction: column; margin: -16px 0; }
.info-item {
  display: grid; grid-template-columns: 96px 1fr; gap: 0; align-items: center;
  padding: 16px 0; border-bottom: 0.5px solid var(--rule);
  cursor: pointer; transition: background 0.2s;
  text-decoration: none; color: inherit;
}
.info-item:first-child { border-top: none; }
.info-item:last-child  { border-bottom: none; }
.info-item:hover { background: var(--off-white); }
.info-item:hover .info-title { text-decoration: underline; text-underline-offset: 3px; }

.info-date {
  width: 72px; flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-start;
  gap: 1px;
}
.info-date .live-type-badge { align-self: flex-start; }
.info-date-md { display: flex; align-items: baseline; gap: 0; line-height: 1.2; }
.info-date-month {
  font-family: var(--font-mono);
  font-size: clamp(15px, 3.8vw, 20px); font-weight: 400; color: var(--ink-light);
  letter-spacing: -0.02em; line-height: 1;
}
.info-date-slash {
  font-family: var(--font-mono);
  font-size: clamp(15px, 3.8vw, 20px); color: var(--ink-faint);
  line-height: 1; margin: 0 1px;
}
.info-date-day {
  font-family: var(--font-mono);
  font-size: clamp(15px, 3.8vw, 20px); font-weight: 400; line-height: 1;
  color: var(--ink-light); letter-spacing: -0.02em;
}
.info-date-sub {
  font-family: var(--font-mono);
  font-size: 9px; color: var(--ink-faint);
  letter-spacing: 0.04em; margin-top: 3px;
  line-height: 1.4;
}
.info-right {
  display: flex; flex-direction: column; gap: 4px;
  padding-left: 12px;
}
.info-tag {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
}
.info-title { font-size: 14px; font-weight: 500; line-height: 1.5; word-break: auto-phrase; overflow-wrap: anywhere; }

/* ─── Discography ────────────────────────────────────────────── */
.disc-list { display: flex; flex-direction: column; margin: 0 0 -16px; }
.disc-item {
  display: grid; grid-template-columns: 96px 1fr;
  align-items: center; gap: 0;
  padding: 16px 0; border-bottom: 0.5px solid var(--rule);
  cursor: pointer; transition: background 0.2s;
}
.disc-item.has-url { grid-template-columns: 96px 1fr auto; }
.disc-item:first-child { border-top: none; padding-top: 0; }
.disc-item:last-child  { border-bottom: none; }
.disc-item:hover { background: none; }
.disc-item-inner {
  display: contents;
  text-decoration: none; color: inherit;
}
.disc-play:hover { background: var(--ink); }
.disc-play:hover svg path { fill: var(--white); }

.disc-jacket {
  width: 72px; height: 72px;
  background: var(--paper); overflow: hidden; flex-shrink: 0;
}
.disc-jacket img { width: 100%; height: 100%; object-fit: cover; }
.disc-jacket-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px;
  color: rgba(17,17,17,0.2);
  background: linear-gradient(135deg, var(--paper) 0%, var(--off-white) 100%);
}
.disc-info { display: flex; flex-direction: column; justify-content: center; gap: 3px; min-width: 0; padding-left: 12px; }
.disc-title {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500; line-height: 1.5; letter-spacing: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.disc-meta {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.04em; line-height: 1.5;
  color: var(--ink-faint);
}
.disc-play-col {
  display: flex; align-items: center;
}

/* ─── Schedule (Live) ────────────────────────────────────────── */
.live-list { display: flex; flex-direction: column; margin: -16px 0 0; }
.live-item {
  display: flex;
  align-items: center;
  border-bottom: 0.5px solid var(--rule);
}
.live-item:first-child { border-top: none; }
.live-item:last-child  { border-bottom: none; }
/* リンク部分：日付+本文 グリッド */
.live-item-link {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0;
  align-items: center;
  padding: 16px 0;
  flex: 1;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.live-item-link:hover .live-title { text-decoration: underline; text-underline-offset: 3px; }
/* ボタン列 */
.live-sold {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); border: 0.5px solid var(--ink);
  width: 52px; height: 52px; border-radius: 50%;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  text-align: center; transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
a.live-ticket { color: var(--ink); cursor: pointer; }
a.live-ticket:hover { background: var(--ink); color: var(--white); }
.live-btn-col {
  display: flex; align-items: center; align-self: center;
  padding-left: 12px; flex-shrink: 0;
}
.live-item-past { opacity: 0.5; }
.live-item-past .live-title { color: var(--ink-faint); }

/* 日付エリア */
.live-date {
  width: 72px; flex-shrink: 0;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-start;
  gap: 1px;
}
.live-date-md { display: flex; align-items: baseline; gap: 0; line-height: 1.2; }
.live-month {
  font-family: var(--font-mono);
  font-size: clamp(15px, 3.8vw, 20px); font-weight: 400; color: var(--ink-light);
  letter-spacing: -0.02em;
}
.live-slash {
  font-family: var(--font-mono);
  font-size: clamp(15px, 3.8vw, 20px); color: var(--ink-faint);
  line-height: 1; margin: 0 1px;
}
.live-day {
  font-family: var(--font-mono);
  font-size: clamp(15px, 3.8vw, 20px); font-weight: 400; color: var(--ink-light);
  letter-spacing: -0.02em; line-height: 1;
}
.live-date-sub {
  font-family: var(--font-mono);
  font-size: 9px; color: var(--ink-faint);
  letter-spacing: 0.04em; margin-top: 3px;
  line-height: 1.4;
}
.live-type-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
  padding-top: 4px;
  border-top: 0.5px solid var(--ink-faint);
  line-height: 1.4;
  width: 100%;
}

.live-body { display: flex; flex-direction: column; gap: 3px; padding-left: 12px; }
.live-title { font-size: 14px; font-weight: 500; line-height: 1.5; }
.live-event-name {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-faint);
}
.live-venue { font-size: 11px; color: var(--ink-faint); font-family: var(--font-mono); letter-spacing: 0.06em; line-height: 1.5; text-transform: uppercase; }
/* ★ ENDED はもう少し明確にグレー */

/* ─── Goods ──────────────────────────────────────────────────── */
.goods-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.goods-item {
  background: var(--white);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.goods-thumb {
  aspect-ratio: 1 / 1; overflow: hidden;
  background: var(--paper);
}
.goods-thumb-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.goods-thumb-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--paper) 0%, var(--off-white) 100%);
}
.goods-body {
  padding: 14px 14px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.goods-name {
  font-size: 13px; font-weight: 500; line-height: 1.4;
}
.goods-price {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--ink-light);
}
.goods-buy { display: none; } /* 非表示 */
.goods-tile-link {
  display: block; text-decoration: none; color: inherit;
  transition: opacity 0.2s;
}
.goods-tile-link:hover { opacity: 0.8; }

/* ─── Biography ──────────────────────────────────────────────── */
.bio-photo {
  width: 100%;
  margin-bottom: 28px;
}
.bio-photo img { width: 100%; height: auto; display: block; }
.bio-photo-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #E4E0DA 0%, #CCC8C0 100%);
}
.bio-photo-ph span {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(17,17,17,0.3);
}

/* ★ バンドプロフィール：引用風の装飾 */
.mp-content {
  font-size: 13px; line-height: 2; color: var(--ink-light);
  margin-bottom: 40px;
  padding: 32px 28px;
  background: var(--off-white);
  border-radius: 1px;
  position: relative;
}
/* 上下に細いアクセントライン */
.mp-content::before,
.mp-content::after {
  content: '';
  position: absolute;
  left: 28px; right: 28px;
  height: 1px;
}
.mp-content::before { top: 0;    background: linear-gradient(to right, var(--ink-faint), transparent); }
.mp-content::after  { bottom: 0; background: linear-gradient(to left,  var(--ink-faint), transparent); }
/* 記事ページではラインなし・横幅フル */
.mp-content--noline::before,
.mp-content--noline::after { display: none; }
.mp-content--noline {
  padding-left: 0; padding-right: 0;
  background: transparent;
}
.mp-content p { margin-bottom: 1em; }
.mp-content p:last-child { margin-bottom: 0; }
.mp-content strong { font-weight: 500; color: var(--ink); }
.mp-content a { text-decoration: underline; text-underline-offset: 3px; }
.mp-content .has-text-align-center { text-align: center; }
.mp-content .has-text-align-right  { text-align: right; }

.members-sublabel {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 16px;
  text-align: center;
}
/* メンバーが5人：2+2+1 → 最後の1枚を2カラム幅にして中央寄せ */
.members-grid {
  display: flex; flex-direction: column; gap: 20px;
}
.members-row {
  display: grid; gap: 16px;
}
.members-row--top {
  grid-template-columns: 1fr 1fr;
  width: calc(66.6% - 5px);
  margin: 0 auto;
}
.members-row--bottom {
  grid-template-columns: 1fr 1fr 1fr;
}
.member-tile {
  background: transparent;
  padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  padding-top: 16px;
  align-items: center;
  text-align: center;
}
/* アクセントラインを削除 */
.member-tile::before { display: none; }

.member-sns {
  display: flex; gap: 16px; flex-direction: row; justify-content: center;
  margin-top: 4px; padding-top: 0;
}
.member-name {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500; line-height: 1; letter-spacing: 0.01em;
}
.member-name-en {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em; line-height: 1;
  color: var(--ink-faint);
}
.member-role {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1;
  color: var(--ink);
}
/* 上段2人のロール欄を同じ高さに揃える */
.members-row--top .member-role {
  display: flex; align-items: center; justify-content: center;
}
.member-sns a {
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  transition: color 0.2s, opacity 0.2s;
}
.member-sns a:hover { opacity: 0.5; }
.member-sns svg { width: 20px; height: 20px; flex-shrink: 0; }
.member-sns svg { width: 16px; height: 16px; flex-shrink: 0; }
.member-sns-id { display: none; }

/* ─── Contact ────────────────────────────────────────────────── */
.contact-lead {
  font-family: var(--font-body);
  font-size: 13px; letter-spacing: 0.02em;
  color: var(--ink-light); margin-bottom: 28px;
}
.wpcf7-form .form-row { margin-bottom: 16px; display: flex; flex-direction: column; gap: 4px; }
.wpcf7-form label {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-light); display: block; margin-bottom: 4px;
}

/* Turnstile ウィジェット整列 */
.wpcf7-form .wpcf7-turnstile,
.wpcf7-form [data-sitekey] {
  display: block;
  margin: 16px 0;
}
.cf-turnstile,
.wpcf7-turnstile iframe {
  display: block !important;
  margin: 0 !important;
  transform-origin: left top;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: var(--white);
  border: 0.5px solid rgba(17,17,17,0.2);
  border-radius: 1px;
  padding: 10px 12px;
  font-family: var(--font-body); font-size: 13px; color: var(--ink);
  outline: none; transition: border-color 0.2s;
  appearance: none; -webkit-appearance: none;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--ink); }
.wpcf7-form textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.wpcf7-form input[type="submit"] {
  display: block; margin: 0 auto;
  padding: 8px 20px;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  background: transparent; color: var(--ink);
  border: 0.5px solid var(--ink); border-radius: 1px;
  transition: background 0.2s, color 0.2s; cursor: pointer;
  width: 100%;
}
.wpcf7-form input[type="submit"]:hover { background: var(--ink); color: var(--white); }
.wpcf7-not-valid-tip { font-size: 11px; color: #c0392b; margin-top: 4px; }
.wpcf7-response-output {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.06em;
  margin-top: 16px; padding: 12px;
  border: 0.5px solid var(--rule); color: var(--ink-light);
}

/* チケットボタン（塗りつぶし） */
.btn-tickets {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--ink); color: var(--white);
  border: 1px solid var(--ink);
  padding: 8px 18px; display: inline-block;
  text-decoration: none; transition: background 0.2s, color 0.2s;
  cursor: pointer; border-radius: 1px;
}
.btn-tickets:hover { background: transparent; color: var(--ink); }
.btn-tickets--soldout { background: transparent; color: var(--ink-faint); border-color: var(--rule); }
.btn-tickets--soldout:hover { background: transparent; color: var(--ink-faint); border-color: var(--ink-faint); }

/* ─── Archive Pagination ─────────────────────────────────────── */
.archive-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 40px;
}

/* ─── Archive Type Filter ────────────────────────────────────── */
.archive-filter {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 32px;
}
.archive-filter a {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 7px 16px;
  border: 0.5px solid var(--rule);
  color: var(--ink-faint); text-decoration: none;
  border-radius: 1px; transition: all 0.18s;
  display: inline-block;
}
.archive-filter a:hover {
  border-color: var(--ink); color: var(--ink);
}
.archive-filter a.active {
  border-color: var(--ink); background: var(--ink); color: var(--white);
}

/* ─── Video Thumbnail Carousel ───────────────────────────────── */
.video-play-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.video-thumb-slide:hover .video-play-overlay { background: rgba(0,0,0,0.18); }
.video-embed-wrap {
  position: relative; width: 100%; padding-bottom: 56.25%;
}
.video-embed-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.video-arrow {
  position: absolute; top: calc(50% - 15px); transform: translateY(-50%);
  background: rgba(255,255,255,0.85); border: 0.5px solid var(--rule);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--ink-light);
  transition: background 0.2s, color 0.2s; z-index: 3; border-radius: 1px;
}
.video-arrow:hover { background: var(--white); color: var(--ink); }
.video-arrow--prev { left: 4px; }
.video-arrow--next { right: 4px; }
.video-title {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.1em;
  color: var(--ink-faint); margin-top: 10px;
  text-align: center;
}
.video-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 16px;
}
.video-prev, .video-next {
  background: none; border: 0.5px solid var(--rule);
  color: var(--ink-light); cursor: pointer;
  width: 32px; height: 32px;
  font-size: 14px; transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.video-prev:hover, .video-next:hover { background: var(--ink); color: var(--white); }
.video-dots { display: flex; gap: 8px; align-items: center; }
.video-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rule); cursor: pointer;
  transition: background 0.2s;
}
.video-dot.active { background: var(--ink); }

/* ─── Footer ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--white);
  padding: 32px 20px 28px;
  border-top: 0.5px solid var(--rule);
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
/* ★ SNSアイコン大きく */
.footer-sns { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; justify-content: center; }
.footer-sns a {
  color: var(--ink-faint); transition: color 0.2s;
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
}
.footer-sns a:hover { color: var(--ink); }
.footer-sns svg { width: 28px; height: 28px; flex-shrink: 0; }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: 0.1em;
  color: var(--ink-faint);
}

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── Responsive ─────────────────────────────────────────────── */
/* サイドバーは廃止。#sidebar と #desk-drawer は常に非表示 */
#sidebar, #desk-drawer { display: none !important; }
