/* -------------------------------
// ページ共通のスタイル
---------------------------------- */
body {
    font-family: sans-serif; /* フォントをゴシック体に設定 */
    line-height: 1.8; /* 行間を1.8に設定 */
    font-size: 16px; /* 基本フォントサイズ：16px */
}

header,
section,
footer {
    text-align: center;
    padding: 40px;
}

h2 {
    font-size: 24px;
    border-bottom: 1px solid black;
}

/* -------------------------------
// ヘッダー
---------------------------------- */
header {
    background: url(../img/main-visual.jpg) no-repeat bottom;
    color: white;
    padding-top: 140px;
    padding-bottom: 140px;
}

header h1 {
    font-size: 48px;
}

/* -------------------------------
// main
---------------------------------- */
/* あらすじ */
#overview {
}

/* 登場人物 */
#characters {
    background-color: #f0f0f0;
}

#characters ul {
    text-align: left;
    margin: 0 auto;
    width: fit-content;
}

/* 物語の流れ */
#plot {
}

#plot ol {
    text-align: left;
    width: fit-content;
    margin: 0 auto;
}

/* テーマ・魅力 */
#theme {
    background-color: #f0f0f0;
}

/* 画像ライブラリ */
#gallery {
}

#gallery ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

#gallery ul img {
    width: 300px;
}

/* 参考リンク */
#links {
    background-color: #f0f0f0;
}

/* -------------------------------
// フッター
---------------------------------- */
footer {
    background: #333;
    color: white;
    font-size: 14px;
}
