/* トップページ */
.top-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 128px); /* ヘッダー＋フッター考慮 */
    background: url('../img/stars_bg.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    position: relative;
    /* 不要な padding 削除済み */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;
    max-width: 90%;
    margin: 0 auto;
}

.hero-logo {
    width: 420px;
    animation: float 6s ease-in-out infinite;
}

.start-button {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e8ff;
    padding: 0.8em 2.5em;
    border: 2px solid #e0e8ff;
    border-radius: 50px;
    font-size: 1.2em;
    text-decoration: none;
    transition: all 0.3s;
}

.start-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* ボタンアニメーション */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .top-hero {
        min-height: calc(100vh - 191px);
    }
    .hero-content {
        gap: 1.5em;
    }

    .hero-logo {
        width: 300px;
    }

    .start-button {
        font-size: 1em;
        padding: 0.6em 2em;
    }
}
