@charset "utf-8";

/* =========================
   お知らせ一覧セクション
   ========================= */
#lower-layer-news {
  padding: 60px 6.6%;
}

.lower-layer-news-summary {
  padding: 40px 10% 0;
  align-items: center;
  align-self: stretch;
  margin-top: 40px;
}

.lower-layer-news-unit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 100px;
  margin: 40px 0 44px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.lower-layer-news-unit:hover {
  opacity: 0.7;
}

.lower-layer-news-date {
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}

.lower-layer-news-title {
	font-size: 20px;
  font-style: normal;
  line-height: normal;
}

.lower-layer-news-summary hr {
  border: none;
  border-top: 1px solid #E4EDF5;
  margin: 0;
}

/* ===== ブレイクポイント：スマホ ===== */
@media screen and (max-width: 768px) {
  #lower-layer-news {
    padding: 30px 7.2%;
  }

  .lower-layer-news-summary {
    padding: 20px;
    margin-top: 24px;
  }

  .lower-layer-news-unit {
    display: block;
    margin: 0 0 23px 0;
  }

  .lower-layer-news-date {
    text-align: start;
    font-size: 16px;
  }

  .lower-layer-news-title {
    text-align: start;
    margin-top: 11px;
    font-size: 15px;
  }
}

/* ----------------ページネーション------------------ */
.Pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 1.2vw, 12px);
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.Pagination-Item {
  list-style: none;
}

.Pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(32px, 6.5vw, 45px);
  height: clamp(32px, 6.5vw, 45px);
  background: #E1F6FF;
  border: solid 2px #175899;
  border-radius: 4px;
  font-size: clamp(12px, 2.8vw, 14px);
  color: #000;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.15s linear, color 0.15s linear;
}

.Pagination .page-numbers.current {
  background: #175899;
  color: #fff;
  pointer-events: none;
}

.Pagination a.page-numbers:hover {
  background: #175899;
  color: #fff;
}