/* ベース設定 */
body {
    background: #fff;
    color: #333;
    font-family: "游明朝", "Yu Mincho", "MS P明朝", serif;
    line-height: 1.9;
    margin: 0;
    padding: 40px 0;
}

/* 全体ラップ */
.wrap {
    max-width: 320px;
    margin: 0 auto;
    padding: 0 10px;
}

/* タイトル画像 */
.title-image {
    text-align: center;
    margin-bottom: 20px;
}

/* 章リスト */
.chapter-list p {
    margin: 1px 0;
    font-size: 13px;
    color: #999;
}

.chapter-list a {
    color: #999;
    text-decoration: none;
    transition: 0.2s;
}

.chapter-list a:hover {
    color: #000;
}

/* ピンク色の章 */
.chapter-list a.pink {
    color: #ffe0e0;
}

/* 区切り線 */
hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 15px 0;
}