/* 子育てブログ — main.py が自動生成 */
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem 1rem 2.5rem;
  line-height: 1.85;
  color: #333;
  background-color: #fafafa;
}

body > h1 {
  font-size: 1.5rem;
  line-height: 1.45;
  margin-bottom: 0.5em;
}

body > p:first-of-type {
  margin-bottom: 1.5em;
}

body a {
  color: #2a6496;
}

/* ===== 子育てブログ記事用（article_rules.dat 対応） ===== */

/* 強調マーカー */
strong.marker,
.marker {
  background: linear-gradient(transparent 60%, #fff3b0 60%);
  font-weight: 700;
  padding: 0 0.1em;
}

/* 注意・注意喚起 */
.txt-alert {
  display: inline;
  color: #c0392b;
  font-weight: 700;
  background-color: #fdecea;
  padding: 0.15em 0.45em;
  border-radius: 4px;
  border-left: 3px solid #e74c3c;
}

/* メリット・ポイント */
.txt-point {
  display: inline;
  color: #1a6b3c;
  font-weight: 700;
  background-color: #e8f8ef;
  padding: 0.15em 0.45em;
  border-radius: 4px;
  border-left: 3px solid #27ae60;
}

/* 引用ブロック */
.entry-content blockquote,
article blockquote,
blockquote {
  margin: 1.25em 0;
  padding: 0.85em 1.1em;
  border-left: 4px solid #6c8ebf;
  background-color: #f4f7fb;
  color: #444;
  font-size: 0.95em;
  line-height: 1.7;
}

/* 見出し・リスト（テーマ上書き用） */
.entry-content h2,
article h2 {
  margin-top: 2em;
  margin-bottom: 0.75em;
  padding-bottom: 0.35em;
  border-bottom: 2px solid #e0e0e0;
  font-size: 1.35em;
  line-height: 1.4;
}

.entry-content h3,
article h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: 1.15em;
  line-height: 1.45;
}

.entry-content ul,
article ul {
  margin: 0.75em 0 1.25em;
  padding-left: 1.5em;
  list-style-type: disc;
}

.entry-content ul li,
article ul li {
  margin-bottom: 0.45em;
  line-height: 1.75;
}

/* 冒頭の一言メッセージ（key_takeaway） */
.key-takeaway {
  margin: 1.25em 0 1.75em;
  padding: 1em 1.15em;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
  border: 1px solid #c5d9f0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(60, 100, 150, 0.08);
}

.key-takeaway__label {
  display: block;
  margin-bottom: 0.45em;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #4a6fa5;
  text-transform: uppercase;
}

.key-takeaway__text {
  margin: 0;
  font-size: 1.05em;
  line-height: 1.75;
  color: #2c3e50;
  font-weight: 600;
}

/* アイキャッチ画像のスタイル補強 */
.post-image-container {
  width: 100%;
  text-align: center;
  margin: 1.8em 0 2.2em 0;
}

.post-image {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* 角を少し丸めて優しい印象に */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04); /* 悪目立ちしない繊細な影 */
  border: 1px solid rgba(0, 0, 0, 0.03); /* 白背景に溶け込まないための微細な枠線 */
  transition: transform 0.3s ease;
}