@charset "UTF-8";

/* main要素のレイアウト */
.coming-soon-main {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
}

/* 中央の白いコンテナ枠 */
.coming-soon-main .news-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* タイトル部分のセクション */
.coming-soon-main .content-section {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

/* Coming Soonの見出し */
.coming-soon-main .main-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: #333;
    margin: 0;
}

/* 準備中のテキスト文 */
.coming-soon-main .coming-soon-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-weight: bold;
}

/* お辞儀の画像 */
.coming-soon-main .bow-image {
    max-width: 100%;
    height: auto;
}

/* ホームへ戻るボタンの親要素 */
.coming-soon-main .back-home-wrap {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* ホームへ戻るリンク */
.coming-soon-main .back-home-link {
    text-decoration: none;
    font-weight: bold;
    color: inherit;
    font-size: 0.95rem;
}