@charset "UTF-8";
/* ============================================================
   news.css - お知らせページ固有スタイル
   ※ 中ページ共通スタイル（.page-hero / .inner-title / .map-btn 等）は common.css に記述
   ============================================================ */

/* ===== お知らせコンテンツ ===== */
.news-item.item {
  border: 0;
}
.news-item:hover {
  background: none;
}
.content-wrapper {
  padding:0;
  margin: 0;
  border:0;
}

.news-content {
  background: #ffffff;
  padding: 60px 0;
}
h2.news-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 2rem;
  margin: 2rem auto;
  border-bottom: 1px solid #dfdfdf;
}
.article p {
  margin-top: 2rem;
}
.article .u-right {
  text-align: right;
  margin-bottom: 1rem;
}

/* お知らせ一覧へボタン */
.link-area {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.news-list-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #102487;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 14px 60px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  letter-spacing: 0.05em;
}
.news-list-btn:hover {
  background: #0b1a6a;
}
