body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    color: white;
    overflow: hidden; /* スクロールバーを非表示 */
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    /* 星空の背景画像を指定してください。なければ単色背景になります */
    background-color: #0c0a1f; /* ダークネイビー */
    background-image: url('YOUR_STARRY_SKY_IMAGE.jpg'); /* 例: https://source.unsplash.com/random/1600x900/?night,sky */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* 背景画像の上に少し暗いフィルターをかける */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}


.hero-content {
    position: relative; /* フィルターより手前に表示 */
    z-index: 1;
    padding: 20px;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin: 10px 0 25px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.description {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1a73e8; /* 魅力的な青 */
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #4a8df1;
    transform: translateY(-3px); /* 少し浮き上がる効果 */
}

/* スマートフォン向けの調整 */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
    .description {
        font-size: 0.9rem;
    }
}