@charset "UTF-8";
#information_list #inf-list_con > ul > li {
    padding: 8px 8px 7px!important;

}

/* ボタン全体を横並びに・左右に配置 */
.blog_latest_1_all_navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto;
  /* max-width: 800px; */
  padding: 0 20px;
}

/* 共通のボタンスタイル */
.blog_latest_1_all_navi a {
  position: relative; /* 擬似要素の基準 */
  display: block;
  width: 300px;
  padding: 10px 10px;
  background-color: #15809c;
  border: 1px solid #15809c;
  color: #FFF;
  border-radius: 100px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s;
}

/* ホバー時の効果 */
.blog_latest_1_all_navi a:hover {
  opacity: 0.7;
  color: #ffffff;
}

/* 「前のページへ戻る」ボタン：白丸＋青矢印（左） */
.blog_latest_1_all_pre_page a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #15809c;
  transform: translateY(-50%);
  z-index: 1;
}

.blog_latest_1_all_pre_page a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 19px;
  width: 6px;
  height: 6px;
  border-left: 2px solid #15809c;
  border-top: 2px solid #15809c;
  transform: translateY(-50%) rotate(-45deg);
  pointer-events: none;
  z-index: 2;
}

/* 「次のページに進む」ボタン：白丸＋青矢印（右） */
.blog_latest_1_all_next_page a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #15809c;
  transform: translateY(-50%);
  z-index: 1;
}

.blog_latest_1_all_next_page a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #15809c;
  border-bottom: 2px solid #15809c;
  transform: translateY(-50%) rotate(-45deg);
  pointer-events: none;
  z-index: 2;
}

/* スマホ対応：縦並びに切り替え */
@media (max-width: 768px) {
  .blog_latest_1_all_navi {
    flex-direction: row;
    flex-wrap: wrap; /* 折り返し許可 */
    justify-content: space-between;
    gap: 10px;
  }

  .blog_latest_1_all_navi > span {
    flex: 1 1 50%; /*　45％はボタン2つが横並び　*/
    display: flex;
    justify-content: center;
  }

  .blog_latest_1_all_navi a {
    width: 100%;
    min-width: 140px; 
    padding: 10px 40px; 
  }
}