/* ↓投稿一覧 */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.post-item-outer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post-list article.post {
  border-bottom: 2px solid #e6e6e6;
  padding-bottom: 15px;
}

.post-list article.post a {
  color: #333;
  display: flex;
  transition: 0.2s;
}

.post-list article.post a:hover {
  opacity: 0.5;
}

.post-list .post-image {
  width: 35%;
}

.post-list .post-image img {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.post-list .post-info {
  display: flex;
  flex-direction: column;
  padding: 10px 15px;
  width: 65%;
}

.post-list .p-title {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.05rem;
  font-weight: 700;
  -webkit-line-clamp: 3;
  line-height: 1.5;
  overflow: hidden;
}

.post-list .p-date {
  color: #989898;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
/* ↑投稿一覧 */

/* ↓ページネーション */
div#pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-top: 40px;
  text-align: center;
}

div#pagination .page-numbers {
  border: 1px solid #333;
  border-radius: 50px;
  color: #333;
  font-weight: 600;
  padding: 7px 14px;
  transition: 0.2s;
}

div#pagination .page-numbers.current {
  background-color: #0042d3;
  border: 1px solid #fff;
  color: #fff;
}

div#pagination .page-numbers:hover {
  background-color: #0042d3;
  border: 1px solid #fff;
  color: #fff;
  opacity: 0.5;
}

div#pagination .page-numbers.dots {
  background: none;
  border: 1px solid #fff;
  padding: 7px;
  pointer-events: none;
}
/* ↑ページネーション */

/* ↓投稿カウンター */
.entry-body h2.wp-block-heading {
  margin-bottom: 10px;
}

.post-count {
  align-items: flex-end;
  display: flex;
  font-size: 0.91rem;
  margin-bottom: 20px;
}

.now-count {
  margin-left: 15px;
}

.post-count span {
  color: #0088c3;
  font-size: 1.2rem;
  font-weight: 700;
  padding-right: 2px;
}
/* ↑投稿カウンター */