/* 全体のリセット */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    text-align: center;
}

/* ヘッダー */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007bff;
    color: white;
    padding: 15px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    margin: 0;
    font-size: 22px;
}

/* ナビゲーションバー */
nav {
    display: flex;
    gap: 20px; /* メニュー間のスペース */
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #0056b3;
}

/* メインコンテンツ */
.content {
    padding: 80px 20px; /* ヘッダーの高さを考慮 */
}

/* スマホ最適化 */
@media (max-width: 768px) {
    nav {
        flex-direction: column; /* スマホでは縦並び */
        align-items: center;
    }

    nav a {
        font-size: 16px;
        width: 100%; /* 横幅いっぱい */
        text-align: center;
    }

    h1 {
        font-size: 20px;
    }
}