/* 共通設定 */

/* --- ここから通常のスタイル --- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%);
    color: #1e293b;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 107, 157, 0.6), 0 0 60px rgba(255, 107, 157, 0.3);
    }
}

.almott-lp-container {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    background: white !important;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.almott-lp-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --almott-navy: #27499d;
    --spring-pink: #ff6b9d;
    --accent-red: #e11d48;
    --spring-green: #10b981;
    --bg-soft: #f1f5f9;
    --accent-purple: #8b5cf6;
    --accent-orange: #f97316;
}

/* 装飾的背景要素 */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--spring-pink), var(--accent-purple));
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--spring-green), var(--almott-navy));
    bottom: 200px;
    left: -80px;
    animation: float 8s ease-in-out infinite 1s;
}

.bg-circle-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    top: 50%;
    right: -60px;
    animation: float 7s ease-in-out infinite 2s;
}

.text-center {
    text-align: center;
}

/* ヒーローイメージ */
.hero-wrapper {
    position: relative;
    overflow: hidden;
}

.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, white);
}

/* 導入文 */
.almott-lp-container .intro-section {
    padding: 80px 40px 60px !important;
    text-align: center !important;
    position: relative;
    background: transparent !important;
}

.intro-title {
    font-size: 2.4em;
    font-weight: 900;
    background: linear-gradient(135deg, var(--almott-navy) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out;
}

.intro-text {
    font-size: 1.1em;
    color: #475569;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* クーポンエリア */
.coupon-section {
    padding: 40px 40px 60px;
    position: relative;
    background: white;
}

.coupon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.coupon-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s;
}

.coupon-card:hover::before {
    left: 100%;
}

.coupon-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(39, 73, 157, 0.15);
    border-color: var(--almott-navy);
}

.coupon-card.premium {
    background: linear-gradient(145deg, #fff1f2 0%, #fce7f3 100%);
    border: 3px solid var(--spring-pink);
    box-shadow: 0 12px 30px rgba(255, 107, 157, 0.2);
    animation: pulse-glow 3s ease-in-out infinite;
}

.coupon-card.premium:hover {
    border-color: var(--accent-red);
    box-shadow: 0 25px 60px rgba(225, 29, 72, 0.3);
}

.coupon-card .label {
    font-size: 0.75em;
    font-weight: 900;
    color: #94a3b8;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amount-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.premium .amount-display {
    background: linear-gradient(135deg, var(--accent-red), var(--spring-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.val {
    font-size: 3.2em;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--almott-navy);
}

.premium .val {
    font-size: 3.4em;
}

.unit-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 6px;
    line-height: 1;
}

.unit-yen {
    font-size: 0.95em;
    font-weight: 900;
}

.unit-off {
    font-size: 1.05em;
    font-weight: 900;
}

.almott-lp-container .condition-badge {
    font-size: 0.85em !important;
    background: rgba(39, 73, 157, 0.08);
    padding: 8px 14px !important;
    border-radius: 20px;
    color: var(--almott-navy) !important;
    margin-bottom: 18px;
    display: inline-block;
    font-weight: 700 !important;
    border: 1px solid rgba(39, 73, 157, 0.15);
}

.premium .condition-badge {
    background: rgba(225, 29, 72, 0.1);
    color: var(--accent-red);
    border-color: rgba(225, 29, 72, 0.2);
}

.code-display {
    background: white;
    padding: 12px;
    border: 2px dashed #cbd5e1;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 900;
    margin-bottom: 16px;
    font-size: 1.2em;
    color: #1e293b;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
    padding-top: 32px;
}

.code-display::before {
    content: 'クーポンコード';
    position: absolute;
    top: 6px;
    left: 12px;
    font-size: 0.65em;
    color: #64748b;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
}

.code-display:hover {
    border-color: var(--almott-navy);
    background: #f8fafc;
}

.copy-btn {
    background: linear-gradient(135deg, var(--almott-navy) 0%, #3b5bdb 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.95em;
    font-weight: 900;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-height: 52px;
    box-shadow: 0 4px 15px rgba(39, 73, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.copy-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.copy-btn:active::after {
    width: 300px;
    height: 300px;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 73, 157, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

.premium .copy-btn {
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--spring-pink) 100%);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.premium .copy-btn:hover {
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.5);
}

.copy-btn.copied {
    background: linear-gradient(135deg, var(--spring-green) 0%, #059669 100%) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

#copy-msg {
    text-align: center;
    height: 28px;
    color: var(--spring-green);
    font-weight: 900;
    font-size: 1.05em;
    margin: 20px 0;
    padding: 6px 20px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 10px;
    border: 2px solid #6ee7b7;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

#copy-msg:not(:empty) {
    opacity: 1;
}

/* キャンペーン詳細コンテナ修正 */
.almott-lp-container .campaign-meta-container {
    margin: 60px 40px !important;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    /* 右側（条件）を少し広く */
    gap: 30px;
    align-items: stretch;
}

/* 共通カードスタイル */
.meta-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(39, 73, 157, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* ラベルスタイル */
.almott-lp-container .meta-label {
    font-size: 1.1em !important;
    font-weight: 900;
    color: var(--almott-navy);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.meta-label .icon {
    font-size: 1.4em;
}

.meta-label .sub-text {
    font-size: 0.7em;
    color: #64748b;
    font-weight: normal;
    margin-left: auto;
}

/* --- 左側：日付カードのデザイン --- */
.date-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    flex-direction: column;
}

.date-display {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.year-month {
    font-size: 1.2em;
    font-weight: 900;
    color: #94a3b8;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.days {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.start-date,
.end-date {
    font-size: 2.8em;
    font-weight: 900;
    color: var(--almott-navy);
    line-height: 1;
}

.start-date small,
.end-date small {
    font-size: 0.4em;
    margin-left: 2px;
    color: #64748b;
}

.arrow {
    color: var(--spring-pink);
    font-size: 2em;
    font-weight: 900;
}

/* --- 1. 時間制限（time-limit）を大きく目立たせる修正 --- */
.time-limit {
    font-size: 1.25em;
    /* 文字を大きく */
    font-weight: 900;
    padding: 10px 24px;
    /* 余白を広げてボタンのような存在感に */
    margin-top: 15px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.15);
    /* うっすら影を追加 */
    background: #fee2e2;
    color: var(--accent-red);
    border-radius: 50px;
    /* より丸く */
}

/* --- 右側：条件リストのデザイン --- */
.conditions-card {
    background: linear-gradient(180deg, #ffffff 0%, #fff1f2 100%) !important;
    /* うっすらピンク */
    border: 2px solid #ffe4e6;
}

.condition-tier-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.condition-tier {
    display: flex;
    align-items: stretch;
    background: white;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    overflow: hidden;
    transition: transform 0.2s;
}

.condition-tier:hover {
    transform: translateX(5px);
    border-color: var(--almott-navy);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* バッジ部分（STEP1, 2, PREMIUM） */
.tier-badge {
    writing-mode: vertical-rl;
    /* 縦書き */
    text-orientation: mixed;
    padding: 10px 8px;
    font-size: 0.75em;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    min-width: 40px;
}

.tier-standard .tier-badge {
    background: #94a3b8;
}

.tier-high .tier-badge {
    background: var(--almott-navy);
}

.tier-premium {
    border: 2px solid var(--spring-pink);
}

.tier-premium .tier-badge {
    background: linear-gradient(135deg, var(--accent-red), var(--spring-pink));
    font-size: 0.8em;
}

/* 詳細部分 */
.tier-detail {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.buy-price {
    font-size: 1.1em;
    font-weight: 700;
    color: #475569;
}

.tax-text {
    font-size: 0.7em;
    margin-left: 4px;
    font-weight: normal;
}

.discount-price {
    font-size: 1.6em;
    font-weight: 900;
    color: var(--accent-red);
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 1);
}

/* --- 2. PREMIUMの文字が見えない問題を修正 --- */
/* グラデーション文字はやめて、視認性最強の「濃い赤」にします */
.tier-premium .discount-price {
    background: none !important;
    /* 背景グラデーションを解除 */
    -webkit-text-fill-color: initial !important;
    /* 文字の透過を解除 */
    color: var(--accent-red) !important;
    /* 濃い赤を強制適用 */
    font-size: 2.2em;
    /* サイズもさらに大きくして特別感を出す */
    text-shadow: 2px 2px 0px rgba(255, 220, 230, 0.5);
    /* うっすらピンクの影で立体感 */
    margin-top: -5px;
    /* 大きくした分、少し位置調整 */
}

/* スマホ対応 */
@media (max-width: 700px) {
    .almott-lp-container .campaign-meta-container {
        grid-template-columns: 1fr;
        /* 1列に戻す */
        gap: 20px;
    }

    .tier-detail {
        padding: 10px 15px;
    }

    .buy-price {
        font-size: 0.95em;
    }

    .discount-price {
        font-size: 1.4em;
    }

    /* スマホで見た時も崩れないように調整 */
    .tier-premium .discount-price {
        font-size: 1.8em;
    }
}


/* 会員登録誘導 */
.almott-lp-container .member-cta {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    border-radius: 24px;
    padding: 60px 40px;
    margin: 80px 40px;
    text-align: center;
    color: white !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(4, 120, 87, 0.3);
}

.almott-lp-container .member-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.almott-lp-container .member-cta h3 {
    font-size: 1.7em;
    margin-top: 0;
    font-weight: 900;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff !important;
}

.almott-lp-container .member-cta p {
    font-size: 1.05em;
    margin-bottom: 35px;
    opacity: 0.95;
    position: relative;
    line-height: 1.8;
    color: #ffffff !important;
}

.reg-link-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--spring-green) 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 22px 65px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 1.25em;
    box-shadow: 0 8px 0 #047857, 0 12px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.2s;
    position: relative;
}

.reg-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 11px 0 #047857, 0 15px 30px rgba(0, 0, 0, 0.4);
}

.reg-link-btn:active {
    transform: translateY(4px);
    box-shadow: 0 4px 0 #047857, 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* おすすめ商品 */
.recommend-section {
    padding: 0 40px;
    margin-bottom: 80px;
    position: relative;
}

.recommend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.item-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.item-card {
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    background: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.item-card:hover {
    border-color: var(--spring-pink);
    box-shadow: 0 25px 50px rgba(255, 107, 157, 0.15);
    transform: translateY(-8px) rotate(1deg);
}

.item-img {
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95em;
    color: #cbd5e1;
    font-weight: 900;
    overflow: hidden;
    position: relative;
}



.item-info {
    padding: 28px;
}

.item-title {
    font-weight: 900;
    font-size: 1.2em;
    margin-bottom: 12px;
    color: var(--almott-navy);
}

.item-desc {
    font-size: 0.95em;
    color: #64748b;
    line-height: 1.7;
}

.all-products-btn {
    display: block;
    width: 300px;
    margin: 50px auto;
    border: 3px solid var(--almott-navy);
    background: white;
    color: var(--almott-navy);
    text-align: center;
    padding: 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1em;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(39, 73, 157, 0.15);
}

.all-products-btn:hover {
    background: var(--almott-navy);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(39, 73, 157, 0.3);
}

/* 壁紙 */
.almott-lp-container .wallpaper-container {
    background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 50%, #fff 100%);
    padding: 100px 40px;
    border-top: 3px solid #fde68a;
    position: relative;
}

.almott-lp-container .wallpaper-container h3,
.almott-lp-container .wallpaper-container p {
    color: inherit !important;
}

.almott-lp-container .wallpaper-container .text-center p {
    color: #64748b !important;
}

.almott-lp-container .wallpaper-wrapper {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

.almott-lp-container .wallpaper-preview-img {
    margin: 0 auto !important;
    text-align: center !important;
}

.wallpaper-container::before {
    content: '🌸';
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 4em;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.wallpaper-container::after {
    content: '🌸';
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-size: 3em;
    opacity: 0.1;
    animation: float 7s ease-in-out infinite 2s;
}

.wallpaper-preview-img {
    position: relative;
    display: inline-block;
}

.wallpaper-preview-img img {
    border: 16px solid white;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    transition: all 0.4s;
}

.wallpaper-preview-img:hover img {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}

/* カルーセル */
.almott-lp-container .carousel-outer {
    margin: 0 40px 30px !important;
    overflow: visible !important;
    position: relative !important;
    border-radius: 24px !important;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
}

.almott-lp-container .carousel-inner {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
}

.almott-lp-container .carousel-item {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
    padding: 15px !important;
    display: none !important;
}

.almott-lp-container .carousel-item.active {
    display: block !important;
}

.almott-lp-container .step-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 45px !important;
    border-radius: 24px;
    border: 2px solid #e2e8f0;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.step-head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    font-weight: 900;
    font-size: 1.4em;
    color: var(--almott-navy);
}

.num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--almott-navy) 0%, var(--accent-purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(39, 73, 157, 0.3);
}

.carousel-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    background: #f1f5f9;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

/* 矢印ナビゲーション */
.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex !important;
    visibility: visible !important;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 10px;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--almott-navy);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: var(--almott-navy);
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: var(--almott-navy);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(39, 73, 157, 0.3);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 80px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dot.active {
    background: linear-gradient(135deg, var(--almott-navy) 0%, var(--accent-purple) 100%);
    transform: scale(1.5);
    box-shadow: 0 4px 15px rgba(39, 73, 157, 0.4);
}

.section-header {
    font-size: 2em;
    font-weight: 900;
    color: var(--almott-navy);
    border-left: 8px solid var(--almott-navy);
    padding-left: 25px;
    margin: 120px 40px 50px;
    letter-spacing: -0.02em;
    position: relative;
    line-height: 1.4;
    padding-top: 10px;
    padding-bottom: 10px;
}

.section-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--spring-pink), transparent);
}

/* 注意事項 */
.notes-section {
    padding: 0 40px 120px;
}

.notes-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    padding: 45px 55px;
    border-radius: 24px;
    list-style: none;
    font-size: 0.98em;
    color: #475569;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.notes-box li {
    margin-bottom: 18px;
    padding-left: 2em;
    text-indent: -2em;
    line-height: 1.8;
    position: relative;
}

.notes-box li::before {
    content: '●';
    color: var(--almott-navy);
    font-weight: 900;
    margin-right: 0.5em;
}

@media (max-width: 700px) {

    /* グリッドを1列に */
    .coupon-grid,
    .recommend-grid,
    .campaign-meta-container {
        grid-template-columns: 1fr;
    }

    /* イントロ */
    .almott-lp-container .intro-section {
        padding: 40px 20px 30px !important;
    }

    .intro-title {
        font-size: 1.6em;
    }

    .intro-text {
        font-size: 0.95em;
    }

    /* クーポン */
    .coupon-section {
        padding: 30px 16px 40px;
    }

    .val {
        font-size: 2.6em;
    }

    .premium .val {
        font-size: 2.8em;
    }

    /* キャンペーン詳細 */
    .almott-lp-container .campaign-meta-container {
        margin: 30px 16px !important;
        gap: 16px;
    }

    .meta-item:first-child {
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
    }

    /* 会員登録CTA */
    .almott-lp-container .member-cta {
        margin: 40px 16px;
        padding: 40px 20px;
    }

    .almott-lp-container .member-cta h3 {
        font-size: 1.3em;
    }

    /* CTAボタン：スマホでは横幅いっぱいに */
    .reg-link-btn {
        display: block;
        padding: 18px 20px;
        font-size: 1.05em;
        box-sizing: border-box;
        width: 100%;
        text-align: center;
    }

    /* おすすめ商品 */
    .recommend-section {
        padding: 0 16px;
        margin-bottom: 50px;
    }

    .recommend-grid {
        gap: 16px;
        margin: 20px 0;
    }

    /* 商品一覧ボタン */
    .all-products-btn {
        width: auto;
    }

    /* セクションヘッダー */
    .section-header {
        font-size: 1.4em;
        margin: 60px 16px 30px;
        padding-left: 16px;
    }

    /* 壁紙セクション */
    .almott-lp-container .wallpaper-container {
        padding: 50px 16px;
    }

    /* カルーセル */
    .almott-lp-container .carousel-outer {
        margin: 0 16px 20px !important;
    }

    .step-content {
        padding: 25px 16px !important;
    }

    .step-head {
        font-size: 1.1em;
        gap: 12px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    /* 注意事項 */
    .notes-section {
        padding: 0 16px 60px;
    }

    .notes-box {
        padding: 25px 20px;
    }

    /* 条件カード */
    .tier-detail {
        padding: 10px 12px;
    }

    .buy-price {
        font-size: 0.95em;
    }

    .discount-price {
        font-size: 1.4em;
    }

    .tier-premium .discount-price {
        font-size: 1.8em;
    }
}