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

.information__title {
  font-size: 22px;
  line-height: 2;
  text-align: center;
  margin-bottom: 10px;
}

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

/* News Item */
.news-item:not(:first-child)::before {
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: 2px;
  margin: 0 auto 16px;
  background-image: radial-gradient(circle, #aaa 1px, transparent 1px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left center;
}

.news-item {
  margin-bottom: 20px;
}
.news-item a {
  width: 100%;
}

.news-item__date {
  font-size: 12px;
  line-height: 2;
  padding-left: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}

.news-item__title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  flex: 1;
  letter-spacing: 0.1em;
}

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

.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--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: block;
  text-align: center;
  font-size: 14px;
  text-decoration: none;
  border: none;
  width: 32px;
  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: 32px;
  height: 32px;
  background: #f1f1f1;
  margin: 2px;
}
.wp-pagenavi span.pages {
  display: none;
}
.wp-pagenavi span.current {
  color: #fff;
  background: #b8a991;
  font-weight: normal;
}
