/* ============================================================
   junior_results.css — ジュニア 試合結果ページ固有
   （2026-07-09 再設計：直近試合ハイライト→順位表のC型。
     共通部品＝page-head / sub-head / result-tabs / match-card /
     rank-table / sec-action / related / cta-band は style.css を使用）
   ============================================================ */

/* ---------- カテゴリパネル（タブで排他表示） ---------- */
.jyr-panel {
  display: none;
}

.jyr-panel.is-active {
  display: block;
}

/* ---------- 成績サマリー（数字タイル4枚） ---------- */
.jyr-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 40px;
}

.jyr-stat {
  padding: 18px 8px 14px;
  text-align: center;
  background: var(--bg, #ffffff);
  border: 1px solid var(--border, #d1d1d1);
  border-radius: 6px;
}

.jyr-stat strong {
  display: block;
  font-family: Inter, 'Noto Sans JP', sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: #000000;
}

.jyr-stat span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #727272;
}

.jyr-stat::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  margin: 10px auto 0;
  background: #d1d1d1;
}

.jyr-stat--win::after { background: #1a9e4b; }
.jyr-stat--draw::after { background: #727272; }
.jyr-stat--lose::after { background: #d7263d; }

/* ---------- 小見出しラベル（LAST MATCH／RANKING） ---------- */
.jyr-label {
  margin: 40px 0 14px;
  font-family: Inter, 'Noto Sans JP', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #a27e27;
}

/* ---------- 直近試合カード（ハイライト＝大きく見せる） ---------- */
.jyr-card {
  max-width: 860px;
}

.jyr-card .match-card__score {
  font-size: clamp(30px, 4.5vw, 44px);
  font-variant-numeric: tabular-nums;
}

/* エンブレム未支給チームの代替表示 */
.match-card__emblem--none {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #727272;
  background: #eff4f9;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
}

/* WIN/LOSE ピル */
.jyr-result {
  display: inline-flex;
  align-items: center;
  padding: 2px 12px;
  font-family: Inter, 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 100vmax;
  color: #ffffff;
  background: #727272;
}

.jyr-result--win { background: #1a9e4b; }
.jyr-result--lose { background: #002141; }

/* ---------- 順位表 ---------- */
.jyr-rank {
  max-width: 860px;
}

.rank-num__unit {
  font-size: 16px;
}

/* ---------- 注記 ---------- */
.jyr-note {
  margin: 40px 0 0;
  font-size: 12px;
  line-height: 1.8;
  color: #727272;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 767px) {
  .jyr-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin: 20px 0 28px;
  }

  .jyr-stat strong {
    font-size: 24px;
  }

  .jyr-stat span {
    font-size: 11px;
  }

  .jyr-label {
    margin-top: 28px;
  }
}
