/* 基本設定 */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #fff;
    background: url('images/background.jpg') no-repeat center center fixed;
    background-size: cover;
}

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

/* ロゴ */
.logo img {
    height: 50px;
}

/* ハンバーガーメニュー */
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

/* ナビゲーションメニュー */
nav {
    position: relative;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

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

/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: rgba(0, 0, 0, 0.9);
        width: 180px;
        padding: 10px;
        border-radius: 5px;
        text-align: right;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        padding: 10px;
    }
}

/* ヒーローセクション */
.hero {
    text-align: center;
    padding: 150px 20px;
    background: rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

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

.btn {
    display: inline-block;
    padding: 10px 25px;
    margin-top: 20px;
    background: #f39c12;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

/* コンテンツセクション */
.content {
    padding: 50px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    margin: 20px;
    border-radius: 10px;
}

.content h2 {
    font-size: 35px;
    margin-bottom: 20px;
}

.content p {
    font-size: 18px;
    line-height: 1.6;
}

/* フッター */
footer {
    text-align: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
}