/* channel-timetable.css — channel ページの常設タイムテーブル
   (旧 proto-a.css「案A」。2026-06-10 に本採用として改名 #26。
    クラス名 .proto-a-* / .proto-b-* は channel-card-proposal.js が出力するため旧称のまま) */

.proto-a-schedule {
  background: #f4f7fb;
  padding: 36px 16px 28px;
  border-bottom: 3px solid #007fff;
}
.proto-a-inner { max-width: 1200px; margin: 0 auto; }
.proto-a-head { text-align: center; margin-bottom: 20px; }
.proto-a-badge {
  /* 白比4.5:1確保のため darken (旧#007fff=3.83:1・UI/UX監査 2026-07-02 P2) */
  display: inline-block; background: #0070e0; color: #fff;
  font-weight: 800; font-size: 12px; padding: 4px 14px; border-radius: 6px;
  letter-spacing: .06em; margin-bottom: 10px;
}
.proto-a-title { font-size: 24px; font-weight: 800; color: #00144c; margin: 6px 0; }
.proto-a-note { font-size: 13px; color: #5a6b8c; margin: 0; }

.proto-a-sched-body { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.proto-a-sched-body .schedule-table {
  width: 100%; border-collapse: collapse; min-width: 920px;
  background: #fff; table-layout: fixed;
}
.proto-a-sched-body .schedule-table th,
.proto-a-sched-body .schedule-table td {
  border: 1px solid #dde4ee; vertical-align: top; padding: 0;
}
.proto-a-sched-body .schedule-table__head th {
  background: #00144c !important; color: #fff !important; font-weight: 700 !important; font-size: 13px;
  text-align: center; padding: 11px 6px;
}
.proto-a-sched-body .schedule-table__time {
  background: #eaf1fb; font-weight: 700; font-size: 16px; color: #00144c;
  text-align: center; padding: 10px 4px; white-space: nowrap; width: 70px; line-height: 1.3;
}
/* 空セル ("-" / 近日公開) */
.proto-a-sched-body .schedule-table td {
  font-size: 12px; color: #9aa7bd; text-align: center;
}

/* セル(.proto-cell)とカテゴリ色・凡例は session-ui.css に共通化 */

/* カテゴリ絞り込みバー */
.proto-a-filterbar {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  max-width: 1200px; margin: 28px auto 26px; padding: 14px 16px;
  background: linear-gradient(135deg, #f1f8ff 0%, #f8fbff 100%);
  border: 1px solid #b8d7ff; border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 127, 255, .08);
}
.proto-a-filterbar-label {
  font-weight: 700; font-size: 13px; color: #00144c; margin-right: 4px;
}
.proto-a-filter-btn {
  font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 6px;
  border: 1px solid rgba(0, 20, 76, 0.32); background: transparent; color: rgba(0, 20, 76, 0.62); cursor: pointer;
  transition: all .15s;
}
.proto-a-filter-btn:hover { background: rgba(0, 127, 255, 0.06); border-color: rgba(0, 127, 255, 0.40); color: #0070e0; }
.proto-a-filter-btn.is-active { background: #0070e0; color: #fff; border-color: #0070e0; } /* 旧#007fff=3.83:1→4.78:1 */

/* 旧・左サイドバー絞り込み(#filter-modal)は下部 filterbar に一本化した際に非表示化し、
   #188 で死蔵確認の上 DOM ごと撤去済み。本文を全幅にするルールのみ残す */
.channel-page-inner .right-contents { width: 100% !important; max-width: 100% !important; flex: 1 1 100% !important; padding-left: 0 !important; padding-right: 0 !important; }

/* 全幅化で目立つ内側コンテナの非対称 padding(session-view-wrap 左16/右0、
   container-channel-box 右20)を左右対称に揃え、Pickup と一覧の中央ずれを解消 */
.right-contents .container-channel-box { padding-left: 16px !important; padding-right: 16px !important; margin-left: auto !important; margin-right: auto !important; }
.right-contents .session-view-wrap { padding-left: 0 !important; padding-right: 0 !important; }

/* Pickup ブロックは内部が justify-content:space-between のため、全幅だとテキストと
   講演者写真が左右に間延びする。適度な幅で中央寄せして内容紹介をまとめる */
.right-contents .day-session-pickup-block-wrap { max-width: 920px; margin-left: auto; margin-right: auto; }

/* 全幅化に伴い、1時間枠を「メイン(Ch1) + 横4列(Ch2-5)」の2段構えに。
   PC/タブレット横は4列1段、狭い画面で段数を減らす */
.right-contents .session-view-list { grid-template-columns: repeat(4, 1fr) !important; gap: 14px !important; }
@media (max-width: 900px) { .right-contents .session-view-list { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 600px) { .right-contents .session-view-list { grid-template-columns: 1fr !important; } }

@media (max-width: 767px) {
  .proto-a-title { font-size: 19px; }
  .proto-a-schedule { padding: 24px 10px 18px; }
  .proto-a-sched-body .schedule-table { min-width: 760px; }
  .proto-a-filterbar { margin-bottom: 22px; }
}
