
        /* LP専用スタイル */

        .lp-hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 60px 20px 80px;
            text-align: center;
            position: relative;
        }

        .lp-hero__inner {
            max-width: 800px;
            margin: 0 auto;
        }

        .lp-hero__badge {
            display: inline-block;
            background: rgba(255, 107, 157, 0.2);
            color: #ff6b9d;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 107, 157, 0.3);
        }

        .lp-hero__title {
            color: white;
            font-size: 32px;
            font-weight: 700;
            line-height: 1.5;
            margin-bottom: 20px;
        }

        @media (max-width: 600px) {
            .lp-hero__title {
                font-size: 24px;
            }
        }

        .lp-hero__subtitle {
            color: #aaa;
            font-size: 15px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .lp-hero__profile {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .lp-hero__avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #ff6b9d;
            object-fit: cover;
        }

        .lp-hero__author {
            text-align: left;
            color: #ccc;
            font-size: 13px;
        }

        .lp-hero__author strong {
            color: white;
        }

        /* ランキングセクション */
        .ranking-section {
            max-width: 900px;
            margin: -50px auto 0;
            padding: 0 20px 60px;
            position: relative;
            z-index: 10;
        }

        .ranking-intro {
            background: white;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        }

        .ranking-intro__title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .ranking-intro__text {
            font-size: 14px;
            color: #555;
            line-height: 1.8;
        }

        /* ランキングカード */
        .ranking-card {
            background: white;
            border-radius: 16px;
            margin-bottom: 25px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .ranking-card--first {
            border: 3px solid #ff6b9d;
        }

        .ranking-card__header {
            display: flex;
            align-items: center;
            padding: 25px 30px;
            gap: 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        @media (max-width: 600px) {
            .ranking-card__header {
                flex-direction: column;
                text-align: center;
            }
        }

        .ranking-card__rank {
            font-size: 40px;
            font-weight: 700;
            color: #ddd;
            line-height: 1;
        }

        .ranking-card--first .ranking-card__rank {
            background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .ranking-card__info {
            flex: 1;
        }

        .ranking-card__name {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 5px;
        }

        .ranking-card__rating {
            color: #f4b400;
            font-size: 18px;
        }

        .ranking-card__badge {
            background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
        }

        .ranking-card__body {
            padding: 25px 30px;
        }

        .ranking-card__features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        @media (max-width: 600px) {
            .ranking-card__features {
                grid-template-columns: 1fr;
            }
        }

        .ranking-card__feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #333;
        }

        .ranking-card__feature--good::before {
            content: '◎';
            color: #4caf50;
            font-weight: 700;
        }

        .ranking-card__feature--ok::before {
            content: '○';
            color: #2196f3;
            font-weight: 700;
        }

        .ranking-card__feature--bad::before {
            content: '△';
            color: #ff9800;
            font-weight: 700;
        }

        .ranking-card__comment {
            background: #f9f9f9;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .ranking-card__comment-title {
            font-size: 13px;
            font-weight: 600;
            color: #888;
            margin-bottom: 10px;
        }

        .ranking-card__comment-text {
            font-size: 14px;
            color: #333;
            line-height: 1.8;
        }

        .ranking-card__cta {
            display: block;
            background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
            color: white;
            padding: 18px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s;
        }

        .ranking-card__cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
        }

        .ranking-card__cta--secondary {
            background: #1a1a1a;
        }

        .ranking-card__cta--secondary:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* まとめセクション */
        .summary-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border-radius: 16px;
            padding: 40px;
            color: white;
            text-align: center;
            margin-bottom: 30px;
        }

        .summary-section__title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .summary-section__text {
            font-size: 14px;
            color: #ccc;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .summary-section__cta {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
            color: white;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
        }

        .summary-section__cta:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
        }

        /* 固定CTA */
        .fixed-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
            padding: 12px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            z-index: 1000;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
        }

        .fixed-cta__text {
            color: white;
            font-weight: 500;
            font-size: 14px;
        }

        .fixed-cta__btn {
            background: white;
            color: #c44569;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .fixed-cta__btn:hover {
            transform: scale(1.05);
        }

        @media (max-width: 600px) {
            .fixed-cta {
                flex-direction: column;
                gap: 8px;
                padding: 10px 15px;
            }
        }

        .footer {
            padding-bottom: 80px;
        }
    