/* 全体の設定 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* ヘッダー */
.header {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    text-align: center;
}

.title {
    margin: 0;
    font-size: 2em;
}

.navbar {
    margin-top: 10px;
}

.navbar ul {
    list-style: none;
    padding: 0;
}

.navbar ul li {
    display: inline;
    margin: 0 15px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

.navbar ul li a:hover {
    text-decoration: underline;
}

/* メインコンテンツ */
main {
    padding: 30px;
}

.terms-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.terms-section h2 {
    color: #4CAF50;
    font-size: 1.6em;
    margin-top: 20px;
}

.terms-section p {
    font-size: 1.2em;
    line-height: 1.8;
    margin: 10px 0;
}

.terms-section ul {
    font-size: 1.2em;
    line-height: 1.8;
    margin: 10px 0;
    padding-left: 20px;
}

.terms-section ul li {
    margin-bottom: 10px;
}

/* フッター */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 1em;
}
