@charset "utf-8";
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0 0 5rem;
}
.pagination li {
  min-width: 1.6875rem;
  margin-bottom: 0 !important;
 }
.pagination a, .pagination span, .page-links a {
  border: none;
  padding: 0;
}
.pagination .current {
  color: var(--primary);
  background-color: transparent;
}
.pagination a, .pagination span, .page-links a, .page-links ul > li > span {
  font-size: 1rem;
  color: var(--gray02);
}
.pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus, .page-links a:hover, .page-links a:focus {
  background-color: transparent;
  color: var(--primary);
}
.page-numbers .prev, .page-numbers .next {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-numbers .prev::before, .page-numbers .next::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  width: 11px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-numbers .prev::before {
  background-image: url(../images/icon/arrow-left-gray.svg);
}
.page-numbers .next::before {
  background-image: url(../images/icon/arrow-right-gray.svg);
}
@media (min-width: 1200px) {
  .pagination ul {
    margin: 0 0 7.5rem;
  }
}

/* ========================================
   20260722 SP時のスタイル変更用CSS
======================================== */
@media (max-width: 767px) {
  /* 本文 */
  .single .entry-content p,
  .single .entry-content li {
    font-size: 1rem;
  }

  /* 見出し（bootstrapのサイズに+2px） */
  .single .entry-content h2 {
    font-size: calc(1.325rem + 0.9vw + 2px);
  }
  .single .entry-content h3 {
    font-size: calc(1.3rem + 0.6vw + 2px);
  }
  .single .entry-content h4 {
    font-size: calc(1.275rem + 0.3vw + 2px);
  }
  .single .entry-content h5 {
    font-size: calc(1.25rem + 2px);
  }
  .single .entry-content h6 {
    font-size: calc(1rem + 2px);
  }

  /* 見出しのline-heightを+0.2調整（1.2→1.4） */
  .single .entry-content h2,
  .single .entry-content h3,
  .single .entry-content h4,
  .single .entry-content h5,
  .single .entry-content h6 {
    line-height: 1.4;
  }

  /* 目次（Easy Table of Contents） */
  .single #ez-toc-container p.ez-toc-title {
    font-size: calc(120% + 2px) !important;
  }
  .single #ez-toc-container ul li {
    font-size: calc(95% + 2px) !important;
  }
  .single #ez-toc-container nav ul ul li {
    font-size: calc(90% + 2px) !important;
  }
}

@media only screen and (max-width: 480px) {
  /* post.cssの見出しサイズ指定に+2px */
  .single .entry-content h2,
  .single .entry-content h3 {
    font-size: calc(115% + 2px);
  }
  .single .entry-content h4 {
    font-size: calc(110% + 2px);
  }
}