.Pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 数字リスト */
.Pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem /* 16px */;
  list-style: none;
  padding: 0;
  margin: 0 1.5rem /* 24px (左右の余白) */;
}

/* 数字 */
.Pagination-item > .page-numbers {
  font-family: 'Shippori Mincho', serif;
  font-size: 0.875rem /* 14px */;
  color: #9e9e9e;
  text-decoration: none;
  transition: background-color 0.2s;
}

/* 現在のページ */
.Pagination-item > .page-numbers.current {
  color: #bb4953;
}

/* 三点リーダー */
.Pagination-item > .page-numbers.dots {
  cursor: default;
}

/* 矢印 */
.Pagination-arrow {
  font-size: 1.5rem /* 24px */;
  color: #333;
  text-decoration: none;
  transition: opacity 0.2s;
}

.Pagination-arrow._prev img,
.Pagination-arrow._first img {
  transform: scaleX(-1);
}

/* 矢印ホバー */
a.Pagination-arrow:hover {
  opacity: 0.6;
}

/* disabled（端のページ） */
.Pagination-arrow._disabled {
  color: #ccc;
  cursor: default;
  pointer-events: none;
}
