/*
Default style for WP-PageNavi plugin

http://wordpress.org/extend/plugins/wp-pagenavi/
*/

/* 全体の基本スタイル */
.wp-pagenavi {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #0044cc;
  border-radius: 50%;
  font-size: 18px;
  color: #0044cc;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding-left: 4px;
    line-height: 35px;
}

/* 現在ページ */
.wp-pagenavi .current {
  background: #0044cc;
  color: #fff;
  border-color: #0044cc;
}

/* 矢印ボタン */
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 22px;
  line-height: 1;
}


.wp-pagenavi .pages,
.wp-pagenavi .nextpostslink {display: none !important;} 



