/* ==========================================================================
   .p-lp-wrapper 固有のリセット＆ベース設定（バナー拡大版）
   ========================================================================== */
.p-lp-wrapper *, 
.p-lp-wrapper *::before, 
.p-lp-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.p-lp-wrapper {
    /* 丸ゴシック体、YuGothicを優先 */
    font-family: "Hiragino Maru Gothic ProN", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    
    /* 薄いピンクベージュの背景に、手書き風ドット模様 */
    background-color: #fdfaf7;
    background-image: radial-gradient(#f3e8dc 1px, transparent 1px);
    background-size: 20px 20px;

    color: #5d4b3e; /* 優しいブラウン */
    line-height: 1.8;
    
    /* バナーを大きく見せるため、全体の最大幅を1000pxに拡張 */
    max-width: 1000px; 
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(179, 107, 33, 0.08);
    text-align: left;
    overflow: hidden;
    border-radius: 24px; /* 少し角丸を大きくしてリッチに */
}

/* ==========================================================================
   メインビジュアル（PCで最大横幅いっぱいに拡大！）
   ========================================================================== */
.p-lp-wrapper .p-lp-header {
    width: 100%;
    background-color: #ffffff;
}

.p-lp-wrapper .p-lp-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   テキストコンテンツ共通のインナー枠（文字の読みやすさをキープ）
   ========================================================================== */
/* バナー以外の各セクションを、読みやすい「最大幅680px」で中央寄せにします */
.p-lp-wrapper .p-lp-intro,
.p-lp-wrapper .p-lp-notice,
.p-lp-wrapper .p-lp-footer {
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
}

/* ==========================================================================
   リード文セクション（メリハリ強化）
   ========================================================================== */
.p-lp-wrapper .p-lp-intro {
    padding: 70px 30px 60px; /* 上のバナーとの間に少しゆとりを持たせました */
    text-align: center;
}

/* 「いよいよ」「から」 */
.p-lp-wrapper .p-lp-catch-date,
.p-lp-wrapper .p-lp-catch-after {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8c7665;
    margin-bottom: 5px;
}

/* 巨大化した日付 */
.p-lp-wrapper .p-lp-main-date {
    font-size: 3.5rem;
    font-weight: bold;
    color: #c53d49; /* ローズレッド */
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

/* ㊊のサイズ調整 */
.p-lp-wrapper .p-lp-main-date span {
    font-size: 2rem;
    position: relative;
    top: -5px;
}

/* タイトル（足跡アイコン付き） */
.p-lp-wrapper .p-lp-catch-title {
    font-size: 2.6rem;
    font-weight: bold;
    margin: 30px 0;
    letter-spacing: 0.05em;
    color: #33241c;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    padding: 0 40px;
}

/* ハムスターの足跡アイコン（CSS描画） */
.p-lp-wrapper .p-lp-icon-foot {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #f7ede2;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.p-lp-wrapper .p-lp-icon-foot::before,
.p-lp-wrapper .p-lp-icon-foot::after {
    content: '';
    position: absolute;
    background-color: inherit;
    border-radius: 50%;
}

.p-lp-wrapper .p-lp-icon-foot::before {
    width: 10px; height: 10px; top: -12px; left: 7px;
    box-shadow: -10px 4px 0 0 #f7ede2, 10px 4px 0 0 #f7ede2;
}

.p-lp-wrapper .p-lp-catch-title .p-lp-icon-foot:first-child {
    left: 0;
}

.p-lp-wrapper .p-lp-catch-title .p-lp-icon-foot:last-child {
    right: 0;
    transform: translateY(-50%) rotate(10deg);
}

/* ジャンガリアン・ゴールデン box */
.p-lp-wrapper .p-lp-intro-box {
    background-color: #ffffff;
    border: 3px solid #f7ede2;
    border-radius: 20px;
    padding: 30px 25px;
    margin-top: 40px;
    box-shadow: inset 0 0 15px rgba(247, 237, 226, 0.5);
}

.p-lp-wrapper .p-lp-intro-box p {
    font-size: 1.2rem;
    margin: 0;
    color: #5d4b3e;
}

.p-lp-wrapper .p-lp-intro-box strong {
    color: #b36b21;
    font-size: 1.4rem;
    font-weight: bold;
    background: linear-gradient(transparent 60%, #fff0db 60%);
}

/* ==========================================================================
   ご注意セクション（もこもこした区切り線）
   ========================================================================= */
.p-lp-wrapper .p-lp-notice {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 45px 30px;
    border-top: 5px dotted #e6ddd4;
    border-bottom: 5px dotted #e6ddd4;
}

.p-lp-wrapper .p-lp-notice-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #33241c;
    margin-bottom: 25px;
    text-align: center;
}

.p-lp-wrapper .p-lp-notice-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.p-lp-wrapper .p-lp-notice-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.7;
}

.p-lp-wrapper .p-lp-notice-item::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #dccfbf;
    font-size: 0.9rem;
}

.p-lp-wrapper .p-lp-notice-item:last-child {
    margin-bottom: 0;
}

/* ※の注意書き */
.p-lp-wrapper .p-lp-caution-text {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #c53d49;
    font-weight: bold;
    background-color: #fff1f2;
    padding: 10px;
    border-radius: 8px;
}

/* ==========================================================================
   カウントダウン・フッターエリア（アニメーション）
   ========================================================================== */
.p-lp-wrapper .p-lp-footer {
    padding: 60px 20px 80px;
    text-align: center;
}

.p-lp-wrapper .p-lp-footer-date {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: #33241c;
}

.p-lp-wrapper .p-lp-coming-soon {
    display: inline-block;
    background-color: #5d4b3e;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    padding: 18px 60px;
    border-radius: 100px;
    box-shadow: 0 10px 20px rgba(93, 75, 62, 0.2);
    animation: p-lp-ふわふわ 3s infinite ease-in-out;
}

@keyframes p-lp-ふわふわ {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
    }
}

/* ==========================================================================
   レスポンシブ対応（スマホ向けの微調整）
   ========================================================================== */
@media screen and (max-width: 640px) {
    .p-lp-wrapper {
        border-radius: 0;
        box-shadow: none;
    }
    .p-lp-wrapper .p-lp-intro {
        padding: 40px 20px;
    }
    .p-lp-wrapper .p-lp-main-date {
        font-size: 2.6rem;
    }
    .p-lp-wrapper .p-lp-main-date span {
        font-size: 1.5rem;
    }
    .p-lp-wrapper .p-lp-catch-title {
        font-size: 1.8rem;
        padding: 0 30px;
    }
    .p-lp-wrapper .p-lp-icon-foot {
        width: 18px;
        height: 18px;
    }
    .p-lp-wrapper .p-lp-icon-foot::before {
        width: 8px; height: 8px; top: -10px; left: 5px;
        box-shadow: -8px 3px 0 0 #f7ede2, 8px 3px 0 0 #f7ede2;
    }
    .p-lp-wrapper .p-lp-intro-box p {
        font-size: 1rem;
    }
    .p-lp-wrapper .p-lp-intro-box strong {
        font-size: 1.1rem;
    }
    .p-lp-wrapper .p-lp-coming-soon {
        font-size: 1.4rem;
        padding: 15px 40px;
    }
}