/* ===================================
   LP Landing Page Styles
   2枚目画像のピンク/赤系 + ゴールドリボンデザインを忠実に再現
   =================================== */

/* LP Wrapper */
.lp-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
}

/* ===================================
   ヒーローセクション
   ピンク/赤のグラデーション背景
   =================================== */
.lp-hero {
    background: linear-gradient(135deg, #e8446d 0%, #d63a5e 30%, #c93555 60%, #b81e45 100%);
    padding: 50px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.lp-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.lp-hero-decoration {
    color: rgba(255, 215, 0, 0.6);
    font-size: 1.1rem;
    letter-spacing: 12px;
    margin: 6px 0;
}

.lp-hero-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin: 10px 0 5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
    line-height: 1.4;
}

.lp-hero-subtitle {
    margin: 5px 0 0;
    line-height: 1.2;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
}

.lp-hero-free {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.15);
    display: inline-block;
    position: relative;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.lp-hero-present {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
    letter-spacing: 0.05em;
}

/* ===================================
   特典セクション
   ピンク/赤背景の上に白い角丸カード
   =================================== */
.lp-benefits {
    background: linear-gradient(180deg, #b81e45 0%, #d63a5e 40%, #e8446d 100%);
    padding: 10px 20px 50px;
}

.lp-benefits-inner {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

/* 特典カード */
.lp-benefit-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 10px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.lp-benefit-card:last-child {
    border-bottom: none;
}

/* ゴールドリボンバッジ */
.lp-benefit-badge {
    flex-shrink: 0;
    width: 68px;
    height: 82px;
    background: linear-gradient(180deg, #f5d76e 0%, #daa520 35%, #b8860b 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 6px 6px 0 0;
    box-shadow: 0 3px 10px rgba(180, 130, 0, 0.25);
}

.lp-benefit-badge::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 34px solid transparent;
    border-right: 34px solid transparent;
    border-top: 14px solid #b8860b;
}

.lp-badge-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.15em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    line-height: 1;
    margin-bottom: 2px;
}

.lp-badge-number {
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* 画像付き特典カード（特典2） */
.lp-benefit-card--with-image {
    flex-wrap: wrap;
}

.lp-benefit-card--with-image .lp-benefit-content {
    flex: 1;
    min-width: 0;
}

.lp-benefit-image {
    flex-shrink: 0;
    width: 140px;
    margin-left: auto;
}

.lp-benefit-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 特典コンテンツ */
.lp-benefit-content {
    flex: 1;
}

.lp-benefit-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: #222;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   CTAセクション
   緑系グラデーション
   =================================== */
.lp-cta {
    background: linear-gradient(135deg, #2d8a5e 0%, #1a6b42 50%, #0f5c35 100%);
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.lp-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.lp-cta-text {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
    letter-spacing: 0.05em;
}

.lp-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f5d76e 0%, #f0c040 50%, #e8b000 100%);
    color: #333;
    padding: 20px 50px;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lp-cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: lp-shine 3s infinite;
}

@keyframes lp-shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.lp-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.4);
}

.lp-cta-button-text {
    display: block;
    letter-spacing: 0.05em;
}

.lp-cta-button-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #666;
    margin-top: 5px;
}

/* ===================================
   フッター
   =================================== */
.lp-footer {
    background: #333;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
}

/* ===================================
   アニメーション
   =================================== */
.lp-benefit-card {
    opacity: 0;
    transform: translateY(20px);
    animation: lp-fadeInUp 0.6s ease forwards;
}

.lp-benefit-card:nth-child(1) {
    animation-delay: 0.2s;
}

.lp-benefit-card:nth-child(2) {
    animation-delay: 0.4s;
}

.lp-benefit-card:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes lp-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* パルスアニメーション（CTAボタン） */
.lp-cta-button {
    animation: lp-pulse 2s infinite;
}

@keyframes lp-pulse {
    0% { box-shadow: 0 6px 25px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 6px 25px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4), 0 0 20px rgba(245,215,110,0.5); }
    100% { box-shadow: 0 6px 25px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4); }
}

/* ===================================
   レスポンシブ対応
   =================================== */

/* タブレット */
@media (max-width: 768px) {
    .lp-hero {
        padding: 40px 15px 25px;
    }

    .lp-hero-title {
        font-size: 1.8rem;
    }

    .lp-hero-free {
        font-size: 3.5rem;
    }

    .lp-hero-present {
        font-size: 2rem;
    }

    .lp-benefits-inner {
        padding: 30px 25px;
    }

    .lp-benefit-card {
        gap: 16px;
        padding: 25px 8px;
    }

    .lp-benefit-badge {
        width: 60px;
        height: 72px;
    }

    .lp-benefit-badge::after {
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
        border-top: 12px solid #b8860b;
        bottom: -12px;
    }

    .lp-badge-number {
        font-size: 1.6rem;
    }

    .lp-benefit-title {
        font-size: 1.2rem;
    }

    .lp-cta-text {
        font-size: 1.3rem;
    }

    .lp-cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

/* スマートフォン */
@media (max-width: 480px) {
    .lp-benefit-image {
        width: 110px;
    }

    .lp-hero {
        padding: 35px 15px 20px;
    }

    .lp-hero-title {
        font-size: 1.5rem;
    }

    .lp-hero-free {
        font-size: 3rem;
    }

    .lp-hero-present {
        font-size: 1.6rem;
    }

    .lp-benefits {
        padding: 5px 12px 40px;
    }

    .lp-benefits-inner {
        padding: 25px 18px;
        border-radius: 16px;
    }

    .lp-benefit-card {
        gap: 14px;
        padding: 22px 5px;
    }

    .lp-benefit-badge {
        width: 52px;
        height: 64px;
    }

    .lp-benefit-badge::after {
        border-left: 26px solid transparent;
        border-right: 26px solid transparent;
        border-top: 10px solid #b8860b;
        bottom: -10px;
    }

    .lp-badge-label {
        font-size: 0.62rem;
    }

    .lp-badge-number {
        font-size: 1.4rem;
    }

    .lp-benefit-title {
        font-size: 1.05rem;
    }

    .lp-cta {
        padding: 40px 15px;
    }

    .lp-cta-text {
        font-size: 1.15rem;
    }

    .lp-cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }

    .lp-cta-button-sub {
        font-size: 0.7rem;
    }
}

/* WordPress管理バー対応 */
body.admin-bar .lp-wrapper {
    margin-top: 0;
}

/* WPデフォルトスタイルのリセット */
.lp-wrapper .entry-content,
.lp-wrapper .page-content {
    margin: 0;
    padding: 0;
}
