/* パンクズ */
.breadcrumb {
  font-size: 0.875rem;
  color: var(--color-gray); /* Cinereous */
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.breadcrumb a {
  color: var(--color-accent-bright); /* Orange */
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
  color: var(--color-gray-dark); /* Night */
  font-weight: 500;
}

/* 見出し・本文調整 */
.single-post .post-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: var(--color-gray-dark); /* Night */
}

.single-post .post-meta {
  margin-bottom: 1.5rem;
  color: var(--color-gray); /* Cinereous */
}

/* アイキャッチ画像 */
.single-post .post-thumbnail img {
  max-width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* 本文 */
.single-post .post-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-gray); /* Cinereous */
}

/* タグ */
.single-post .post-tags {
  margin-top: 2rem;
  color: var(--color-gray); /* Cinereous */
}

/* ナビゲーション */
.post-navigation {
  margin-top: 3rem;
  font-weight: bold;
}
.post-navigation a {
  color: var(--color-accent-bright); /* Orange */
}

/* 全体の左右余白 */
.main-content.single-post {
  padding-left: 200px;
  padding-right: 200px;
}

/* カテゴリバッジ */
.category-badge {
  display: inline-block;
  background-color: var(--color-accent-bright); /* Orange */
  color: var(--color-bg-subtle); /* Ghost white */
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  margin-right: 0.5rem;
}

/* 最新記事 */
.latest-posts-section {
  margin-top: 4rem;
}
.latest-post-item h3 {
  transition: color 0.3s ease;
}
.latest-post-item a:hover h3 {
  color: var(--color-accent-bright); /* Orange */
}

/* レスポンシブ調整 */
@media (max-width: 767px) {
  .main-content.single-post {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .post-meta-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .latest-posts-section .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .single-post .post-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

/* 本文内見出し */
.single-post .post-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-gray-dark); /* Night */
}
.single-post .post-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-gray-dark); /* Night */
}

/* 共通スタイル */
.blog-cta {
  background-color: var(--color-bg-cta, #f8f8f8); /* デフォルト値指定 */
  padding: 2.5rem 1rem;
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--color-text-default);
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-accent-bright);
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

/* モバイル時のフォントサイズ調整 */
@media screen and (max-width: 480px) {
  .cta-title {
    font-size: 1.25rem;
  }

  .cta-text {
    font-size: 0.9rem;
  }
}
