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

:root {
    --color-primary: #0494de;
    --color-secondary: #efe227;
    --color-bg-light: #f3fbff;
    --color-text-dark: #3e3a39;
    --color-text-black: #000;
    --color-white: #fff;
    --color-gray: #909090;
    --color-red: #f44336;
    --container-width: 1440px;
    /* LINE Brand Colors (for sections after FV) */
    --color-line-primary: #06C755;
    --color-line-primary-light: #08E870;
    --color-line-primary-dark: #05B048;
    --color-line-bg-light: #F0FBF5;
    --color-line-bg-lighter: #F8FDFA;
}

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--color-text-black);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    height: 40px;
}

.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: 25px;
    height: 3px;
    background: var(--color-text-dark);
    transition: all 0.3s;
}

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

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

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Noto Sans JP', sans-serif;
}

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

.nav-contact-btn {
    background: var(--color-primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700 !important;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.nav-contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.nav-contact-btn:hover::before {
    width: 300px;
    height: 300px;
}

.nav-contact-btn:hover {
    background: #1a6fa5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(4, 148, 222, 0.4);
}

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

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        width: 100%;
        font-size: 16px;
    }
    
    .nav-contact-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    /* Hamburger animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (min-width: 1025px) {
    .menu-toggle {
        display: none;
    }
    
    /* 元のFV - PC版表示 */
    .hero-section {
        display: none;
    }
    
    .hero-section-pc {
        display: block;
    }
}

/* 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;
    position: absolute;
    width: 100%;
    max-width: 1400px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    /* top: 190px; - removed, set individually per section */
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 60px;
    box-sizing: border-box;
}

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

/* SP版専用の改行（PC版では非表示） */
.sp-only {
    display: none;
}

/* Position bg title to align with subtitle - adjust based on section padding */
.interview-section .section-bg-title {
    top: 90px;
    font-size: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insights-section .section-bg-title {
    top: 120px;
    font-size: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section .section-bg-title {
    top: 90px;
    font-size: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.operation-section .section-bg-title {
    top: 120px;
    font-size: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-section .section-bg-title {
    top: 120px;
    font-size: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-section .section-bg-title {
    top: 115px;
    font-size: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-section .section-bg-title {
    top: 150px;
    font-size: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-section .section-bg-title {
    top: 150px;
    font-size: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-section .section-bg-title {
    top: 120px;
    font-size: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section .section-bg-title {
    top: 120px;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.15);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Container for subtitle with background title - position relative for absolute bg title */
.insights-container,
.services-container,
.operation-container,
.benefits-container,
.integration-container,
.plan-container,
.flow-container,
.faq-container,
.contact-container {
    position: relative;
}

/* Dark background sections - white subtitle */
.contact-section .section-subtitle {
    color: white;
}

/* ============================================ */
/* 元のFVのCSS（コメントアウト - いつでも戻せます） */
/* ============================================ */
.hero-section-pc {
    position: relative;
    width: 100%;
    height: 54.22vw;
    overflow: hidden;
    display: none;
}

.hero-section-pc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/line-img/hero-bg.png');
    background-size: cover;
    background-position: center top;
    filter: blur(2px);
    z-index: 0;
}

.hero-pc-bg {
    display: none;
}

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

/* Hero Person - PC only */
.hero-section-pc .hero-pc-person {
    width: 20vw; 
    position: absolute;
    left: 60vw;
    bottom: 0;
    z-index: 2;
    object-fit: contain;
}

/* Title Wrapper - PC only */
.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;
}

/* Title SVG Container - PC only */
.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%;
}

/* Mobile title text - hide on PC */
.hero-section-pc .hero-pc-title-text-mobile {
    display: none;
}

/* Subtitle Box - PC only */
.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;
}

/* Subtitle - PC only */
.hero-section-pc .hero-pc-subtitle {
    color: #06C755;
    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%;
}

/* CTA Box - PC only */
.hero-section-pc .hero-pc-cta-box {
    width: 32.98vw;
    height: 17.76vw;
    left: 19vw;
    top: 30.45vw;
    position: absolute;
    background: #06C755;
    border-top-left-radius: 1.21vw;
    border-top-right-radius: 1.15vw;
    border-bottom-right-radius: 1.21vw;
    border-bottom-left-radius: 1.21vw;
    z-index: 3;
}

/* CTA Text - PC only */
.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.5vw;
    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-text > span {
    display: inline-block;
    white-space: normal;
}

.hero-section-pc .hero-pc-cta-text .cta-highlight {
    color: #FFEB3B;
    white-space: nowrap;
}

/* CTA Button Wrapper - PC only */
.hero-section-pc .hero-pc-cta-button-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* CTA Button - PC only */
.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 #06C755;
    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);
}

/* CTA Button Text - PC only */
.hero-section-pc .hero-pc-cta-button-text {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: #06C755;
    font-size: 1.85vw;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    width: 100%;
}

/* CTA Icon - PC only */
.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;
}

/* New Hero Section (PC) */
.new-hero-section-pc {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: none;
}

.new-hero-pc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.new-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-hero-pc-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
}

.new-hero-pc-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.new-hero-pc-title {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1.4;
    font-family: 'Noto Sans JP', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.new-hero-pc-cta {
    display: inline-block;
    background: #EFE227;
    color: #000;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(239, 226, 39, 0.5);
    transition: all 0.3s;
    align-self: flex-start;
    animation: floatButton 3s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.new-hero-pc-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(239, 226, 39, 0.7);
}

@keyframes floatButton {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.new-hero-pc-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-hero-badge-wrapper {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 320px;
    height: auto;
}

.new-hero-badge-bg {
    width: 100%;
    height: auto;
    display: block;
}

.new-hero-badge-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1B8FCE;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 0 30px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    width: 85%;
    word-wrap: break-word;
}

.new-hero-person {
    width: 100%;
    max-width: 600px;
    height: auto;
    position: relative;
    z-index: 2;
}

/* New Hero Section (Mobile) */
.new-hero-section-mobile {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: block;
    padding: 100px 0 60px;
}

.new-hero-mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.new-hero-mobile-container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.new-hero-badge-wrapper-mobile {
    position: relative;
    width: 280px;
    height: auto;
    margin-bottom: 20px;
}

.new-hero-badge-wrapper-mobile .new-hero-badge-text {
    font-size: 13px;
    padding: 0 25px;
    width: 80%;
}

.new-hero-mobile-title {
    font-size: 28px;
    font-weight: 900;
    color: white;
    line-height: 1.5;
    font-family: 'Noto Sans JP', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.new-hero-person-mobile {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 20px 0;
}

.new-hero-mobile-cta {
    display: inline-block;
    background: #EFE227;
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(239, 226, 39, 0.5);
    transition: all 0.3s;
    animation: floatButton 3s ease-in-out infinite;
    margin-top: 20px;
}

.new-hero-mobile-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(239, 226, 39, 0.7);
}

/* 元のhero-sectionのCSS（コメントアウト） */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: block;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/line-img/hero-bg.png');
    background-size: cover;
    background-position: center top;
    filter: blur(2px);
    z-index: 0;
}

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

.hero-section .hero-pc-bg {
    display: none;
}

/* Mobile Person - positioned at bottom, left 30% */
.hero-section .hero-pc-person {
    width: clamp(50%, 65vw, 70%);
    max-width: 400px;
    position: absolute;
    left: 30%;
    bottom: 0;
    z-index: 2;
    object-fit: contain;
}

/* Mobile Title Wrapper - top section */
.hero-section .hero-pc-title-wrapper {
    position: absolute;
    width: 90%;
    left: 5%;
    top: 10%;
    z-index: 3;
    pointer-events: none;
}

.hero-section .hero-pc-title-svg-container {
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    height: auto;
    pointer-events: auto;
    z-index: 2;
}

.hero-section .hero-pc-title-svg-container svg {
    width: 100%;
    height: auto;
    display: none; /* Hide SVG on mobile, show HTML text instead */
}

.hero-section .hero-pc-title-svg-container svg .title-text {
    font-size: 28px !important;
    stroke-width: 8px !important;
}

/* Mobile title text */
.hero-section .hero-pc-title-text-mobile {
    position: absolute;
    left: 0;
    top: 50px;
    width: 100%;
    z-index: 2;
    display: none; /* Hidden by default, shown in media query */
}

.hero-section .hero-pc-title-text-mobile .hero-pc-title-line1,
.hero-section .hero-pc-title-text-mobile .hero-pc-title-line2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: clamp(20px, 6vw, 32px);
    color: white;
    -webkit-text-stroke: 4px #06C755;
    paint-order: stroke fill;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: normal;
}

/* Mobile Subtitle Box - top left */
.hero-section .hero-pc-subtitle-box {
    width: 85%;
    min-height: 50px;
    left: 0;
    top: 94px;
    position: absolute;
    background: white;
    border-radius: 25px;
    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: 10px 15px;
    box-sizing: border-box;
}

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

/* Mobile CTA Box - overlaying the person at bottom */
.hero-section .hero-pc-cta-box {
    width: 95%;
    min-height: 220px;
    left: 2.5%;
    bottom: 5%;
    position: absolute;
    background: #06C755;
    border-radius: 20px;
    z-index: 4;
    padding: 20px;
    box-sizing: border-box;
}

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

.hero-section .hero-pc-cta-text > span {
    display: inline-block;
    white-space: normal;
}

.hero-section .hero-pc-cta-text .cta-highlight {
    color: #FFEB3B;
    white-space: nowrap;
}

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

.hero-section .hero-pc-cta-button {
    width: 90%;
    height: 50px;
    position: absolute;
    left: 5%;
    top: 56px;
    background: #EFE227;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 25px;
    border: 3px solid #06C755;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-section .hero-pc-cta-button-text {
    text-align: center;
    color: #06C755;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    width: 100%;
}

.hero-section .hero-pc-cta-icon {
    width: 40px;
    height: auto;
    position: absolute;
    left: 15px;
    top: 105px;
    z-index: 6;
    pointer-events: none;
}

/* ============================================ */
/* 新しいFVのCSS（LINE緑系 - 今時のSaaS風） */
/* ============================================ */

/* Hero Section Line (Mobile) */
.hero-section-line {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    display: block;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero-section-line .hero-line-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    min-height: 100vh;
    margin: 0 auto;
    z-index: 1;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    padding: 80px 20px 120px;
    box-sizing: border-box;
    gap: 30px;
}

/* Animated Background Container */
.hero-section-line .hero-line-bg-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-section-line .hero-line-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0FBF5 0%, #E8F8F0 50%, #F0FBF5 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

.hero-section-line .hero-line-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(6, 199, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(8, 232, 112, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(5, 176, 72, 0.05) 0%, transparent 70%);
    opacity: 0.6;
}

.hero-section-line .hero-line-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-section-line .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(6, 199, 85, 0.1);
    filter: blur(40px);
}

.hero-section-line .bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-section-line .bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.hero-section-line .bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation: floatShape 18s ease-in-out infinite;
}

.hero-section-line .bg-shape.shape-4 {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 5%;
    animation: floatShape 15s ease-in-out infinite reverse;
}

.hero-section-line .bg-shape.shape-5 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    left: 10%;
    animation: floatShape 20s ease-in-out infinite;
}

/* Content Section (Left) */
.hero-section-line .hero-line-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-section-line .hero-line-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(6, 199, 85, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
    filter: blur(30px);
}

.hero-section-line .hero-line-content::after {
    content: '';
    position: absolute;
    left: -20px;
    top: 20%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(8, 232, 112, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: floatShape 10s ease-in-out infinite;
    filter: blur(25px);
}

/* Badge */
.hero-section-line .hero-line-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 199, 85, 0.2);
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.1);
    animation: fadeInDown 0.6s ease-out 0.1s both;
    position: relative;
    overflow: hidden;
}

.hero-section-line .hero-line-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 199, 85, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-section-line .badge-text {
    color: #06C755;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.5px;
}

/* Title */
.hero-section-line .hero-line-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 6vw, 44px);
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
    display: block;
}

.hero-section-line .title-line1,
.hero-section-line .title-line2 {
    display: block;
}

.hero-section-line .title-line2 {
    background: linear-gradient(135deg, #06C755 0%, #05B048 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

/* Description */
.hero-section-line .hero-line-description {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    margin: 0;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    position: relative;
    padding-left: 12px;
}

.hero-section-line .hero-line-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #06C755 0%, #08E870 100%);
    border-radius: 2px;
    opacity: 0.3;
    animation: expandLine 0.6s ease-out 0.4s both;
}

/* Features Grid */
.hero-section-line .hero-line-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 16px 0;
}

.hero-section-line .hero-line-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #06C755;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.1);
    animation: fadeInUp 0.8s ease-out both;
}

.hero-section-line .hero-line-feature-item:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-section-line .hero-line-feature-item:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-section-line .hero-line-feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-section-line .hero-line-feature-item:nth-child(4) {
    animation-delay: 0.7s;
}

.hero-section-line .hero-line-feature-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(6, 199, 85, 0.25);
    border-color: #08E870;
}

.hero-section-line .feature-icon-wrapper {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.hero-section-line .hero-line-feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.hero-section-line .feature-text {
    font-size: 11px;
    line-height: 1.4;
    color: #06C755;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
}

/* CTA Group */
.hero-section-line .hero-line-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.hero-section-line .hero-line-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: #E8D520;
    color: white;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(232, 213, 32, 0.4);
    transition: all 0.3s ease;
    width: fit-content;
}

.hero-section-line .hero-line-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(232, 213, 32, 0.6);
    background: #F0E227;
}

.hero-section-line .hero-line-cta-primary svg {
    transition: transform 0.3s ease;
}

.hero-section-line .hero-line-cta-primary:hover svg {
    transform: translateX(4px);
}

.hero-section-line .hero-line-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: white;
    color: #06C755;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    border: 3px solid #06C755;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hero-section-line .hero-line-cta-secondary:hover {
    background: #f0f9f4;
    border-color: #05B048;
    color: #05B048;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.3);
}

.hero-section-line .hero-line-cta-secondary svg {
    transition: transform 0.3s ease;
}

.hero-section-line .hero-line-cta-secondary:hover svg {
    transform: translateX(4px);
}

/* Visual Section (Right) */
.hero-section-line .hero-line-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-section-line .visual-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-line .hero-line-person {
    width: 50%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 2;
    animation: floatPerson 6s ease-in-out infinite;
}

.hero-section-line .visual-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(6, 199, 85, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
    filter: blur(30px);
}

.hero-section-line .visual-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-section-line .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #06C755;
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s ease-in-out infinite;
}

.hero-section-line .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-section-line .particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-section-line .particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.hero-section-line .particle:nth-child(4) {
    top: 40%;
    right: 10%;
    animation-delay: 6s;
}

/* Hero Section Line (PC) */
.hero-section-line-pc {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    display: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero-section-line-pc .hero-line-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    min-height: 100vh;
    margin: 0 auto;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 0 80px;
    box-sizing: border-box;
}

/* Animated Background Container - PC */
.hero-section-line-pc .hero-line-bg-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-section-line-pc .hero-line-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F0FBF5 0%, #E8F8F0 50%, #F0FBF5 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

.hero-section-line-pc .hero-line-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(6, 199, 85, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(8, 232, 112, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(5, 176, 72, 0.05) 0%, transparent 70%);
    opacity: 0.6;
}

.hero-section-line-pc .hero-line-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-section-line-pc .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(6, 199, 85, 0.1);
    filter: blur(60px);
}

.hero-section-line-pc .bg-shape.shape-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-section-line-pc .bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.hero-section-line-pc .bg-shape.shape-3 {
    width: 300px;
    height: 300px;
    top: 30%;
    right: 15%;
    animation: floatShape 18s ease-in-out infinite;
}

.hero-section-line-pc .bg-shape.shape-4 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 10%;
    animation: floatShape 22s ease-in-out infinite reverse;
}

.hero-section-line-pc .bg-shape.shape-5 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 5%;
    animation: floatShape 16s ease-in-out infinite;
}

.hero-section-line-pc .bg-shape.shape-6 {
    width: 180px;
    height: 180px;
    bottom: 40%;
    left: 8%;
    animation: floatShape 19s ease-in-out infinite reverse;
}

/* Content Section (Left) - PC */
.hero-section-line-pc .hero-line-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.hero-section-line-pc .hero-line-content::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6, 199, 85, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
    filter: blur(40px);
}

.hero-section-line-pc .hero-line-content::after {
    content: '';
    position: absolute;
    left: -40px;
    top: 20%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(8, 232, 112, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: floatShape 12s ease-in-out infinite;
    filter: blur(30px);
}

/* Badge - PC */
.hero-section-line-pc .hero-line-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 199, 85, 0.2);
    border-radius: 50px;
    width: fit-content;
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.1);
    animation: fadeInDown 0.6s ease-out 0.1s both;
    position: relative;
    overflow: hidden;
}

.hero-section-line-pc .hero-line-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 199, 85, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.hero-section-line-pc .badge-text {
    color: #06C755;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.5px;
}

/* Title - PC */
.hero-section-line-pc .hero-line-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 33px;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
    display: block;
    position: relative;
}

.hero-section-line-pc .title-line1,
.hero-section-line-pc .title-line2 {
    display: block;
}

.hero-section-line-pc .title-line2 {
    background: linear-gradient(135deg, #06C755 0%, #05B048 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

/* Features Grid - PC */
.hero-section-line-pc .hero-line-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 10px 0;
}

.hero-section-line-pc .hero-line-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #06C755;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.1);
    animation: fadeInUp 0.8s ease-out both;
}

.hero-section-line-pc .hero-line-feature-item:nth-child(1) {
    animation-delay: 0.4s;
}

.hero-section-line-pc .hero-line-feature-item:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-section-line-pc .hero-line-feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-section-line-pc .hero-line-feature-item:nth-child(4) {
    animation-delay: 0.7s;
}

.hero-section-line-pc .hero-line-feature-item:hover {
    transform: translateY(-10px) scale(1.08);
    box-shadow: 0 16px 40px rgba(6, 199, 85, 0.3);
    border-color: #08E870;
}

.hero-section-line-pc .feature-icon-wrapper {
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.hero-section-line-pc .hero-line-feature-item:hover .feature-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

.hero-section-line-pc .feature-text {
    font-size: 12px;
    line-height: 1.4;
    color: #06C755;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
}

/* CTA Group - PC */
.hero-section-line-pc .hero-line-cta-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 16px;
}

.hero-section-line-pc .hero-line-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 60px;
    background: #E8D520;
    color: white;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(232, 213, 32, 0.4);
    transition: all 0.3s ease;
}

.hero-section-line-pc .hero-line-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(232, 213, 32, 0.6);
    background: #F0E227;
}

.hero-section-line-pc .hero-line-cta-primary svg {
    transition: transform 0.3s ease;
}

.hero-section-line-pc .hero-line-cta-primary:hover svg {
    transform: translateX(4px);
}

.hero-section-line-pc .hero-line-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 40px;
    background: white;
    color: #06C755;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Noto Sans JP', sans-serif;
    border: 3px solid #06C755;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hero-section-line-pc .hero-line-cta-secondary:hover {
    background: #f0f9f4;
    border-color: #05B048;
    color: #05B048;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.3);
}

.hero-section-line-pc .hero-line-cta-secondary svg {
    transition: transform 0.3s ease;
}

.hero-section-line-pc .hero-line-cta-secondary:hover svg {
    transform: translateX(4px);
}

/* Visual Section (Right) - PC */
.hero-section-line-pc .hero-line-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.hero-section-line-pc .visual-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-line-pc .hero-line-person {
    width: 50%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 2;
    animation: floatPerson 6s ease-in-out infinite;
}

.hero-section-line-pc .visual-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(6, 199, 85, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulseGlow 4s ease-in-out infinite;
    filter: blur(40px);
}

.hero-section-line-pc .visual-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-section-line-pc .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #06C755;
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 10s ease-in-out infinite;
}

.hero-section-line-pc .particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero-section-line-pc .particle:nth-child(2) {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.hero-section-line-pc .particle:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

.hero-section-line-pc .particle:nth-child(4) {
    top: 35%;
    right: 10%;
    animation-delay: 6s;
}

.hero-section-line-pc .particle:nth-child(5) {
    bottom: 40%;
    right: 25%;
    animation-delay: 1s;
}

.hero-section-line-pc .particle:nth-child(6) {
    top: 70%;
    left: 15%;
    animation-delay: 3s;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes floatPerson {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-15px, -50px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 0.7;
    }
}

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

@keyframes expandLine {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: 100%;
        opacity: 1;
    }
}

@keyframes expandUnderline {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

/* Responsive adjustments for new hero section */
@media (min-width: 1025px) {
    .hero-section-line {
        display: none;
    }
    
    .hero-section-line-pc {
        display: block;
    }
}

@media (max-width: 1024px) {
    .hero-section-line {
        display: block;
    }
    
    .hero-section-line-pc {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section-line .hero-line-wrapper {
        padding: 80px 20px 40px;
        gap: 30px;
    }

    .hero-section-line .hero-line-title {
        font-size: clamp(26px, 7vw, 48px);
    }

    .hero-section-line .hero-line-description {
        font-size: 14px;
    }

    .hero-section-line .hero-line-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-section-line .hero-line-feature-item {
        padding: 16px;
        border-radius: 16px;
    }

    .hero-section-line .feature-icon-wrapper {
        margin-bottom: 8px;
    }

    .hero-section-line .feature-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .hero-section-line .feature-text {
        font-size: 10px;
    }

    .hero-section-line .hero-line-cta-primary,
    .hero-section-line .hero-line-cta-secondary {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 14px 24px;
    }

    .hero-section-line .hero-line-person {
        max-width: 300px;
    }

    .hero-section-line .bg-shape.shape-1,
    .hero-section-line .bg-shape.shape-2,
    .hero-section-line .bg-shape.shape-3 {
        filter: blur(30px);
    }
}

/* Interview Section */
.interview-section {
    --color-primary: var(--color-line-primary);
    padding: 100px 0;
    background: var(--color-line-bg-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

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

.interview-section .section-subtitle {
    margin-bottom: 80px;
    font-size: 32px;
}

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

/* Marquee Styles */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.marquee-track {
    display: inline-block;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 80px;
    background: #999;
    color: white;
    font-weight: bold;
    margin: 0 8px;
    border-radius: 8px;
    vertical-align: middle;
}

/* Reverse animation for bottom marquee if desired, or same */
.marquee-bottom .marquee-track {
    animation-direction: reverse;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Updated Interview Card (Image) */
.interview-card {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.interview-card-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
}

/* Character */
.interview-character {
    position: absolute;
    right: -80px;
    bottom: 30px;
    width: 150px;
    z-index: 5;
}

.interview-character img {
    width: 100%;
    height: auto;
}

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

.view-more-btn {
    display: inline-flex;
    align-items: center;
    background: #06C755;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    margin-left: 10px;
    background: white;
    color: #1B8FCE;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


/* Hide huge background title in redesigned sections to prevent layout issues */
/* Section background titles are now visible */

/* Insights Section - Cast Me Style */
.insights-section {
    --color-primary: var(--color-line-primary);
    padding: 150px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.insights-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.insight-intro-card {
    background: white;
    border: 8px solid var(--color-line-primary);
    border-radius: 40px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    color: var(--color-text-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.intro-text {
    text-align: center;
}

.intro-text h3 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 30px;
    color: var(--color-line-primary);
    letter-spacing: 1px;
}

.progress-circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.progress-circle {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.progress-circle-bg {
    stroke: #E0E0E0;
}

.progress-circle-fill {
    stroke: var(--color-line-primary);
    stroke-dashoffset: 565.48;
}

.progress-circle-fill.animated {
    animation: drawCircle 0.8s ease-out forwards;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 55.55;
    }
}

.progress-text {
    font-size: 40px;
    font-weight: 900;
    fill: var(--color-line-primary);
    font-family: 'Noto Sans JP', sans-serif;
}

.progress-label {
    text-align: center;
}

.progress-label p {
    font-size: 18px;
    margin: 0;
    line-height: 1.6;
    color: var(--color-text-dark);
}

.progress-label .highlight {
    font-size: 32px;
    font-weight: 900;
    color: var(--color-line-primary);
    margin-top: 10px;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-dark);
}

.intro-image {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image img {
    width: 400px;
    height: auto;
}

.intro-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

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

.insight-card {
    background: white;
    border-radius: 30px;
    padding: 50px 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

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

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

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

.insight-label {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.insight-title {
    font-size: 24px;
    color: var(--color-text-dark);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.4;
}

.insight-main-stat p {
    font-size: 16px;
    color: var(--color-text-gray);
    margin-bottom: 10px;
}

.insight-main-stat .stat-large {
    font-size: 64px;
    color: var(--color-primary);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-large-wrapper {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-prefix,
.stat-suffix {
    font-size: 18px;
    color: var(--color-text-dark);
    font-weight: 700;
    letter-spacing: 1px;
}

.stat-large-wrapper .stat-large {
    font-size: 64px;
    margin: 0;
}

/* Services Section - Cast Me Style */
.services-section {
    --color-primary: var(--color-line-primary);
    padding: 120px 0;
    background: var(--color-line-bg-light);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 70px;
    background: transparent;
    padding: 0;
    transition: all 0.4s;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s 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: var(--color-line-primary);
    background: rgba(6, 199, 85, 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: var(--color-line-primary);
    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, var(--color-line-primary), var(--color-line-primary-dark));
    border-radius: 2px;
}

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

.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.animate-in .service-image img {
    animation: scaleInImage 0.8s ease-out forwards;
}

.service-item:nth-child(even).animate-in .service-image {
    animation: slideInImageRight 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.animate-in .service-image img {
    animation: scaleInImage 0.8s ease-out forwards;
}

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

/* SVG animation for service images */
.service-item.animate-in .service-image svg {
    animation: floatSVG 3s ease-in-out infinite;
}

@keyframes floatSVG {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

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

.service-image .image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" fill-opacity="0.1" width="50" height="50"/><rect fill="%23ffffff" fill-opacity="0.1" x="50" y="50" width="50" height="50"/></svg>');
    opacity: 0.3;
}

.operation-section {
    --color-primary: var(--color-line-primary);
    padding: 120px 0 0 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.operation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.operation-section .section-subtitle {
    color: var(--color-line-primary);
    margin-bottom: 180px;
    top: 30px;
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.operation-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    overflow-x: auto;
}

.operation-image img {
    width: 900px;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
}

/* Benefits Section - Numbered List Style */
.benefits-section {
    --color-primary: var(--color-line-primary);
    padding: 120px 0;
    background: linear-gradient(180deg, white 0%, var(--color-line-bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section .section-subtitle {
    color: var(--color-line-primary);
    margin-bottom: 80px;
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    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: var(--color-line-primary);
    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 var(--color-line-primary);
    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-dark);
    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 var(--color-line-primary) !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% - 20px);
    max-height: calc(100% - 20px);
    width: auto;
    height: auto;
    object-fit: contain;
}

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

/* CTA Section */
.cta-section {
    --color-primary: var(--color-line-primary);
    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, var(--color-line-primary) 0%, var(--color-line-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;
}

.cta-button-line {
    background: white;
    color: var(--color-line-primary);
    border: 3px solid var(--color-line-primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    animation: none;
}

.cta-button-line:hover {
    background: var(--color-line-bg-light);
    border-color: var(--color-line-primary-dark);
    color: var(--color-line-primary-dark);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: #F0E227;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(232, 213, 32, 0.6);
}

@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);
    }
}

/* Integration Section - Same as Benefits Style */
.integration-section {
    --color-primary: var(--color-line-primary);
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-line-bg-lighter) 0%, var(--color-line-bg-light) 50%, #E8F8F0 100%);
    position: relative;
    overflow: hidden;
}

.integration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(6, 199, 85, 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(6, 199, 85, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.integration-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

.integration-section .section-subtitle {
    color: var(--color-primary);
    margin-bottom: 100px;
    text-align: center;
    font-weight: 900;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Hide mobile text on desktop */
.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, var(--color-primary), var(--color-secondary));
    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: var(--color-line-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.integration-instagram .card-header {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.integration-ugc .card-header {
    background: #0494de;
}

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

.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-dark);
    line-height: 1.4;
}

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

.card-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--color-secondary);
    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 - Cast Me Style */
.plan-section {
    --color-primary: var(--color-line-primary);
    padding: 150px 0;
    background: var(--color-line-bg-light);
    position: relative;
}

.plan-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.plan-initial-fee {
    text-align: left;
    font-size: 16px;
    color: var(--color-text-dark);
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 30px;
    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 #E8F8F0;
}

.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-line-primary-dark);
    color: white;
    padding: 14px 15px;
    font-size: 14px;
    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: 30px;
}

.plan-table thead tr:last-child th {
    background: var(--color-line-primary);
    color: white;
    padding: 12px 15px;
    font-size: 16px;
    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: 30px;
    font-size: 14px;
}

.plan-table th {
    background: var(--color-line-primary);
    color: white;
    padding: 12px 15px;
    font-size: 14px;
    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-line-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 #F0FBF5;
    font-weight: 400;
    color: var(--color-text-dark);
    font-size: 13px;
    line-height: 1.4;
    vertical-align: middle;
    min-height: auto;
    height: auto;
}

.plan-table td:first-child {
    text-align: left;
    padding-left: 30px;
    font-weight: 600;
    color: var(--color-text-dark);
    background: #F8FDFA;
}

.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: #F0FBF5;
}

.plan-table tbody tr:hover {
    background: #F8FDFA;
}

.plan-table tbody tr:hover td:first-child {
    background: #E8F8F0;
}

/* Flow Section - Cast Me Style */
.flow-section {
    --color-primary: var(--color-line-primary);
    padding: 150px 0;
    background: white;
    position: relative;
}

.flow-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.flow-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.flow-image img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

/* Top row: steps 1-5 */
.flow-step-01 { grid-column: 1; grid-row: 1; }
.flow-step-02 { grid-column: 2; grid-row: 1; }
.flow-step-03 { grid-column: 3; grid-row: 1; }
.flow-step-04 { grid-column: 4; grid-row: 1; }
.flow-step-05 { grid-column: 5; grid-row: 1; }

/* Bottom row: steps 6-9 (right to left) */
.flow-step-06 { grid-column: 5; grid-row: 2; }
.flow-step-07 { grid-column: 4; grid-row: 2; }
.flow-step-08 { grid-column: 3; grid-row: 2; }
.flow-step-09 { grid-column: 2; grid-row: 2; }

/* Connecting arrows between steps */
.flow-step-01::after,
.flow-step-02::after,
.flow-step-03::after,
.flow-step-04::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -30px;
    font-size: 24px;
    color: var(--color-line-primary);
    z-index: 2;
    transform: translateY(-50%);
}

.flow-step-05::after {
    content: '↓';
    position: absolute;
    bottom: -30px;
    right: 50%;
    font-size: 24px;
    color: var(--color-line-primary);
    z-index: 2;
    transform: translateX(50%);
}

.flow-step-06::after,
.flow-step-07::after,
.flow-step-08::after {
    content: '←';
    position: absolute;
    top: 50%;
    left: -30px;
    font-size: 24px;
    color: var(--color-line-primary);
    z-index: 2;
    transform: translateY(-50%);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 15px;
    padding: 25px 15px;
    min-height: 300px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #E8F8F0;
    transition: all 0.3s;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(6, 199, 85, 0.15);
    border-color: var(--color-line-primary);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-line-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.step-title {
    font-size: 18px;
    font-weight: 900;
    color: var(--color-text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.step-description {
    font-size: 13px;
    color: var(--color-text-dark);
    line-height: 1.8;
    margin: 0;
}

/* FAQ Section - Cast Me Style */
.faq-section {
    --color-primary: var(--color-line-primary);
    padding: 150px 0;
    background: var(--color-line-bg-light);
    position: relative;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.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 #E8F8F0;
    transition: all 0.3s;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--color-line-primary);
    box-shadow: 0 8px 30px rgba(6, 199, 85, 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: #F8FDFA;
}

.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: var(--color-line-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(6, 199, 85, 0.2);
}

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

.faq-chevron {
    color: var(--color-secondary);
    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: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(239, 226, 39, 0.2);
    line-height: 1;
    padding: 0;
    margin: 0;
}

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

/* Contact Section - Cast Me Style */
.contact-section {
    --color-primary: var(--color-line-primary);
    padding: 150px 0;
    background: linear-gradient(135deg, var(--color-line-primary) 0%, var(--color-line-primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.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;
}

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

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

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

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

.required {
    background: var(--color-red);
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.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: var(--color-primary);
    outline: none;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 20px;
    background: var(--color-secondary);
    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);
}

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

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

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

.footer-link {
    color: var(--color-text-dark);
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

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

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

/* Tablet - BG Title 等倍縮小開始 */
@media (max-width: 1024px) {
    .section-bg-title {
        font-size: 100px;
        height: 80px;
        padding: 0 40px;
        letter-spacing: 1.3px;
    }

    .interview-section .section-bg-title {
        top: 60px;
        font-size: 100px;
        height: 80px;
    }

    .insights-section .section-bg-title {
        top: 80px;
        font-size: 100px;
        height: 80px;
    }

    .services-section .section-bg-title {
        top: 60px;
        font-size: 100px;
        height: 80px;
    }

    .benefits-section .section-bg-title {
        top: 80px;
        font-size: 100px;
        height: 80px;
    }

    .operation-section .section-bg-title {
        top: 80px;
        font-size: 100px;
        height: 80px;
    }

    .integration-section .section-bg-title {
        top: 77px !important;
        font-size: 100px !important;
        height: 80px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .plan-section .section-bg-title {
        top: 100px;
        font-size: 100px;
        height: 80px;
    }

    .flow-section .section-bg-title {
        top: 100px;
        font-size: 100px;
        height: 80px;
    }

    .faq-section .section-bg-title {
        top: 80px;
        font-size: 100px;
        height: 80px;
    }

    .contact-section .section-bg-title {
        top: 80px;
        font-size: 100px;
        height: 80px;
    }
}

/* Keep PC Hero layout as base until mobile breakpoint (768px) */
/* We use vw units for hero-section-pc children to scale down perfectly */

@media (max-width: 768px) {
    /* SP版専用の改行を表示 */
    .sp-only {
        display: inline;
    }
    
    /* 元のhero-sectionのメディアクエリ（コメントアウト） */
    .hero-section {
        display: block;
    }
    
    .hero-section-pc {
        display: none;
    }

    .hero-section .hero-pc-person {
        width: clamp(60%, 70vw, 75%);
        max-width: 380px;
        left: 30%;
        bottom: 0;
    }

    .hero-section .hero-pc-title-wrapper {
        width: 90%;
        left: 5%;
        top: 10%;
    }

    .hero-section .hero-pc-subtitle-box {
        width: 95%;
        min-height: 45px;
        padding: 8px 12px;
        top: 75px;
    }

    .hero-section .hero-pc-subtitle {
        font-size: 13px;
    }

    .hero-section .hero-pc-title-svg-container {
        top: 50px;
    }

    .hero-section .hero-pc-title-svg-container svg {
        display: none;
    }

    .hero-section .hero-pc-title-text-mobile {
        display: block;
        top: 155px;
    }

    .hero-section .hero-pc-title-text-mobile .hero-pc-title-line1,
    .hero-section .hero-pc-title-text-mobile .hero-pc-title-line2 {
        font-size: clamp(24px, 7vw, 36px);
        -webkit-text-stroke: 4px #06C755;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .hero-section .hero-pc-cta-box {
        width: 95%;
        left: 2.5%;
        bottom: 5%;
        min-height: 180px;
        padding: 18px;
        z-index: 4;
    }
    
    .hero-section .hero-pc-cta-text {
        top: 15%;
        width: 85%;
        font-size: 16px;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 12px;
    }
    
    .hero-section .hero-pc-cta-button {
        top: 94px;
    }
    
    .hero-section .hero-pc-cta-icon {
        display: none;
    }

    .hero-section .hero-pc-cta-button {
        width: 88%;
        left: 6%;
        height: 48px;
    }
    
    /* Integration section - hide PC text and show mobile text */
    .integration-section .section-subtitle .integration-subtitle-pc {
        display: none;
    }
    
    .integration-section .section-subtitle .integration-subtitle-mobile {
        display: inline;
    }

    /* Interview Character - モバイルで非表示 */
    .interview-character {
        display: none;
    }

    /* FV以外のセクションは389pxと同じスタイルを適用 */
    .hero-container,
    .interview-container,
    .insights-container,
    .services-container,
    .benefits-container,
    .integration-container,
    .plan-container,
    .operation-container,
    .flow-container,
    .faq-container,
    .contact-container {
        padding: 0 20px;
    }
    
    /* BG Title for small devices - 各セクションごとに調整 */
    .section-bg-title {
        font-size: 60px;
        height: 48px;
        padding: 0 20px;
    }

    .interview-section .section-bg-title {
        top: 30px;
        font-size: 60px;
        height: 48px;
    }

    .insights-section .section-bg-title {
        top: 40px;
        font-size: 60px;
        height: 48px;
    }

    .services-section .section-bg-title {
        top: 30px;
        font-size: 60px;
        height: 48px;
        margin-top: 30px;
    }

    .benefits-section .section-bg-title {
        top: 40px;
        font-size: 60px;
        height: 48px;
    }

    .operation-section .section-bg-title {
        top: 40px;
        margin-top: 40px;
        font-size: 60px;
        height: 48px;
    }

    .integration-section .section-bg-title {
        top: 38px !important;
        font-size: 50px !important;
        height: 48px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .plan-section .section-bg-title {
        top: 50px;
        font-size: 60px;
        height: 48px;
    }

    .flow-section .section-bg-title {
        top: 50px;
        font-size: 60px;
        height: 48px;
    }

    .faq-section .section-bg-title {
        top: 40px;
        font-size: 60px;
        height: 48px;
    }

    .contact-section .section-bg-title {
        top: 40px;
        font-size: 60px;
        height: 48px;
    }

    .section-subtitle {
        font-size: 24px;
        margin-bottom: 55px;
        text-align: center;
    }
    
    .insights-section .section-subtitle {
        top: -15px;
    }
    
    /* 各セクションのパディング調整 */
    .interview-section,
    .insights-section,
    .services-section,
    .benefits-section,
    .integration-section,
    .plan-section,
    .flow-section,
    .faq-section,
    .contact-section {
        padding: 80px 0;
    }

    .progress-circle-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .progress-circle {
        width: 200px;
        height: 200px;
    }

    .progress-text {
        font-size: 36px;
    }

    .progress-label {
        text-align: center;
    }

    .progress-label .highlight {
        font-size: 24px;
    }

    /* Grid Resets for Mobile */
    .insight-intro-card,
    .insight-grid,
    .service-item,
    .benefits-container,
    .integration-cards,
    .flow-steps {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .service-item {
        grid-template-columns: 1fr !important;
        gap: 30px;
        margin-bottom: 60px;
        padding: 0;
        display: flex !important;
        flex-direction: column;
    }
    
    /* モバイル: 見出し→画像→テキストの順 */
    .service-item .service-image {
        order: 2 !important;
        width: 100%;
    }
    
    .service-item .service-content {
        order: 3 !important;
    }
    
    .service-number {
        font-size: 14px;
        padding: 6px 16px;
        margin-bottom: 8px;
    }
    
    .service-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .service-description {
        font-size: 16px;
        line-height: 1.8;
    }
    
    /* Insights intro-card: 見出し→画像→テキストの順 */
    .insight-intro-card {
        display: flex !important;
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
        border-width: 4px;
        border-radius: 20px;
    }
    
    .intro-text {
        order: 3;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .intro-text h3 {
        order: 1;
        margin-bottom: 20px;
        font-size: 24px;
    }
    
    .progress-circle-wrapper {
        order: 2;
        margin-bottom: 20px;
    }
    
    .intro-text p {
        order: 3;
        margin-top: 20px;
        font-size: 16px;
    }
    
    .intro-image {
        order: 2;
    }
    
    .intro-image img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    /* Insight grid cards */
    .insight-grid {
        gap: 30px;
    }
    
    .insight-card {
        padding: 30px 20px;
    }
    
    .benefits-section .section-subtitle {
        font-size: 22.5px !important;
        text-align: center !important;
        padding: 0 20px !important;
        margin-bottom: -20px !important;
        top: -15px !important;
    }
    
    .benefits-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 30px;
        display: flex !important;
    }
    
    /* モバイル: 見出し→画像→テキストの順 */
    .benefit-image {
        order: 2 !important;
        width: 100% !important;
        height: 250px !important;
        margin: 0 auto;
        background: white !important;
        border: 8px solid var(--color-line-primary) !important;
        border-radius: 30px !important;
        padding: 2px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    
    .benefit-text {
        order: 3 !important;
        width: 100%;
    }
    
    .benefit-number {
        font-size: 32px;
        text-align: center;
        margin-bottom: 12px;
        color: var(--color-line-primary);
    }
    
    .benefit-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 12px;
        color: #FFF44F;
        text-shadow: 
            -2px -2px 0 var(--color-line-primary),
            2px -2px 0 var(--color-line-primary),
            -2px 2px 0 var(--color-line-primary),
            2px 2px 0 var(--color-line-primary),
            -2px 0 0 var(--color-line-primary),
            2px 0 0 var(--color-line-primary),
            0 -2px 0 var(--color-line-primary),
            0 2px 0 var(--color-line-primary),
            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-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 {
        height: auto !important;
    }
    
    .benefit-item.benefit-03 .benefit-image img {
        height: auto;
        object-fit: contain;
    }
    
    .integration-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .integration-card .card-header {
        height: 200px;
    }
    
    .flow-steps::before {
        display: none;
    }

    .flow-arrow {
        display: block;
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .faq-question-btn {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .faq-question-btn h3 {
        font-size: 18px;
    }
    
    .faq-answer {
        padding: 0 20px 25px 20px;
        gap: 15px;
    }
    
    .faq-q,
    .faq-a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 20px;
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .form-label {
        font-size: 16px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px;
        padding: 15px;
    }
    
    .plan-table {
        overflow-x: auto;
        display: block;
    }
    
    .plan-table table {
        min-width: 600px; /* Force scroll */
    }
    
    .interview-card {
        border-width: 3px;
    }
    
    .interview-section .section-subtitle {
        margin-bottom: 10px;
        font-size: 24px;
        top: -25px;
    }
    
    .interview-content {
        gap: 20px;
    }
    
    .interview-cta {
        margin-top: 20px;
    }
    
    .view-more-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* Plan section adjustments */
    .plan-section .section-subtitle {
        margin-bottom: 35px;
    }
    
    .plan-initial-fee {
        padding-left: 20px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    /* Operation section adjustments */
    .operation-section .section-subtitle {
        top: -15px;
        margin-bottom: 30px;
        font-size: 28px;
    }
    
    .operation-image {
        margin-top: 40px;
        margin-bottom: 40px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .operation-image img {
        width: 900px;
        min-width: 900px;
    }
    
    /* Flow section adjustments */
    .flow-section .section-subtitle {
        margin-bottom: 10px;
        top: -10px;
    }
    
    .flow-image {
        margin-top: 30px;
    }
    
    /* Integration section adjustments */
    .integration-section .section-subtitle {
        font-size: 22px;
        margin-bottom: 40px;
        top: -18px;
    }
    
    .integration-card {
        max-width: 100%;
    }
    
    .card-header {
        height: 120px;
        padding: 30px 20px;
    }
    
    .card-header .card-title {
        font-size: 20px;
    }
    
    .card-body {
        padding: 30px 20px;
    }
    
    .card-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .card-button {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    /* FAQ section adjustments */
    .faq-section .section-subtitle {
        margin-bottom: 10px;
        top: -15px;
    }
    
    /* Contact section adjustments */
    .contact-section .section-subtitle {
        margin-bottom: 40px;
        font-size: 32px;
    }
}

/* Small mobile devices (iPhone SE, etc.) */
@media (max-width: 389px) {
    .hero-section .hero-pc-person {
        width: clamp(50%, 60vw, 60%);
        max-width: 240px;
        left: 30%;
        bottom: 0;
    }

    .hero-section .hero-pc-title-text-mobile {
        top: 135px;
    }

    .hero-section .hero-pc-title-text-mobile .hero-pc-title-line1,
    .hero-section .hero-pc-title-text-mobile .hero-pc-title-line2 {
        font-size: clamp(22px, 6vw, 28px);
        -webkit-text-stroke: 4px #06C755;
    }

    .hero-section .hero-pc-cta-button-text {
        font-size: 15px;
    }

    .hero-section .hero-pc-cta-icon {
        width: 36px;
        left: 12px;
    }

    .hero-container,
    .interview-container,
    .insights-container,
    .services-container,
    .benefits-container,
    .integration-container,
    .plan-container,
    .operation-container,
    .flow-container,
    .faq-container,
    .contact-container {
        padding: 0 20px;
    }
    
    /* BG Title for small devices - 各セクションごとに調整 */
    .section-bg-title {
        font-size: 60px;
        height: 48px;
        padding: 0 20px;
    }

    .interview-section .section-bg-title {
        top: 30px;
        font-size: 60px;
        height: 48px;
    }

    .insights-section .section-bg-title {
        top: 40px;
        font-size: 60px;
        height: 48px;
    }

    .services-section .section-bg-title {
        top: 30px;
        font-size: 60px;
        height: 48px;
    }

    .benefits-section .section-bg-title {
        top: 40px;
        font-size: 60px;
        height: 48px;
    }

    .operation-section .section-bg-title {
        top: 40px;
        margin-top: 40px;
        font-size: 60px;
        height: 48px;
    }

    .integration-section .section-bg-title {
        top: 38px !important;
        font-size: 50px !important;
        height: 48px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .plan-section .section-bg-title {
        top: 50px;
        font-size: 60px;
        height: 48px;
    }

    .flow-section .section-bg-title {
        top: 50px;
        font-size: 60px;
        height: 48px;
    }

    .faq-section .section-bg-title {
        top: 40px;
        font-size: 60px;
        height: 48px;
    }

    .contact-section .section-bg-title {
        top: 40px;
        font-size: 60px;
        height: 48px;
    }

    .section-subtitle {
        font-size: 24px;
        margin-bottom: 55px;
        text-align: center;
    }
    
    .insights-section .section-subtitle {
        top: -15px;
    }
    
    /* 各セクションのパディング調整 */
    .interview-section,
    .insights-section,
    .services-section,
    .benefits-section,
    .integration-section,
    .plan-section,
    .flow-section,
    .faq-section,
    .contact-section {
        padding: 80px 0;
    }

    .progress-circle-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .progress-circle {
        width: 200px;
        height: 200px;
    }

    .progress-text {
        font-size: 36px;
    }

    .progress-label {
        text-align: center;
    }

    .progress-label .highlight {
        font-size: 24px;
    }

    /* Grid Resets for Mobile */
    .insight-intro-card,
    .insight-grid,
    .service-item,
    .benefits-container,
    .integration-cards,
    .flow-steps {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .service-item {
        grid-template-columns: 1fr !important;
        gap: 30px;
        margin-bottom: 60px;
        padding: 0;
        display: flex !important;
        flex-direction: column;
    }
    
    /* モバイル: 見出し→画像→テキストの順 */
    .service-item .service-image {
        order: 2 !important;
        width: 100%;
    }
    
    .service-item .service-content {
        order: 3 !important;
    }
    
    .service-number {
        font-size: 14px;
        padding: 6px 16px;
        margin-bottom: 8px;
    }
    
    .service-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .service-description {
        font-size: 16px;
        line-height: 1.8;
    }
    
    /* サービスセクションの見出しはsection-subtitleで既に上にある */
    
    /* Insights intro-card: 見出し→画像→テキストの順 */
    .insight-intro-card {
        display: flex !important;
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
        border-width: 4px;
        border-radius: 20px;
    }
    
    .intro-text {
        order: 3;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    .intro-text h3 {
        order: 1;
        margin-bottom: 20px;
        font-size: 24px;
    }
    
    .progress-circle-wrapper {
        order: 2;
        margin-bottom: 20px;
    }
    
    .intro-text p {
        order: 3;
        margin-top: 20px;
        font-size: 16px;
    }
    
    .intro-image {
        order: 2;
    }
    
    .intro-image img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    /* Insight grid cards */
    .insight-grid {
        gap: 30px;
    }
    
    .insight-card {
        padding: 30px 20px;
    }
    
    .benefits-section .section-subtitle {
        font-size: 22.5px !important;
        text-align: left !important;
        padding: 0 20px !important;
        margin-bottom: -20px !important;
    }
    
    .benefits-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 30px;
        display: flex !important;
    }
    
    /* モバイル: 見出し→画像→テキストの順 */
    .benefit-image {
        order: 2 !important;
        width: 100% !important;
        height: 250px !important;
        margin: 0 auto;
        background: white !important;
        border: 8px solid var(--color-line-primary) !important;
        border-radius: 30px !important;
        padding: 2px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    
    .benefit-text {
        order: 3 !important;
        width: 100%;
    }
    
    .benefit-number {
        font-size: 32px;
        text-align: center;
        margin-bottom: 12px;
        color: var(--color-line-primary);
    }
    
    .benefit-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 12px;
        color: #FFF44F;
        text-shadow: 
            -2px -2px 0 var(--color-line-primary),
            2px -2px 0 var(--color-line-primary),
            -2px 2px 0 var(--color-line-primary),
            2px 2px 0 var(--color-line-primary),
            -2px 0 0 var(--color-line-primary),
            2px 0 0 var(--color-line-primary),
            0 -2px 0 var(--color-line-primary),
            0 2px 0 var(--color-line-primary),
            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-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 {
        height: auto !important;
    }
    
    .benefit-item.benefit-03 .benefit-image img {
        height: auto;
        object-fit: contain;
    }
    
    .integration-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .integration-card .card-header {
        height: 200px;
    }
    
    .flow-steps::before {
        display: none;
    }

    .flow-arrow {
        display: block;
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .faq-question-btn {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .faq-question-btn h3 {
        font-size: 18px;
    }
    
    .faq-answer {
        padding: 0 20px 25px 20px;
        gap: 15px;
    }
    
    .faq-q,
    .faq-a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.8;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 20px;
        width: 100%;
        max-width: 300px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    .form-label {
        font-size: 16px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px;
        padding: 15px;
    }
    
    .plan-table {
        overflow-x: auto;
        display: block;
    }
    
    .plan-table table {
        min-width: 600px; /* Force scroll */
    }
    
    .interview-card {
        border-width: 3px;
    }
    
    .interview-section .section-subtitle {
        margin-bottom: 10px;
        font-size: 24px;
    }
    
    .interview-content {
        gap: 20px;
    }
    
    .interview-character {
        display: none;
    }
    
    .interview-cta {
        margin-top: 20px;
    }
    
    .view-more-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    /* Plan section adjustments */
    .plan-section .section-subtitle {
        margin-bottom: 35px;
    }
    
    .plan-initial-fee {
        padding-left: 20px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    /* Operation section adjustments */
    .operation-section .section-subtitle {
        top: -15px;
        margin-bottom: 30px;
        font-size: 28px;
    }
    
    .operation-image {
        margin-top: 40px;
        margin-bottom: 40px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .operation-image img {
        width: 900px;
        min-width: 900px;
    }
    
    /* Flow section adjustments */
    .flow-section .section-subtitle {
        margin-bottom: 10px;
        top: -10px;
    }
    
    .flow-image {
        margin-top: 30px;
    }
    
    /* Integration section adjustments */
    .integration-section .section-subtitle {
        font-size: 22px;
        margin-bottom: 40px;
    }
    
    .integration-card {
        max-width: 100%;
    }
    
    .card-header {
        height: 120px;
        padding: 30px 20px;
    }
    
    .card-header .card-title {
        font-size: 20px;
    }
    
    .card-body {
        padding: 30px 20px;
    }
    
    .card-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .card-button {
        padding: 10px 24px;
        font-size: 13px;
    }
    
    /* FAQ section adjustments */
    .faq-section .section-subtitle {
        margin-bottom: 10px;
        top: -15px;
    }
    
    /* Contact section adjustments */
    .contact-section .section-subtitle {
        margin-bottom: 40px;
        font-size: 32px;
    }
}

@media (min-width: 769px) {
    .hero-section {
        display: none;
    }
    .hero-section-pc {
        display: block;
    }
}
