/* base.css */

/* 全体のテーマカラーを設定 */
:root {
    --primary-color: #007bff;
    --secondary-color: #f4f4f9;
    --text-color: #333;
    --button-color: #0056b3;
    --button-hover-color: #004080;
}

/* 全体のスタイル */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: var(--secondary-color);
    color: var(--text-color);
    margin: 0;
}

/* ヘッダー */
header {
    background: var(--primary-color);
    color: #fff;
    padding: 20px 40px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 32px;
    margin: 0;
}

nav ul {
    list-style: none;
    margin-top: 10px;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* フッター */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
