@charset "UTF-8";
/* 全体 */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #f6f7f8;
  color: #333;
}

.report {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px;
}

/* ヘッダー */
.report-header {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.report-header__image {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

.report-title {
  font-size: 1.4rem;
  margin: 0;
}

.team-away {
  color: #cc0000;
}

.report-meta {
  font-size: 0.9rem;
  color: #666;
}

/* ナビ */
.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 20px 0;
}

.page-nav__item {
  padding: 6px 12px;
  border-radius: 6px;
  background: #e0e0e0;
  text-decoration: none;
  color: #333;
}

.page-nav__item.is-current {
  background: #006666;
  color: #fff;
}

.page-nav__back {
  margin-left: auto;
  font-size: 0.85rem;
}

/* 本文 */
.report-body {
  display: grid;
  gap: 20px;
}

/* 写真カード */
.photo-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  display: grid;
  gap: 16px;
}

/* PC表示 */
@media (min-width: 768px) {
  .photo-card {
    grid-template-columns: 400px 1fr;
    align-items: start;
  }
}

.photo-card__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.photo-card__text {
  line-height: 1.7;
}

/* フル幅画像 */
.photo-full img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* 分割画像（縦連結） */
.photo-stack {
  margin: 0;
  padding: 0;
}

.photo-stack img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

/* ★ 4枚で1枚扱い（完全密着） */
.photo-stack.is-merged {
  margin: 0;
  padding: 0;
}

.photo-stack.is-merged img {
  margin: 0;
  padding: 0;
  border-radius: 0;
}

/* キャプション */
.photo-caption {
  text-align: center;
  font-size: 1rem;
  margin: 12px 0 24px;
  line-height: 1.6;
}
/* ===== レポートヘッダー調整 ===== */

/* ヘッダー画像を幅いっぱいに */
.report-header__image {
  max-width: none;   /* 制限解除 */
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  border-radius: 8px;
}

/* タイトルを小さく */
.report-title {
  font-size: 1.1rem;   /* 1.4rem → 小さく */
  line-height: 1.4;
  margin-top: 8px;
}

/* 日付・スタジアム情報を小さく */
.report-meta {
  font-size: 0.8rem;   /* 0.9rem → 小さく */
  margin-top: 6px;
}

