/*
 * New Single Page Styles
 * ブログ詳細ページ専用スタイル
 * 元の single.php のスタイルを再現
 */

/* =========================================
   記事エリア全体の幅制限
   ========================================= */
/* 記事全体（サムネイル、メタ、コンテンツ）を同じ幅に統一 */
.blog-single-article {
  max-width: 935px;
  margin: 0 auto;
}

/* 見出しスタイルのリセット（元ページと同じシンプルなスタイル） */
.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4,
.blog-single-content h5,
.blog-single-content h6 {
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  color: #333;
  display: block;
  position: static;
  border-bottom: none;
  letter-spacing: 1px;
  margin-top: 30px;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

/* h2: 太字のみ（装飾なし） */
.blog-single-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

/* h3 */
.blog-single-content h3 {
  font-size: 2rem;
  font-weight: 700;
}

/* h4 */
.blog-single-content h4 {
  font-size: 1.8rem;
  font-weight: 600;
}

/* h2/h3の疑似要素（下線）を完全に削除 */
.blog-single-content h2::after,
.blog-single-content h3::after,
.blog-single-content h4::after {
  display: none !important;
  content: none !important;
}

/* =========================================
   本文テキスト
   ========================================= */
.blog-single-content p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1em;
}

/* =========================================
   リスト
   ========================================= */
.blog-single-content ul {
  list-style-type: square;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.blog-single-content ul li {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 0.5em;
}

.blog-single-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.blog-single-content ol li {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 0.5em;
}

/* =========================================
   画像
   ========================================= */
.blog-single-content img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

/* =========================================
   リンク
   ========================================= */
.blog-single-content a {
  color: #308de6;
  text-decoration: underline;
}

.blog-single-content a:hover {
  opacity: 0.7;
}
