/* ============================================ */
/* UUUM ONE Inspired Design - UGC Landing Page  */
/* Clean white base, warm off-white, deep blue  */
/* ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================ */
/* Hide WordPress theme default header/nav      */
/* Theme outputs: #header, #navigation_wrap     */
/* ============================================ */
#header {
    display: none !important;
}

#navigation_wrap {
    display: none !important;
}

#allwrap {
    padding: 0 !important;
    margin: 0 !important;
}

:root {
    /* Primary palette - UUUM ONE inspired */
    --color-primary: #1e5a9f;
    --color-primary-light: #0196da;
    --color-primary-dark: #14467a;
    --color-primary-50: #eef5fb;
    --color-primary-100: #d4e6f5;
    --color-primary-200: #a8cde9;
    --color-secondary: #0196da;
    --color-secondary-light: #33afe4;

    /* Neutral palette - warm off-white */
    --color-bg-white: #FFFFFF;
    --color-bg-light: #f8f7f6;
    --color-bg-subtle: #f2f1ef;
    --color-border: #ededed;
    --color-border-light: #f2f2f2;

    /* Text - near black */
    --color-text-primary: #0a0b0c;
    --color-text-secondary: #4a4a4a;
    --color-text-muted: #8a8a8a;
    --color-text-white: #FFFFFF;

    /* Shadows - UUUM ONE style deep shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 48px -8px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 24px 64px -12px rgba(0, 0, 0, 0.1);

    /* Layout */
    --container-width: 1280px;
    --section-padding: 120px 0;
    --section-padding-mobile: 64px 0;

    /* Border radius - smaller, UUUM ONE style */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 12px;
    --radius-full: 40px;

    /* Transition */
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* UGC Blue section backgrounds (equivalent to LINE's green tints) */
    --color-ugc-bg-light: #EEF6FC;
    --color-ugc-bg-lighter: #F5FAFD;
    --color-ugc-primary: #0494de;
    --color-ugc-primary-dark: #0378b5;
    --color-white: #FFFFFF;
    --color-text-dark: #0a0b0c;
    --color-text-black: #0a0b0c;
    --color-gray: #8a8a8a;
    --color-red: #e53935;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    background: var(--color-bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ============================================ */
/* Header                                        */
/* ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 36px;
}

.logo img {
    height: 100%;
    width: auto;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all 0.3s;
    border-radius: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    font-weight: 500;
    transition: color var(--transition);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-contact-btn {
    background: var(--color-primary) !important;
    color: var(--color-text-white) !important;
    padding: 10px 24px !important;
    white-space: nowrap;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: all var(--transition) !important;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.nav-contact-btn::before {
    display: none;
}

.nav-contact-btn:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(30, 90, 159, 0.25);
}

.nav-contact-btn:active {
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 66px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--color-border);
        z-index: 999;
        max-height: calc(100vh - 66px);
        overflow-y: auto;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--color-border-light);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 14px 16px;
        width: 100%;
        font-size: 15px;
        border-radius: var(--radius-sm);
    }

    .nav-contact-btn {
        width: 100% !important;
        text-align: center !important;
        margin-top: 8px !important;
        padding: 14px 24px !important;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (min-width: 1025px) {
    .menu-toggle {
        display: none;
    }
}

/* ============================================ */
/* Common Section Styles                         */
/* ============================================ */
.section-bg-title {
    font-size: 150px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.08);
    line-height: 1;
    text-align: center !important;
    position: absolute;
    width: 100%;
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 60px;
    box-sizing: border-box;
}

.section-header {
    position: relative;
    margin-top: 0 !important;
    margin-bottom: 56px !important;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    z-index: 2;
}

.section-header .section-bg-title {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.section-header .section-subtitle {
    position: relative;
    z-index: 2;
    margin: 0 auto !important;
    text-align: center;
}

.section-subtitle {
    font-size: 40px;
    font-weight: 900;
    color: #0494de;
    text-align: center;
    line-height: 1.4;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 0;
    width: 100%;
    max-width: 1400px;
}

.sp-only {
    display: none;
}

/* Per-section bg-title positioning - before「丸投げ」(padding 60px) */
.interview-section .section-bg-title,
.about-section .section-bg-title,
.insights-section .section-bg-title,
.about-ugc-ad-section .section-bg-title {
    top: 60px;
    font-size: 150px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    transform: none;
    max-width: none;
}

/* Per-section bg-title positioning - after「丸投げ」(padding 120px) */
.services-section .section-bg-title,
.benefits-section .section-bg-title,
.integration-section .section-bg-title,
.plan-section .section-bg-title,
.flow-section .section-bg-title,
.faq-section .section-bg-title,
.contact-section .section-bg-title {
    top: 120px;
    font-size: 150px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    transform: none;
    max-width: none;
}

.contact-section .section-bg-title {
    color: rgba(255, 255, 255, 0.04);
    top: 75px;
}

/* Container shared defaults */
.insights-container,
.services-container,
.benefits-container,
.integration-container,
.plan-container,
.flow-container,
.faq-container,
.contact-container {
    position: relative;
}

.contact-section .section-subtitle {
    color: white;
}

/* ============================================ */
/* Hero Section - FULL LAYOUT + UGC Blue        */
/* Based on line-style-2.css hero layout         */
/* Live theme style.css has NO hero styles       */
/* #06C755 (LINE green) → #0494de (UGC blue)    */
/* ============================================ */

/* ---- PC Hero Section ---- */
.hero-section-pc {
    position: relative;
    width: 100%;
    height: 54.22vw;
    overflow: hidden;
    display: none;
}

/* Blurred background via <img> tag (not ::before) */
.hero-pc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    filter: blur(2px);
}

.hero-section-pc .hero-pc-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 1;
}

.hero-section-pc .hero-pc-person {
    width: 34vw;
    position: absolute;
    left: 52vw;
    bottom: 0;
    z-index: 2;
    object-fit: contain;
}

.hero-section-pc .hero-pc-title-wrapper {
    position: absolute;
    width: 52.08vw;
    height: 14.35vw;
    left: 15vw;
    top: 14.51vw;
    z-index: 3;
    pointer-events: none;
}

.hero-section-pc .hero-pc-title-svg-container {
    position: absolute;
    left: 0;
    top: 3.85vw;
    width: 52.08vw;
    height: 10.42vw;
    pointer-events: auto;
    z-index: 2;
}

.hero-section-pc .hero-pc-title-svg-container svg {
    width: 100%;
    height: 100%;
}

.hero-section-pc .hero-pc-title-text-mobile {
    display: none;
}

.hero-section-pc .hero-pc-subtitle-box {
    width: 28.06vw;
    height: 3.85vw;
    left: 0;
    top: -2.31vw;
    position: absolute;
    background: white;
    border-radius: 2.31vw;
    border: 1px solid white;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
    pointer-events: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section-pc .hero-pc-subtitle {
    color: #0494de;
    font-size: 1.16vw;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.6;
    word-wrap: break-word;
    text-align: center;
    width: 100%;
}

.hero-section-pc .hero-pc-cta-box {
    width: 32.98vw;
    height: 17.76vw;
    left: 19vw;
    top: 30.45vw;
    position: absolute;
    background: #0494de;
    border-radius: 1.21vw;
    z-index: 3;
}

.hero-section-pc .hero-pc-cta-text {
    width: 31vw;
    position: absolute;
    left: 0.92vw;
    top: 2vw;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 1.37vw;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 700;
    line-height: 1.5;
    word-wrap: break-word;
}

.hero-section-pc .hero-pc-cta-button-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-section-pc .hero-pc-cta-button {
    width: 29.45vw;
    height: 5.16vw;
    position: absolute;
    left: 1.73vw;
    top: 10.70vw;
    background: #EFE227;
    box-shadow: 0.2vw 0.23vw 0.23vw rgba(0, 0, 0, 0.65);
    border-radius: 3.38vw;
    border: 0.35vw solid #0494de;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-pc .hero-pc-cta-button:hover {
    transform: scale(1.02);
}

.hero-section-pc .hero-pc-cta-button-text {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: #0494de;
    font-size: 1.85vw;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    width: 100%;
}

.hero-section-pc .hero-pc-cta-icon {
    width: 4.45vw;
    height: auto;
    position: absolute;
    left: 1.67vw;
    top: 8.91vw;
    z-index: 6;
    pointer-events: none;
}


/* ---- SP (Mobile) Hero Section ---- */
/* Live HTML: .hero-section-sp > .hero-sp-wrapper > .hero-sp-bg, .hero-sp-content, .hero-sp-person, .hero-sp-cta-box */
/* All values use clamp() to scale proportionally from 390px → 768px+ */
.hero-section-sp {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: block;
}

/* SP blurred background */
.hero-sp-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-sp-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.hero-sp-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    z-index: 1;
    overflow-x: hidden;
}

/* SP content (subtitle + title) */
.hero-sp-content {
    position: absolute;
    width: 90%;
    left: 5%;
    top: 10%;
    z-index: 3;
    pointer-events: none;
}

.hero-sp-subtitle-box {
    width: 85%;
    min-height: clamp(50px, 12.8vw, 80px);
    position: relative;
    top: clamp(45px, 11.5vw, 90px);
    background: white;
    border-radius: clamp(25px, 6.4vw, 40px);
    border: 1px solid white;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
    pointer-events: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(10px, 2.6vw, 18px) clamp(15px, 3.8vw, 28px);
    box-sizing: border-box;
    margin-bottom: clamp(16px, 4.1vw, 30px);
}

.hero-sp-subtitle {
    color: #0494de;
    font-size: clamp(14px, 3.6vw, 24px);
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    line-height: 1.6;
    word-wrap: break-word;
    text-align: center;
    width: 100%;
}

.hero-sp-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 6vw, 44px);
    color: white;
    -webkit-text-stroke: clamp(3px, 1vw, 5px) #0494de;
    paint-order: stroke fill;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: normal;
    margin: 0;
    pointer-events: auto;
    z-index: 2;
    position: relative;
    top: clamp(40px, 10.3vw, 80px);
}

.hero-sp-title-line {
    display: block;
}

/* SP person - centered on screen, scales with vw */
.hero-sp-person {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    z-index: 2;
    text-align: center;
    overflow: visible;
}

.hero-sp-person img {
    width: 180%;
    height: auto;
    object-fit: contain;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

/* SP CTA box */
.hero-sp-cta-box {
    width: 95%;
    min-height: clamp(130px, 33vw, 220px);
    left: 2.5%;
    bottom: 5%;
    position: absolute;
    background: #0494de;
    border-radius: clamp(20px, 5.1vw, 35px);
    z-index: 4;
    padding: clamp(20px, 5.1vw, 35px);
    box-sizing: border-box;
}

.hero-sp-cta-text {
    width: 100%;
    position: absolute;
    left: 0;
    top: 10%;
    text-align: center;
    color: white;
    font-size: clamp(16px, 4.5vw, 26px);
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 700;
    line-height: 1.6;
    word-wrap: break-word;
}

.hero-sp-cta-button {
    width: 90%;
    height: clamp(50px, 12.8vw, 75px);
    position: absolute;
    left: 5%;
    top: clamp(70px, 18vw, 140px);
    background: #EFE227;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: clamp(25px, 6.4vw, 40px);
    border: 3px solid #0494de;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0494de;
    font-size: clamp(16px, 4.1vw, 26px);
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
}

.hero-sp-cta-button:hover {
    transform: scale(1.02);
}

/* ---- SP hero: 390px以上で人物拡大 ---- */
@media (min-width: 390px) {
    .hero-sp-person img {
        width: 230%;
    }
}

/* ---- Display toggling: SP/PC ---- */
.ugc-hero-section-pc {
    display: none !important;
}

@media (min-width: 1025px) {
    .hero-section-sp {
        display: none !important;
    }
    .ugc-hero-section-pc {
        display: block !important;
    }
}

/* ---- PC Hero Section (LINE-style vw layout) ---- */
.ugc-hero-section-pc {
    position: relative !important;
    width: 100% !important;
    height: 54.22vw !important;
    overflow: hidden !important;
}

.ugc-hero-pc-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 auto !important;
    z-index: 1 !important;
}

.ugc-hero-pc-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 0 !important;
}

.ugc-hero-pc-content {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
}

.ugc-hero-pc-left {
    position: absolute !important;
    width: 52vw !important;
    left: 10vw !important;
    top: 10vw !important;
    z-index: 3 !important;
}

.ugc-hero-pc-subtitle-box {
    width: 28vw !important;
    height: 3.85vw !important;
    position: relative !important;
    background: white !important;
    border-radius: 2.31vw !important;
    border: 1px solid white !important;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 1.5vw !important;
}

.ugc-hero-pc-subtitle {
    color: #0494de !important;
    font-size: 1.16vw !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.6 !important;
    text-align: center !important;
    width: 100% !important;
}

.ugc-hero-pc-title {
    margin: 0 0 2vw 0 !important;
    padding: 0 !important;
}

.ugc-hero-pc-title-line {
    display: block !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 900 !important;
    font-size: 3.2vw !important;
    color: white !important;
    -webkit-text-stroke: 0.35vw #0494de !important;
    paint-order: stroke fill !important;
    line-height: 1.4 !important;
}

.ugc-hero-pc-cta-box {
    width: 33vw !important;
    position: relative !important;
    background: #0494de !important;
    border-radius: 1.2vw !important;
    z-index: 3 !important;
    padding: 2vw !important;
    box-sizing: border-box !important;
}

.ugc-hero-pc-cta-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1vw !important;
    margin-bottom: 1.5vw !important;
}

/* マスコット非表示 */
.ugc-hero-pc-mascot {
    display: none !important;
}

.ugc-hero-pc-cta-content {
    display: flex !important;
    flex-direction: column !important;
}

.ugc-hero-pc-cta-text {
    color: white !important;
    font-size: 1.4vw !important;
    font-weight: 700 !important;
    font-style: italic !important;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.ugc-hero-pc-cta-text-bold {
    color: white !important;
    font-size: 2.8vw !important;
    font-weight: 900 !important;
    font-style: italic !important;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.ugc-hero-pc-cta-text-small {
    font-size: 1.8vw !important;
    font-weight: 700 !important;
}

.ugc-hero-pc-cta-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 5.16vw !important;
    background: #EFE227 !important;
    color: #0494de !important;
    font-size: 1.85vw !important;
    font-weight: 800 !important;
    font-style: italic !important;
    font-family: 'Inter', sans-serif !important;
    border-radius: 3.38vw !important;
    border: 0.35vw solid #0494de !important;
    text-decoration: none !important;
    box-shadow: 0.2vw 0.23vw 0.23vw rgba(0,0,0,0.65) !important;
    transition: transform 0.2s !important;
    cursor: pointer !important;
}

.ugc-hero-pc-cta-button:hover {
    transform: scale(1.02) !important;
}

.ugc-hero-pc-right {
    position: absolute !important;
    right: 10vw !important;
    bottom: 0 !important;
    z-index: 2 !important;
}

.ugc-hero-pc-person {
    width: 37vw !important;
    height: auto !important;
    object-fit: contain !important;
}

/* ============================================ */
/* Interview / Case Study Section                */
/* ============================================ */
.interview-section {
    padding: 60px 0;
    background: var(--color-ugc-bg-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.interview-section .section-header {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

.interview-container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.interview-section .section-subtitle {
    padding-top: 0;
    font-size: 28px;
    color: #0494de;
}

.interview-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Cases Swiper */
.interview-card {
    width: 100%;
    display: block;
    justify-content: center;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.interview-card .p-cases-swiper__wrap {
    position: relative;
    padding-bottom: 4rem !important;
    margin-top: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    overflow: visible;
    z-index: 2 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    height: auto;
    min-height: auto;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.interview-card .p-cases-swiper__wrap .p-cases-swiper {
    padding-left: 40px;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: visible;
    padding-top: 1rem !important;
    padding-bottom: 2rem !important;
    padding-right: 40px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.interview-card .p-cases-swiper__wrap .p-cases-swiper::-webkit-scrollbar {
    display: none;
}

.interview-card .p-cases-swiper__wrap .swiper-wrapper {
    margin-left: 0 !important;
    padding-left: 0 !important;
    display: flex;
    width: auto;
    align-items: stretch;
}

.interview-card .p-cases-swiper .swiper-slide {
    height: auto;
    display: flex;
    min-width: calc(100vw - 60px);
    width: calc(100vw - 60px);
    margin-right: 20px !important;
    align-items: stretch;
    flex-shrink: 0;
    padding-bottom: 0.5rem;
}

@media screen and (min-width: 500px) {
    .interview-card .p-cases-swiper .swiper-slide {
        min-width: 380px;
        margin-right: 24px !important;
    }
}
@media screen and (min-width: 739px) {
    .interview-card .p-cases-swiper .swiper-slide {
        min-width: 400px;
        margin-right: 32px !important;
    }
}
@media screen and (min-width: 1024px) {
    .interview-card .p-cases-swiper .swiper-slide {
        min-width: 360px;
        margin-right: 24px !important;
    }
}
@media screen and (min-width: 1300px) {
    .interview-card .p-cases-swiper .swiper-slide {
        min-width: 380px;
        margin-right: 24px !important;
    }
}

.interview-card .p-cases-swiper .swiper-slide:last-child {
    margin-right: 40px !important;
}

.interview-card .p-cases-card {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: auto;
    width: 100%;
    min-width: 300px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

.interview-card .p-cases-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.interview-card .p-cases-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: auto;
}

.interview-card .p-cases-card__img {
    width: 100%;
    height: 13rem;
    min-height: 13rem;
    overflow: hidden;
    background-color: var(--color-bg-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    z-index: 1;
}

@media screen and (min-width: 739px) {
    .interview-card .p-cases-card__img {
        height: 14rem;
    }
}

.interview-card .p-cases-card__img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform var(--transition);
}

.interview-card .p-cases-card:hover .p-cases-card__img img {
    transform: scale(1.04);
}

.interview-card .p-cases-card__content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    position: relative;
    z-index: 1;
    background-color: var(--color-bg-white);
}

@media screen and (min-width: 739px) {
    .interview-card .p-cases-card__content {
        padding: 1.5rem;
    }
}

.interview-card .p-cases-card__title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

@media screen and (min-width: 739px) {
    .interview-card .p-cases-card__title {
        font-size: 1.125rem;
    }
}

.interview-card .p-cases-card__company {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.25rem;
}

@media screen and (min-width: 739px) {
    .interview-card .p-cases-card__company {
        font-size: 0.875rem;
    }
}

.interview-card .p-cases-card__area {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
}

@media screen and (min-width: 739px) {
    .interview-card .p-cases-card__area {
        font-size: 0.8rem;
    }
}

.interview-card .p-cases-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border-light);
}

.interview-card .p-cases-card__tag {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--color-primary);
    background-color: var(--color-primary-50);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-full);
    border: none;
}

@media screen and (min-width: 739px) {
    .interview-card .p-cases-card__tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
}

/* Swiper scroll indicator */
.interview-card .p-cases-swiper__scroll-indicator {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    margin: 8px auto 0 auto;
    width: 100%;
    z-index: 10;
    flex-wrap: wrap;
    max-width: 90%;
}

@media screen and (min-width: 739px) {
    .interview-card .p-cases-swiper__scroll-indicator {
        max-width: 80%;
    }
}

.interview-card .p-cases-swiper__scroll-indicator span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.15;
    transition: opacity var(--transition);
    flex-shrink: 0;
}

.interview-card .p-cases-swiper__scroll-indicator span:first-child,
.interview-card .p-cases-swiper__scroll-indicator .swiper-pagination-bullet-active {
    opacity: 1;
}

.interview-cta {
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    background: var(--color-bg-white);
    color: var(--color-primary) !important;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--color-primary);
    transition: all var(--transition);
    box-shadow: none;
}

.view-more-btn:hover {
    background: var(--color-primary);
    color: white !important;
    box-shadow: 0 8px 24px rgba(30, 90, 159, 0.25);
}

.arrow-icon {
    margin-left: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all var(--transition);
}

.view-more-btn:hover .arrow-icon {
    transform: translateX(3px);
}

/* SP Swiper mobile overrides */
@media screen and (max-width: 738px) {
    .interview-card .p-cases-swiper__wrap {
        padding-bottom: 1.5rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .interview-card .p-cases-swiper__wrap .p-cases-swiper {
        padding-left: 0 !important;
        padding-right: 0 !important;
        scroll-snap-type: x mandatory;
        padding-bottom: 1rem !important;
        -webkit-overflow-scrolling: touch;
    }

    .interview-card .p-cases-swiper__wrap .swiper-wrapper {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .interview-card .p-cases-swiper .swiper-slide {
        min-width: 260px !important;
        width: 260px !important;
        max-width: 260px !important;
        margin-right: 12px !important;
        scroll-snap-align: start;
        flex-shrink: 0 !important;
    }

    .interview-card .p-cases-swiper .swiper-slide:first-child {
        margin-left: 16px !important;
    }

    .interview-card .p-cases-swiper .swiper-slide:last-child {
        margin-right: 16px !important;
    }

    .interview-card .p-cases-card {
        min-width: 100% !important;
        width: 100% !important;
    }

    .interview-card .p-cases-card__img {
        height: 10rem !important;
        min-height: 10rem !important;
    }

    .interview-card .p-cases-card__content {
        padding: 0.875rem !important;
    }

    .interview-card .p-cases-card__title {
        font-size: 0.9375rem !important;
        margin-bottom: 0.375rem !important;
    }

    .interview-card .p-cases-card__company {
        font-size: 0.8125rem !important;
        margin-bottom: 0.25rem !important;
    }

    .interview-card .p-cases-card__area {
        font-size: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }

    .interview-card .p-cases-card__tags {
        margin-top: 0.5rem !important;
        padding-top: 0.5rem !important;
        gap: 0.25rem !important;
    }

    .interview-card .p-cases-card__tag {
        font-size: 0.625rem !important;
        padding: 0.2rem 0.5rem !important;
    }

    .interview-card .p-cases-swiper__scroll-indicator {
        gap: 0.25rem;
        margin-top: 8px;
    }
    .interview-card .p-cases-swiper__scroll-indicator span {
        width: 6px;
        height: 6px;
    }

    .interview-cta {
        margin-top: 8px !important;
    }
}

/* ============================================ */
/* About Section                                 */
/* ============================================ */
.about-section {
    padding: 60px 0;
    background: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.about-section .section-header {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

.about-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.about-content {
    text-align: center;
}

.about-description {
    font-size: 18px;
    line-height: 2.2;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 720px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
}

/* ============================================ */
/* Insights Section                              */
/* ============================================ */
.insights-section {
    padding: 60px 0;
    background: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.insights-section .section-header {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

.insights-section .section-subtitle {
    padding-top: 0;
    padding-bottom: 0;
    color: #0494de;
}

.insights-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.insight-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow var(--transition);
}

.insight-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.insight-card.animate-in:hover {
    transform: translateY(-6px);
}

.insight-card:hover::before {
    transform: scaleX(1);
}

.insight-label {
    font-size: 11px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.insight-main-stat p {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}

.insight-main-stat .stat-large {
    font-size: 72px;
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1;
    font-family: 'Inter', sans-serif;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--color-primary);
    background-clip: unset;
    letter-spacing: -2px;
}

.stat-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 12px;
}

.insight-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-top: 20px;
    font-weight: 500;
}

.insight-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.insight-list li {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    padding: 14px 20px;
    background: var(--color-bg-light);
    border-radius: var(--radius-sm);
}

.insight-list li .highlight {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 22px;
}

/* ============================================ */
/* About UGC Ad Section                          */
/* ============================================ */
.about-ugc-ad-section {
    padding: 60px 0;
    background: var(--color-ugc-bg-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.about-ugc-ad-section .section-header {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

.about-ugc-ad-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.about-ugc-ad-content {
    text-align: center;
}

.about-ugc-ad-description {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
}

.about-ugc-ad-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 28px;
}

.about-ugc-ad-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 840px;
    margin: 0 auto;
}

.ugc-compare-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.ugc-compare-img:hover {
    box-shadow: var(--shadow-lg);
}

/* ============================================ */
/* CTA Sections                                  */
/* ============================================ */
.cta-section {
    padding: 60px 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(239, 226, 39, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 10% 30%, rgba(239, 226, 39, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, #0494de 0%, var(--color-ugc-primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 226, 39, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9) rotate(-5deg);
    }
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-description {
    font-size: 22px;
    color: white;
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: #E8D520;
    color: white;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(232, 213, 32, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(232, 213, 32, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(232, 213, 32, 0.6);
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(232, 213, 32, 0.6);
}

/* ============================================ */
/* Services Section                              */
/* ============================================ */
.services-section {
    padding: var(--section-padding);
    background: var(--color-ugc-bg-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.services-section .section-header {
    margin-top: 0 !important;
    margin-bottom: 56px !important;
}

.services-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.services-section .section-subtitle {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    color: #0494de;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 96px;
    background: transparent;
    padding: 0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item:nth-child(odd) .service-image { order: 1; }
.service-item:nth-child(odd) .service-content { order: 2; }
.service-item:nth-child(even) .service-image { order: 2; }
.service-item:nth-child(even) .service-content { order: 1; }

.service-item:hover {
    transform: translateY(-5px);
}

.service-item.animate-in:hover {
    transform: translateY(-5px);
}

.service-content {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.service-item.animate-in .service-content {
    opacity: 1;
    transform: translateY(0);
}

.service-item:nth-child(odd).animate-in .service-content {
    animation: slideInContentRight 0.8s ease-out 0.2s forwards;
}

.service-item:nth-child(even).animate-in .service-content {
    animation: slideInContentLeft 0.8s ease-out 0.2s forwards;
}

@keyframes slideInContentRight {
    0% { opacity: 0; transform: translateX(-30px) translateY(20px); }
    100% { opacity: 1; transform: translateX(0) translateY(0); }
}

@keyframes slideInContentLeft {
    0% { opacity: 0; transform: translateX(30px) translateY(20px); }
    100% { opacity: 1; transform: translateX(0) translateY(0); }
}

.service-number {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #0494de;
    background: rgba(4, 148, 222, 0.08);
    padding: 8px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1.5px;
}

.service-title {
    font-size: 32px;
    color: #0494de;
    margin-bottom: 30px;
    font-weight: 900;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0494de, var(--color-ugc-primary-dark));
    border-radius: 2px;
}

.service-description {
    font-size: 18px;
    line-height: 2.0;
    color: var(--color-text-primary);
}

.service-description .highlight,
.benefit-description .highlight {
    font-weight: 900;
    background: linear-gradient(transparent 60%, #FFF44F 60%);
    padding: 0 2px;
    display: inline;
}

.service-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    order: 1;
    transition: transform 0.6s ease-out;
}

.service-item.animate-in .service-image {
    animation: slideInImage 0.8s ease-out forwards;
}

.service-item:nth-child(even).animate-in .service-image {
    animation: slideInImageRight 0.8s ease-out forwards;
}

.service-item.animate-in .service-image img {
    animation: scaleInImage 0.8s ease-out forwards;
}

@keyframes slideInImage {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInImageRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes scaleInImage {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease-out;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0494de 0%, var(--color-ugc-bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 24px;
    position: relative;
}

/* ============================================ */
/* Benefits Section                              */
/* ============================================ */
.benefits-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, white 0%, var(--color-ugc-bg-light) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.benefits-section .section-header {
    margin-top: 0 !important;
    margin-bottom: 56px !important;
}

.benefits-section .section-subtitle {
    color: #0494de;
    margin-bottom: 0;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    padding-top: 0;
    padding-bottom: 0;
}

.benefits-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 0;
    position: relative;
}

.benefit-text {
    flex: 0 0 calc(50% - 20px);
    display: flex;
    flex-direction: column;
}

.benefit-number {
    font-size: 40px;
    font-weight: 900;
    color: #0494de;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    letter-spacing: 2px;
    padding: 0;
    margin: 0 0 30px 0;
    display: block;
}

.benefit-title {
    font-size: 44px;
    color: #FFF44F;
    -webkit-text-stroke: 4px #0494de;
    paint-order: stroke fill;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    margin: 0 0 30px 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    letter-spacing: 0.5px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.benefit-description {
    color: var(--color-text-primary);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    padding: 0;
    display: block;
}

.benefit-image {
    flex: 0 0 calc(50% - 20px) !important;
    height: 300px !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    background: white !important;
    border: 4px solid #0494de !important;
    transition: transform 0.4s ease-out;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}

.benefit-image img {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease-out;
}

.benefit-item.benefit-01 .benefit-image,
.benefit-item.benefit-02 .benefit-image {
    padding: 2px !important;
}

.benefit-item.benefit-01 .benefit-image img,
.benefit-item.benefit-02 .benefit-image img {
    max-width: calc(100% - 4px);
    max-height: calc(100% - 4px);
    width: auto;
    height: auto;
}

.benefit-item.benefit-03 .benefit-image img {
    max-width: calc(100% - 16px);
    max-height: calc(100% - 16px);
    object-fit: contain;
}

.benefit-item:hover .benefit-image {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(4, 148, 222, 0.2);
}

/* ============================================ */
/* Integration Section                           */
/* ============================================ */
.integration-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--color-ugc-bg-lighter) 0%, var(--color-ugc-bg-light) 50%, #E8F0F8 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.integration-section .section-header {
    margin-top: 0 !important;
    margin-bottom: 56px !important;
}

.integration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(4, 148, 222, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(239, 226, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.integration-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(4, 148, 222, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.integration-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.integration-section .section-subtitle {
    color: #0494de;
    margin-bottom: 0;
    text-align: center;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    padding-top: 0;
    padding-bottom: 0;
}

.integration-section .section-subtitle .integration-subtitle-mobile {
    display: none;
}

.integration-section .section-subtitle .integration-subtitle-pc {
    display: inline;
}

.integration-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.integration-card {
    background: white;
    border-radius: 30px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0494de, #efe227);
    transform: scaleX(0);
    transition: transform 0.4s;
    z-index: 2;
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.integration-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    width: 100%;
    height: 140px;
    padding: 40px 30px;
    background: #0494de;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.integration-instagram .card-header {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.integration-google .card-header {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}

.integration-line .card-header {
    background: #06C755;
}

.card-header .card-title {
    font-size: 24px;
    font-weight: 900;
    color: white;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.card-body {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #F5F5F5;
}

.card-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--color-text-primary);
    line-height: 1.4;
}

.card-description {
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: var(--color-text-primary);
    flex: 1;
}

.card-button {
    display: inline-block;
    padding: 12px 30px;
    background: #efe227;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 900;
    transition: all 0.3s;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(239, 226, 39, 0.3);
    margin-top: auto;
}

.card-button:hover {
    background: #f5e800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 226, 39, 0.4);
}

/* ============================================ */
/* Plan Section                                  */
/* ============================================ */
.plan-section {
    padding: var(--section-padding);
    background: var(--color-ugc-bg-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.plan-section .section-header {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
}

.plan-section .section-subtitle {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    color: #0494de;
}

.plan-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.plan-note {
    text-align: center;
    background: var(--color-bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.plan-note p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0;
}

.plan-price-note {
    font-size: 18px !important;
    font-weight: 700;
    color: var(--color-primary) !important;
    margin-top: 12px !important;
}

.plan-initial-fee {
    text-align: left;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 8px;
    margin-bottom: 0;
    padding-left: 24px;
    font-weight: 400;
}

.plan-table {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    background: white;
    border: 1px solid var(--color-ugc-bg-light);
}

.plan-table table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.plan-table th:first-child,
.plan-table td:first-child { width: 25%; }

.plan-table th:not(:first-child),
.plan-table td:not(:first-child) { width: 18.75%; }

.plan-table thead tr:first-child th {
    background: var(--color-primary-dark);
    color: white;
    padding: 14px 15px;
    font-size: 16px;
    font-weight: 900;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    vertical-align: middle;
}

.plan-table thead tr:first-child th:first-child {
    text-align: left;
    padding-left: 24px;
}

.plan-table thead tr:last-child th {
    background: var(--color-primary-dark);
    color: white;
    padding: 12px 15px;
    font-size: 18px;
    font-weight: 900;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    vertical-align: middle;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.plan-table thead tr:last-child th:first-child {
    text-align: left;
    padding-left: 24px;
    font-size: 14px;
    background: var(--color-primary-dark);
}

.plan-table th {
    background: var(--color-primary-dark);
    color: white;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 700;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    vertical-align: middle;
}

.plan-table th:first-child {
    text-align: left;
    padding-left: 30px;
    background: var(--color-primary-dark);
    font-weight: 900;
}

.plan-table th:last-child { border-right: none; }

.plan-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid var(--color-ugc-bg-light);
    font-weight: 400;
    color: var(--color-text-primary);
    font-size: 15px;
    line-height: 1.4;
    vertical-align: middle;
}

.plan-table td:first-child {
    text-align: left;
    padding-left: 30px;
    font-weight: 600;
    color: var(--color-text-primary);
    background: var(--color-ugc-bg-lighter);
}

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

.plan-table tbody tr:nth-child(even) { background: #FAFAFA; }
.plan-table tbody tr:nth-child(even) td:first-child { background: var(--color-ugc-bg-light); }
.plan-table tbody tr:hover { background: var(--color-ugc-bg-lighter); }
.plan-table tbody tr:hover td:first-child { background: var(--color-ugc-bg-light); }

.plan-en {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.plan-label {
    font-weight: 700 !important;
    color: #0494de !important;
    background: var(--color-ugc-bg-lighter) !important;
}

.plan-row-highlight td {
    background: #EEF6FC !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    color: #0494de !important;
}

.plan-row-highlight .plan-label {
    background: #D4E6F5 !important;
}

.plan-check {
    color: #0494de;
    font-size: 18px;
}

.plan-custom-cell {
    font-weight: 700 !important;
    color: #0494de !important;
    font-size: 16px !important;
    vertical-align: middle !important;
}

/* ============================================ */
/* Flow Section                                  */
/* ============================================ */
.flow-section {
    padding: var(--section-padding);
    background: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.flow-section .section-header {
    margin-top: 0 !important;
    margin-bottom: 40px !important;
}

.flow-container {
    max-width: var(--container-width);
    width: 100% !important;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.flow-section .section-subtitle {
    color: #0494de !important;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Gantt Chart */
.gantt-chart {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}

.gantt-header {
    display: flex !important;
    width: 100% !important;
    background: linear-gradient(135deg, #2980b9, #0494de);
}

.gantt-header .gantt-label-col {
    width: 160px;
    min-width: 160px;
    flex-shrink: 0;
    background: transparent;
}

.gantt-header .gantt-month {
    flex: 1 1 0%;
    text-align: center;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    border-left: 1px solid rgba(255,255,255,0.3);
}

.gantt-body {
    background: #fff;
    width: 100% !important;
}

.gantt-row {
    display: flex !important;
    width: 100% !important;
    align-items: stretch;
    border-bottom: 1px solid #e8edf2;
}

.gantt-row:last-child {
    border-bottom: none;
}

.gantt-row .gantt-label-col {
    width: 160px;
    min-width: 160px;
    flex-shrink: 0;
    padding: 18px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #1a2b4a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    background: #f8fafc;
    border-right: 1px solid #e8edf2;
}

.gantt-note {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: #888;
    margin-top: 2px;
}

.gantt-bar-area {
    flex: 1;
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    background:
        repeating-linear-gradient(
            to right,
            transparent,
            transparent calc(25% - 1px),
            #e8edf2 calc(25% - 1px),
            #e8edf2 25%
        );
}

.gantt-bar {
    position: absolute;
    height: 36px;
    background: linear-gradient(135deg, #1a5276, #2980b9);
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.gantt-bar::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #2980b9;
}

.gantt-bar-text {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.3;
    text-align: center;
}

/* ============================================ */
/* FAQ Section                                   */
/* ============================================ */
.faq-section {
    padding: var(--section-padding);
    background: var(--color-ugc-bg-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.faq-section .section-header {
    margin-top: 0 !important;
    margin-bottom: 56px !important;
}

.faq-section .section-subtitle {
    padding-top: 0;
    padding-bottom: 0;
    color: #0494de;
}

.faq-container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--color-ugc-bg-light);
    transition: all 0.3s;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #0494de;
    box-shadow: 0 8px 30px rgba(4, 148, 222, 0.15);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 40px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s;
}

.faq-question-btn:hover {
    background-color: var(--color-ugc-bg-lighter);
}

.faq-q {
    color: white;
    font-size: 20px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #0494de;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(4, 148, 222, 0.2);
}

.faq-question-btn h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.faq-chevron {
    color: #efe227;
    font-size: 16px;
    font-weight: 900;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    align-items: center;
    gap: 20px;
    padding: 0 40px 30px 40px;
}

.faq-item.active .faq-answer {
    display: flex;
}

.faq-a {
    color: white;
    font-size: 20px;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    width: 50px;
    height: 50px;
    text-align: center;
    flex-shrink: 0;
    background: #efe227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    margin: 0;
    box-shadow: 0 3px 10px rgba(239, 226, 39, 0.2);
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-primary);
    flex: 1;
    margin: 0;
}

/* ============================================ */
/* Contact Section                               */
/* ============================================ */
.contact-section {
    padding: 24px 0 80px 0;
    background: linear-gradient(135deg, #0494de 0%, var(--color-ugc-primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.contact-section .section-header {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.contact-section .section-subtitle {
    color: white;
    margin-bottom: 0;
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.3;
    padding-top: 86px;
    padding-bottom: 80px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 40px;
    color: var(--color-text-dark);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    position: relative;
    min-width: 800px;
}

/* Contact Form 7 Styles */
.contact-form dl {
    margin: 0;
    padding: 0;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group dt {
    margin-bottom: 10px;
}

.contact-form .form-group dt label {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-text-dark);
}

.contact-form .form-group dd {
    margin: 0;
}

.label-must::after {
    display: none !important;
    content: none !important;
}

.label-must label::after {
    content: '必須' !important;
    display: inline-block !important;
    background: #f44336 !important;
    color: white !important;
    font-size: 11px !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    margin-left: 8px !important;
    font-weight: 600 !important;
    vertical-align: middle !important;
}

.privacy-checkbox a {
    color: #0494de !important;
    text-decoration: underline !important;
}

.privacy-checkbox a:hover {
    opacity: 0.8;
}

.form-group {
    margin-bottom: 35px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--color-text-dark);
}

.required {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: #f44336 !important;
    color: white !important;
    font-size: 11px !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    margin-left: 8px !important;
    vertical-align: middle !important;
    font-weight: 600 !important;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 18px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fafafa;
    line-height: 1.6;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #0494de;
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.6;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox span { flex: 1; }

.form-checkbox a,
.form-checkbox .privacy-link {
    color: #0494de;
    text-decoration: underline;
}

.form-checkbox a:hover,
.form-checkbox .privacy-link:hover {
    opacity: 0.8;
}

.form-submit {
    width: 100%;
    padding: 20px;
    background: #0494de;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ===== Contact Form 7 強制スタイル ===== */
/* dd内の重複requiredラベルのみ非表示（dt内のrequiredは残す） */
dd > span[style],
dd > span:first-child:not(.wpcf7-form-control-wrap):not(.required),
.form-group dd > span[style],
.form-group dd > span:first-child:not(.wpcf7-form-control-wrap):not(.required) {
    display: none !important;
}


.wpcf7-form-control-wrap {
    display: block !important;
    width: 100% !important;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea,
.wpcf7-form-control-wrap select {
    display: block !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    min-height: 50px !important;
}

.contact-form dt label {
    font-weight: 700 !important;
    font-size: 18px !important;
    color: #333 !important;
}

.contact-form .form-input,
.contact-form .form-textarea,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100% !important;
    padding: 15px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    box-sizing: border-box !important;
}

.privacy-checkbox,
.privacy-checkbox .wpcf7-form-control-wrap,
.privacy-checkbox .wpcf7-acceptance,
.privacy-checkbox .wpcf7-list-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 !important;
}

.privacy-checkbox .wpcf7-list-item label {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 14px !important;
}

.privacy-checkbox input[type="checkbox"] {
    margin: 0 !important;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    vertical-align: middle !important;
}

.privacy-checkbox .wpcf7-list-item-label {
    font-size: 14px !important;
    line-height: 1 !important;
}

.contact-form input[type="submit"] {
    width: 100% !important;
    padding: 20px !important;
    background: #0494de !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}

/* ============================================ */
/* Footer                                        */
/* ============================================ */
.footer {
    background: var(--color-bg-white);
    color: var(--color-text-secondary);
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.footer-logo img {
    height: 32px;
    margin-bottom: 16px;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-link {
    color: var(--color-text-muted);
    text-decoration: none;
    margin: 0 12px;
    font-size: 13px;
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-copyright {
    color: var(--color-text-muted);
    font-size: 12px;
}

/* ============================================ */
/* Animations                                    */
/* ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-24px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================ */
/* Responsive - Wide (1440px)                    */
/* ============================================ */
@media (max-width: 1440px) {
    :root {
        --container-width: 100%;
    }
}

/* ============================================ */
/* Responsive - Tablet (1024px)                  */
/* ============================================ */
@media (max-width: 1024px) {
    .section-bg-title {
        font-size: 90px;
        height: 72px;
        padding: 0 32px;
    }

    .interview-section .section-bg-title,
    .about-section .section-bg-title,
    .insights-section .section-bg-title,
    .about-ugc-ad-section .section-bg-title {
        top: 32px;
        font-size: 90px;
        height: 100px;
    }

    .services-section .section-bg-title,
    .benefits-section .section-bg-title,
    .integration-section .section-bg-title,
    .plan-section .section-bg-title,
    .flow-section .section-bg-title,
    .faq-section .section-bg-title,
    .contact-section .section-bg-title {
        top: 100px;
        font-size: 90px;
        height: 100px;
    }
}

/* ============================================ */
/* Responsive - Mobile (768px)                   */
/* ============================================ */
@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }

    /* Integration subtitle switching */
    .integration-section .section-subtitle .integration-subtitle-pc {
        display: none;
    }
    .integration-section .section-subtitle .integration-subtitle-mobile {
        display: inline;
    }

    /* All container padding */
    .interview-container,
    .insights-container,
    .services-container,
    .benefits-container,
    .integration-container,
    .plan-container,
    .flow-container,
    .faq-container,
    .contact-container,
    .about-container,
    .about-ugc-ad-container {
        padding: 0 20px;
    }

    /* BG Title */
    .section-bg-title {
        font-size: 52px;
        height: 48px;
        padding: 0 16px;
    }

    .section-header {
        min-height: 48px;
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }

    /* Note: .section-bg-title is a sibling of .section-header, not a child */

    .interview-section .section-bg-title,
    .about-section .section-bg-title,
    .insights-section .section-bg-title,
    .about-ugc-ad-section .section-bg-title,
    .services-section .section-bg-title,
    .benefits-section .section-bg-title,
    .integration-section .section-bg-title,
    .plan-section .section-bg-title,
    .flow-section .section-bg-title,
    .faq-section .section-bg-title,
    .contact-section .section-bg-title {
        top: 40px;
        font-size: 52px;
        height: 48px;
    }

    .section-subtitle {
        font-size: 22px;
        text-align: center;
    }

    /* about-ugc-ad bg-title: テキストが長いのでSPでは小さく */
    .about-ugc-ad-section .section-bg-title {
        font-size: 36px !important;
    }

    /* Section padding - all sections consistent (matching LINE SP) */
    .interview-section,
    .about-section,
    .insights-section,
    .about-ugc-ad-section,
    .services-section,
    .benefits-section,
    .integration-section,
    .plan-section,
    .flow-section,
    .faq-section,
    .contact-section {
        padding: 12px 0 40px 0;
        gap: 20px;
    }

    .interview-section .section-header,
    .about-section .section-header,
    .insights-section .section-header,
    .about-ugc-ad-section .section-header,
    .services-section .section-header,
    .benefits-section .section-header,
    .integration-section .section-header,
    .plan-section .section-header,
    .flow-section .section-header,
    .faq-section .section-header,
    .contact-section .section-header {
        margin-top: 15px !important;
        margin-bottom: 12px !important;
    }

    /* Interview */
    .interview-section .section-subtitle {
        font-size: 22px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .interview-cta {
        margin-top: 12px;
    }

    .view-more-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* About */
    .about-description {
        font-size: 15px;
        margin-bottom: 16px;
    }

    /* About UGC Ad */
    .about-ugc-ad-images {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-ugc-ad-description {
        font-size: 14px;
    }

    /* Insights */
    .insight-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .insight-card {
        padding: 28px 20px;
    }

    .insight-main-stat .stat-large {
        font-size: 56px;
    }

    .insights-section .section-subtitle,
    .services-section .section-subtitle,
    .faq-section .section-subtitle {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Services */
    .service-item {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-bottom: 40px;
        padding: 0;
        display: flex !important;
        flex-direction: column;
    }

    .service-item .service-image {
        order: 1 !important;
        width: 100%;
    }

    .service-item .service-content {
        order: 2 !important;
    }

    .service-number {
        font-size: 12px;
        padding: 5px 16px;
        margin-bottom: 8px;
    }

    .service-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .service-description {
        font-size: 14px;
        line-height: 1.9;
    }

    /* Benefits */
    .benefits-section .section-subtitle {
        font-size: 22px !important;
        text-align: center !important;
        padding: 0 16px 0 !important;
        margin-bottom: 0 !important;
    }

    .benefits-container {
        flex-direction: column;
        gap: 40px;
    }

    .benefit-item {
        flex-direction: column;
        gap: 20px;
        display: flex !important;
        padding: 0;
    }

    .benefit-image {
        order: 1 !important;
        width: 100% !important;
        height: 250px !important;
        margin: 0 auto;
        border-radius: 30px !important;
        background: white !important;
        border: 4px solid #0494de !important;
        padding: 2px !important;
    }

    .benefit-text {
        order: 2 !important;
        width: 100%;
        text-align: center;
    }

    .benefit-number {
        font-size: 32px;
        text-align: center;
        margin-bottom: 12px;
        color: #0494de;
    }

    .benefit-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 12px;
        color: #FFF44F;
        -webkit-text-stroke: 3px #0494de;
        paint-order: stroke fill;
        filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.15));
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .benefit-description {
        font-size: 15px;
        line-height: 1.8;
        text-align: center;
    }

    .benefit-item.benefit-03 .benefit-image {
        height: auto !important;
    }

    /* Integration */
    .integration-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .integration-card {
        max-width: 100%;
    }

    .integration-section .section-subtitle {
        font-size: 22px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .card-header {
        height: 100px;
        padding: 24px 20px;
    }

    .card-header .card-title {
        font-size: 16px;
    }

    .card-body {
        padding: 24px 20px;
    }

    .card-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .card-button {
        padding: 10px 24px;
        font-size: 12px;
    }

    /* Plan */
    .plan-section .section-subtitle {
        padding-top: 0;
        padding-bottom: 0;
    }

    .plan-table {
        overflow-x: auto;
        display: block;
        -webkit-overflow-scrolling: touch;
        border-radius: 12px;
    }

    .plan-table table {
        min-width: 580px;
    }

    .plan-table th,
    .plan-table td {
        padding: 10px 8px !important;
        font-size: 12px !important;
    }

    .plan-table thead tr:first-child th {
        font-size: 12px !important;
        padding: 10px 6px !important;
    }

    .plan-en {
        font-size: 14px !important;
    }

    .plan-row-highlight td {
        font-size: 14px !important;
    }

    .plan-table td:first-child,
    .plan-table th:first-child {
        padding-left: 12px !important;
    }

    /* Flow / Gantt Chart SP */
    .flow-section .section-subtitle {
        padding-top: 0;
        padding-bottom: 0;
    }

    .flow-container {
        padding: 0 12px;
    }

    .gantt-chart {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .gantt-header,
    .gantt-row {
        min-width: 520px;
    }

    .gantt-header .gantt-label-col,
    .gantt-row .gantt-label-col {
        min-width: 100px;
        width: 100px;
        font-size: 11px;
        padding: 10px 6px;
    }

    .gantt-header .gantt-month {
        font-size: 13px;
        padding: 10px 0;
    }

    .gantt-bar-area {
        min-height: 50px;
    }

    .gantt-bar {
        height: 30px;
    }

    .gantt-bar-text {
        font-size: 10px;
    }

    .gantt-note {
        font-size: 10px;
    }

    /* FAQ */
    .faq-question-btn {
        padding: 22px;
        gap: 16px;
    }

    .faq-question-btn h3 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 22px 22px 22px;
        gap: 16px;
    }

    .faq-q,
    .faq-a {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 50%;
    }

    .faq-answer p {
        font-size: 14px;
    }

    /* CTA */
    .cta-section {
        padding: 32px 0;
    }

    .cta-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 18px;
        width: 100%;
        max-width: 320px;
    }

    /* Contact */
    .contact-section .section-subtitle {
        font-size: 26px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .contact-form {
        padding: 30px 20px;
        min-width: auto;
        border-radius: 20px;
    }

    .contact-form dt label {
        font-size: 13px !important;
        font-weight: 600 !important;
    }

    .contact-form .form-input,
    .contact-form .form-textarea,
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        font-size: 14px !important;
        padding: 12px !important;
    }

    .privacy-checkbox,
    .privacy-checkbox .wpcf7-list-item-label,
    .privacy-checkbox a {
        font-size: 12px !important;
    }

    .contact-form input[type="submit"] {
        font-size: 16px !important;
        padding: 15px !important;
    }
}

/* ============================================ */
/* Responsive - Small Mobile (389px)             */
/* ============================================ */
@media (max-width: 389px) {
    .section-bg-title {
        font-size: 40px;
        height: 36px;
        padding: 0 12px;
    }

    .section-header {
        min-height: 64px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .hero-sp-title {
        font-size: 24px;
    }

    .service-title {
        font-size: 20px;
    }

    .benefit-title {
        font-size: 18px;
    }

    .cta-title {
        font-size: 20px;
    }

    .contact-section .section-subtitle {
        font-size: 22px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        font-size: 14px !important;
        padding: 10px !important;
    }

    .form-checkbox {
        font-size: 11px !important;
    }
}

/* ============================================ */
/* Form overrides (mobile small)                 */
/* ============================================ */
@media (max-width: 480px) {
    .form-label {
        font-size: 12px !important;
        font-weight: 600 !important;
        margin-bottom: 6px !important;
    }

    .required {
        font-size: 9px !important;
        padding: 2px 4px !important;
        margin-left: 4px !important;
    }

    .form-input,
    .form-select,
    .form-textarea {
        font-size: 14px !important;
        padding: 11px !important;
    }

    .form-checkbox {
        font-size: 12px !important;
    }
}
