/**
 * Information Archive Page Styles
 * 新着情報一覧ページPC用CSS
 */
.information {
  position: relative;
  width: var(--container-width);
  margin: 0 auto;
}

.information__title {
  font-size: 28px;
  line-height: 2;
  text-align: center;
  margin-bottom: 36px;
  margin-top: 120px;
}

.information__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: calc(100% - 40px);
  max-width: 800px;
  margin: 0 auto;
}

/* News Item */
.news-item {
  margin-bottom: 30px;
}
.news-item a {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.news-item__date {
  font-size: 16px;
  line-height: 2;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-item__title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  flex: 1;
}

/* ================================
     Pagination
     ================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0px;
  margin-bottom: 76px;
}

.pagination__item {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-pagination-default);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: var(--text-primary);
  transition: background-color 0.2s;
}

.pagination__item:not(.pagination__item--arrow):not(
    .pagination__item--ellipsis
  ):not(.pagination__item--disabled):hover {
  background-color: #e5e5e5;
}

.pagination__item--active {
  background-color: var(--bg-pagination-active);
  color: var(--text-white);
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 400;
}

.pagination__item--ellipsis {
  background: none;
  cursor: default;
}

.pagination__item--arrow {
  padding: 0;
  overflow: hidden;
}

.pagination__item--arrow svg {
  display: block;
  width: 32px;
  height: 32px;
}

.pagination__item--disabled {
  cursor: not-allowed;
  opacity: 1;
}
.wp-pagenavi {
  display: flex;
}
.wp-pagenavi span {
  font-size: 14px;
  text-decoration: none;
  border: none;
  background: #f1f1f1;
  padding: 6px 5px;
  margin: 2px;
}

.wp-pagenavi a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  border: none;
  width: 40px;
  background: #f1f1f1;
  padding: 9px 0px;
  margin: 2px;
}

.wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  border: none;
  width: 40px;
  height: 40px;
  background: #f1f1f1;
  padding: 9px 0px;
  margin: 2px;
}
.wp-pagenavi span.pages {
  display: none;
}
.wp-pagenavi span.current {
  color: #fff;
  background: #b8a991;
  font-weight: normal;
}
