/* 全体のスタイル設定 */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfdfd; /* 背景を少しだけ白からずらす */
    color: #000000; /* 文字の基本色を黒に */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* 画面全体の高さを確保 */
    text-align: center;
}

/* 中央配置用のコンテナ */
.container {
    max-width: 800px;
    padding: 20px;
}

/* メインタイトル */
h1 {
    font-size: 28px;
    border-bottom: 1px solid #ccc; /* 下線を追加 */
    padding-bottom: 15px;
    margin-bottom: 20px;
}

/* 「キャンペーンサイト準備中」のテキスト */
.lead {
    font-size: 22px;
    font-weight: bold;
    color: #c0392b; /* 少し赤みのある色で注意を引く */
}

/* 通常のテキスト */
p {
    font-size: 16px;
    line-height: 1.8; /* 行間を少し広めにとる */
}

/* キャンペーン期間のボックス */
.period {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #eaeaea; /* 薄い境界線 */
    border-radius: 8px; /* 角を丸くする */
    background-color: #ffffff; /* ボックス内を白に */
}

/* キャンペーン期間のテキスト */
.period p {
    margin: 5px 0; /* 上下の余白を調整 */
}