/* ==========================================================================
   全体の設定
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%); /* 爽やかで上品なグラデーション */
    color: #333333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
}

/* ==========================================================================
   コンテンツエリア（中央配置・アニメーション）
   ========================================================================== */
.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75); /* 少し透ける白背景で上品に */
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px); /* 背景をほんのりぼかすトレンドのエフェクト */
    
    /* ふわっと浮き上がるアニメーション */
    animation: fadeInUp 1.2s ease-out forwards;
}

/* サブタイトル (COMING SOON) */
.subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: #718096;
    font-weight: 700;
    margin-bottom: 15px;
    text-indent: 0.3em; /* 文字間隔を広げた分のズレを調整 */
}

/* メインタイトル */
.title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 25px;
}

/* 区切り線 */
.divider {
    border: none;
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, #3182ce, #63b3ed); /* グラデーションのアクセント線 */
    margin: 0 auto 30px auto;
}

/* メッセージ文章 */
.message {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 300;
    margin-bottom: 20px;
}

.sub-message {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
}

/* ==========================================================================
   アニメーション定義
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   レスポンシブ（スマホ対応）
   ========================================================================== */
@media (max-width: 480px) {
    .container {
        padding: 40px 20px;
    }
    .title {
        font-size: 1.4rem;
    }
    .message {
        font-size: 0.9rem;
        text-align: left; /* スマホで長文が崩れる場合は左寄せが見やすいです */
    }
}