.news-list-wrap {
  position: relative;
  z-index: 2;
  width: var(--content-width);
  margin: 0 auto;
  padding: 52px 0 var(--section-space);
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
}

.news-filter-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(11, 39, 66, .28);
  font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background-color .25s ease, color .25s ease;
}

.news-filter-tab:hover {
  background: rgba(11, 39, 66, .06);
}

.news-filter-tab.is-active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.news-list {
  margin: 0;
  border-top: 1px solid rgba(11, 39, 66, .20);
}

.news-empty {
  padding: 48px 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.news-item {
  display: grid;
  grid-template-columns: 132px 132px 1fr 32px;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 22px 10px;
  border-bottom: 1px solid rgba(11, 39, 66, .18);
  color: var(--ink);
  text-decoration: none;
  transition: color .25s ease, background-color .25s ease;
}

.news-item:hover {
  color: #061842;
  background: rgba(11, 39, 66, .03);
}

.news-item:hover .news-arrow {
  transform: translateX(5px);
}

.news-date {
  color: var(--navy);
  font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
}

.news-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  color: #334252;
  border: 1px solid rgba(11, 39, 66, .22);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
  justify-self: start;
}

.news-item-title {
  margin: 0;
  min-width: 0;
  color: #1d2831;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: .04em;
  overflow-wrap: anywhere;
}

.news-arrow {
  display: block;
  justify-self: end;
  width: 8px;
  height: 12px;
  background: url("../images/icons/arrow-icon-navy.svg") center / contain no-repeat;
  transition: transform .25s ease;
}

.news-pagination {
  margin: 56px 0 0;
}

.news-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--navy);
  border: 1px solid rgba(11, 39, 66, .22);
  font-family: "Noto Sans JP", "Apple SD Gothic Neo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.news-pagination .page-numbers.current {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.news-pagination a.page-numbers:hover {
  background: rgba(11, 39, 66, .06);
}

.news-article-wrap {
  position: relative;
  z-index: 2;
  width: min(880px, var(--content-width));
  margin: 0 auto;
  padding: 52px 0 var(--section-space);
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
}

.news-article-title {
  margin: 0 0 44px;
  padding-bottom: 40px;
  color: var(--ink);
  border-bottom: 1px solid rgba(11, 39, 66, .18);
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: .06em;
}

.news-article-body {
  color: #27333d;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: .03em;
}

.news-article-body p {
  margin: 0 0 1.8em;
}

.news-article-body p:last-child {
  margin-bottom: 0;
}

.news-article-body a {
  color: var(--navy);
}

.news-article-body ul,
.news-article-body ol {
  margin: 0 0 1.8em;
  padding-left: 1.4em;
}

.news-article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
}

@media (max-width: 760px) {
  .news-list-wrap {
    padding: 38px 0 var(--section-space);
  }

  .news-filter {
    gap: 8px;
    margin-bottom: 32px;
  }

  .news-filter-tab {
    min-height: 38px;
    padding: 0 16px;
    font-size: 12px;
  }

  .news-item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "date"
      "category"
      "title";
    gap: 6px 12px;
    padding: 20px 10px;
  }

  .news-date {
    grid-area: date;
  }

  .news-arrow {
    display: none;
  }

  .news-category {
    grid-area: category;
    margin-top: 4px;
  }

  .news-item-title {
    grid-area: title;
    margin-top: 6px;
    font-size: 15px;
  }

  .news-article-wrap {
    padding: 38px 0 var(--section-space);
  }

  .news-article-title {
    margin-bottom: 32px;
    padding-bottom: 28px;
    font-size: 26px;
  }

  .news-article-body {
    font-size: 15px;
  }
}
