        /* --- 1. Core Settings & Variables --- */
        .affiliate-ad {
            --color-main: #1B429A;
            --color-main-dark: #0d2b6d;
            --color-accent: #FF9900;
            --color-accent-glow: rgba(255, 153, 0, 0.4);
            --color-text: #333333;
            --color-text-light: #666666;
            --color-bg-light: #F4F7FA;
            --color-white: #FFFFFF;
            --font-jp: "Noto Sans JP", sans-serif;
            --font-en: "Montserrat", sans-serif;
            --header-height: 80px;
            --easing: cubic-bezier(0.16, 1, 0.3, 1);
        }

        .affiliate-ad * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        .affiliate-ad html.lenis {
            height: auto;
        }

        .affiliate-ad .lenis.lenis-smooth {
            scroll-behavior: auto;
        }

        .affiliate-ad .lenis.lenis-smooth [data-lenis-prevent] {
            overscroll-behavior: contain;
        }

        .affiliate-ad .lenis.lenis-stopped {
            overflow: hidden;
        }

        .affiliate-ad {
            font-family: var(--font-jp);
            color: var(--color-text);
            line-height: 1.8;
            background-color: var(--color-white);
            overflow-x: hidden;
            /* ベースフォントサイズを明示的に設定 */
            font-size: 16px;
        }

        .affiliate-ad a {
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }

        .affiliate-ad img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .affiliate-ad ul {
            list-style: none;
        }

        /* --- 2. Utility Classes --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        .section-padding {
            padding: 60px 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 40px 0;
            }
        }

        /* Buttons */
        .btn-cv {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, var(--color-accent), #ffb700);
            color: var(--color-white);
            font-weight: 900;
            padding: 18px 48px;
            border-radius: 50px;
            box-shadow: 0 10px 20px var(--color-accent-glow);
            font-size: 1.1rem;
            letter-spacing: 0.05em;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
        }

        .btn-cv::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffb700, var(--color-accent));
            opacity: 0;
            z-index: -1;
            transition: opacity 0.3s;
        }

        .btn-cv:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 40px var(--color-accent-glow);
        }

        .btn-cv:hover::before {
            opacity: 1;
        }

        /* Typography */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--color-main);
            font-weight: 900;
            margin-bottom: 16px;
            display: inline-block;
            position: relative;
        }

        .section-title p {
            font-family: var(--font-en);
            font-size: 1rem;
            font-weight: 700;
            color: var(--color-accent);
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }

            .section-title {
                margin-bottom: 50px;
            }
        }

        /* --- 3. Header --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            z-index: 1000;
            display: flex;
            align-items: center;
            transition: transform 0.3s;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .logo {
            font-family: var(--font-en);
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--color-main);
            letter-spacing: -0.03em;
        }

        .header-btn {
            padding: 10px 28px;
            font-size: 0.9rem;
            box-shadow: none;
        }

        /* --- 4. Hero Section (FV) --- */
        .hero {
            position: relative;
            min-height: 600px;
            padding-top: var(--header-height);
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f9faff;
            overflow: hidden;
            z-index: 1;
            padding: calc(var(--header-height) + 80px) 20px 80px;
        }

        .hero-bg-anim {
            display: none; /* 旧アニメーションを非表示 */
        }

        .hero-content {
            max-width: 1000px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            z-index: 2;
            text-align: left;
        }

        .hero-text {
            width: 100%;
        }

        .hero-accent-bar {
            width: 40px;
            height: 6px;
            background-color: var(--color-main);
            margin: 0 0 30px 0;
            border-radius: 3px;
            opacity: 0;
            transform: translateY(30px);
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            line-height: 1.5;
            margin-bottom: 50px;
            color: #222;
            letter-spacing: 0.05em;
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-marker-highlight {
            background: linear-gradient(transparent 60%, #dbe4f5 60%);
            padding: 0 5px;
            display: inline-block;
        }

        .hero-feature-tags {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: flex-start;
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-feature-tag {
            background-color: var(--color-main);
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 18px 36px;
            border-radius: 50px;
            box-shadow: 0 4px 10px rgba(27, 66, 154, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            white-space: nowrap;
        }

        .hero-feature-tag:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(27, 66, 154, 0.4);
        }

        .hero-background-circles {
            position: absolute;
            top: 50%;
            right: -10%;
            transform: translateY(-50%);
            width: 800px;
            height: 800px;
            z-index: 1;
            pointer-events: none;
        }

        .hero-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            background-color: rgba(27, 66, 154, 0.03);
        }

        .hero-circle.c1 {
            width: 100%;
            height: 100%;
        }

        .hero-circle.c2 {
            width: 75%;
            height: 75%;
            background-color: rgba(27, 66, 154, 0.05);
        }

        .hero-circle.c3 {
            width: 50%;
            height: 50%;
            background-color: rgba(27, 66, 154, 0.07);
        }

        .hero-center-image {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 280px;
            height: auto;
            z-index: 2;
            pointer-events: none;
        }

        .hero-center-image img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .hero-img-wrapper {
            display: none; /* 画像は非表示 */
        }

        .hero-wave {
            display: none; /* 波は非表示 */
        }

        @media (max-width: 960px) {
            .hero {
                padding: calc(var(--header-height) + 120px) 20px 80px;
                min-height: auto;
                align-items: flex-start;
            }

            .hero h1 {
                font-size: 1.8rem;
                margin-bottom: 40px;
            }

            .hero-feature-tags {
                flex-direction: column;
                gap: 12px;
                width: 100%;
                max-width: 320px;
            }

            .hero-feature-tag {
                padding: 15px 20px;
                font-size: 1rem;
                width: 100%;
                justify-content: center;
            }

            .hero-background-circles {
                width: 500px;
                height: 500px;
                right: 50%;
                transform: translate(50%, -50%);
            }

            .hero-center-image {
                display: none;
            }
        }

        /* --- 5. About Affiliate --- */
        .about-affiliate {
            background-color: var(--color-white);
        }

        .affiliate-wrapper {
            text-align: center;
        }

        .affiliate-desc {
            max-width: 800px;
            margin: 0 auto 60px;
            font-size: 1.1rem;
            font-weight: 500;
        }

        .affiliate-image-area {
            max-width: 900px;
            margin: 0 auto;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
        }

        /* --- 6. Pain Points (Limit Break) --- */
        .pain {
            background-color: var(--color-bg-light);
            position: relative;
            overflow: hidden;
        }

        .pain-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pain-item {
            position: relative;
            height: 400px;
            border-radius: 24px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.4s var(--easing);
        }

        .pain-item:hover {
            transform: translateY(-10px);
        }

        .pain-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.8s var(--easing);
        }

        /* 画像パス維持 */
        .pain-item:nth-child(1) .pain-bg {
            background-image: url('../images/lp-nayami01.png');
        }

        .pain-item:nth-child(2) .pain-bg {
            background-image: url('../images/lp-nayami02.png');
        }

        .pain-item:nth-child(3) .pain-bg {
            background-image: url('../images/lp-nayami03.png');
        }

        .pain-item:hover .pain-bg {
            transform: scale(1.1);
        }

        .pain-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(27, 66, 154, 0.9) 100%);
            z-index: 1;
        }

        .pain-text {
            position: relative;
            z-index: 2;
            color: white;
            font-weight: 900;
            font-size: 1.4rem;
            line-height: 1.5;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .pain-list {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .pain-item {
                height: 250px;
            }
        }

        /* --- 7. Solution Bridge --- */
        .solution {
            padding: 60px 0 120px;
            background: linear-gradient(to bottom, var(--color-bg-light) 0%, white 100%);
            text-align: center;
        }

        .solution-arrow {
            font-size: 4rem;
            color: var(--color-accent);
            margin: -80px auto 30px;
            position: relative;
            z-index: 5;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(10px);
            }
        }

        .solution-box {
            background: linear-gradient(135deg, var(--color-main), #2a5fd4);
            color: white;
            padding: 60px 40px;
            border-radius: 30px;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 20px 50px rgba(27, 66, 154, 0.25);
            position: relative;
            overflow: hidden;
        }

        /* Decorative Circle */
        .solution-box::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .solution-box h3 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: 900;
        }

        .solution-box p {
            font-size: 1.2rem;
            opacity: 0.95;
        }

        @media (max-width: 768px) {
            .solution-box h3 {
                font-size: 1.6rem;
            }

            .solution-box p {
                font-size: 1rem;
            }
        }

        /* --- 8. Solution Cards --- */
        .solution-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .solution-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            transition: transform 0.4s var(--easing);
            border: 1px solid #eee;
        }

        .solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .solution-card-header {
            height: 220px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            background-size: cover;
            background-position: center;
        }

        .solution-card-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(27, 66, 154, 0.85);
        }

        /* 画像パス維持 */
        .solution-card:nth-child(1) .solution-card-header {
            background-image: url('../images/lp-kaiketsu01.jpg');
        }

        .solution-card:nth-child(2) .solution-card-header {
            background-image: url('../images/lp-kaiketsu02.jpg');
        }

        .solution-card:nth-child(3) .solution-card-header {
            background-image: url('../images/lp-kaiketsu03.jpg');
        }

        .sc-content {
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .sc-num {
            font-family: var(--font-en);
            font-size: 1rem;
            letter-spacing: 2px;
            opacity: 0.8;
            margin-bottom: 5px;
        }

        .sc-title {
            font-size: 1.6rem;
            font-weight: 900;
            line-height: 1.3;
        }

        .solution-card-body {
            padding: 30px;
        }

        .solution-card-text {
            font-size: 1rem;
            color: var(--color-text);
        }

        @media (max-width: 960px) {
            .solution-cards-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        /* --- 8.5. AdComi Features Section --- */
        .adcomi-features-section {
            background-color: var(--color-white);
            padding: 60px 0;
        }

        .adcomi-features-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            background: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-radius: 12px;
            overflow: hidden;
        }

        .adcomi-features-title-area {
            background-color: var(--color-main);
            color: white;
            width: 30%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
            text-align: center;
        }

        .adcomi-features-logo-text {
            font-size: 2.5rem;
            font-weight: 900;
            letter-spacing: 0.05em;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .adcomi-features-title-sub {
            font-size: 1.2rem;
            font-weight: bold;
            opacity: 0.9;
        }

        .adcomi-features-list {
            width: 70%;
            padding: 40px;
            background-color: #f9faff;
        }

        .adcomi-feature-card {
            display: flex;
            align-items: stretch;
            background: white;
            border: 2px solid var(--color-main);
            border-radius: 8px;
            margin-bottom: 20px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
        }

        .adcomi-feature-card:last-child {
            margin-bottom: 0;
        }

        .adcomi-feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .adcomi-feature-number {
            background-color: var(--color-main);
            color: var(--color-accent);
            width: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: 900;
            flex-shrink: 0;
            line-height: 1;
            position: relative;
        }

        .adcomi-feature-number::after {
            content: "";
            position: absolute;
            right: 0;
            top: 15%;
            bottom: 15%;
            width: 1px;
            background: rgba(255,255,255,0.3);
        }

        .adcomi-feature-content {
            padding: 15px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .adcomi-feature-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--color-main);
            margin-bottom: 5px;
        }

        .adcomi-feature-desc {
            font-size: 0.9rem;
            color: #444;
            margin: 0;
        }

        @media (max-width: 960px) {
            .adcomi-features-container {
                flex-direction: column;
                margin: 0 24px;
            }

            .adcomi-features-title-area {
                width: 100%;
                padding: 30px 20px;
            }

            .adcomi-features-list {
                width: 100%;
                padding: 20px;
            }

            .adcomi-feature-card {
                margin-bottom: 15px;
            }

            .adcomi-features-logo-text {
                font-size: 2rem;
            }

            .adcomi-feature-number {
                width: 60px;
                font-size: 1.8rem;
            }

            .adcomi-feature-title {
                font-size: 1rem;
            }

            .adcomi-feature-desc {
                font-size: 0.85rem;
            }
        }

        /* --- 8.6. ASP Comparison Section --- */
        .asp-comparison-section {
            background-color: var(--color-bg-light);
            padding: 60px 0;
        }

        .asp-comparison-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            padding: 40px 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .asp-main-message {
            text-align: center;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.5;
            color: var(--color-text);
        }

        .asp-columns-wrapper {
            display: flex;
            gap: 0;
            margin-bottom: 20px;
        }

        .asp-col-block {
            flex: 1;
            padding: 0;
            display: flex;
            flex-direction: column;
        }

        .asp-col-closed {
            background-color: #eef2fa;
            border-radius: 8px 0 0 8px;
        }

        .asp-col-open {
            background-color: #f5f5f5;
            border-radius: 0 8px 8px 0;
        }

        .asp-col-header {
            color: white;
            text-align: center;
            padding: 12px 0;
            font-weight: bold;
            font-size: 1.1rem;
            position: relative;
            border-radius: 8px;
            width: 90%;
            margin: 0 auto;
        }

        .asp-header-closed {
            background-color: var(--color-main);
        }

        .asp-header-open {
            background-color: #333;
        }

        .asp-col-sub {
            text-align: center;
            font-weight: bold;
            margin: 15px 0 10px;
            font-size: 1rem;
            color: var(--color-text);
        }

        .asp-logo-box {
            background: white;
            border: 2px solid;
            border-radius: 10px;
            margin: 10px 20px 20px;
            padding: 20px;
            min-height: 120px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .asp-border-blue {
            border-color: var(--color-main);
        }

        .asp-border-black {
            border-color: #333;
        }

        .asp-logo-img {
            max-width: 100%;
            width: auto;
            height: auto;
            max-height: 100px;
            min-height: 60px;
            object-fit: contain;
            display: block;
        }

        .asp-compare-row {
            display: flex;
            align-items: stretch;
            margin-top: 10px;
            min-height: 90px;
        }

        .asp-cell {
            flex: 1;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 1rem;
            font-weight: 900;
            line-height: 1.4;
            color: var(--color-text);
        }

        .asp-cell-blue {
            background-color: #dbe4f5;
            flex-direction: row;
            justify-content: flex-start;
        }

        .asp-cell-gray {
            background-color: #bfbfbf;
            flex-direction: row;
            justify-content: flex-start;
        }

        .asp-mark-icon {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
        }

        .asp-icon-circle {
            fill: none;
            stroke: var(--color-main);
            stroke-width: 10;
        }

        .asp-icon-triangle {
            fill: none;
            stroke: #666;
            stroke-width: 10;
            stroke-linejoin: round;
        }

        .asp-center-label {
            flex: 0 0 180px;
            background-color: var(--color-main);
            color: white;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
            font-size: 1rem;
            clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
            margin: 0 -25px;
        }

        @media (max-width: 960px) {
            .asp-columns-wrapper {
                flex-direction: column;
            }

            .asp-col-closed,
            .asp-col-open {
                border-radius: 8px;
                margin-bottom: 10px;
            }

            .asp-compare-row {
                flex-direction: column;
                margin-top: 20px;
                border-radius: 8px;
                overflow: hidden;
            }

            .asp-center-label {
                clip-path: none;
                width: 100%;
                margin: 0;
                padding: 10px 0;
                flex: none;
            }

            .asp-cell {
                padding: 20px;
                justify-content: flex-start;
            }
        }

        /* --- 9. Features (3 Reasons) - RICH VERSION --- */
        .features {
            background-color: var(--color-bg-light);
            perspective: 1000px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: white;
            padding: 0;
            border-radius: 20px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.5);
            overflow: hidden;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
            opacity: 0;
            /* Hidden initially for GSAP */
            transform: translateY(50px);
            /* Initial position for GSAP */
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(27, 66, 154, 0.15);
            border-color: var(--color-main);
            z-index: 10;
        }

        .feature-header {
            background: var(--color-main);
            padding: 30px;
            position: relative;
            color: white;
            overflow: hidden;
        }

        /* Shine effect on header */
        .feature-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            animation: shine 6s infinite;
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%) rotate(45deg);
            }

            20% {
                transform: translateX(100%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) rotate(45deg);
            }
        }

        .feature-num {
            font-family: var(--font-en);
            font-size: 4.5rem;
            font-weight: 900;
            position: absolute;
            top: 5px;
            right: 20px;
            line-height: 1;

            /* Gold Gradient */
            background: linear-gradient(135deg, #FFD700, #FDB931, #FFD700);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            z-index: 1;
        }

        .feature-card h3 {
            font-size: 1.6rem;
            color: white;
            margin-bottom: 0;
            margin-top: 10px;
            font-weight: 900;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .feature-body {
            padding: 30px;
            background: linear-gradient(to bottom, #fff, #fcfcfc);
        }

        .feature-body p {
            font-size: 1rem;
            color: var(--color-text);
            line-height: 1.8;
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- 10. USP (Pattern 2) --- */
        .usp-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 120px;
        }

        .usp-block:last-child {
            margin-bottom: 0;
        }

        .usp-block.reverse {
            direction: rtl;
        }

        /* Flex visually, but grid layout needs swap */
        .usp-block.reverse>* {
            direction: ltr;
        }

        .usp-img {
            position: relative;
        }

        .usp-img img {
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        /* Decorative elements for images */
        .usp-img::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--color-accent);
            border-radius: 16px;
            z-index: -1;
            opacity: 0.3;
        }

        .usp-label {
            display: inline-block;
            background: var(--color-accent);
            color: white;
            padding: 6px 16px;
            font-weight: 700;
            font-size: 0.9rem;
            border-radius: 6px;
            margin-bottom: 20px;
        }

        .usp-text h3 {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--color-main);
            margin-bottom: 24px;
            line-height: 1.4;
        }

        .usp-text p {
            font-size: 1.1rem;
            color: var(--color-text-light);
        }

        /* USPセクション内のfeaturesセクション用スタイル */
        .features-in-usp {
            margin: 40px 0;
        }

        .features-in-usp .section-title {
            margin-bottom: 30px;
        }

        .features-in-usp .features-grid {
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 0;
        }

        .features-in-usp .feature-card {
            opacity: 1;
            transform: none;
        }

        .features-in-usp .feature-header {
            padding: 20px;
        }

        .features-in-usp .feature-num {
            font-size: 3rem;
            top: 0;
            right: 15px;
        }

        .features-in-usp .feature-card h3 {
            font-size: 1.3rem;
        }

        .features-in-usp .feature-body {
            padding: 20px;
        }

        .features-in-usp .feature-body p {
            font-size: 0.9rem;
        }

        @media (min-width: 961px) {
            .features-in-usp .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .features-in-usp .feature-header {
                padding: 25px;
            }

            .features-in-usp .feature-num {
                font-size: 3.5rem;
            }

            .features-in-usp .feature-card h3 {
                font-size: 1.4rem;
            }

            .features-in-usp .feature-body {
                padding: 25px;
            }

            .features-in-usp .feature-body p {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 960px) {

            .usp-block,
            .usp-block.reverse {
                grid-template-columns: 1fr;
                gap: 40px;
                direction: ltr;
            }

            .usp-img::before {
                display: none;
            }
        }

        /* --- 11. Media Logos --- */
        .media-logos-box {
            background: white;
            border-radius: 16px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .media-logos-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-main);
            margin-bottom: 30px;
            letter-spacing: 0.05em;
        }

        .media-logos-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
            align-items: center;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .media-logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 12px;
            transition: all 0.4s var(--easing);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px) scale(0.9);
        }

        .media-logo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transition: left 0.5s;
        }

        .media-logo-item:hover::before {
            left: 100%;
        }

        .media-logo-item:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 10px 25px rgba(27, 66, 154, 0.15);
            background: white;
        }

        .media-logo-item img {
            max-width: 100%;
            height: auto;
            max-height: 80px;
            object-fit: contain;
            filter: grayscale(20%);
            transition: all 0.3s;
        }

        /* PC表示時のロゴサイズ拡大 */
        @media (min-width: 961px) {
            .media-logo-item {
                padding: 30px;
            }

            .media-logo-item img {
                max-height: 100px;
            }
        }

        .media-logo-item:hover img {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        .media-logos-note {
            font-size: 0.85rem;
            color: var(--color-text-light);
            margin-top: 30px;
            margin-bottom: 0;
            line-height: 1.6;
        }

        .media-logos-note strong {
            color: var(--color-main);
            font-weight: 700;
        }

        /* ジャンル一覧 */
        .genre-section-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-main);
            margin: 40px 0 30px 0;
            letter-spacing: 0.05em;
        }

        .genre-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 30px;
        }

        .genre-item {
            background-color: var(--color-main);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(27, 66, 154, 0.2);
            transition: all 0.3s var(--easing);
            opacity: 0;
            transform: translateY(20px) scale(0.9);
        }

        .genre-item:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(27, 66, 154, 0.3);
            background-color: var(--color-main-dark);
        }

        /* --- 12. Cases --- */
        .cases {
            background: #0d2b6d;
            color: white;
        }

        /* Dark theme for Cases */
        .cases .section-title h2 {
            color: white;
        }

        .cases .section-title p {
            color: var(--color-accent);
            opacity: 0.8;
        }

        .case-card {
            background: white;
            color: var(--color-text);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            margin-bottom: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .case-card:last-child {
            margin-bottom: 0;
        }

        .case-media {
            flex: 0 0 45%;
            position: relative;
            overflow: hidden;
        }

        .case-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .case-card:hover .case-media img {
            transform: scale(1.05);
        }

        .case-content {
            flex: 1;
            padding: 50px;
        }

        .case-tag {
            background: var(--color-bg-light);
            color: var(--color-main);
            font-weight: bold;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 16px;
        }

        .case-content h3 {
            font-size: 1.8rem;
            margin-bottom: 24px;
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 20px;
        }

        .case-metrics {
            display: flex;
            gap: 20px;
            margin-bottom: 24px;
        }

        .metric-box {
            flex: 1;
            background: #fffbf0;
            border: 1px solid #ffe0b2;
            padding: 15px;
            border-radius: 12px;
            text-align: center;
        }

        .metric-box small {
            display: block;
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 5px;
        }

        .metric-val {
            color: var(--color-accent);
            font-size: 1.4rem;
            font-weight: 900;
        }

        /* 新しい詳細事例スタイル（ナショナルクライアント用） */
        .case-detail-wrapper {
            background: var(--color-bg-light);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            color: #333; /* 明示的に黒を指定 */
        }

        .case-header-detail {
            margin-bottom: 30px;
        }

        .case-label-detail {
            display: inline-block;
            background-color: var(--color-main);
            color: white;
            padding: 10px 20px;
            font-weight: bold;
            border-radius: 4px 4px 4px 0;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .case-title-detail {
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            margin: 0 0 30px 0;
            color: #333 !important; /* 明示的に黒を指定 */
        }

        .case-grid-wrapper {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 20px;
        }

        .case-detail-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 20px;
        }

        .case-section-label {
            background-color: var(--color-main);
            color: white;
            display: inline-block;
            padding: 5px 30px;
            border-radius: 4px;
            font-weight: bold;
            margin-bottom: 15px;
            position: relative;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .case-card-content {
            margin-top: -15px;
            color: #333; /* 明示的に黒を指定 */
        }

        .case-sidebar .case-area-box {
            text-align: center;
            font-weight: bold;
            font-size: 1.1rem;
            color: #333; /* 明示的に黒を指定 */
        }

        .case-result-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #eee;
            padding: 15px 0;
        }

        .case-result-item:last-child {
            border-bottom: none;
        }

        .case-result-icon {
            font-size: 40px; /* 24pxから40pxに拡大 */
            margin-right: 15px;
            width: 45px;
            text-align: center;
            flex-shrink: 0;
        }

        .case-result-name {
            font-size: 0.9rem;
            font-weight: bold;
            flex-grow: 1;
            color: #333; /* 明示的に黒を指定 */
        }

        .case-result-value {
            font-size: 2rem; /* 1.2remから2remに拡大 */
            font-weight: 900; /* boldから900に変更してより強調 */
            color: var(--color-main);
            line-height: 1.2;
        }

        .case-result-unit {
            font-size: 0.9rem; /* 0.8remから0.9remに拡大 */
            color: #666;
        }

        .case-detail-box {
            color: #333; /* 明示的に黒を指定 */
        }

        .case-detail-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .case-detail-box li {
            position: relative;
            padding-left: 1.5em;
            margin-bottom: 0.8em;
            color: #333; /* 明示的に黒を指定 */
        }

        .case-detail-box li::before {
            content: "●";
            color: #333;
            position: absolute;
            left: 0;
            top: 0;
        }

        .case-detail-box strong {
            text-decoration: underline;
            text-decoration-color: #999;
            text-underline-offset: 3px;
            background: linear-gradient(transparent 70%, #eef 70%);
            color: #333; /* 明示的に黒を指定 */
        }

        .case-note-text {
            font-size: 0.85rem;
            color: #666;
            margin-top: 10px;
            line-height: 1.4;
        }

        /* 事例01用スタイル（プロセスフロー形式） */
        .case-process-wrapper {
            background: var(--color-bg-light);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            color: #333;
        }

        .case-header-process {
            margin-bottom: 40px;
            text-align: center;
        }

        .case-label-process {
            display: inline-block;
            background-color: var(--color-main);
            color: white;
            padding: 10px 20px;
            font-weight: bold;
            border-radius: 4px;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .case-title-process {
            font-size: 1.8rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .case-subtitle-process {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--color-main);
            background: #fff;
            display: inline-block;
            padding: 10px 20px;
            border-radius: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .case-section-wrapper {
            margin-bottom: 40px;
        }

        .case-process-row {
            display: flex;
            align-items: stretch;
            margin-bottom: 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .case-process-label {
            width: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            padding: 20px;
            flex-shrink: 0;
            text-align: center;
        }

        .case-process-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            align-items: center;
            color: #333;
        }

        .case-process-label.bg-dark {
            background-color: #222;
        }

        .case-process-label.bg-gray {
            background-color: #999;
        }

        .case-process-label.bg-blue {
            background-color: var(--color-main);
        }

        .case-flow-arrow {
            text-align: center;
            font-size: 24px;
            color: #333;
            margin: -10px 0 10px 0;
        }

        .case-bullet-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .case-bullet-list li {
            position: relative;
            padding-left: 1.5em;
            margin-bottom: 0.8em;
            color: #333;
        }

        .case-bullet-list li::before {
            content: "●";
            color: #333;
            position: absolute;
            left: 0;
            top: 0;
        }

        .case-check-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .case-check-list li {
            position: relative;
            padding-left: 1.8em;
            margin-bottom: 0.8em;
            color: #333;
        }

        .case-check-list li::before {
            content: "✓";
            font-weight: bold;
            color: #333;
            position: absolute;
            left: 0;
            top: 0;
        }

        .case-circle-list {
            list-style: none;
            padding-left: 1em;
            margin-top: 0.5em;
        }

        .case-circle-list li {
            position: relative;
            padding-left: 1.5em;
            margin-bottom: 0.5em;
            font-size: 0.95rem;
            color: #555;
        }

        .case-circle-list li::before {
            content: "○";
            color: #555;
            position: absolute;
            left: 0;
            top: 0;
        }

        .case-highlight-blue {
            color: var(--color-main);
            font-weight: bold;
            text-decoration: underline;
            text-decoration-color: #ddd;
            text-underline-offset: 3px;
        }

        .case-result-section-title {
            background: linear-gradient(90deg, #d4af37, #f2d06b);
            color: #333;
            padding: 15px 20px;
            font-weight: bold;
            font-size: 1.3rem;
            border-radius: 8px 8px 0 0;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .case-result-image-container {
            background: white;
            padding: 20px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            text-align: center;
        }

        .case-result-image-container img {
            max-width: 100%;
            width: 100%;
            height: auto;
            border: 1px solid #eee;
        }

        .case-divider {
            border: none;
            height: 1px;
            background: #ddd;
            margin: 40px 0;
        }

        @media (max-width: 960px) {
            .case-card {
                flex-direction: column;
            }

            .case-media {
                height: 250px;
            }

            .case-content {
                padding: 30px;
            }

            .case-grid-wrapper {
                grid-template-columns: 1fr;
            }

            .case-title-detail {
                font-size: 1.4rem;
            }

            .case-detail-wrapper {
                padding: 20px;
            }

            .case-process-row {
                flex-direction: column;
            }

            .case-process-label {
                width: 100%;
                padding: 10px;
            }

            .case-title-process {
                font-size: 1.4rem;
            }

            .case-process-wrapper {
                padding: 20px;
            }

            .media-logos-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 20px;
            }

            .media-logo-item {
                padding: 15px;
            }

            .media-logo-item img {
                max-height: 40px;
            }

            .media-logos-box {
                padding: 30px 20px;
            }

            .media-logos-title {
                font-size: 1.3rem;
            }

            .genre-section-title {
                font-size: 1.3rem;
            }

            .genre-grid {
                gap: 12px;
            }

            .genre-item {
                font-size: 0.9rem;
                padding: 10px 20px;
            }
        }

        /* --- 12.5. Article LP Comparison Section --- */
        .article-lp-comparison-section {
            padding: 60px 20px;
            background-color: var(--color-white);
        }

        .article-lp-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .article-lp-section-title {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: var(--color-text);
        }

        .article-lp-comparison-wrapper {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 20px;
        }

        .article-lp-comparison-arrow {
            align-self: center;
            font-size: 2rem;
            font-weight: 900;
            color: #000;
        }

        .article-lp-card {
            flex: 1;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .article-lp-card-header {
            color: #fff;
            font-weight: 700;
            padding: 12px 20px;
            font-size: 1.1rem;
            width: fit-content;
            margin-top: 15px;
            margin-left: 15px;
            padding-right: 40px;
            clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
        }

        .article-lp-header-blue {
            background-color: var(--color-main);
        }

        .article-lp-header-black {
            background-color: #222;
        }

        .article-lp-flow-area {
            padding: 20px 10px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            border-bottom: 1px solid #eee;
        }

        .article-lp-flow-box {
            background: #333;
            color: #fff;
            font-size: 0.8rem;
            font-weight: bold;
            padding: 6px 12px;
            border-radius: 4px;
            white-space: nowrap;
        }

        .article-lp-box-article {
            background: var(--color-main);
            position: relative;
        }

        .article-lp-box-article::before,
        .article-lp-box-article::after {
            content: "✦";
            color: var(--color-accent);
            position: absolute;
            font-size: 0.8rem;
        }

        .article-lp-box-article::before {
            top: -8px;
            left: -3px;
        }

        .article-lp-box-article::after {
            bottom: -8px;
            right: -3px;
        }

        .article-lp-flow-arrow {
            color: var(--color-main);
            font-weight: bold;
        }

        .article-lp-flow-arrow-dotted {
            color: #999;
            border-bottom: 2px dashed #999;
            height: 2px;
            width: 20px;
            position: relative;
        }

        .article-lp-flow-arrow-dotted::after {
            content: "▶";
            font-size: 0.6rem;
            position: absolute;
            right: -5px;
            top: -7px;
        }

        .article-lp-cv-circle {
            border-radius: 50%;
            color: #fff;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .article-lp-cv-large {
            width: 50px;
            height: 50px;
            background: radial-gradient(circle, var(--color-main) 40%, rgba(27, 66, 154, 0.3) 100%);
            font-size: 1rem;
        }

        .article-lp-cv-small {
            width: 35px;
            height: 35px;
            background: #ccc;
            font-size: 0.7rem;
        }

        .article-lp-funnel-area {
            flex: 1;
            position: relative;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .article-lp-bg-blue-grad {
            background: linear-gradient(to bottom, var(--color-main) 0%, #c4d4f2 100%);
        }

        .article-lp-bg-gray-grad {
            background: linear-gradient(to bottom, #666 0%, #ccc 100%);
        }

        .article-lp-pyramid-wrapper {
            position: relative;
            width: 240px;
            height: 200px;
            display: flex;
            align-items: center;
            margin-right: 15px;
        }

        .article-lp-pyramid-shape {
            width: 200px;
            height: 100%;
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            display: flex;
            flex-direction: column;
        }

        .article-lp-layer {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: bold;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }

        .article-lp-layer-top {
            flex: 1.2;
            background: #333;
            padding-top: 20px;
            align-items: flex-end;
            padding-bottom: 5px;
        }

        .article-lp-layer-mid {
            flex: 1.2;
            background: #666;
        }

        .article-lp-layer-btm {
            flex: 1.5;
            background: #999;
            border-bottom: none;
        }

        .article-lp-range-arrow {
            position: absolute;
            right: 10px;
            width: 15px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            z-index: 5;
        }

        .article-lp-range-line {
            width: 4px;
            flex-grow: 1;
            background-color: #fff;
            border-radius: 2px;
        }

        .article-lp-arrow-head-up,
        .article-lp-arrow-head-down {
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
        }

        .article-lp-arrow-head-up {
            border-bottom: 10px solid #fff;
            margin-bottom: -2px;
        }

        .article-lp-arrow-head-down {
            border-top: 10px solid #fff;
            margin-top: -2px;
        }

        .article-lp-arrow-full {
            height: 100%;
            top: 0;
        }

        .article-lp-arrow-top-only {
            height: 34%;
            top: 0;
        }

        .article-lp-arrow-black .article-lp-range-line {
            background-color: #000;
        }

        .article-lp-arrow-black .article-lp-arrow-head-up {
            border-bottom-color: #000;
        }

        .article-lp-arrow-black .article-lp-arrow-head-down {
            border-top-color: #000;
        }

        .article-lp-comment-bubble {
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: bold;
            color: #333;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            max-width: 180px;
            position: relative;
            z-index: 10;
        }

        .article-lp-bubble-left::before {
            content: "";
            position: absolute;
            top: 50%;
            left: -10px;
            transform: translateY(-50%);
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-right: 10px solid #fff;
        }

        .article-lp-comment-cloud {
            background: #e0e0e0;
            border-radius: 20px;
            padding: 15px;
            text-align: center;
            font-size: 0.8rem;
            color: #333;
            max-width: 160px;
        }

        .article-lp-highlight-blue {
            color: var(--color-main);
            font-weight: 900;
        }

        /* --- 12.6. Creative Comparison Section --- */
        .creative-comparison-section {
            padding: 60px 20px;
            background-color: #f9faff;
        }

        .creative-container-wide {
            max-width: 1000px;
            margin: 0 auto;
        }

        .creative-vertical-layout-wrapper {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .creative-showcase-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .creative-card-header-wide {
            background-color: var(--color-main);
            color: #fff;
            font-weight: 700;
            padding: 12px 30px;
            font-size: 1.2rem;
            display: inline-block;
            clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
            margin-top: 20px;
            margin-left: 0;
            padding-right: 50px;
            position: relative;
            left: -5px;
            box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
        }

        .creative-showcase-body {
            padding: 30px;
            display: flex;
            gap: 40px;
        }

        .creative-col-half {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .creative-category-label {
            background-color: #111;
            color: #fff;
            font-weight: bold;
            font-size: 1rem;
            padding: 8px 30px;
            border-radius: 30px;
            margin-bottom: 25px;
            white-space: nowrap;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .creative-ad-grid-battery {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            width: 100%;
            max-width: 450px;
        }

        .creative-ad-main-img {
            grid-column: 1 / 3;
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #eee;
        }

        .creative-ad-sub-img {
            width: 100%;
            aspect-ratio: 1 / 1;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid #eee;
        }

        .creative-ad-clinic-container {
            width: 100%;
            max-width: 300px;
        }

        .creative-ad-tall-img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            border: 1px solid #eee;
            display: block;
        }

        .creative-ad-main-img img,
        .creative-ad-sub-img img,
        .creative-ad-tall-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .creative-lp-flow-container {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            justify-content: center;
            gap: 10px;
            width: 100%;
            position: relative;
        }

        .creative-lp-img {
            width: 45%;
            height: auto;
            border: 1px solid #ddd;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            display: block;
            transition: transform 0.3s ease;
        }

        .creative-lp-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .creative-lp-img:last-child {
            margin-top: 60px;
        }

        .creative-arrow-icon {
            color: #ccc;
            font-size: 24px;
            font-weight: bold;
            align-self: flex-start;
            margin-top: 40px;
            padding: 0 5px;
        }

        .creative-showcase-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 960px) {
            .article-lp-comparison-wrapper {
                flex-direction: column;
            }

            .article-lp-comparison-arrow {
                transform: rotate(90deg);
                margin: 10px 0;
            }

            .article-lp-funnel-area {
                flex-direction: column;
                gap: 20px;
            }

            .article-lp-pyramid-wrapper {
                margin-right: 0;
                margin-bottom: 10px;
            }

            .article-lp-bubble-left::before {
                top: -10px;
                left: 50%;
                transform: translateX(-50%);
                border-right: 10px solid transparent;
                border-left: 10px solid transparent;
                border-bottom: 10px solid #fff;
            }

            .creative-showcase-body {
                flex-direction: column;
                gap: 50px;
                padding: 20px;
            }

            /* 記事LPセクションはスマホでも横並び */
            .creative-lp-card .creative-showcase-body {
                flex-direction: row;
                gap: 15px;
                padding: 20px 15px;
            }

            /* 記事LPセクションのカラム幅を調整 */
            .creative-lp-card .creative-col-half {
                flex: 1;
                min-width: 0;
            }

            /* 記事LPセクションのラベルサイズ調整 */
            .creative-lp-card .creative-category-label {
                font-size: 0.9rem;
                padding: 6px 20px;
            }

            .creative-col-half:first-child {
                border-bottom: 1px dashed #ddd;
                padding-bottom: 40px;
            }

            /* 記事LPセクションでは境界線を削除 */
            .creative-lp-card .creative-col-half:first-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            .creative-ad-grid-battery,
            .creative-ad-clinic-container {
                max-width: 100%;
            }

            .creative-lp-flow-container {
                flex-direction: column;
                align-items: center;
            }

            /* 記事LPセクションの画像コンテナは横並びを維持 */
            .creative-lp-card .creative-lp-flow-container {
                flex-direction: row;
                gap: 8px;
            }

            .creative-lp-img {
                width: 80%;
            }

            /* 記事LPセクションの画像は小さめに */
            .creative-lp-card .creative-lp-img {
                width: 45%;
            }

            .creative-lp-img:last-child {
                margin-top: 0;
            }

            /* 記事LPセクションの2枚目の画像は下にずらす */
            .creative-lp-card .creative-lp-img:last-child {
                margin-top: 40px;
            }

            .creative-arrow-icon {
                align-self: center;
                margin-top: 10px;
                margin-bottom: 10px;
                transform: rotate(90deg);
            }

            /* 記事LPセクションの矢印は横矢印のまま */
            .creative-lp-card .creative-arrow-icon {
                align-self: flex-start;
                margin-top: 30px;
                margin-bottom: 0;
                transform: none;
            }
        }

        /* --- 13. Comparison Table --- */
        .comparison {
            background-color: var(--color-white);
        }

        /* 横スクロール対応 */
        .table-scroll-wrapper {
            overflow-x: auto;
            padding-bottom: 20px;
        }

        .comp-table {
            width: 100%;
            min-width: 700px;
            /* スマホで潰れないように */
            border-collapse: collapse;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .comp-table th,
        .comp-table td {
            padding: 24px;
            text-align: left;
            /* Left align content */
            border-bottom: 1px solid #eee;
        }

        .comp-table th {
            text-align: center;
            /* Keep headers centered */
        }

        .comp-table th {
            color: white;
            font-size: 1.1rem;
        }

        .comp-table th:first-child {
            background: #333;
            width: 20%;
        }

        .comp-table th.col-other {
            background: #999;
            width: 25%;
            /* Reduced from 40% */
        }

        .comp-table th.col-adcomi {
            background: var(--color-main);
            width: 55%;
            /* Increased */
            font-size: 2.1rem;
            /* 150% of 1.4rem */
            font-weight: 900;
            position: relative;
        }

        .comp-table th.col-adcomi::after {
            content: 'RECOMMEND';
            position: absolute;
            top: -15px;
            right: 10px;
            background: var(--color-accent);
            color: white;
            font-size: 0.7rem;
            padding: 15px 10px 5px;
            transform: rotate(15deg);
            font-weight: bold;
        }

        .comp-table td.highlight {
            background: #f0f7ff;
            color: var(--color-main);
            font-weight: 900;
            font-size: 1.8rem;
            /* 150% of 1.2rem */
        }

        .circle-mark {
            color: var(--color-accent);
            font-size: 1.8rem;
            margin-right: 5px;
            vertical-align: middle;
        }

        /* --- 14. FAQ --- */
        .faq {
            background-color: var(--color-bg-light);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
            overflow: hidden;
        }

        .faq-question {
            padding: 24px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            transition: 0.3s;
            font-size: 1.8rem;
            /* Closer to double (approx 2x of default) */
        }

        .faq-question::before {
            content: 'Q';
            color: var(--color-main);
            font-size: 2.4rem;
            /* Larger icon */
            font-weight: 900;
            margin-right: 20px;
        }

        .faq-question:hover {
            background: #fcfcfc;
            color: var(--color-main);
        }

        .faq-answer {
            padding: 0 24px 24px 60px;
            color: var(--color-text-light);
            line-height: 1.7;
            display: none;
            font-size: 1.5rem;
            /* Larger answer text */
            /* JSで開閉 */
        }

        /* --- 15. Footer --- */
        footer {
            background: var(--color-main-dark);
            color: white;
            padding: 100px 0 40px;
            text-align: center;
        }

        .footer-cta h2 {
            font-size: 2.4rem;
            margin-bottom: 40px;
            line-height: 1.4;
        }

        .footer-cta-btn {
            background: #E60012;
            /* Original color requested */
            box-shadow: 0 10px 30px rgba(230, 0, 18, 0.4);
        }

        .copyright {
            margin-top: 80px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            font-size: 0.8rem;
            opacity: 0.6;
        }

        /* GSAP Reveal Class */
        .gs-reveal {
            opacity: 0;
            transform: translateY(40px);
        }
