body {
    background-color: black;
    color: #AAAAAA;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header {
    width: 100%;
    background-color: #333;
    padding: 20px 0;
    text-align: center;
}

.title {
    font-size: 50px;
    color: #FFFFFF;
    margin: 0;
}

.main-content {
    width: 80%;
    max-width: 800px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.description {
    font-size: 20px;
    color: #AAAAAA;
    margin: 20px 0;
    text-align: center;
}

.button-container {
    margin: 20px 0;
}

.subtitle {
    font-size: 30px;
    color: #FFFFFF;
    margin-top: 40px;
    text-align: center;
}

.section {
    text-align: left;
    margin: 20px 0;
}

/* Playボタンのスタイル */
button {
    background-color: #4CAF50; /* 緑色 */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px; /* 角を丸く */
    transition: background-color 0.3s ease; /* ホバー時のアニメーション */
}

button:hover {
    background-color: #45a049; /* ホバー時の色 */
}

/* Eyecatch画像のスタイル */
.eyecatch {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

/* レスポンシブデザイン */
@media (max-width: 600px) {
    .title {
        font-size: 30px;
    }

    .description {
        font-size: 16px;
    }

    .subtitle {
        font-size: 24px;
    }

    button {
        padding: 10px 20px;
        font-size: 14px;
    }
}