@charset "UTF-8";
        /* =========================================================
           ベース設定・変数
        ========================================================= */
        :root {
            --brand-green: #649664;
            --brand-light: #f0fdf4;
            --brand-accent: #f39800;
            --brand-dark: #005e3a;
            --stage-regular: #9ca3af;
            --stage-silver: #94a3b8;
            --stage-gold: #d4af37;
            --stage-platinum: #507ea4;
            --text-color: #333333;
            --gray-bg: #f9fafb;
            --border-color: #e5e7eb;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;;
            color: var(--text-color);
            background-color: #ffffff;
            -webkit-font-smoothing: antialiased;
            line-height: 1.6;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        /* =========================================================
           アニメーション（動き）の定義
        ========================================================= */
        @keyframes lpFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =========================================================
           共通レイアウトパーツ
        ========================================================= */
        .lp-container {
            max-width: 1152px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .lp-text-center { text-align: center; font-size: 1.2rem; }
        .lp-mb-lg { margin-bottom: 40px; }


        /* セクション見出し */
        .lp-section { padding: 64px 0; }
        .lp-section-title {
            font-size: 2.0rem;
            font-weight: bold;
            text-align: center;
            margin-top: 0;
            margin-bottom: 48px;
            position: relative;
            padding-bottom: 12px;
        }
        .lp-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 64px;
            height: 4px;
            background-color: var(--brand-green);
            border-radius: 4px;
        }

        /* ボタン */
        .lp-btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 9999px;
            font-weight: bold;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .lp-btn-primary {
            background-color: var(--brand-accent);
            color: #ffffff;
        }
        .lp-btn-primary:hover {
            background-color: #d97706; /* 濃いオレンジ */
            transform: translateY(-2px);
            box-shadow: 0 6px 10px -2px rgba(0, 0, 0, 0.15);
        }
        .lp-btn-outline {
            background-color: #ffffff;
            color: var(--brand-green);
            border: 2px solid var(--brand-green);
        }
        .lp-btn-outline:hover {
            background-color: var(--brand-light);
            transform: translateY(-2px);
        }
        .lp-btn-large {
            font-size: 20px;
            padding: 20px 48px;
        }

        /* =========================================================
           各セクションスタイル
        ========================================================= */
        /* ヒーローセクション（FV） */
        .lp-hero {
            background-color: var(--brand-light);
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007c4d' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            padding: 64px 0;
            position: relative;
        }
        .lp-hero-inner {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        .lp-hero-content {
            flex: 1;
            /* テキスト部分のフワッと浮かび上がる動き */
            opacity: 0;
            animation: lpFadeInUp 0.8s ease-out forwards;
        }
        .lp-hero-sub {
            color: var(--brand-accent);
            font-weight: bold;
            letter-spacing: 0.05em;
            margin: 0 0 16px;
            font-size: 1.6rem;
        }
        .lp-hero-title {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.3;
            margin: 0 0 24px;
        }
        .lp-hero-text {
            font-size: 1.2rem;
            color: #4b5563;
            margin: 0 0 32px;
        }
        .lp-hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .lp-hero-image {
            flex: 1;
            width: 100%;
            /* 画像部分の動き（少し遅れて表示） */
            opacity: 0;
            animation: lpFadeInUp 0.8s ease-out 0.2s forwards;
        }
        .lp-hero-image-box {
            background: #ffffff;
            padding: 8px;
            border-radius: 16px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
            transform: rotate(2deg); /* 初期状態の傾き */
            position: relative;
            overflow: hidden;
            aspect-ratio: 16/9;
            /* ★追加：ホバー時の滑らかなアニメーション設定 */
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        /* ★追加：マウスを乗せた時に傾きが戻り、少し浮き上がる動き */
        .lp-hero-image-box:hover {
            transform: rotate(0deg) translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
        }
        
        .lp-hero-img-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.5;
            display: block;
            transition: opacity 0.4s ease;
        }
        /* ホバー時に画像を少しハッキリさせる演出（任意） */
        .lp-hero-image-box:hover .lp-hero-img-bg {
            opacity: 0.5;
        }
        
        .lp-hero-img-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--brand-green);
            font-size: 20px;
            font-weight: bold;
        }

        /* 特長セクション */
        .lp-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }
        .lp-feature-card {
            background-image: linear-gradient(90deg, rgba(130, 180, 200, 0.2), rgba(180, 220, 190, 0.2));
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
        .lp-feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        }
        .lp-feature-icon {
            width: 80px;
            height: 80px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .lp-feature-card h3 {
            font-size: 1.68rem;
            font-weight: bold;
            margin: 0 0 16px;
        }
        .lp-feature-card p {
            font-size: 1.2rem;
            color: #4b5563;
            margin: 0;
        }

        /* ランク表セクション */
        .lp-bg-gray {
            background-color: #f5f3f0;
        }
        .lp-table-wrapper {
            overflow-x: auto;
            padding-bottom: 16px;
        }
        .lp-table {
            width: 100%;
            min-width: 800px;
            border-collapse: separate; 
            border-spacing: 0;
            background-color: #ffffff;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        .lp-table th, .lp-table td {
            padding: 16px;
            border-bottom: 1px solid var(--border-color); 
            text-align: center;
            vertical-align: middle;
        }
        .lp-table tr:last-child td {
            border-bottom: none; 
        }
        .lp-th-empty {
            background-color: #fff;
            width: 20%;
        }
        .lp-table th { width: 20%; }
        .lp-stage-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 4px;
        }
        .lp-stage-sub {
            font-size: 12px;
            color: #6b7280;
        }
        .lp-td-label {
            text-align: left;
            font-weight: bold;
            color: #374151;
            vertical-align: middle;
        }
        .lp-td-label svg {
            vertical-align: middle;
            margin-right: 6px;
            margin-top: -2px;
        }
        .lp-tr-highlight {
            background-color: rgba(240, 253, 244, 0.5);
        }
        .lp-point {
            font-size: 15px;
            font-weight: bold;
            color: #dc2626;
        }
        .lp-small { font-size: 14px; }
        .lp-check {
            color: var(--brand-green);
            font-size: 24px;
            font-weight: bold;
        }
        .lp-disabled { color: #d1d5db; }
        .lp-note {
            font-size: 14px;
            color: #6b7280;
            text-align: left;
            margin-top: 16px;
            margin-bottom: 0;
        }

        /* ピックアップセクション */
        .lp-pickups {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 900px;
            margin: 0 auto;
        }
        .lp-pickup-card {
            display: flex;
            align-items: center;
            gap: 24px;
            background-color: #f5f3f0;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
        }
        .lp-pickup-img {
            width: 160px;
            height: 160px;
            flex-shrink: 0;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lp-bg-pink { background-color: #fdf2f8; }
        .lp-bg-green { background-color: #f0fdf4; }
        .lp-badge {
            display: inline-block;
            background-color: var(--brand-light);
            color: var(--brand-dark);
            font-size: 12px;
            font-weight: bold;
            padding: 4px 12px;
            border-radius: 9999px;
            margin-bottom: 12px;
        }
        .lp-pickup-body h3 {
            font-size: 20px;
            font-weight: bold;
            margin: 0 0 12px;
        }
        .lp-pickup-body p {
            font-size: 1.2rem;
            color: #4b5563;
            margin: 0;
        }

        /* 登録CTAセクション */
        .lp-cta {
            background-color: var(--brand-green);
            color: #ffffff;
            padding: 64px 16px;
        }
        .lp-cta-title {
            font-size: 28px;
            font-weight: bold;
            margin: 0 0 24px;
        }
        .lp-cta-text { margin: 0 0 32px; font-size: 1.4rem; }
        .lp-cta-note {
            font-size: 14px;
            opacity: 0.8;
            margin-top: 24px;
            margin-bottom: 0;
        }

        /* ステップセクション */
        .lp-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }
        .lp-step-line {
            display: none; 
        }
        .lp-step-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0 16px;
            position: relative;
            z-index: 1;
        }
        .lp-step-num {
            width: 64px;
            height: 64px;
            background-color: var(--brand-green);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            border: 4px solid #ffffff;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 16px;
        }
        .lp-step-item h3 {
            font-size: 18px;
            font-weight: bold;
            margin: 0 0 8px;
        }
        .lp-step-item p {
            font-size: 18px;
            color: #6b7280;
            margin: 0;
        }
        
        .sp-only { display: none; }


        /* =========================================================
           レスポンシブ (スマホ対応)
        ========================================================= */
        @media screen and (max-width: 768px) {
            .sp-only { display: block; }
            
            .lp-hero-inner {
                flex-direction: column;
                text-align: center;
            }
            .lp-hero-title { font-size: 28px; }
            .lp-hero-actions { justify-content: center; }
            
            .lp-features { grid-template-columns: 1fr; }
            
            .lp-pickup-card {
                flex-direction: column;
                text-align: center;
            }
            .lp-pickup-img {
                width: 100%;
                height: auto;
                aspect-ratio: 16/9;
            }
            
            .lp-steps { flex-direction: column; gap: 32px; }
            .lp-step-line { display: none; }

            .lp-footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
            .lp-footer-links {
                flex-direction: column;
                gap: 16px;
            }
            
			.lp-section-title {
            font-size: 1.76rem;
            font-weight: bold;
            text-align: center;
            margin-top: 0;
            margin-bottom: 48px;
            position: relative;
            padding-bottom: 12px;
            }
        
			.lp-feature-card h3 { font-size: 1.48rem; }
			.lp-feature-card p { font-size: 1.12rem; }
			.lp-text-center { text-align: center; font-size: 1.12rem; }
			.lp-pickup-body h3 { font-size: 1.48rem; }
			.lp-pickup-body p { font-size: 1.2rem; }
			.lp-step-item h3 { font-size: 1.6rem; }
			.lp-step-item p { font-size: 1.2rem; }

        }

        @media screen and (min-width: 769px) {
            .lp-step-line {
                display: block;
                position: absolute;
                top: 32px;
                left: 15%;
                right: 15%;
                height: 2px;
                background-color: #dcfce7;
                z-index: 0;
            }
        }