/* ページ全体のスタイル */
body {
    font-family: 'Helvetica', sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    position: relative; /* ボタンの位置を決めるために親要素を相対位置に設定 */
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #007BFF; /* 青色 */
}

.section {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #007BFF; /* 青色 */
    margin-bottom: 15px;
}

.paragraph {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
}

.list {
    padding-left: 20px;
}

.list li {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

/* リンクスタイル */
a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0056b3;
}

/* TOPページに戻るボタン */
.top-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007BFF; /* 青色 */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s;
}

.top-button:hover {
    background-color: #0056b3; /* ホバー時の色 */
}
