/* ページの基本設定 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #fff;
    margin: 0;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* コンテンツセクションのスタイル */
.container {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
}

/* ロゴとタイトル */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.logo-image {
    width: 150px; /* ロゴ画像のサイズを調整 */
    height: auto;
    animation: rotateLogo 2s ease-in-out forwards; /* 回転アニメーションの適用 */
    opacity: 0; /* 最初は非表示に */
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a237e; /* ロゴの色に合わせる */
    margin-top: 20px;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-top: 10px;
}

/* セクション見出し */
h2 {
    font-size: 2rem;
    color: #1a237e;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 5px;
    margin-top: 50px;
    margin-bottom: 20px;
}

/* テキストと段落 */
p {
    font-size: 1rem;
    color: #666;
    text-align: left;
}

.coming-soon {
    font-size: 1.5rem;
    color: #e65100;
    font-weight: bold;
    margin-top: 20px;
}

/* アニメーションキーフレーム */
@keyframes rotateLogo {
    from {
        transform: rotateY(360deg) scale(0.5);
        opacity: 0;
    }
    to {
        transform: rotateY(0deg) scale(1);
        opacity: 1;
    }
}