@charset "UTF-8";
/*---------------------------------------------
wp-pagenaviの上書き
---------------------------------------------*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 30px;
  padding-bottom: 40px;
  gap: 18px;
}
.wp-pagenavi * {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 600;
  color: rgba(76, 187, 223, 0.5);
}
.wp-pagenavi .nextpostslink, .wp-pagenavi .previouspostslink {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-family: initial;
  font-size: 0;
}
.wp-pagenavi .nextpostslink::before {
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../../shared/images/page_next_arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wp-pagenavi .previouspostslink::before {
  content: "<";
  width: 30px;
  height: 30px;
  background-image: url(../../shared/images/page_prev_arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wp-pagenavi a:hover {
  -moz-filter: brightness(1.2);
  -o-filter: brightness(1.2);
  -ms-filter: brightness(1.2);
  filter: brightness(1.2);
  transition: filter 0.3s;
}
.wp-pagenavi .page,
.wp-pagenavi .first,
.wp-pagenavi .last {
  border: none;
}
.wp-pagenavi .extend {
  background: none;
  border: none;
}
.wp-pagenavi .current {
  border: none;
  color: #222222;
}/*# sourceMappingURL=wp_plugin.css.map */