@charset "UTF-8";

/* =========================
   NEWS ARCHIVE
========================= */

.news-archive {
  padding: 80px 0;
}

.news-archive h2 {
  color: #6594B1;
  max-width: 760px;
  margin: 0 auto 40px;
}

/* 一覧ラップ */
.news-list {
  max-width: 760px;
  margin: 0 auto;
}

/* 各記事 */
.news-list .news-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;

  column-gap: 32px;
  padding: 22px 0;
  border-bottom: 1px solid #E2D6DE;
}

/* 日付 */
.news-list .news-date,
.news-list time {
  font-size: 13px;
  color: #6594B1;
  letter-spacing: 0.1em;
}

/* タイトル */
.news-list .news-title,
.news-list h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 500;
}

/* リンク */
.news-list a {
  color: #213C51;
  text-decoration: none;
  transition: 0.3s ease;
}

.news-list a:hover {
  opacity: 0.6;
}

/* ページネーション */
.pagination {
  margin-top: 50px;
  text-align: center;
}