@charset "utf-8";
/* CSS Document */

/* --------------------------------------------------
   セクション背景（薄い水色）＋固定ヘッダー対策
-------------------------------------------------- */
.light-blue-bg {
  background-color: #f3f7fa;
  padding: 200px 30px 60px;
  position: relative;
  z-index: 0;
  text-align: left; /* ニュース一覧なら中央寄せより自然 */
}


/* --------------------------------------------------
   お知らせ一覧リスト（白ボックス）
-------------------------------------------------- */
.news-container {
  max-width: 960px;
  margin: 0 auto;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.news-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
  text-align: left;
}

.news-title {
  font-size: 1.1rem;
  font-weight: normal;
  color: #000;
  text-align: left;
}
.news-card a {
  text-decoration: none;
  color: inherit;
  display: flex; /* ← 追加：横並び */
  justify-content: space-between; /* ← 左：本文 / 右：矢印 */
  align-items: flex-start; /* ← 上に寄せる */
}

.news-title {
  font-size: 1.1rem;
  font-weight: normal;
  color: #000;
  text-align: left;
  margin: 0; /* ← 上下のズレ対策 */
}

/* ▼ 新規追加：矢印画像のスタイル */
.news-arrow {
  width: 14px;       /* ← 小さめに */
  height: auto;
  margin-top: 30px;   /* ← 少し上に */
}

/* --------------------------------------------------
   ページネーション
-------------------------------------------------- */
.pagination {
  text-align: center;
  margin-top: 40px;
}

.pagination a {
  padding: 0.4em 0.8em;
  text-decoration: none;
  border: 1px solid #007acc;
  border-radius: 4px;
  color: #007acc;
  font-weight: bold;
  margin: 0 6px;
  transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover {
  background-color: #007acc;
  color: white;
}
