/* ====== コンテナ全体の中央寄せとパディング ====== */
.single-news .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ====== レイアウト（メイン＋サイドバー） ====== */
.single-news .content-area {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

/* ====== メインコンテンツエリア ====== */
.single-news .main-content {
  flex: 1 1 0;
  max-width: 100%;
}

/* ====== 記事タイトル ====== */
.single-news h1 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* ====== 投稿日付 ====== */
.single-news .post-date {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}

/* ====== 本文エリア ====== */
.single-news .post-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-gray-dark);
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

/* ====== サムネイル画像 ====== */
.single-news .post-thumbnail {
  margin-bottom: 1.5rem;
  width: 100%;
  height: auto;
}

/* ====== サイドバー ====== */
.single-news .sidebar {
  flex: 0 0 280px;
  background-color: var(--color-gray-light);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.single-news .sidebar h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.single-news .sidebar .news-list li {
  margin-bottom: 0.5rem;
}

.single-news .sidebar .news-list a {
  color: var(--color-blue);
  text-decoration: none;
}

.single-news .sidebar .news-list a:hover {
  text-decoration: underline;
}

/* ====== パンくずリスト ====== */
.single-news .breadcrumb {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
}

.single-news .breadcrumb a {
  color: var(--color-blue);
  text-decoration: none;
}

.single-news .breadcrumb a:hover {
  text-decoration: underline;
}

/* ====== モバイル対応 ====== */
@media (max-width: 768px) {
  .single-news .content-area {
    flex-direction: column;
  }

  .single-news .sidebar {
    width: 100%;
    margin-top: 2rem;
  }
}

/* 共通スタイル */
.blog-cta {
  background-color: #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;
  }
}
