
:root {
    --lp-color-primary: #00FF87;
    --lp-color-secondary: #00B4DB;
    --lp-color-primary-rgb: 0, 255, 135;
    --lp-color-secondary-rgb: 0, 180, 219;
    --lp-gradient: linear-gradient(135deg, var(--lp-color-primary) 0%, var(--lp-color-secondary) 100%);
}

.theme-illustration {
    --lp-color-primary: #FF2E93;
    --lp-color-secondary: #FF8E00;
    --lp-color-primary-rgb: 255, 46, 147;
    --lp-color-secondary-rgb: 255, 142, 0;
    --lp-gradient: linear-gradient(135deg, var(--lp-color-primary) 0%, var(--lp-color-secondary) 100%);
}

.theme-website {
    --lp-color-primary: #FF6A00;
    --lp-color-secondary: #FFC000;
    --lp-color-primary-rgb: 255, 106, 0;
    --lp-color-secondary-rgb: 255, 192, 0;
    --lp-gradient: linear-gradient(135deg, var(--lp-color-primary) 0%, var(--lp-color-secondary) 100%);
}

    /* Base Theme Overrides for this LP */
    .page-video-lp {
        font-family: 'Inter', 'Noto Sans JP', sans-serif;
        background: #f8f8fb;
        color: #1a1a2e;
        overflow-x: hidden;
    }

    .lp-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .lp-container-fluid {
        width: 100%;
        padding: 0;
    }

    .lp-section-title {
        font-size: clamp(2rem, 5vw, 2.5rem);
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
        letter-spacing: 0.05em;
    }

    .lp-section-subtitle {
        display: block;
        font-size: 1.3rem;
        color: var(--lp-color-secondary);
        text-align: center;
        margin-top: 10px;
        margin-bottom: 20px;
        letter-spacing: 0.05em;
        font-weight: 600;
    }

    .service-description {
        color: #666;
        font-size: 0.95rem;
    }

    /* Utilities */
    .highlight-text {
        background: linear-gradient(135deg, var(--lp-color-secondary) 0%, var(--lp-color-primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }

    /* --- 1. Hero Section --- */
    .lp-hero {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .lp-hero-bg {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .lp-hero-bg video,
    .lp-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .lp-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg, rgba(8, 8, 8, 0.9) 0%, rgba(8, 8, 8, 0.4) 100%);
        z-index: 2;
    }

    .lp-hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        padding: 0 20px;
    }

    .lp-catch {
        font-size: clamp(2.5rem, 8vw, 5rem);
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: #fff;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .lp-sub {
        font-size: clamp(1rem, 3vw, 1.3rem);
        line-height: 1.8;
        margin-bottom: 3rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .lp-btn-primary {
        display: inline-block;
        padding: 1.2rem 3rem;
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        background: linear-gradient(135deg, var(--lp-color-secondary) 0%, var(--lp-color-primary) 100%);
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 10px 20px rgba(var(--lp-color-secondary-rgb), 0.3);
        transition: all 0.3s ease;
    }

    .lp-btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(var(--lp-color-secondary-rgb), 0.5);
        color: #fff;
    }

    .scroll-down {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        opacity: 0.8;
    }

    .scroll-down span {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
        font-family: 'Poppins', sans-serif;
    }

    .scroll-down .mouse {
        width: 24px;
        height: 36px;
        border: 2px solid #fff;
        border-radius: 12px;
        position: relative;
    }

    .scroll-down .mouse::before {
        content: '';
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 6px;
        background: #fff;
        border-radius: 2px;
        animation: scroll 1.5s infinite;
    }

    @keyframes scroll {
        0% {
            transform: translate(-50%, 0);
            opacity: 1;
        }

        100% {
            transform: translate(-50%, 15px);
            opacity: 0;
        }
    }

    /* --- 2. Problems Section --- */
    .lp-problems {
        padding: 100px 0;
        background: #f2f2f7;
    }

    .problem-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .problem-card {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        transition: transform 0.3s;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .problem-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .problem-card i {
        font-size: 3rem;
        color: #999;
        margin-bottom: 20px;
    }

    .problem-card p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0;
    }

    .problem-solution {
        text-align: center;
        background: linear-gradient(135deg, rgba(var(--lp-color-secondary-rgb), 0.06) 0%, rgba(var(--lp-color-primary-rgb), 0.1) 50%, rgba(var(--lp-color-secondary-rgb), 0.06) 100%);
        border: 1px solid rgba(var(--lp-color-secondary-rgb), 0.2);
        padding: 40px 30px;
        border-radius: 20px;
        position: relative;
    }

    .problem-solution p {
        font-size: clamp(1.3rem, 3vw, 1.7rem);
        margin: 0;
        font-weight: 600;
        line-height: 1.6;
        color: #1a1a2e;
    }

    .solution-emphasis {
        font-size: 1.15em;
        font-weight: 800;
        text-decoration: underline;
        text-decoration-color: var(--lp-color-primary);
        text-decoration-thickness: 3px;
        text-underline-offset: 4px;
        color: var(--lp-color-primary);
    }

    .solution-arrow {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 2rem;
        color: var(--lp-color-secondary);
        animation: bounce 2s infinite;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translate(-50%, 0);
        }

        50% {
            transform: translate(-50%, 10px);
        }
    }

    /* --- 3. Works Section (Swiper) --- */
    .lp-works {
        padding: 80px 0 120px;
    }

    .video-lp-swiper {
        padding: 40px 0 120px 0 !important;
        /* 拡大によるハミ出しとページネーションとの距離を十分確保するため余白増 */
    }

    .video-lp-swiper .swiper-pagination {
        bottom: 10px !important;
        /* 余白の下部にページネーションを配置 */
    }

    .video-lp-swiper .swiper-wrapper {
        align-items: center;
        /* 左右のカードを要素の中央に揃える */
    }

    .video-slide {
        width: 75%;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
        transform-origin: center center;
        opacity: 0.4;
        transform: scale(0.85);
        /* 左右の非アクティブカードを小さく */
    }

    .video-lp-swiper .swiper-slide-active {
        width: 75%;
        /* 幅の論理サイズを揃えてSwiperの計算ズレを防ぐ */
        opacity: 1;
        transform: scale(1.05);
        /* 主役カードとして少し大きく */
        z-index: 10;
    }

    @media (min-width: 768px) {
        .video-lp-swiper {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .video-slide {
            width: 45%;
            transform: scale(0.75);
            /* PC時は左右カードを明確に小さく */
        }

        .video-lp-swiper .swiper-slide-active {
            width: 45%;
            transform: scale(1.2);
            /* カレント表示をグッと手前に押し出し、大きく見せる */
        }

        .video-lp-swiper .swiper-slide-next,
        .video-lp-swiper .swiper-slide-prev {
            opacity: 0.8;
            z-index: 9;
        }
    }

    @media (min-width: 1024px) {
        .video-slide {
            width: 35%;
        }
    }

    .video-card {
        position: relative;
        width: 100%;
        aspect-ratio: 9/16;
        border-radius: 20px;
        overflow: hidden;
        background: #e8e8ee;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

    @media (min-width: 768px) {
        .video-card {
            aspect-ratio: 16/9;
        }
    }

    .lp-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: filter 0.3s;
    }

    .video-slide:not(.swiper-slide-active) .lp-video {
        filter: grayscale(40%) brightness(0.6);
    }

    .play-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.3);
        z-index: 2;
        transition: all 0.3s ease;
        opacity: 1;
    }

    .video-card.is-playing .play-overlay {
        opacity: 0;
        pointer-events: none;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: white;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: transform 0.2s, background 0.2s;
        padding-left: 5px;
    }

    .video-card:hover .play-btn {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.3);
    }

    .video-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px 20px 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 3;
        transform: translateY(10px);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .swiper-slide-active .video-info {
        transform: translateY(0);
        opacity: 1;
    }

    .video-info h3 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
        color: white;
    }

    .video-lp-swiper .swiper-button-next,
    .video-lp-swiper .swiper-button-prev {
        color: #fff;
        background: linear-gradient(135deg, var(--lp-color-secondary) 0%, var(--lp-color-primary) 100%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        box-shadow: 0 5px 15px rgba(var(--lp-color-secondary-rgb), 0.4);
        border: 2px solid rgba(255, 255, 255, 0.8);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .video-lp-swiper .swiper-button-next:hover,
    .video-lp-swiper .swiper-button-prev:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(var(--lp-color-secondary-rgb), 0.6);
    }

    .video-lp-swiper .swiper-button-next:after,
    .video-lp-swiper .swiper-button-prev:after {
        font-size: 20px;
    }

    .video-lp-swiper .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
        background: transparent;
        border: 2px solid rgba(var(--lp-color-secondary-rgb), 0.5);
        opacity: 1;
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        margin: 0 8px !important;
    }

    .video-lp-swiper .swiper-pagination-bullet-active {
        width: 40px;
        background: linear-gradient(135deg, var(--lp-color-secondary) 0%, var(--lp-color-primary) 100%);
        border-color: transparent;
        box-shadow: 0 0 15px rgba(var(--lp-color-secondary-rgb), 0.6);
    }

    /* --- 4. Targets Section --- */
    .lp-targets {
        padding: 50px 0 100px;
        background: #f8f8fb;
    }

    .targets-wrapper {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .target-block {
        display: flex;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        padding: 20px 15px 20px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .target-category {
        flex: 0 0 50px;
        margin: -20px 0;
        background: linear-gradient(180deg, var(--lp-color-secondary) 0%, var(--lp-color-primary) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
        box-shadow: 5px 0 15px rgba(var(--lp-color-secondary-rgb), 0.2);
    }

    .vertical-text {
        writing-mode: vertical-rl;
        text-orientation: upright;
        color: #fff;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.3em;
    }

    .target-tags {
        flex: 1;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .target-tags span {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 10px;
        background: #f5f5fa;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        font-size: 0.85rem;
        color: #333;
        transition: all 0.3s ease;
        cursor: default;
        font-weight: 500;
        text-align: center;
        line-height: 1.4;
    }

    @media (min-width: 768px) {
        .target-block {
            padding: 30px 40px 30px 0;
        }

        .target-category {
            margin: -30px 0;
            margin-right: 30px;
            flex: 0 0 60px;
        }

        .vertical-text {
            font-size: 1.2rem;
            letter-spacing: 0.5em;
        }

        .target-tags {
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        .target-tags span {
            font-size: 0.95rem;
            padding: 15px 10px;
        }
    }

    .target-tags span:hover {
        background: rgba(var(--lp-color-secondary-rgb), 0.1);
        border-color: rgba(var(--lp-color-secondary-rgb), 0.4);
        color: #1a1a2e;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(var(--lp-color-secondary-rgb), 0.2);
    }

    /* --- 5. Reasons Section --- */
    .lp-reasons {
        padding: 80px 0 120px;
        background: #ffffff;
    }

    .lp-cta-bottom {
        text-align: center;
        margin-top: 2rem;
    }

    .lp-section-title span.highlight-number {
        font-size: clamp(3.5rem, 8vw, 6rem);
        color: var(--lp-color-secondary);
        font-family: 'Poppins', sans-serif;
        vertical-align: middle;
        margin: 0 10px;
        line-height: 0.8;
    }

    .reason-list {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }

    .reason-item {
        display: flex;
        flex-direction: row;
        gap: 30px;
        background: #f8f8fb;
        border: 1px solid rgba(0, 0, 0, 0.06);
        padding: 40px;
        border-radius: 20px;
        align-items: stretch;
    }

    .reason-item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .reason-content {
        flex: 1;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .reason-media {
        flex: 1;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        min-height: 250px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .reason-video,
    .reason-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
    }

    .reason-number {
        font-size: 5rem;
        font-family: 'Poppins', sans-serif;
        font-weight: 800;
        background: var(--lp-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
        min-width: 110px;
    }

    .reason-text h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .reason-text p {
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

    @media (max-width: 767px) {
        .reason-item {
            flex-direction: column;
            text-align: center;
            gap: 30px;
            padding: 30px 20px;
        }

        .reason-item:nth-child(even) {
            flex-direction: column;
        }

        .reason-content {
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .reason-media {
            width: 100%;
            aspect-ratio: 16/9;
            min-height: auto;
        }
    }

    /* --- Animations --- */
    .fade-up-anim {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .fade-up-anim.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .delay-1 {
        transition-delay: 0.2s;
    }

    .delay-2 {
        transition-delay: 0.4s;
    }

    .delay-3 {
        transition-delay: 0.6s;
    }

    /* --- 6. Workflow Section --- */
    .lp-workflow {
        padding: 100px 0;
        background: #f2f2f7;
    }

    .workflow-steps {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .workflow-step {
        display: flex;
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: 12px;
        padding: 30px;
        align-items: flex-start;
        gap: 20px;
        position: relative;
        z-index: 2;
        box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    }

    .step-number {
        font-family: 'Poppins', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: rgba(var(--lp-color-secondary-rgb), 0.2);
        flex-shrink: 0;
        width: 60px;
        text-align: center;
        line-height: 1;
    }

    .step-content h3 {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1a1a2e;
        margin-bottom: 10px;
        margin-top: 5px;
    }

    .step-content p {
        font-size: 0.95rem;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

    .step-arrow {
        text-align: center;
        color: var(--lp-color-secondary);
        font-size: 1.5rem;
        margin: 5px 0;
    }

    /* --- 7. Comparison Section --- */
    .lp-compare {
        padding: 50px 0 100px;
        background: #f8f8fb;
    }

    .compare-table-wrapper {
        max-width: 1000px;
        margin: 0 auto;
        overflow-x: auto; /* table horizontal scroll on mobile */
    }

    .compare-table {
        width: 100%;
        min-width: 600px;
        border-collapse: separate;
        border-spacing: 0;
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.1);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }

    .compare-table th, .compare-table td {
        padding: 20px;
        text-align: center;
        vertical-align: middle;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        color: #333;
    }

    .compare-table tr:last-child td {
        border-bottom: none;
    }

    .compare-table thead th {
        background: #f5f5fa;
        font-size: 1.1rem;
        font-weight: 700;
        padding: 25px 20px;
    }

    .col-item {
        width: 25%;
        text-align: left !important;
        font-weight: 700;
        color: #1a1a2e !important;
        border-right: 1px solid rgba(0,0,0,0.06);
        background: #f8f8fb;
    }
    
    .col-item i {
        color: #aaa;
        width: 25px;
        text-align: center;
        margin-right: 8px;
    }

    .col-husky {
        width: 45%;
        background: rgba(var(--lp-color-secondary-rgb), 0.05);
        border-left: 2px solid var(--lp-color-secondary) !important;
        border-right: 2px solid var(--lp-color-secondary) !important;
        color: #1a1a2e;
        position: relative;
    }
    
    .compare-table thead .col-husky {
        background: linear-gradient(180deg, var(--lp-color-primary) 0%, var(--lp-color-secondary) 100%);
        color: #fff;
        border-top: 2px solid var(--lp-color-secondary);
        font-size: 1.3rem;
        padding: 30px 20px;
    }
    
    .compare-table tbody tr:last-child .col-husky {
        border-bottom: 2px solid var(--lp-color-secondary) !important;
    }

    .col-traditional {
        width: 30%;
        color: #888;
        line-height: 1.6;
        font-size: 0.95rem;
        background: #fafafa;
    }

    .col-husky.highlight strong {
        font-size: 1.5rem;
        color: var(--lp-color-secondary);
    }

    .col-husky.highlight small {
        display: block;
        margin-top: 8px;
        font-size: 0.95rem;
        color: #666;
    }

    .recommended-badge {
        display: inline-block;
        background: #fff;
        color: var(--lp-color-primary);
        font-size: 0.75rem;
        padding: 3px 8px;
        border-radius: 20px;
        font-weight: 800;
        vertical-align: middle;
        margin-left: 10px;
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }

    /* --- 8. FAQ Section --- */
    .faq-notice-wrapper {
        max-width: 800px;
        margin: 60px auto 0;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .notice-title {
        font-size: 1.25rem;
        color: #1a1a2e;
        font-weight: 700;
        margin-bottom: 25px;
        text-align: center;
        line-height: 1.4;
    }

    .faq-notice-wrapper p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .notice-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .notice-list li {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.7;
        position: relative;
        padding-left: 1.5rem;
    }

    .notice-list li::before {
        content: '\f00c'; /* Checkmark icon */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: var(--lp-color-secondary); /* Theme blue instead of warning yellow */
        font-size: 1rem;
    }
    
    .notice-list strong {
        color: #1a1a2e;
    }

    @media (max-width: 767px) {
        .faq-notice-wrapper {
            padding: 25px 20px;
        }
    }
    .lp-faq {
        padding: 100px 0;
        background: #f2f2f7;
    }

    .faq-list {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .faq-item {
        background: #ffffff;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    }

    .faq-q {
        padding: 20px 25px;
        font-size: 1.05rem;
        font-weight: 600;
        color: #1a1a2e;
        cursor: pointer;
        list-style: none; /* Hide default arrow */
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
    }

    .faq-q::-webkit-details-marker {
        display: none;
    }

    .faq-q span {
        color: var(--lp-color-secondary);
        font-size: 1.3rem;
        font-family: 'Poppins', sans-serif;
        flex-shrink: 0;
    }

    .faq-icon {
        margin-left: auto;
        transition: transform 0.3s ease;
        color: var(--lp-color-secondary);
    }

    details[open] .faq-icon {
        transform: rotate(45deg);
    }

    .faq-a {
        padding: 0 25px 25px;
        color: #666;
        line-height: 1.7;
        font-size: 0.95rem;
        display: flex;
        gap: 15px;
        border-top: 1px solid rgba(0,0,0,0.06);
        margin-top: -5px; 
        padding-top: 20px;
    }

    .faq-a span {
        color: #aaa;
        font-size: 1.3rem;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        flex-shrink: 0;
    }

    /* --- 8. Message Section --- */
    .lp-message {
        padding: 120px 0;
        background: #ffffff;
    }

    .message-wrapper {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
    }

    .message-wrapper::before {
        content: '"';
        position: absolute;
        top: -40px;
        left: -40px;
        font-family: 'Poppins', sans-serif;
        font-size: 8rem;
        color: rgba(var(--lp-color-secondary-rgb), 0.1);
        line-height: 1;
        z-index: 0;
    }

    .message-content {
        position: relative;
        z-index: 1;
    }

    .message-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 800;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .message-content p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .message-signature {
        margin-top: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--lp-color-secondary);
        font-family: 'Poppins', 'Noto Sans JP', sans-serif;
        letter-spacing: 0.1em;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 15px;
    }

    .signature-icon {
        width: 1.8em;
        height: 1.8em;
        border-radius: 50%;
        border: 2px solid var(--lp-color-secondary);
        object-fit: cover;
        box-shadow: 0 0 10px rgba(var(--lp-color-secondary-rgb), 0.3);
    }

    /* --- 9. Final CTA Section --- */
    .lp-cta-final {
        position: relative;
        padding: 150px 0;
        text-align: center;
        overflow: hidden;
    }

    .cta-bg-video,
    .cta-bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .cta-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(5, 5, 5, 0.6); /* コントラスト確保のため暗めのマスクに変更 */
        backdrop-filter: blur(8px);
        z-index: 2;
    }

    .relative-content {
        position: relative;
        z-index: 3;
    }

    .cta-banner {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .cta-banner h2 {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 800;
        line-height: 1.4;
        margin-bottom: 20px;
        text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    }

    .cta-banner p {
        font-size: 1.15rem;
        color: #eee;
        margin-bottom: 40px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    }

    .lp-btn-large {
        font-size: 1.1rem;
        padding: 20px 40px;
    }
    
    .lp-btn-large i {
        margin-left: 10px;
    }

    .delay-4 {
        transition-delay: 0.8s;
    }
