/* =========================
   個別ページ 共通CSS
   （bulletin / event / 通常投稿）
   ========================= */

/* 全体コンテナ */


/* -------------------------
   各タイプ共通の箱
   ------------------------- */

.bulletin-single,
.event-single,
.post-single {
  max-width: 960px;
  margin: 40px auto 0;
  padding: 0 24px 40px;
  background-color: #ffffff;
}

/* 共通ヘッダー */
.bulletin-single__header,
.event-single__header,
.post-single__header {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

/* 共通タイトル */
.bulletin-single__title,
.event-single__title,
.post-single__title {
  margin: 10px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333333;
}

/* 共通日付 */
.bulletin-single__date,
.event-single__date,
.post-single__date {
  display: inline-block;
  font-size: 0.95rem;
  color: #1b3fa7;
}

/* -------------------------
   会報（bulletin）用パーツ
   ------------------------- */

.bulletin-single__no {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b3fa7;
}

/* -------------------------
   イベント（event）用パーツ
   ------------------------- */

.event-single__label {
  display: inline-block;
  min-width: 56px;
  margin-right: 12px;
  padding: 4px 10px;
  border-radius: 3px;
  background-color: #6661a8;
  color: #ffffff;
  font-size: 0.85rem;
  text-align: center;
}

/* ラベルと日付を横並びにしたい場合 */
.event-single__header {
  display: block;
}
.event-single__label + .event-single__date {
  margin-left: 0;
}

/* -------------------------
   通常投稿用メタ情報
   ------------------------- */

.post-single__meta {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #777777;
}

.post-single__meta a {
  color: #777777;
  text-decoration: none;
}

.post-single__meta a:hover {
  text-decoration: underline;
}

/* -------------------------
   本文共通
   ------------------------- */

.bulletin-single__content,
.event-single__content,
.post-single__content {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #333333;
}

.bulletin-single__content p,
.event-single__content p,
.post-single__content p {
  margin-bottom: 1.2em;
}

/* アイキャッチ共通 */
.bulletin-single__thumbnail,
.event-single__thumbnail {
  margin: 24px 0;
}
.bulletin-single__thumbnail img,
.event-single__thumbnail img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -------------------------
   戻るリンク 共通
   ------------------------- */

.bulletin-single__back,
.event-single__back {
  margin-top: 32px;
  text-align: right;
}

.bulletin-single__back a,
.event-single__back a {
  font-size: 0.95rem;
  color: #1b3fa7;
  text-decoration: none;
}

.bulletin-single__back a:hover,
.event-single__back a:hover {
  text-decoration: underline;
}

/* -------------------------
   レスポンシブ簡易調整
   ------------------------- */

@media (max-width: 768px) {
  .bulletin-single,
  .event-single,
  .post-single {
    padding: 0 16px 32px;
  }

  .bulletin-single__title,
  .event-single__title,
  .post-single__title {
    font-size: 1.4rem;
  }
}