@charset "utf-8";

/* ============================================================
   詳細ページヘッダー（news/column共通・ロゴなし・左上テキスト）
============================================================ */
.page-header--detail {
  padding: 32px 48px 24px;
  background-color: #fff;
  border-bottom: 1px solid #d0dce8;
}

.page-header__eyebrow {
  font-size: 14px;
  font-weight: 400;
  color: #03407a;
  margin: 0 0 4px;
  font-family: "Noto Sans JP", sans-serif;
}

.page-header__title--detail {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 32px;
  color: #03407a;
  margin: 0;
  line-height: 1.2;
}


/* ============================================================
   詳細セクション
============================================================ */
.detail-section {
  padding: 56px 48px 80px;
  background-color: #f3f7fa;
}

.detail-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

/* 記事コンテナ */
.detail__article {
  background-color: #fff;
  border-radius: 8px;
  padding: 48px 56px;
  margin-bottom: 32px;
}

/* メタ情報（日付＋カテゴリ） */
.detail__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.detail__date {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  font-family: "Noto Sans JP", sans-serif;
}

/* カテゴリバッジ */
.news__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 28px;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  border-radius: 2px;
  flex-shrink: 0;
  white-space: nowrap;
}

.news__cat--info {
  background-color: #03407a;
}

.news__cat--press {
  background-color: #c0392b;
}

/* タイトル */
.detail__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 24px;
  color: #03407a;
  margin: 0 0 12px;
  line-height: 1.5;
}

.detail__title-border {
  width: 40px;
  height: 3px;
  background-color: #03407a;
  margin-bottom: 28px;
}

/* 本文 */
.detail__body {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 1.9;
}

.detail__body p {
  margin: 0 0 20px;
}

.detail__body p:last-child {
  margin-bottom: 0;
}

/* 画像 */
.detail__figure {
  margin: 28px 0;
  text-align: center;
}

.detail__figure img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* PHOTOプレースホルダー */
.detail__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 240px;
  background-color: #888;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto;
  border-radius: 4px;
}


/* ============================================================
   一覧に戻るボタン
============================================================ */
.detail__back {
  text-align: center;
}

.detail__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 48px;
  background-color: #03407a;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s ease;
  letter-spacing: 0.05em;
}

.detail__back-btn:hover {
  opacity: 0.75;
}


/* ============================================================
   @media SP（1024px以下）
============================================================ */
@media (max-width: 1024px) {

  .page-header--detail {
    padding: 20px 20px 16px;
  }

  .page-header__title--detail {
    font-size: 24px;
  }

  .detail-section {
    padding: 32px 16px 48px;
  }

  .detail__article {
    padding: 28px 20px;
  }

  .detail__title {
    font-size: 20px;
  }

  .detail__photo-placeholder {
    width: 100%;
    height: 200px;
  }

  .detail__back-btn {
    width: 100%;
    max-width: 280px;
  }

} /* end @media 1024px */