@charset "UTF-8";

.bl_news_all {
  min-height: 100vh;
}

/* ページネーション */
.bl_news_all_pager_wrap {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.bl_news_all_pager {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}

/* 通常の数字・矢印ボタンの丸 */
.bl_news_all_pager_item {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bl_news_all_pager_item a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #E61E82;
  font-weight: bold;
  font-size: 15px;
}

/* 現在のページの丸（濃いピンクに白文字） */
.bl_news_all_pager_item.active {
  background-color: #E61E82;
}

.bl_news_all_pager_item.active a {
  color: #fff;
}

/* 矢印ボタンの共通土台 */
.bl_news_all_pager_item.arrow {
  background-color: transparent;
  position: relative;
  cursor: pointer;
}

/* 矢印の共通パーツ */
.bl_news_all_pager_item.arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  color: #E61E82;
  transition: all 0.3s;
}

/* 左矢印 */
.bl_news_all_pager_item.arrow.prev::after {
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

/* 右矢印 */
.bl_news_all_pager_item.arrow.next::after {
  right: 50%;
  transform: translate(50%, -50%) rotate(45deg);
}

/* 押せない状態（disabled）のときは矢印を薄くする */
.bl_news_all_pager_item.arrow.disabled {
  display: none;
}

.bl_news_all_pager_item.arrow.disabled::after {
  display: none;
}

/* 三点リーダー（...）のテキスト */
.bl_news_all_pager_dot {
  color: #E61E82;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 0 5px;
}

.bl_news_caution_msg {
  font-size: 15px;
  padding: 20px 0;
  text-align: center;
}