@keyframes snowfall {
    0% {
        transform: translateY(-10vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) translateX(100px);
        opacity: 0;
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes glow {

    0%,
    100% {
        text-shadow:
            0 0 10px rgba(220, 188, 114, 0.8),
            0 0 20px rgba(220, 188, 114, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    50% {
        text-shadow:
            0 0 20px rgba(220, 188, 114, 1),
            0 0 30px rgba(220, 188, 114, 0.8),
            0 0 40px rgba(220, 188, 114, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.3);
    }
}

@keyframes ornament-swing {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.tinkerbell-christmas-dinner {
    --deep-green: #0e2a1f;
    --bordeaux: #7b1528;
    --gold: #dcbc72;
    --ivory: #fbf6ec;
    --red: #c92a3a;
    --dark-green: #1a4d2e;

    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    margin: 0;
    padding: 60px 16px 80px;
    background:
        radial-gradient(circle at 20% 30%, rgba(220, 188, 114, 0.15) 0, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 42, 58, 0.15) 0, transparent 50%),
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.1) 0, transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1) 0, transparent 55%),
        linear-gradient(145deg, #0a1f16, var(--deep-green) 30%, var(--bordeaux) 70%, #5a1020);
    color: #2b2520;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* 降る雪のアニメーション */
.tinkerbell-christmas-dinner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, #fff 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.6) 2px, transparent 2px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    background-position: 0 0, 40px 60px, 80px 30px;
    animation: snowfall 20s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

/* キラキラ星 */
.tinkerbell-christmas-dinner::after {
    content: "✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: 20px;
    color: var(--gold);
    text-align: center;
    padding: 20px;
    animation: twinkle 3s ease-in-out infinite;
    pointer-events: none;
    letter-spacing: 30px;
    opacity: 0.7;
}

/* 中央カード（ゴージャス仕様） */
.tinkerbell-inner {
    max-width: 780px;
    margin: 0 auto;
    background:
        radial-gradient(circle at top left, rgba(220, 188, 114, 0.1) 0%, transparent 40%),
        radial-gradient(circle at bottom right, rgba(201, 42, 58, 0.08) 0%, transparent 40%),
        radial-gradient(circle at top, #fffdf8 0, var(--ivory) 55%, #f6efe2 100%);
    border-radius: 26px;
    padding: 40px 32px 40px;
    position: relative;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(220, 188, 114, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    z-index: 1;
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--gold), var(--red), var(--gold)) 1;
}

/* カード内の装飾ボーダー */
.tinkerbell-inner::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 18px;
    border: 2px solid;
    border-image: linear-gradient(45deg,
            transparent 25%,
            rgba(220, 188, 114, 0.6) 25%,
            rgba(220, 188, 114, 0.6) 50%,
            transparent 50%,
            transparent 75%,
            rgba(220, 188, 114, 0.6) 75%) 1;
    pointer-events: none;
}

/* クリスマスオーナメント装飾 */
.tinkerbell-inner::after {
    content: "🔔 🎄 ⭐ 🕯️ 🎁";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    letter-spacing: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: ornament-swing 4s ease-in-out infinite;
}

/* ヘッダー */
.tinkerbell-header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}

.tinkerbell-brand {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
    font-size: 16px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bordeaux);
    margin-bottom: 16px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* リース風バッジ（よりゴージャス） */
.tinkerbell-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 999px;
    border: 2px solid var(--gold);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(253, 245, 230, 0.95)),
        radial-gradient(circle at center, rgba(220, 188, 114, 0.2), transparent);
    font-size: 18px;
    color: var(--red);
    margin-bottom: 14px;
    font-weight: 600;
    box-shadow:
        0 4px 12px rgba(220, 188, 114, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: glow 2s ease-in-out infinite;
}

.tinkerbell-badge-top::before,
.tinkerbell-badge-top::after {
    content: "❄";
    color: #4a90e2;
    font-size: 1rem;
    animation: twinkle 2s ease-in-out infinite;
}

/* タイトル（視認性強化・グローエフェクト） */
.tinkerbell-title-main {
    margin-top: 10px;
    position: relative;
}

.tinkerbell-title-main h1 {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
    font-size: 2.2rem;
    line-height: 1.6;
    margin: 0;
    color: #35241e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Christmas Dinner 2025を超目立つゴールドに */
.tinkerbell-title-main h1 span {
    display: inline-block;
    padding: 0.15em 0.3em;
    background: linear-gradient(135deg, #b8860b, #ffd700, #ffed4e, #ffd700, #b8860b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.08em;
    font-weight: 900;
    animation: glow 3s ease-in-out infinite;
    filter:
        drop-shadow(0 3px 10px rgba(220, 188, 114, 0.8)) drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    -webkit-text-stroke: 1px rgba(184, 134, 11, 0.3);
    position: relative;
}

/* さらに強調: 背景にゴールドのハイライト */
.tinkerbell-title-main h1 span::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #b8860b, #ffd700, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: blur(8px);
    opacity: 0.6;
}

.tinkerbell-title-sub {
    font-size: 0.95rem;
    color: #7d6a56;
    margin-top: 6px;
    font-style: italic;
    letter-spacing: 0.05em;
}

/* 装飾的な仕切り線 */
.tinkerbell-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 28px auto 24px;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    position: relative;
}

.tinkerbell-divider::before,
.tinkerbell-divider::after {
    content: "";
    flex: 1 1 80px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--gold) 20%,
            var(--red) 50%,
            var(--gold) 80%,
            transparent);
    box-shadow: 0 0 10px rgba(220, 188, 114, 0.5);
}

.tinkerbell-divider span {
    position: relative;
    padding: 0 10px;
}

.tinkerbell-divider span::before {
    content: "✦";
    position: absolute;
    left: -5px;
    color: var(--red);
    animation: twinkle 2s ease-in-out infinite;
}

.tinkerbell-divider span::after {
    content: "✦";
    position: absolute;
    right: -5px;
    color: var(--red);
    animation: twinkle 2s ease-in-out infinite 1s;
}

/* リード文 */
.tinkerbell-lead {
    text-align: center;
    font-size: 1rem;
    line-height: 2;
    color: #493a30;
    margin-bottom: 26px;
    padding: 0 10px;
    position: relative;
}

.tinkerbell-lead strong {
    color: var(--red);
    font-weight: 700;
    background: linear-gradient(transparent 60%, rgba(220, 188, 114, 0.3) 60%);
}

/* 料金ボックス（超ゴージャス） */
.tinkerbell-price-box {
    margin: 0 auto 32px;
    max-width: 700px;
    padding: 24px 24px 20px;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.9), transparent 70%),
        linear-gradient(135deg, #fff9e6, #fef3d8, #fff9e6);
    border-radius: 20px;
    box-shadow:
        0 20px 50px rgba(169, 130, 60, 0.4),
        0 0 0 2px var(--gold),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    border: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.tinkerbell-price-box::before {
    content: "🎁";
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 40px;
    opacity: 0.15;
    transform: rotate(15deg);
}

.tinkerbell-price-box::after {
    content: "🎄";
    position: absolute;
    bottom: -10px;
    left: 20px;
    font-size: 50px;
    opacity: 0.15;
    transform: rotate(-10deg);
}

.tinkerbell-price-main {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    color: var(--red);
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(123, 21, 40, 0.2);
    position: relative;
    z-index: 1;
}

.tinkerbell-price-note {
    font-size: 1.2rem;
    color: #7a6a53;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* セクション見出し */
.tinkerbell-section {
    margin-top: 32px;
}

.tinkerbell-section-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
    font-size: 1.25rem;
    color: var(--deep-green);
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, var(--gold), var(--red), var(--gold)) 1;
}

.tinkerbell-section-title::before {
    content: "🍷";
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.tinkerbell-section>p {
    font-size: 0.96rem;
    color: #5b4a3f;
    line-height: 1.9;
}

/* 日程カード（リッチ仕様） */
.tinkerbell-schedule-card {
    margin-top: 18px;
    padding: 20px 20px 18px;
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(220, 188, 114, 0.1), transparent 60%),
        linear-gradient(135deg, #fffefb, #fffdf7);
    border: 2px solid var(--gold);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tinkerbell-schedule-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.tinkerbell-schedule-card::before {
    content: "⭐";
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    opacity: 0.2;
    animation: twinkle 3s ease-in-out infinite;
}

.tinkerbell-day-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(123, 21, 40, 0.2);
    flex-wrap: wrap;
}

.tinkerbell-day-heading span {
    font-size: 0.85rem;
    color: #7f6a5d;
    font-weight: 500;
}

.tinkerbell-schedule-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 10px;
    font-size: 1rem;
    color: #4a3c34;
}

.tinkerbell-schedule-list li {
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
}

.tinkerbell-schedule-list li::before {
    content: "🔔";
    position: absolute;
    left: 0;
    font-size: 0.9rem;
    animation: ornament-swing 3s ease-in-out infinite;
}

.tinkerbell-artist {
    font-size: 0.92rem;
    color: #4b3630;
    margin-top: 10px;
    padding: 10px;
    background: rgba(220, 188, 114, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.tinkerbell-artist strong {
    color: var(--bordeaux);
}

/* セクション区切り線（よりリッチ） */
.tinkerbell-rule {
    margin: 32px 0 28px;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            var(--gold) 10%,
            var(--red) 30%,
            var(--gold) 50%,
            var(--red) 70%,
            var(--gold) 90%,
            transparent);
    opacity: 0.9;
    box-shadow: 0 2px 8px rgba(220, 188, 114, 0.4);
    position: relative;
}

.tinkerbell-rule::after {
    content: "❄";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--ivory);
    padding: 0 10px;
    color: #4a90e2;
    font-size: 1.2rem;
}

/* ご予約・お問い合わせ */
.tinkerbell-contact-block p {
    font-size: 0.96rem;
    line-height: 1.9;
    color: #5b4a3f;
}

.tinkerbell-contact-info {
    margin-top: 12px;
    font-size: 0.96rem;
    padding: 16px;
    background: rgba(220, 188, 114, 0.08);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.tinkerbell-contact-info strong {
    font-weight: 700;
    color: var(--bordeaux);
}

/* CTAボタン（超ゴージャス） */
.tinkerbell-cta-wrap {
    margin-top: 24px;
    text-align: center;
}

.tinkerbell-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, #c92a3a, #7b1528, #c92a3a);
    background-size: 200% 200%;
    color: #fffdf5;
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    border: 3px solid var(--gold);
    box-shadow:
        0 16px 40px rgba(123, 21, 40, 0.6),
        0 0 20px rgba(220, 188, 114, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tinkerbell-cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.tinkerbell-cta-btn::after {
    content: "🎄";
    position: absolute;
    right: 15px;
    font-size: 1.2rem;
    animation: ornament-swing 2s ease-in-out infinite;
}

.tinkerbell-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(123, 21, 40, 0.7),
        0 0 30px rgba(220, 188, 114, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    background-position: right center;
}

/* 電話リンク */
.tinkerbell-christmas-dinner a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.tinkerbell-christmas-dinner a:hover {
    color: var(--bordeaux);
    text-decoration: underline;
}

.tinkerbell-contact-info a {
	    color: #D82D2C !important;
}
/* 注意書き */
.tinkerbell-notice {
    margin-top: 24px;
    font-size: 0.84rem;
    color: #7b6c5d;
    text-align: right;
    font-style: italic;
}

/* ============================================
   レスポンシブ対応（タブレット・スマホ）
============================================ */

/* タブレット（768px以下） */
@media (max-width: 768px) {
    .tinkerbell-christmas-dinner {
        padding: 50px 16px 70px;
    }

    .tinkerbell-inner {
        padding: 36px 24px 36px;
        border-radius: 20px;
    }

    .tinkerbell-inner::after {
        font-size: 28px;
        letter-spacing: 16px;
        top: -12px;
    }

    .tinkerbell-title-main h1 {
        font-size: 1.9rem;
    }

    .tinkerbell-badge-top {
        font-size: 10.5px;
        padding: 7px 16px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .tinkerbell-lead {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .tinkerbell-price-box {
        max-width: 100%;
        padding: 20px 20px 18px;
    }

    .tinkerbell-section-title {
        font-size: 1.15rem;
    }

    .tinkerbell-cta-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

/* スマホ（640px以下） */
@media (max-width: 640px) {
    .tinkerbell-christmas-dinner {
        padding: 30px 12px 60px;
        /* モバイルでは背景をシンプルに */
        background: linear-gradient(145deg, var(--deep-green), var(--bordeaux));
    }

    /* 雪と星のエフェクトをモバイルでは非表示 */
    .tinkerbell-christmas-dinner::before,
    .tinkerbell-christmas-dinner::after {
        display: none;
    }

    .tinkerbell-inner {
        padding: 28px 20px 28px;
        border-radius: 16px;
        /* モバイルでは影を軽く */
        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.4),
            0 0 0 2px rgba(220, 188, 114, 0.4);
    }

    .tinkerbell-inner::before {
        inset: 10px;
    }

    .tinkerbell-inner::after {
        font-size: 22px;
        letter-spacing: 10px;
        top: -10px;
		        left: 10%;
    }

    .tinkerbell-brand {
        font-size: 10px;
        letter-spacing: 0.2em;
    }

    .tinkerbell-badge-top {
        font-size: 9.5px;
        padding: 6px 12px;
        gap: 6px;
        max-width: 95%;
        text-align: center;
        line-height: 1.6;
    }

    .tinkerbell-badge-top::before,
    .tinkerbell-badge-top::after {
        font-size: 0.85rem;
    }

    .tinkerbell-title-main {
        margin-top: 8px;
    }

    .tinkerbell-title-main h1 {
        font-size: 1.6rem;
        line-height: 1.5;
    }

    .tinkerbell-title-main h1 span {
        padding: 0.1em 0.2em;
        letter-spacing: 0.05em;
        /* モバイルでもゴールドを目立たせる */
        -webkit-text-stroke: 0.5px rgba(184, 134, 11, 0.5);
    }

    .tinkerbell-title-sub {
        font-size: 0.75rem;
        margin-top: 8px;
    }

    .tinkerbell-divider {
        font-size: 0.9rem;
        gap: 10px;
        margin: 22px auto 20px;
    }

    .tinkerbell-divider::before,
    .tinkerbell-divider::after {
        flex: 1 1 40px;
    }

    .tinkerbell-lead {
        font-size: 0.92rem;
        line-height: 1.85;
        padding: 0 5px;
        margin-bottom: 22px;
    }

    .tinkerbell-price-box {
        padding: 18px 16px 16px;
        border-radius: 16px;
        margin-bottom: 28px;
    }

    .tinkerbell-price-box::before {
        font-size: 32px;
        top: -8px;
        right: 10px;
    }

    .tinkerbell-price-box::after {
        font-size: 38px;
        bottom: -8px;
        left: 10px;
    }

    .tinkerbell-price-main {
        font-size: 1.3rem;
        letter-spacing: 0.08em;
    }

    .tinkerbell-price-note {
        font-size: 0.84rem;
        line-height: 1.7;
    }

    .tinkerbell-section {
        margin-top: 28px;
    }

    .tinkerbell-section-title {
        font-size: 1.1rem;
        gap: 8px;
        margin-bottom: 12px;
        flex-wrap: wrap;
        width: 100%;
    }

    .tinkerbell-section-title::before {
        font-size: 1.2rem;
    }

    .tinkerbell-section>p {
        font-size: 0.92rem;
        line-height: 1.85;
    }

    .tinkerbell-schedule-card {
        padding: 16px 16px 14px;
        border-radius: 14px;
        margin-top: 14px;
    }

    .tinkerbell-schedule-card::before {
        font-size: 24px;
        top: 8px;
        right: 10px;
    }

    .tinkerbell-day-heading {
        font-size: 1rem;
        gap: 8px;
        margin-bottom: 8px;
    }

    .tinkerbell-day-heading span {
        font-size: 0.8rem;
    }

    .tinkerbell-schedule-list {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .tinkerbell-schedule-list li {
        margin-bottom: 5px;
        padding-left: 18px;
    }

    .tinkerbell-schedule-list li::before {
        font-size: 0.85rem;
    }

    .tinkerbell-artist {
        font-size: 0.88rem;
        padding: 8px;
        margin-top: 8px;
    }

    .tinkerbell-rule {
        margin: 28px 0 24px;
    }

    .tinkerbell-rule::after {
        font-size: 1rem;
        padding: 0 8px;
    }

    .tinkerbell-contact-block p {
        font-size: 0.92rem;
        line-height: 1.85;
    }

    .tinkerbell-contact-info {
        font-size: 0.92rem;
        padding: 14px;
        margin-top: 10px;
    }

    .tinkerbell-contact-info p {
        margin: 6px 0;
    }

    .tinkerbell-cta-wrap {
        margin-top: 20px;
    }

    .tinkerbell-cta-btn {
        padding: 13px 28px;
        font-size: 0.88rem;
        letter-spacing: 0.12em;
        width: 100%;
        max-width: 320px;
    }

    .tinkerbell-cta-btn::after {
        right: 12px;
        font-size: 1.1rem;
    }

    .tinkerbell-notice {
        font-size: 0.8rem;
        margin-top: 20px;
        text-align: center;
        padding: 0 5px;
    }
}

/* 極小スマホ（400px以下） */
@media (max-width: 400px) {
    .tinkerbell-christmas-dinner {
        padding: 25px 10px 50px;
    }

    .tinkerbell-inner {
        padding: 24px 16px 24px;
    }

    .tinkerbell-title-main h1 {
        font-size: 1.4rem;
    }

    .tinkerbell-badge-top {
        font-size: 16px;
        padding: 5px 10px;
    }

    .tinkerbell-price-main {
        font-size: 1.55rem;
    }

    .tinkerbell-section-title {
        font-size: 1rem;
    }

    .tinkerbell-cta-btn {
        padding: 12px 24px;
        font-size: 0.82rem;
    }
}