/* 全体のスタイル */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: white;
    text-align: center;
}

/* ヘッダー */
header {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

h1 {
    margin-left: 20px;
}

/* ハンバーガーメニューのボタン */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger img {
    width: 30px;
}

/* メニュー */
nav {
    display: flex;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* スマホ用のハンバーガーメニュー */
#menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        margin-right: 20px;
    }

    nav {
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: none;
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    /* チェックボックスがONのとき、メニューを表示 */
    #menu-toggle:checked + .hamburger + nav {
        display: flex;
    }
}

/* ヒーローセクション */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('../assets/background.jpg') no-repeat center center/cover;
}

.hero h2 {
    font-size: 40px;
    margin: 10px 0;
}

.hero p {
    font-size: 20px;
}

/* フッター */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    font-size: 14px;
    position: relative;
    width: 100%;
    bottom: 0;
}