/*
 * ── 爆盛祭キャンペーン固有CSS ──────────────────
 * bakumori.twig 専用スタイル
 */

/* ── CSS変数（爆盛祭テーマ） ─────────────── */
:root {
    --lp-primary: #c0272d;
    --lp-accent: #f5a623;
    --lp-dark: #1a1a1a;
    --lp-light: #f8f9fa;
    --lp-radius: 8px;
}

/* ── 背景 ────────────────────────────────── */
.lp-page .ec-layoutRole__mainWithColumn,
.lp-page .ec-layoutRole__main {
    background: url('/html/user_data/assets/page/bakumori/bakumori-bg3.webp') repeat top left;
}

/* ── クーポンカラーテーマ ─────────────────── */
.lp-coupon--gold   { background: url('/html/user_data/assets/page/bakumori/coupon-bg-gold.webp') center/cover no-repeat; color: #4a2c00; }
.lp-coupon--gold .lp-coupon__items { background: rgba(74,44,0,0.15); }
.lp-coupon--gold .lp-coupon__btn { background: #4a2c00; color: #f7c948; }
.lp-coupon--gold .lp-coupon__btn:hover { color: #f7c948; }

.lp-coupon--red    { background: url('/html/user_data/assets/page/bakumori/coupon-bg-red.webp') center/cover no-repeat; color: #fff; }
.lp-coupon--red .lp-coupon__items { background: rgba(255,255,255,0.2); }
.lp-coupon--red .lp-coupon__btn { background: #fff; color: #c0272d; }
.lp-coupon--red .lp-coupon__btn:hover { color: #c0272d; }

.lp-coupon--black  { background: url('/html/user_data/assets/page/bakumori/coupon-bg-black.webp') center/cover no-repeat; color: #f5a623; }
.lp-coupon--black .lp-coupon__items { background: rgba(245,166,35,0.15); }
.lp-coupon--black .lp-coupon__btn { background: #f5a623; color: #1a1a1a; }
.lp-coupon--black .lp-coupon__btn:hover { color: #1a1a1a; }

/* ── 計算方法ボックス ────────────────────── */
.lp-info-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--lp-radius);
    padding: 20px;
}
.lp-info-box__title {
    font-weight: 700;
    font-size: 1.7rem; /* 17px */
    margin-bottom: 10px;
    color: #856404;
}
.lp-info-box__text {
    font-size: 1.5rem; /* 15px */
    color: #664d03;
    line-height: 1.8;
}

/* ── 価格から探す ───────────────────────── */
.lp-price-range {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    height: 100%;
    min-height: 56px;
    background: #fff;
    border-radius: var(--lp-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    text-decoration: none;
    color: var(--lp-dark);
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.25s, box-shadow 0.25s;
}
.lp-price-range:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    color: var(--lp-dark);
}
.lp-price-range i:first-child {
    font-size: 1.8rem;
    width: 28px;
    flex-shrink: 0;
    text-align: center;
}
.lp-price-range span {
    flex: 1;
    min-width: 0;
}
.lp-price-range__arrow {
    font-size: 1.2rem;
    flex-shrink: 0;
    color: #bbb;
}
@media (max-width: 767px) {
    .lp-price-range {
        font-size: 1.3rem;
        padding: 12px;
        min-height: 48px;
    }
    .lp-price-range i:first-child {
        font-size: 1.6rem;
        width: 24px;
    }
}
