/* 新着情報ページ */
:root {
  --news-text: var(--page-text);
  --news-gray: var(--page-gray);
  --news-white: #fff;
}

.news__content {
  padding-top: 5rem;
}

.news__container {
  max-width: 51rem;
}

.news-list__item + .news-list__item {
  margin-top: 8rem;
}

.news-list__meta {
  color: var(--news-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5;
}

.news-list__date p,
.news-list__category p {
  display: block;
  margin: 0;
}

.news-list__category {
  width: fit-content;
  margin-top: 0.5rem;
  padding: 0.1875rem 1rem;
  border: 1px solid var(--news-gray);
}

.news-list__title {
  margin: 1rem 0 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--news-gray);
  color: var(--news-text);
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.news-list__content {
  margin-top: 2rem;
  color: var(--news-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.8;
}

.news-pagination {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

.news-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 1.875rem;
  height: 1.875rem;
  padding: 0 0.5rem;
  border: 1px solid var(--news-gray);
  background-color: var(--news-white);
  color: var(--news-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.news-pagination__link:hover,
.news-pagination__link:focus-visible {
  opacity: 0.75;
}

.news__action {
  margin-top: 5rem;
  margin-bottom: 8rem;
}

.news__action .container {
  display: flex;
  justify-content: center;
}

.news__back-link {
  margin-top: 0;
}
