/* ハンバーガーメニューのスタイル */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-right: 20px; /* 右側の余白 */
}

.hamburger div {
    width: 100%;
    height: 3px;
    background-color: #fff; /* ハンバーガーメニューの色を白に */
}

@media screen and (max-width: 428px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed; /* 固定配置に変更 */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* 全画面を覆う */
        background-color: rgba(0, 122, 204, 0.8); /* ヘッダーと同じ色 */
        z-index: 9999;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .nav-links a {
        padding: 15px;
        font-size: 1.5rem;
        color: #fff; /* テキストの色を白に */
        text-decoration: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
    }

    footer {
        font-size: 10px;
    }
}