/* ========== お知らせ 一覧ページ専用 CSS ========== */

.news-list-section{
  padding:40px 20px 80px;
  background:#fff;
}

/* 件数表示 */
.news-list-meta{
  max-width:960px;
  margin:0 auto 24px;
  font-size:13px;
  color:#6a6a6a;
  letter-spacing:0.5px;
  text-align:right;
  font-family:"じゅん 501",sans-serif;
}
.news-list-meta strong{
  color:var(--brand-blue);
  font-family:"Poppins",sans-serif;
  font-size:15px;
  margin:0 4px;
}

/* 一覧本体 */
.news-list-wrap{
  max-width:960px;
  margin:0 auto;
}

/* 各記事はベース common.css の .news-item を継承 */
.news-list-wrap .news-item{
  padding:24px 0;
  border-bottom:1px dashed #c8d8df;
  margin:0;
}
.news-list-wrap .news-item:first-child{
  padding-top:8px;
}
.news-list-wrap .news-item:last-child{
  border-bottom:none;
}
.news-list-wrap .news-divider{display:none;}

/* 一覧が空の時 */
.news-empty{
  max-width:960px;
  margin:40px auto;
  padding:32px 24px;
  text-align:center;
  font-size:14px;
  color:#6a6a6a;
  font-family:"じゅん 501",sans-serif;
}

/* ページネーション */
.news-pagination{
  max-width:960px;
  margin:48px auto 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  font-family:"じゅん 501",sans-serif;
}
.news-pagination a,
.news-pagination span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:42px;
  height:42px;
  padding:0 12px;
  border:1px solid #b8d3df;
  border-radius:6px;
  font-size:14px;
  color:var(--text-dark);
  text-decoration:none;
  background:#fff;
  font-family:"Poppins",sans-serif;
  transition:background .15s ease, color .15s ease, border-color .15s ease;
}
.news-pagination a:hover{
  background:var(--brand-blue);
  color:#fff;
  border-color:var(--brand-blue);
}
.news-pagination .current{
  background:var(--brand-blue);
  color:#fff;
  border-color:var(--brand-blue);
  cursor:default;
}
.news-pagination .disabled{
  background:#f4f7f9;
  color:#c0c8cd;
  border-color:#e0e8eb;
  cursor:not-allowed;
}
.news-pagination .ellipsis{
  border:none;
  background:transparent;
  min-width:auto;
  padding:0 4px;
  color:#999;
}
.news-pagination .nav-btn{
  padding:0 16px;
  font-family:"じゅん 501",sans-serif;
  font-weight:700;
  letter-spacing:1px;
}

/* ========== スマホ (≤767.98px) ========== */
@media (max-width: 767.98px){
  .news-list-section{padding:24px 16px 60px;}
  .news-list-meta{font-size:12px;}
  .news-list-meta strong{font-size:14px;}
  .news-list-wrap .news-item{padding:18px 0;}
  .news-pagination{gap:6px;}
  .news-pagination a,
  .news-pagination span{
    min-width:36px;height:36px;font-size:13px;padding:0 10px;
  }
  .news-pagination .nav-btn{padding:0 12px;font-size:12px;}
}
