/* ========= 基本スタイル ========= */
body {
    margin: 0;
    background: #111;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

/* ========= ナビバー ========= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #000;
    color: #fff;
}

.logo-img {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo-img img {
    height: 100%;
    width: auto;
}

nav a {
    margin-left: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: #ff0000;
}

/* ========= ヒーローセクション ========= */
.hero {
    background: url('https://zephyrus-net.com/header.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 80px;
    padding: 20px 40px;
    border-radius: 8px;
    color: #fff;
}

/* ========= 統計エリア ========= */
.stats {
    text-align: center;
    padding: 60px 20px;
    background: #eee;
    color: #000;
}

.stats-box {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 30px;
}

.stat .num {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000;
}

/* ========= 特徴セクション ========= */
.features {
    padding: 60px;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.feature-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.feature {
    width: 30%;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
}

.feature h3 {
    color: #ff3333;
}

/* ========= 利用規約/プライバシーポリシーコンテンツ ========= */
.page-content {
    max-width: 1500px;
    margin: 30px auto;
    padding: 20px 25px;
    line-height: 1.8;
    background: #1a1a1a;
    border-radius: 10px;
}

/* ========= フッター ========= */
footer {
    text-align: center;
    padding: 30px;
    background: #000;
    margin-top: 40px;
}

.footer-links a {
    margin: 0 10px;
    color: #bbb;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

/* ======================================
   📱 スマホ対応 メディアクエリ
   幅 768px 以下（スマホ）
====================================== */
@media (max-width: 768px) {

    /* ナビバー縦並び */
    .navbar {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 10px;
    }

    nav a {
        margin: 10px 0;
    }

    /* ロゴ縮小 */
    .logo-img {
        height: 40px;
    }

    .logo-img img {
        height: 100%;
    }

    /* ヒーロー縮小 */
    .hero {
        height: 250px;
        padding: 20px;
    }

    .hero h1 {
        font-size: 42px;
        padding: 10px 20px;
    }

    /* 統計エリア縦並び */
    .stats-box {
        flex-direction: column;
        gap: 20px;
    }

    /* 特徴カード縦並び */
    .feature-grid {
        flex-direction: column;
    }

    .feature {
        width: 100%;
    }

    /* page-content 余白最適化 */
    .page-content {
        margin: 15px;
        padding: 15px;
    }
}

/* ======================================
   📱 超小画面（幅480px以下）
====================================== */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    nav a {
        font-size: 14px;
    }

    .features {
        padding: 40px 20px;
    }
}