/* 背景と全体設定 */
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: 10vh auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.85); /* やや透過の黒背景 */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* 見出し */
h1 {
    font-size: 2.5rem;
    color: #ffcc00; /* 明るい黄色 */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
h2 {
    font-size: 2rem;
    color: #ff5733; /* 赤系 */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
h3 {
    font-size: 1.5rem;
    color: #ffcc00;
}

/* 段落 */
p {
    font-size: 1.2rem;
    line-height: 1.6;
}

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

/* 未来考察（デザインを維持） */
.future-analysis {
    background: rgba(255, 99, 71, 0.8);
    color: white;
    font-size: 1.3rem;
    padding: 20px;
    border-radius: 10px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

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

/* ボタン */
.btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: #5bc0de;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 20px auto;
    width: 200px;
}
.btn:hover {
    background: #3498db;
}
/* FAQのデザイン */
.qa-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}
.question {
    font-weight: bold;
    color: #ffcc00;
}
.answer {
    font-size: 16px;
    color: #ddd;
}
