/* 背景と全体設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #222, #444); /* ダーク背景 */
    color: white; /* 文字色は白 */
    text-align: center;
}

/* コンテナ */
.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8); /* 半透明の黒背景 */
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* 見出し（h1, h2, h3） */
h1 {
    color: #ffcc00; /* 明るい黄色で視認性アップ */
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
h2 {
    color: #5bc0de; /* 青系 */
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}
h3 {
    color: #f0ad4e; /* オレンジ系 */
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

/* 段落 */
p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* リストの調整（点を削除 or 文字のすぐ左に配置） */
ul {
    list-style-position: inside;
    padding-left: 0;
}
ul li {
    list-style-type: none; /* 点を削除 */
    font-size: 16px;
    line-height: 1.5;
}

/* フッター */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 14px;
}
