/* ═══════════════════════════════════════════
   TripTop — Events & Press Styles
═══════════════════════════════════════════ */

/* ── Archive共通ヘッダー ── */
.tt-archive-page { background: var(--black); min-height: 100vh; padding-top: 80px; }

.tt-archive-header {
  background: var(--off-black);
  border-bottom: 1px solid var(--steel);
  padding: 80px 80px 60px;
}

.tt-archive-header-inner { max-width: 900px; margin: 0 auto; }

.tt-archive-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(39px, 5.25vw, 68px);
  color: var(--white);
  line-height: 1;
  letter-spacing: 2px;
  margin: 12px 0 16px;
}

.tt-archive-desc {
  font-size: 15px;
  color: var(--zinc);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   展示会一覧
───────────────────────────────────────── */
.tt-events-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 80px; }

.tt-events-list { display: flex; flex-direction: column; gap: 2px; }

.tt-event-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  background: var(--off-black);
  border: 1px solid var(--steel);
  transition: border-color 0.2s;
}
.tt-event-card:hover { border-color: var(--accent); }

/* 終了済みは少し暗く */
.tt-event-ended { opacity: 0.6; }

/* 日付列 */
.tt-event-date-col {
  padding: 32px 24px;
  border-right: 1px solid var(--steel);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--dark);
}

.tt-event-dates {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

.tt-event-time {
  font-size: 12px;
  color: var(--zinc);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
}

/* ラベル */
.tt-event-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 10px;
}
.tt-event-label-upcoming { background: var(--accent); color: var(--black); }
.tt-event-label-ongoing  { background: #4a7c59; color: #fff; }
.tt-event-label-ended    { background: var(--steel); color: var(--silver); }

/* コンテンツ列 */
.tt-event-content { display: flex; gap: 0; }

.tt-event-thumb {
  width: 220px;
  flex-shrink: 0;
  overflow: hidden;
}
.tt-event-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.tt-event-card:hover .tt-event-thumb img { transform: scale(1.04); }

.tt-event-body { padding: 32px 36px; flex: 1; display: flex; flex-direction: column; gap: 12px; }

.tt-event-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  line-height: 1.2;
}
.tt-event-title a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.tt-event-title a:hover { color: var(--accent); }

.tt-event-meta-row { display: flex; gap: 12px; align-items: baseline; font-size: 13px; }
.tt-event-meta-key {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
  width: 44px;
}
.tt-event-meta-val { color: var(--silver); line-height: 1.5; }

.tt-event-excerpt { font-size: 13px; color: var(--zinc); line-height: 1.7; }

.tt-event-actions { display: flex; gap: 12px; margin-top: auto; flex-wrap: wrap; }

.tt-event-detail-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  background: var(--dark);
  border: 1px solid var(--steel);
  transition: all 0.2s;
}
.tt-event-detail-btn:hover { border-color: var(--accent); color: var(--accent); }

.tt-event-official-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--zinc);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid var(--steel);
  transition: all 0.2s;
}
.tt-event-official-btn:hover { color: var(--white); border-color: var(--zinc); }

.tt-events-empty { padding: 80px 0; text-align: center; color: var(--zinc); font-size: 15px; }

/* ─────────────────────────────────────────
   展示会 詳細ページ
───────────────────────────────────────── */
.tt-event-hero {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.tt-event-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 80px 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tt-back-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.tt-back-link:hover { opacity: 1; }

.tt-event-hero-meta { display: flex; align-items: center; gap: 16px; }

.tt-event-hero-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  margin: 0;
}

.tt-event-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.1;
  letter-spacing: 2px;
  margin: 0;
  max-width: 800px;
}

/* 詳細ボディ */
.tt-event-detail-wrap { background: var(--black); }
.tt-event-detail-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

/* 本文カラム（1fr グリッド項目）：min-width:0 で、本文に貼った大きい画像/動画が
   グリッド列を押し広げる（grid blowout）のを防ぐ。これが無いと max-width:100% が
   画像の原寸幅を基準にしてしまい、コンテナ幅に収まらない。 */
.tt-event-detail-main { min-width: 0; }

.tt-event-detail-content {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.9;
}
.tt-event-detail-content h2,
.tt-event-detail-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  color: var(--white);
  margin: 32px 0 16px;
}
.tt-event-detail-content p { margin-bottom: 16px; }
/* 本文リッチメディア（画像・動画・YouTube等）の共通ルールはファイル下部に集約 */

/* サイドバー情報ボックス */
.tt-event-info-box {
  background: var(--off-black);
  border: 1px solid var(--steel);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 100px;
}

.tt-event-info-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.tt-event-info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--steel);
}
.tt-event-info-row:last-of-type { border-bottom: none; }

.tt-event-info-key {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--zinc);
}

.tt-event-info-val { font-size: 14px; color: var(--white); line-height: 1.6; }

.tt-event-official-link {
  display: block;
  margin-top: 20px;
  padding: 12px;
  text-align: center;
  background: var(--dark);
  border: 1px solid var(--steel);
  color: var(--silver);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.tt-event-official-link:hover { border-color: var(--accent); color: var(--accent); }

/* 事前予約・SNSリンク（公式リンクと同スタイル） */
.tt-event-reserve-link,
.tt-event-sns-link {
  display: block;
  margin-top: 10px;
  padding: 12px;
  text-align: center;
  background: var(--dark);
  border: 1px solid var(--steel);
  color: var(--silver);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.tt-event-reserve-link:hover,
.tt-event-sns-link:hover { border-color: var(--accent); color: var(--accent); }

/* TripTop 出展内容ボックス */
.tt-event-display-box {
  margin-top: 40px;
  background: var(--off-black);
  border: 1px solid var(--steel);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
}
.tt-event-display-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.tt-event-display-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--silver);
}

/* CTAボックス */
.tt-event-cta-box {
  margin-top: 16px;
  background: var(--dark);
  border: 1px solid var(--steel);
  padding: 24px;
  text-align: center;
}
.tt-event-cta-box p { font-size: 12px; color: var(--zinc); margin-bottom: 14px; line-height: 1.6; }

.tt-event-contact-btn {
  display: block;
  padding: 12px;
  background: var(--accent);
  color: var(--black);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.tt-event-contact-btn:hover { background: var(--white); }

/* ─────────────────────────────────────────
   プレスリリース一覧
───────────────────────────────────────── */
.tt-press-wrap { max-width: 1100px; margin: 0 auto; padding: 60px 80px; }

.tt-press-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--steel);
}

.tt-press-card {
  background: var(--off-black);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.tt-press-card:hover { background: var(--dark); }

.tt-press-thumb { overflow: hidden; aspect-ratio: 16/9; }
.tt-press-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.tt-press-card:hover .tt-press-thumb img { transform: scale(1.04); }

.tt-press-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.tt-press-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tt-press-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--accent);
}

.tt-press-category-badge-card {
  padding: 2px 8px;
  font-size: 10px;
  letter-spacing: 1.5px;
}

.tt-press-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; line-height: 1.3; }
.tt-press-title a { color: var(--white); text-decoration: none; transition: color 0.2s; }
.tt-press-title a:hover { color: var(--accent); }

.tt-press-excerpt { font-size: 12px; color: var(--zinc); line-height: 1.7; flex: 1; }

.tt-press-read-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--silver);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
  margin-top: auto;
}
.tt-press-read-more:hover { color: var(--accent); }

/* ─────────────────────────────────────────
   プレスリリース 詳細
───────────────────────────────────────── */
.tt-single-press-wrap { background: var(--black); min-height: 100vh; padding-top: 80px; }

.tt-single-press-header {
  background: var(--off-black);
  border-bottom: 1px solid var(--steel);
  padding: 60px 80px;
}
.tt-single-press-header-inner { max-width: 900px; margin: 0 auto; }

.tt-single-press-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent);
  margin: 16px 0 12px;
}

.tt-single-press-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(27px, 3.75vw, 45px);
  letter-spacing: 2px;
  line-height: 1.2;
  color: var(--white);
}

/* メタ情報行（カテゴリ / ラベル / 日付） */
.tt-single-press-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 18px 0 14px;
}
.tt-single-press-meta-row .tt-single-press-date { margin: 0; }

.tt-press-category-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
}
.tt-press-label-badge {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 4px 12px;
}

/* 発信元 */
.tt-single-press-issuer {
  font-size: 13px;
  color: var(--zinc);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* リード文 */
.tt-press-lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--white);
  background: var(--off-black);
  border-left: 3px solid var(--accent);
  padding: 22px 26px;
  margin-bottom: 32px;
}

/* 関連製品 */
.tt-press-related-box {
  margin-top: 40px;
  background: var(--off-black);
  border: 1px solid var(--steel);
  padding: 20px 24px;
}
.tt-press-related-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--zinc);
  margin-bottom: 8px;
}
.tt-press-related-link {
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.tt-press-related-link:hover { color: var(--white); }
.tt-press-related-text { font-size: 15px; color: var(--white); }

/* メディア掲載 */
.tt-press-media-box {
  margin-top: 24px;
  background: var(--off-black);
  border: 1px solid var(--steel);
  padding: 20px 24px;
}
.tt-press-media-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--zinc);
  margin-bottom: 10px;
}
.tt-press-media-list { list-style: none; padding: 0; margin: 0; }
.tt-press-media-list li { padding: 6px 0; border-bottom: 1px solid var(--steel); }
.tt-press-media-list li:last-child { border-bottom: none; }
.tt-press-media-list a {
  color: var(--silver);
  text-decoration: none;
  font-size: 13px;
  word-break: break-all;
  transition: color 0.2s;
}
.tt-press-media-list a:hover { color: var(--accent); }

/* PDFダウンロードボタン */
.tt-press-pdf-btn {
  display: block;
  padding: 14px;
  background: var(--accent);
  color: var(--black);
  text-align: center;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.tt-press-pdf-btn:hover { background: var(--white); }

/* 報道関係者問い合わせ先 */
.tt-press-contact-box {
  background: var(--off-black);
  border: 1px solid var(--steel);
  padding: 22px;
  margin-bottom: 16px;
}
.tt-press-contact-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.tt-press-contact-row {
  font-size: 13px;
  color: var(--silver);
  line-height: 1.7;
  padding: 3px 0;
}
.tt-press-contact-row a { color: var(--silver); text-decoration: none; transition: color 0.2s; }
.tt-press-contact-row a:hover { color: var(--accent); }

.tt-single-press-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}

/* 本文カラム（1fr グリッド項目）：min-width:0 で grid blowout を防ぐ（event 側と同様） */
.tt-single-press-main { min-width: 0; }

.tt-single-press-thumb { margin-bottom: 32px; }
.tt-single-press-thumb img { width: 100%; height: auto; display: block; }

.tt-single-press-content {
  color: var(--silver);
  font-size: 15px;
  line-height: 1.9;
}
.tt-single-press-content h2,
.tt-single-press-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  color: var(--white);
  margin: 32px 0 16px;
}
.tt-single-press-content p { margin-bottom: 16px; }

/* ──────────────────────────────────────────────────────────────
   本文リッチメディア共通ルール（.tt-richtext）
   展示会情報・トピックス本文（.tt-event-detail-content / .tt-single-press-content
   に .tt-richtext を併記）と index.php フォールバックで共有。
   wp_editor で本文に挿入された画像・キャプション・動画・YouTube埋め込みを
   コンテナ幅に必ず収める。WordPress が付与する width/height 属性や
   [caption]・[video] の固定px幅を打ち消す。
────────────────────────────────────────────────────────────── */

/* フロート画像(.alignleft/right)を内包し、後続ブロックへの突き抜けを防ぐ */
.tt-richtext { display: flow-root; }

/* 画像：width/height 属性付きでも縮小して収める */
.tt-richtext img {
  max-width: 100% !important;
  height: auto;
  margin: 24px 0;
}

/* figure（ブロック貼付け対策） */
.tt-richtext figure { margin: 24px 0; max-width: 100%; }
.tt-richtext figure img { margin: 0; }
.tt-richtext figcaption {
  font-size: 12px; color: var(--steel); text-align: center; margin-top: 8px;
}

/* キャプション枠（クラシックエディタ [caption]）：固定px幅をコンテナで頭打ち */
.tt-richtext .wp-caption { max-width: 100% !important; }
.tt-richtext .wp-caption img { max-width: 100% !important; height: auto; }
.tt-richtext .wp-caption-text {
  font-size: 12px; color: var(--steel); text-align: center; margin-top: 8px;
}

/* 配置クラス */
.tt-richtext .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.tt-richtext .alignleft { float: left; margin: 6px 24px 16px 0; max-width: 48%; height: auto; }
.tt-richtext .alignright { float: right; margin: 6px 0 16px 24px; max-width: 48%; height: auto; }

/* アップロード動画（[video]＝ネイティブ <video>。MediaElement は functions.php で無効化済み） */
.tt-richtext .wp-video {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  margin: 24px auto;
}
.tt-richtext .wp-video video,
.tt-richtext .wp-video-shortcode {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  display: block;
  margin: 0;
}
/* 生 <video> タグを直接書いた場合のフォールバック */
.tt-richtext video { max-width: 100%; height: auto; }

/* 音声（[audio]＝ネイティブ <audio>） */
.tt-richtext .wp-audio-shortcode,
.tt-richtext audio { width: 100% !important; max-width: 100%; margin: 16px 0; }

/* 埋め込み iframe（地図など汎用は幅だけ頭打ち） */
.tt-richtext iframe { max-width: 100%; margin: 24px 0; border: 0; }

/* YouTube / Vimeo の iframe は 16:9 でレスポンシブ（autoembed の裸 iframe 対策） */
.tt-richtext iframe[src*="youtube"],
.tt-richtext iframe[src*="youtu.be"],
.tt-richtext iframe[src*="youtube-nocookie"],
.tt-richtext iframe[src*="vimeo"] {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* ブロックエディタ oEmbed ラッパ（万一貼られた場合の 16:9 化） */
.tt-richtext .wp-embedded-content,
.tt-richtext .wp-block-embed__wrapper { max-width: 100%; }
.tt-richtext .wp-embed-aspect-16-9 .wp-block-embed__wrapper {
  position: relative; width: 100%; padding-top: 56.25%; margin: 24px 0;
}
.tt-richtext .wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; aspect-ratio: auto;
}

/* モバイルでは左右回り込みを解除して全幅に */
@media (max-width: 640px) {
  .tt-richtext .alignleft,
  .tt-richtext .alignright {
    float: none;
    max-width: 100%;
    margin: 24px auto;
    display: block;
  }
}

/* 前後ナビ */
.tt-press-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--steel);
}
.tt-press-nav-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--zinc);
  text-decoration: none;
  transition: color 0.2s;
  max-width: 45%;
  line-height: 1.5;
}
.tt-press-nav-btn:hover { color: var(--accent); }
.tt-press-nav-next { text-align: right; margin-left: auto; }

/* ─────────────────────────────────────────
   トップページ セクション
───────────────────────────────────────── */
.tt-top-events-press {
  background: var(--off-black);
  padding: 100px 80px;
  border-top: 1px solid var(--steel);
}

.tt-top-ep-inner { max-width: 1200px; margin: 0 auto; }

.tt-top-ep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.tt-top-ep-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tt-top-ep-col-title a {
  color: var(--zinc);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 3px;
  transition: color 0.2s;
}
.tt-top-ep-col-title a:hover { color: var(--accent); }

/* トップ用イベントリスト */
.tt-top-event-list { display: flex; flex-direction: column; gap: 2px; }

.tt-top-event-item {
  background: var(--dark);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--steel);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.tt-top-event-item:hover { border-color: var(--accent); background: var(--mid); }

.tt-top-event-date-badge {
  background: var(--off-black);
  border: 1px solid var(--steel);
  padding: 8px 12px;
  text-align: center;
  flex-shrink: 0;
  min-width: 56px;
}
.tt-top-event-month {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}
.tt-top-event-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}

.tt-top-event-info { flex: 1; }
.tt-top-event-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 4px;
}
.tt-top-event-venue { font-size: 12px; color: var(--zinc); }

/* トップ用プレスリスト */
.tt-top-press-list { display: flex; flex-direction: column; gap: 2px; }

.tt-top-press-item {
  background: var(--dark);
  padding: 20px 24px;
  border: 1px solid var(--steel);
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, background 0.2s;
}
.tt-top-press-item:hover { border-color: var(--accent); background: var(--mid); }

.tt-top-press-item-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 6px;
}
.tt-top-press-item-title {
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   ページネーション
───────────────────────────────────────── */
.nav-links {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-numbers {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  padding: 10px 16px;
  border: 1px solid var(--steel);
  color: var(--zinc);
  text-decoration: none;
  transition: all 0.2s;
}
.page-numbers.current,
.page-numbers:hover { border-color: var(--accent); color: var(--accent); }

/* ─────────────────────────────────────────
   レスポンシブ
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .tt-archive-header { padding: 60px 40px 48px; }
  .tt-events-wrap,
  .tt-press-wrap { padding: 48px 40px; }
  .tt-press-list { grid-template-columns: repeat(2, 1fr); }
  .tt-event-detail-inner,
  .tt-single-press-body { padding: 48px 40px; }
  .tt-top-events-press { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .tt-archive-header { padding: 48px 20px 36px; }
  .tt-events-wrap,
  .tt-press-wrap { padding: 32px 20px; }

  .tt-event-card { grid-template-columns: 1fr; }
  .tt-event-date-col { border-right: none; border-bottom: 1px solid var(--steel); padding: 20px; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 8px; }
  .tt-event-content { flex-direction: column; }
  .tt-event-thumb { width: 100%; height: 200px; }
  .tt-event-body { padding: 20px; }

  .tt-event-hero-inner { padding: 48px 20px 40px; }
  .tt-event-detail-inner { grid-template-columns: 1fr; padding: 32px 20px; }
  .tt-event-info-box { position: static; }

  .tt-press-list { grid-template-columns: 1fr; }
  .tt-single-press-header { padding: 48px 20px; }
  .tt-single-press-body { grid-template-columns: 1fr; padding: 32px 20px; gap: 32px; }

  .tt-top-events-press { padding: 60px 20px; }
  .tt-top-ep-grid { grid-template-columns: 1fr; gap: 40px; }
}
