/* ページの背景を少し暗くして、本のページを目立たせる */
body {
    background-color: #EAE7E2; /* 少しざらついた紙のような色 */
}

/* 本文エリアを白く、ページの用紙のように見せる */
.monologue-layout {
    max-width: 600px; /* 文庫本の幅に近づける */
    margin: 3rem auto;
    padding: 40px 50px;
    background-color: #FDFCF7; /* クリーム色の紙 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* ページが浮いているような影 */
    border: 1px solid #DDD;
}

/* タイトルのスタイル */
.monologue-layout h1 {
    font-family: "HGP明朝B","Hiragino Mincho ProN", "MS Mincho", serif;
    text-align: center;
    margin-bottom: 2em;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* --- 記事の区切り線 (シンプル版) --- */
.entry-divider {
  border: 0; /* 他の線は消す */
  border-top: 3px double gray; /* 太さ(例:3px)・スタイル・色 */
  margin-top: 2em;
  margin-bottom: 2em;
}

