@charset "UTF-8";

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

.wpcf7 br {
    display: none;
}

.sp-only {
    display: none;
}
.pc-only {
    display: block;
}

/* ========================================
   スクロールアニメーション
======================================== */

/* 基本のアニメーション設定 */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.is-visible {
    opacity: 1;
}

/* フェードイン */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
}

/* 下からスライドイン */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* 左からスライドイン */
.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* 右からスライドイン */
.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* スケールアニメーション */
.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-up.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* 遅延アニメーション */
.delay-1 {
    transition-delay: 0.1s;
}

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

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

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

.delay-5 {
    transition-delay: 0.5s;
}

/* セクション固有のアニメーション */

.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.team-member {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-member.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.result-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.result-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.flow-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flow-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-top: 0;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

.section-title-decoration {
    color: #289dd3;
    background: linear-gradient(transparent 60%, rgba(255, 236, 61, 0.6) 60%);
}

.section-title.white {
    color: white;
}

.section-title.blue {
    color: #289dd3;
}

.section-title-sub.white {
    color: white;
}

.section-title-sub.blue {
    color: #289dd3;
}

.webmarketing-lp {
    font-family: 游明朝, YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 45px;
}

/* Header Navigation */
header#lp-site-header.lp-site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 116px;

    .lp-site-header-toptext {
        display: block;
        color: gray;
        font-size: 16px;
        margin: 0 auto;
        max-width: 1200px;
        padding: 0 45px;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 45px;

        .lp-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;

            .lp-site-header-logo {
                display: flex;
                align-items: center;
                margin-top: 10px;

                a {
                    text-decoration: none;
                    display: flex;
                    align-items: center;
                }

                img {
                    width: 216px;
                    max-width: 100%;
                    max-height: 100%;
                }
            }

            .lp-header-contact {
                width: 240px;
                gap: 8px;
                position: relative;

                a.lp-contact-btn {
                    width: 100%;
                    height: 50px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background: #000766;
                    color: white;
                    padding: 12px 24px;
                    text-decoration: none;
                    font-weight: 600;
                    font-size: 16px;
                    transition: all 0.3s ease;

                    &:hover {
                        transform: translateY(-2px);
                        box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
                        color: white;
                    }
                    
                                            /* 電話番号のスタイル */
                        &[href^="tel:"] {
                            background: transparent;
                            color: #000766;
                            font-size: 20px;
                            font-weight: 700;
                            width: auto;
                            height: auto;
                            display: inline;
                            padding: 0;
                            position: absolute;
                            top: -32px;
                            left: 50%;
                            transform: translateX(-50%);
                            white-space: nowrap;
                            
                            /* 電話アイコン */
                            &::before {
                                content: "";
                                position: absolute;
                                left: -20px;
                                top: 50%;
                                transform: translateY(-50%);
                                width: 20px;
                                height: 20px;
                                background-image: url('../../images/lp/phone_icon.svg');
                                background-size: contain;
                                background-repeat: no-repeat;
                                background-position: center;
                            }
                            
                            &:hover {
                                background: #000766;
                                color: white;
                                
                                &::before {
                                    filter: brightness(0) invert(1);
                                }
                            }
                        }
                }
            }
        }
    }
}

section.hero-section {
    margin-top: 116px;
    height: calc(100vh - 116px);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;

    .container {
        max-width: 1440px;
        height: 100%;
        margin: 0 auto;
        padding: 80px 80px 0;
        position: relative;
        background-position: right 5% center;
        background-repeat: no-repeat;
        background-size: min(calc(100vh - 206px), 800px);

        .hero-content {
            height: 100%;
            width: 100%;
            z-index: 2;
            position: relative;

            .hero-text {
                position: absolute;
                left: 0;
                top: 0;
                width: auto;

                h1.hero-title {
                    font-size: clamp(28px, 3.8vw, 60px);
                    font-weight: 700;
                    margin-bottom: calc(2.20vh - 2.77px);

                    .title-main {
                        display: block;
                        font-size: clamp(28px, 3.8vw, 60px);
                        color: #000;
                        font-weight: 700;

                        .title-main-sub {
                            font-size: clamp(28px, 3.8vw, 60px);
                            color: #171c60;
                            font-weight: 700;
                        }
                    }

                    .title-and {
                        display: block;
                        font-size: clamp(28px, 3.8vw, 60px);
                        color: #289dd3;
                        font-weight: 700;
                    }
                }

                .hero-image {
                    display: none;
                }

                .hero-keywords {
                    display: flex;
                    flex-direction: column;
                    gap: calc(2.75vh - 3.46px);
                    margin-bottom: calc(4.40vh - 5.54px);
                    flex-wrap: wrap;

                    .keyword-item {
                        padding: 8px 16px;
                        border-radius: 20px;
                        border: 1px solid #289dd3;
                        width: calc(37.36vh - 47.08px);
                        height: calc(4.62vh - 5.82px);
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        .keyword-text {
                            color: #289dd3;
                            font-size: max(calc(2.64vh - 3.32px), 12px);
                            font-weight: 600;
                            white-space: nowrap;

                            .sp-only {
                                display: none;
                            }
                        }
                    }
                }

                p.hero-subtitle {
                    font-size: max(calc(1.76vh - 2.21px), 10px);
                    color: #000;
                }
            }

            .hero-cta {
                position: absolute;
                left: 50%;
                bottom: calc(6.59vh - 8.31px);
                transform: translateX(-50%);
                z-index: 3;

                a.btn-primary {
                    display: inline-block;
                    background-color: #FFA500;
                    color: #fff;
                    padding: 18px 40px;
                    text-decoration: none;
                    border-radius: 50px;
                    font-weight: 700;
                    font-size: 1.1rem;
                    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
                    transition: all 0.3s ease;

                    &:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
                    }
                }
            }
        }
    }
}

section.client-logos {
    padding: 40px 0;
    background: #fff;
    text-align: center;

    .logo-slider-container {
        max-width: 100%;
        margin: 0 auto;
        overflow: hidden;
        position: relative;

        .logo-slider {
            display: flex;
            animation: slide-left 30s linear infinite;

            &.logo-slider-row-0 {
                animation-duration: 25s;
            }

            &.logo-slider-row-1 {
                animation-duration: 30s;
                animation-direction: reverse;
            }

            &.logo-slider-row-2 {
                animation-duration: 35s;
            }

            .logo-item {
                flex: 0 0 auto;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 30vw;
                max-width: 350px;
                padding: 20px;
                box-sizing: border-box;

                img {
                    width: 100%;
                    max-height: 45px;
                    height: auto;
                    object-fit: contain;
                }
            }
        }
    }
}
@keyframes slide-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

section#features.features-section {
    padding: 140px 0;
    background: #171c60;

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 45px;

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

            .feature-card {
                padding: 40px 30px;
                background: white;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                position: relative;
                overflow: hidden;

                .feature-icon {
                    width: 100px;
                    height: 100px;
                    margin: 0 auto 40px;
                    display: flex;
                    align-items: center;
                    justify-content: center;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: contain;
                        filter: brightness(0) saturate(100%) invert(11%) sepia(35%) saturate(4032%) hue-rotate(220deg) brightness(93%) contrast(106%);
                    }
                }

                h3.feature-title {
                    font-size: 24px;
                    font-weight: 700;
                    margin-bottom: 20px;
                    text-align: center;
                    color: #333;

                    .feature-title-sub {
                        color: #171c60;
                    }
                }

                p.feature-description {
                    color: #333;
                    font-size: 14px;
                    line-height: 1.8;
                    text-align: left;
                }
            }
        }
    }
}

/* About Section */
section#about.about-section {
    padding: 140px 0;
    background: white;

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 45px;

        .about-content {
            position: relative;

            .about-title-area {
                text-align: center;
                margin-bottom: 80px;
                color: #333;

                .section-title {
                    color: #333;
                    margin-bottom: 0;

                    .section-title-decoration {
                        color: #289dd3;
                    }
                }
            }

            .about-main-content {
                background: linear-gradient(135deg, #171c60 0%, #289dd3 100%);
                color: white;
                width: 100vw;
                margin-left: calc(50% - 50vw);
                position: relative;
                overflow: visible;

                .about-main-content-inner {
                    max-width: 1200px;
                    padding: 0 45px;
                    margin: 0 auto;
                    width: 100%;
                    position: relative;

                    .about-text {
                        max-width: 670px;
                        z-index: 2;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        padding: 40px 60px;
                        position: relative;
                        background-color: #fff;

                        h3.about-subtitle {
                            font-size: 24px;
                            font-weight: 700;
                            margin-bottom: 20px;
                            color: #333;
                            white-space: nowrap;

                            .about-subtitle-sub {
                                color: #289dd3;
                            }
                        }

                        p.about-description {
                            color: #333;
                            line-height: 1.8;
                            font-size: 16px;
                        }
                    }

                    .about-image {
                        position: absolute;
                        right: -150px;
                        top: 50%;
                        transform: translateY(-50%);
                        z-index: 1;
                        max-width: 540px;
                        height: auto;

                        img {
                            width: 100%;
                            height: auto;
                            object-fit: contain;
                        }
                    }
                }
            }
        }
    }
}

section#team.team-section {
    padding: 100px 0;
    background: white;
    
    .container {
        h2.section-title {
            .section-title-decoration {
                color: #289dd3;
            }
        }

        p.team-member-title {
            text-align: center;
            font-size: 16px;
            color: #333;
            margin: 0 0 40px 0;
            line-height: 1.6;

            .team-member-title-sub {
                color: #171c60;
                font-size: 20px;
                font-weight: 700;
            }
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid #171c60;
            overflow: hidden;
            background: white;
            padding: 20px 0;

            .team-member {
                text-align: center;
                padding: 20px 30px;
                background: white;
                position: relative;

                &:not(:last-child)::after {
                    content: '';
                    position: absolute;
                    right: 0;
                    top: 10%;
                    bottom: 10%;
                    width: 1px;
                    background-color: #171c60;
                }

                .member-image {
                    width: 200px;
                    height: 200px;
                    margin: 0 auto 15px;
                    border-radius: 50%;
                    overflow: hidden;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }

                .member-info {
                    h3.member-name {
                        font-size: 12px;
                        font-weight: 700;
                        margin-bottom: 10px;
                        color: #171c60;
                    }

                    h4.member-name-jp {
                        font-size: 24px;
                        margin-bottom: 10px;
                        color: #171c60;
                    }

                    p.member-description {
                        color: #333;
                        font-size: 14px;
                        text-align: left;
                    }
                }
            }
        }
    }
}

/* レスポンシブ表示切り替え（デスクトップ） */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

section#results.results-section {
    padding: 60px 0;
    background: white;

    .container {
        h2.section-title {
            .section-title-decoration.blue {
                color: #289dd3;
            }
        }

        .results-grid {
            display: flex;
            flex-direction: column;
            gap: 80px;

            .result-item {
                border: 1px solid #e8eaf6;
                position: relative;
                padding: 40px;
                overflow: hidden;
                box-shadow: 0 15px 40px rgba(40, 157, 211, 0.15), 0 5px 15px rgba(40, 157, 211, 0.1);

                &.reverse {
                    .result-main {
                        .result-info {
                            order: 2;
                        }

                        .result-chart-container {
                            order: 1;
                            flex-direction: row-reverse;
                        }
                    }

                    .result-note-container {
                        align-items: flex-end;
                    }
                }
                
                .result-main {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 40px;

                    .result-info {
                        flex: 1;
                        width: 100%;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;

                        .result-header-container {
                            display: block;
                            flex-direction: column;
                            position: relative;
                            padding: 8px 20px 20px;

                            .result-number {
                                font-size: 44px;
                                color: #fff;
                                padding: 2px 4px;
                                background: #289dd3;
                                margin-bottom: 10px;
                                position: relative;
                                display: inline-block;
                                line-height: 1;
                            }

                            .result-client-type {
                                font-size: 40px;
                                color: #289dd3;
                                font-weight: 700;
                                margin-bottom: 20px;
                                line-height: 1.3;
                            }

                            .result-period {
                                font-size: 20px;
                                color: #666;
                                line-height: 1.2;
                                margin-bottom: 0;

                                .period-value {
                                    font-weight: 600;
                                    color: #333;
                                    margin-left: 5px;
                                }
                            }
                        }

                        .result-stats-boxes {
                            display: flex;
                            flex-direction: column;
                            gap: 15px;

                            .stats-box {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                padding: 28px 24px;
                                border: 1px solid rgba(40, 157, 211, 0.15);

                                .stats-label {
                                    font-size: 16px;
                                    color: #666;
                                    line-height: 1;
                                    text-align: center;
                                }

                                .stats-value.blue {
                                    color: #289dd3;
                                    font-size: 40px;
                                    font-weight: 700;
                                    line-height: 1;
                                    
                                    .stats-prefix {
                                        font-size: 24px;
                                        font-weight: 400;
                                    }
                                }
                            }
                        }
                        
                        .result-note-container {
                            display: flex;
                            flex-direction: column;
                            gap: 10px;
                            
                            p.result-note {
                                font-size: 14px;
                                color: #666;
                                line-height: 1.6;
                            }
                        }
                    }

                    .result-chart-container {
                        flex: 1;
                        height: 100%;
                        display: flex;
                        align-items: flex-start;
                        gap: 20px;
                        max-width: 500px;

                        .result-chart {
                            flex: 1;
                            text-align: center;

                            img {
                                max-width: 100%;
                                height: auto;
                            }
                        }

                        .result-vertical-text {
                            writing-mode: vertical-rl;
                            text-orientation: mixed;
                            font-size: 40px;
                            line-height: 1;
                            font-weight: 700;
                            color: #333;
                            flex-shrink: 0;
                            font-family: 'Noto Sans JP', sans-serif;
                        }
                    }
                }
                /* 実績アコーディオンスタイル */
                details.accordion.result-accordion {
                    margin-top: 40px;
                    border: 1px solid #e8eaf6;
                    overflow: hidden;
                    background: white;
                    transition: all 0.3s ease;

                    summary.accordion-header {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        padding: 16px 30px;
                        cursor: pointer;
                        background: #000766;
                        color: white;
                        font-size: 16px;
                        font-weight: 600;
                        transition: all 0.3s ease;
                        list-style: none;

                        &::-webkit-details-marker {
                            display: none;
                        }

                        .accordion-icon {
                            font-size: 16px;
                            color: #fff;
                            margin-left: 4px;
                            transition: transform 0.3s ease;
                        }
                    }

                    .accordion-content {
                        max-height: 0;
                        overflow: hidden;
                        transition: max-height 0.3s ease;
                        padding: 0 30px;

                        .result-detail-image {
                            padding: 30px 0;
                            text-align: center;

                            img {
                                max-width: 100%;
                                height: auto;
                                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                            }
                        }
                    }

                    &[open] {
                        box-shadow: 0 4px 16px rgba(40, 157, 211, 0.15);

                        summary.accordion-header {
                            background: #000766;
                            color: white;

                            .accordion-icon {
                                transform: rotate(180deg);
                                color: white;
                            }
                        }

                        .accordion-content {
                            max-height: 1000px;
                        }
                    }
                }
            }
        }
    }
}

section.package-section {
    padding: 100px 0;
    background: #f8f9fa;
    
    .container {
        h2.section-title {
            text-align: center;
            
            .section-title-decoration.blue {
                color: #289dd3;
            }
        }
        
        p.section-description {
            font-size: 16px;
            color: #666;
            text-align: center;
            margin-top: -20px;
            margin-bottom: 80px;
        }

        .package-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;

            .package-card {
                background: white;
                padding: 40px 30px;
                text-align: center;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
                position: relative;

                &.featured {
                    border: 1px solid #289dd3;
                    transform: scale(1.05);
                    transition: transform 0.3s ease;

                    .package-header {
                        h3.package-title {
                            color: #289dd3;
                        }

                        .package-price {
                            .price-amount {
                                color: #289dd3;
                            }
                        }
                    }
                    &:hover {
                        transform: scale(1.08);
                        box-shadow: 0 8px 20px rgba(40, 157, 211, 0.2);
                    }
                }
                
                .package-header {
                    margin-bottom: 30px;

                    .popular-badge {
                        background: #289dd3;
                        color: white;
                        padding: 4px 20px;
                        border-radius: 20px;
                        font-size: 14px;
                        position: absolute;
                        top: -15px;
                        left: 50%;
                        transform: translateX(-50%);
                    }

                    h3.package-title {
                        font-size: 1.4rem;
                        font-weight: 700;
                        color: #333;
                        margin-bottom: 20px;
                    }

                    .package-price {
                        display: flex;
                        align-items: baseline;
                        justify-content: center;
                        gap: 5px;
                        margin-bottom: 20px;

                        .price-currency {
                            font-size: 1rem;
                            color: #666;
                        }

                        .price-amount {
                            font-size: 3rem;
                            font-weight: 700;
                            color: #333;
                        }

                        .price-unit {
                            font-size: 1rem;
                            color: #666;
                        }
                    }
                }

                .package-features {
                    p.package-description {
                        color: #666;
                        margin-bottom: 30px;
                        font-size: 0.9rem;
                    }

                    ul.feature-list {
                        list-style: none;
                        padding: 0;
                        text-align: left;

                        li {
                            padding: 10px 0;
                            border-bottom: 1px solid #eee;
                            color: #333;
                            position: relative;
                            padding-left: 25px;
                            font-size: 14px;

                            &:before {
                                content: "✓";
                                position: absolute;
                                left: 0;
                                color: #289dd3;
                                font-weight: bold;
                            }

                            &:last-child {
                                border-bottom: none;
                            }
                        }
                    }
                }
            }
        }
        
        p.package-note {
            font-size: 14px;
            color: #666;
            margin-top: 60px;
            text-align: center;
        }
    }
}

section.after-contract-section {
    padding: 100px 0;
    background: url('../../images/lp/after_bg_01.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;

    .container {
        h2.section-title {
            color: #333;
        }

        .after-contract-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            margin-top: 60px;

            .contract-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 30px;
                background-color: #fff;
                padding: 30px 0;
                border: 1px solid #289dd3;

                .contract-icon {
                    width: 80px;
                    height: 80px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;

                    img {
                        width: 80px;
                        height: 80px;
                    }
                }

                .contract-content {
                    h3.contract-title {
                        font-size: 24px;
                        font-weight: 700;
                        text-align: center;
                        margin-bottom: 20px;
                        color: #289dd3;
                    }

                    p.contract-description {
                        font-size: 14px;
                        color: #333;
                        text-align: center;
                    }
                }
            }
        }
    }
}

section.flow-section {
    padding: 100px 0;
    background: white;
    
    .container {
        .flow-section-header {
            text-align: center;
            margin-bottom: 80px;
            
            h2.flow-section-title {
                font-size: 40px;
                color: #171c60;
                font-weight: 700;
                margin: 0;
            }
        }

        .flow-grid {
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            gap: 0;
            position: relative;

            .flow-item {
                flex: 1;
                text-align: center;
                position: relative;
                padding: 20px 40px;
                border-right: 1px solid #e0e0e0;

                &:last-child {
                    border-right: none;
                }

                .flow-number {
                    font-size: 50px;
                    color: #289dd3;
                    font-weight: 700;
                    margin-bottom: 30px;
                    line-height: 1;
                }

                .flow-content {
                    padding: 0;
                    height: auto;

                    .flow-icon {
                        width: 80px;
                        height: 80px;
                        margin: 0 auto 30px;
                        background: #289dd3;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        img {
                            width: 40px;
                            height: 40px;
                            filter: brightness(0) invert(1);
                        }
                    }

                    h3.flow-title {
                        font-size: 24px;
                        font-weight: 700;
                        color: #289dd3;
                        margin-bottom: 20px;
                        line-height: 1.3;
                    }

                    p.flow-description {
                        color: #666;
                        line-height: 1.6;
                        font-size: 14px;
                        margin-bottom: 30px;
                        text-align: left;
                    }

                    .flow-sub-sections {
                        display: flex;
                        flex-direction: column;
                        gap: 20px;
                        text-align: left;

                        .flow-subsection {
                            padding-bottom: 10px;
                            border-bottom: 1px solid #e0e0e0;

                            h4.subsection-title {
                                font-size: 16px;
                                color: #289dd3;
                                font-weight: 700;
                                margin-bottom: 10px;
                            }

                            p.subsection-description {
                                font-size: 14px;
                                color: #666;
                                line-height: 1.5;
                                margin: 0;
                            }
                        }
                    }
                }
            }

            .flow-arrow.first,
            .flow-arrow.second {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 2;
                height: 2px;
                background: #289dd3;

                &::after {
                    content: '';
                    position: absolute;
                    right: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 0;
                    height: 0;
                    border-left: 16px solid #289dd3;
                    border-top: 16px solid transparent;
                    border-bottom: 16px solid transparent;
                }
            }

            .flow-arrow.first {
                left: calc(33.333% - -16px);
            }

            .flow-arrow.second {
                left: calc(66.666% - -16px);
            }
        }
    }
}

/* Voice Section */
section#voice.voice-section {
    padding: 100px 0;
    background: #f8f9fa;
    
    .container {
        h2.section-title {
            text-align: center;
            margin-bottom: 60px;
            
            .section-title-decoration.blue {
                color: #289dd3;
            }
        }
        
        .voice-list {
            display: grid;
            gap: 40px;
            margin: 0 auto;
            
            .voice-item {
                background: white;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                overflow: hidden;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                
                .voice-content {
                    display: flex;
                    align-items: stretch;
                    
                    .voice-text {
                        flex: 1;
                        padding: 40px;
                        display: flex;
                        flex-direction: column;
                        
                        .voice-title {
                            font-size: 20px;
                            font-weight: 700;
                            color: #333;
                            margin-bottom: 20px;
                            line-height: 1.4;
                        }
                        
                        .voice-excerpt {
                            flex: 1;
                            color: #666;
                            line-height: 1.8;
                            
                            p {
                                margin-bottom: 16px;
                                
                                &:last-child {
                                    margin-bottom: 0;
                                }
                            }

                            .voice-excerpt-wrapper {
                                margin-bottom: 24px;
                                padding: 20px;
                                background: #f8f9ff;

                                &:last-child {
                                    margin-bottom: 0;
                                }

                                .voice-excerpt-question {
                                    font-weight: 600;
                                    color: #171c60;
                                    font-size: 16px;
                                    line-height: 1.6;
                                    margin-bottom: 12px;
                                    position: relative;
                                }

                                .voice-excerpt-answer {
                                    color: #444;
                                    font-size: 16px;
                                    line-height: 1.7;
                                    margin: 0;
                                    position: relative;
                                }
                            }
                        }
                        
                        .voice-link {
                            background: #289dd3;
                            color: white;
                            padding: 12px 24px;
                            text-decoration: none;
                            font-weight: 600;
                            font-size: 14px;
                            align-self: flex-start;
                            transition: background 0.3s ease;
                        }
                    }
                    
                    .voice-image {
                        max-width: 350px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background: #f0f0f0;
                        
                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }
                }
            }
            
            .no-voices {
                text-align: center;
                color: #666;
                font-size: 16px;
                padding: 60px 20px;
            }
        }
    }
}

section#contact.contact-section {
    padding: 100px 0;
    background: #171c60;
    color: #333;
    text-align: center;
    
    .container {
        .contact-header {
            margin-bottom: 60px;
            
            h2.contact-title {
                font-size: 40px;
                color: white;
                font-weight: 700;
                margin-bottom: 30px;
                line-height: 1.3;
            }

            p.contact-description {
                font-size: 16px;
                color: rgba(255, 255, 255, 0.9);
                line-height: 1.6;
                max-width: 800px;
                margin: 0 auto;
            }
        }

        .contact-form-container {
            margin: 0 auto;
            padding: 80px;
            background: white;

            .wpcf7-form {
                .form-group {
                    margin-bottom: 30px;
                    text-align: left;

                    p {
                        margin: 0;
                    }

                    label {
                        display: block;
                        font-size: 16px;
                        color: #333;
                        font-weight: 600;
                        margin-bottom: 8px;

                        .required {
                            background: #dc3545;
                            color: white;
                            font-size: 12px;
                            padding: 2px 8px;
                            margin-left: 8px;
                            font-weight: 500;
                        }
                    }

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

                    .wpcf7-form-control.wpcf7-text,
                    .wpcf7-form-control.wpcf7-email {
                        width: 100%;
                        padding: 16px 20px;
                        border: 1px solid #e0e0e0;
                        font-size: 16px;
                        color: #333;
                        background: white;
                        transition: border-color 0.3s ease, box-shadow 0.3s ease;
                        box-sizing: border-box;

                        &:focus {
                            outline: none;
                            border-color: #289dd3;
                            box-shadow: 0 0 0 3px rgba(40, 157, 211, 0.1);
                        }
                    }
                    
                    .wpcf7-form-control.wpcf7-textarea {
                        width: 100%;
                        padding: 16px 20px;
                        border: 1px solid #e0e0e0;
                        font-size: 16px;
                        color: #333;
                        background: white;
                        transition: border-color 0.3s ease, box-shadow 0.3s ease;
                        box-sizing: border-box;
                        resize: vertical;
                        min-height: 150px;
                        line-height: 1.6;
                        
                        &:focus {
                            outline: none;
                            border-color: #289dd3;
                            box-shadow: 0 0 0 3px rgba(40, 157, 211, 0.1);
                        }
                    }
                }

                .form-submit {
                    text-align: center;
                    margin-top: 40px;

                    .wpcf7-spinner {
                        position: absolute;
                    }

                    p {
                        margin: 0;

                        &:first-child {
                            margin-bottom: 20px;
                        }
                    }

                    .wpcf7-submit.btn-contact-submit {
                        background: #FFA500;
                        border-radius: 50px;
                        color: white;
                        font-size: 18px;
                        padding: 18px 60px;
                        border: none;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        min-width: 280px;
                        font-family: 游明朝, YuMincho, 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;

                        &:hover {
                            opacity: 0.8;
                        }
                    }

                    p.privacy-note {
                        font-size: 14px;
                        color: #666;
                        line-height: 1.5;
                        margin-top: 20px;
                        
                        a {
                            color: #289dd3;
                            text-decoration: none;

                            &:hover {
                                text-decoration: underline;
                            }
                        }
                    }
                }
            }
        }
    }
}

section.faq-section {
    padding: 100px 0;
    background: #171c60;
    color: white;

    .container {
        .faq-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            
            h2.faq-title {
                font-size: 40px;
                font-weight: 700;
                margin-bottom: 40px;
                line-height: 1.3;
                color: white;
            }
        }

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

            details.accordion.faq-item {
                border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                margin-bottom: 0;
                background: transparent;
                color: inherit;
                overflow: hidden;
                transition: all 0.3s ease;

                summary.accordion-header.faq-question {
                    display: flex;
                    align-items: center;
                    padding: 30px 0;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    position: relative;
                    background: transparent;
                    border: none;
                    width: 100%;
                    color: inherit;
                    font-family: inherit;
                    text-align: left;
                    list-style: none;
                    outline: none;
                    
                    .faq-q {
                        font-size: 20px;
                        font-weight: 700;
                        color: white;
                        margin-right: 15px;
                        flex-shrink: 0;
                    }

                    .faq-separator {
                        font-size: 20px;
                        color: rgba(255, 255, 255, 0.6);
                        margin-right: 15px;
                        flex-shrink: 0;
                    }

                    .faq-question-text {
                        font-size: 18px;
                        color: white;
                        line-height: 1.6;
                        flex: 1;
                    }

                    .faq-arrow {
                        font-size: 14px;
                        color: rgba(255, 255, 255, 0.7);
                        transition: transform 0.3s ease;
                        flex-shrink: 0;
                        margin-left: 20px;
                    }
                }

                &[open] {
                    .faq-arrow {
                        transform: rotate(180deg);
                    }
                }

                .accordion-content.faq-answer {
                    display: flex;
                    align-items: flex-start;
                    padding: 0;
                    max-height: 0;
                    overflow: hidden;
                    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                                padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                                opacity 0.3s ease;
                    opacity: 0;
                    
                    .faq-a {
                        font-size: 20px;
                        font-weight: 700;
                        color: white;
                        margin-right: 15px;
                        flex-shrink: 0;
                        margin-top: 5px;
                    }
                    
                    .faq-separator {
                        font-size: 20px;
                        color: rgba(255, 255, 255, 0.6);
                        margin-right: 15px;
                        flex-shrink: 0;
                    }

                    .faq-answer-text {
                        font-size: 14px;
                        color: rgba(255, 255, 255, 0.9);
                        line-height: 1.8;
                        margin-bottom: 20px;
                        flex: 1;
                    }
                }
            }
        }
    }
}

/* Thanks Section */
section.thanks-section {
    margin-top: 116px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    
    .container {
        padding: 80px 0;
        .thanks-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            
            .thanks-title {
                font-size: 36px;
                font-weight: 700;
                color: #171c60;
                margin-bottom: 30px;
                line-height: 1.3;
            }
            
            .thanks-message {
                .thanks-main-text {
                    font-size: 18px;
                    color: #333;
                    line-height: 1.8;
                    margin-bottom: 50px;
                }
                
                .thanks-info-box {
                    background: white;
                    padding: 50px 40px;
                    margin-bottom: 40px;
                    text-align: left;
                    
                    .thanks-subtitle {
                        font-size: 24px;
                        font-weight: 700;
                        color: #171c60;
                        margin-bottom: 30px;
                        text-align: center;
                    }
                    
                    .thanks-steps {
                        .thanks-step {
                            display: flex;
                            align-items: flex-start;
                            margin-bottom: 30px;
                            
                            &:last-child {
                                margin-bottom: 0;
                            }
                            
                            .step-number {
                                width: 40px;
                                height: 40px;
                                background: #289dd3;
                                color: white;
                                border-radius: 50%;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                font-weight: 700;
                                font-size: 18px;
                                margin-right: 20px;
                                flex-shrink: 0;
                            }
                            
                            .step-content {
                                flex: 1;
                                
                                h3 {
                                    font-size: 18px;
                                    font-weight: 700;
                                    color: #333;
                                    margin-bottom: 8px;
                                    line-height: 1.4;
                                }
                                
                                p {
                                    color: #666;
                                    line-height: 1.7;
                                    margin: 0;
                                }
                            }
                        }
                    }
                }
                
                .thanks-contact-info {
                    background: #289dd3;
                    color: white;
                    padding: 30px;
                    margin-bottom: 40px;
                    
                    h3 {
                        font-size: 20px;
                        font-weight: 700;
                        margin-bottom: 20px;
                        line-height: 1.4;
                    }
                    
                    .phone-info {
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        gap: 8px;
                        
                        .phone-number {
                            font-size: 28px;
                            font-weight: 700;
                            color: white;
                        }
                        
                        .phone-hours {
                            font-size: 14px;
                            color: rgba(255, 255, 255, 0.9);
                        }
                    }
                }
            }
            
            .thanks-actions {
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-top: 40px;
                
                .btn-back-to-lp,
                .btn-home {
                    padding: 16px 32px;
                    text-decoration: none;
                    font-weight: 600;
                    font-size: 16px;
                    transition: all 0.3s ease;
                    min-width: 180px;
                    text-align: center;
                }
                
                .btn-back-to-lp {
                    background: #171c60;
                    color: white;
                    
                    &:hover {
                        background: #141856;
                        text-decoration: none;
                        color: white;
                        transform: translateY(-2px);
                        box-shadow: 0 4px 16px rgba(23, 28, 96, 0.3);
                    }
                }
                
                .btn-home {
                    background: white;
                    color: #171c60;
                    border: 2px solid #171c60;
                    
                    &:hover {
                        background: #171c60;
                        color: white;
                        text-decoration: none;
                        transform: translateY(-2px);
                        box-shadow: 0 4px 16px rgba(23, 28, 96, 0.2);
                    }
                }
            }
        }
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@media (max-width: 1440px) {
    section.hero-section {
        .container {
            max-width: 100%;
            padding: 80px 40px 0;
            background-position: right 0 center;
            background-size: min(calc(100vh - 206px), 800px);

            .hero-content {
                .hero-text {
                    h1.hero-title {
                        font-size: clamp(28px, 4.4vw, 60px);

                        .title-main {
                            font-size: clamp(28px, 4.4vw, 60px);

                            .title-main-sub {
                                font-size: clamp(28px, 4.4vw, 60px);
                            }
                        }

                        .title-and {
                            display: block;
                            font-size: clamp(28px, 4.4vw, 60px);
                        }
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 1024px) {
    header#lp-site-header.lp-site-header {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 14px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        max-height: 126px;

        .lp-site-header-toptext {
            font-size: 14px;
            max-width: 100%;
            padding: 0 15px;
        }

        .container {
            max-width: 100%;
            padding: 0 15px;

            .lp-header-content {
                .lp-site-header-logo {
                    margin-top: 6px;

                    img {
                        width: 186px;
                    }
                }

                .lp-header-contact {
                    width: auto;
                    display: flex;
                    flex-direction: column;
                    gap: 6px;

                    a.lp-contact-btn {
                        width: 100%;
                        height: 50px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background: #000766;
                        color: white;
                        padding: 12px 24px;
                        text-decoration: none;
                        font-weight: 600;
                        font-size: 14px;
                    }
                }
            }
        }
    }
    section.hero-section {
        margin-top: 0;
        height: auto;

        .container {
            padding: 40px 20px;
            background-image: none !important;

            .hero-content {
                .hero-text {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;

                    h1.hero-title {
                        font-size: 36px;

                        .title-main {
                            font-size: 36px;

                            .title-main-sub {
                                font-size: 36px;
                                text-align: center;
                            }
                        }

                        .title-and {
                            display: block;
                            font-size: 36px;
                            text-align: center;
                        }
                    }

                    .hero-image {
                        display: block;
                        width: 80%;
                        margin-bottom: 20px;
                    }

                    .hero-keywords {
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        gap: 10px;
                        margin-bottom: 20px;
                        width: 100%;

                        .keyword-item {
                            padding: 0;
                            border-radius: 50%;
                            width: auto;
                            height: auto;
                            aspect-ratio: 1/1;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

                            .keyword-text {
                                color: #289dd3;
                                font-size: 14px;
                                text-align: center;

                                .sp-only {
                                    display: block;
                                }
                            }
                        }
                    }

                    p.hero-subtitle {
                        display: none;
                    }
                }

                .hero-cta {
                    position: inherit;
                    left: inherit;
                    bottom: inherit;
                    transform: inherit;
                    z-index: inherit;

                    a.btn-primary {
                        display: block;
                        padding: 20px;
                        text-align: center;
                    }
                }
            }
        }
    }
    header#lp-site-header.lp-site-header {
        .container {
            .lp-header-content {
                .lp-header-contact {
                    a.lp-contact-btn {
                        &[href^="tel:"] {
                            display: none !important;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .sp-only {
        display: block;
    }
    .pc-only {
        display: none;
    }
    .section-title {
        font-size: 20px;
        margin-bottom: 40px;
    }

    header#lp-site-header.lp-site-header {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 14px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        max-height: 126px;

        .lp-site-header-toptext {
            display: none;
        }
    }
    section.hero-section {
        margin-top: 0;
        height: calc(100vh - 78px);
        min-height: 700px;

        .container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            background-image: none !important;

            .hero-content {
                height: auto;

                .hero-text {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;

                    h1.hero-title {
                        font-size: 8vw;

                        .title-main {
                            font-size: 8vw;

                            .title-main-sub {
                                font-size: 8vw;
                                text-align: center;
                            }
                        }

                        .title-and {
                            display: block;
                            font-size: 10vw;
                            text-align: center;
                        }
                    }

                    .hero-image {
                        display: block;
                        width: 75%;
                        margin-bottom: 0;
                    }

                    .hero-keywords {
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        gap: 10px;
                        margin-bottom: 20px;
                        width: 85%;

                        .keyword-item {
                            padding: 0;
                            border-radius: 50%;
                            width: auto;
                            height: auto;
                            aspect-ratio: 1/1;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

                            .keyword-text {
                                color: #289dd3;
                                font-size: 14px;
                                text-align: center;

                                .sp-only {
                                    display: block;
                                }
                            }
                        }
                    }

                    p.hero-subtitle {
                        display: none;
                    }
                }

                .hero-cta {
                    position: inherit;
                    left: inherit;
                    bottom: inherit;
                    transform: inherit;
                    z-index: inherit;
                    width: 85%;
                    margin: 0 auto;

                    a.btn-primary {
                        display: block;
                        padding: 20px;
                        text-align: center;
                    }
                }
            }
        }
    }
    section.client-logos {
        padding: 20px 0;
   
        .logo-slider-container {
    
            .logo-slider {
    
                .logo-item {
                    width: 30vw;
                    max-width: 350px;
                    padding: 10px;
                    box-sizing: border-box;
    
                    img {
                        width: 100%;
                        max-height: 45px;
                    }
                }
            }
        }
    }
    section#features.features-section {
        padding: 100px 0;
        background: #171c60;
    
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 15px;
    
            .features-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 20px;
    
                .feature-card {
                    padding: 20px 15px;
    
                    .feature-icon {
                        margin: 0 auto 20px;
    
                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                            filter: brightness(0) saturate(100%) invert(11%) sepia(35%) saturate(4032%) hue-rotate(220deg) brightness(93%) contrast(106%);
                        }
                    }
    
                    h3.feature-title {
                        font-size: 20px;
                        font-weight: 700;
                        margin-bottom: 20px;
                    }
    
                    p.feature-description {
                        color: #333;
                        font-size: 14px;
                        line-height: 1.6;
                        text-align: left;
                    }
                }
            }
        }
    }
    section#about.about-section {
        padding: 100px 0;
        background: white;

        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 15px;

            .about-content {
                position: relative;

                .about-title-area {
                    text-align: center;
                    margin-bottom: 20px;
                    color: #333;

                    .section-title {
                        color: #333;
                        margin-bottom: 0;
                        font-size: 20px;

                        .section-title-decoration {
                            color: #289dd3;
                        }
                    }
                }

                .about-main-content {
                    background: linear-gradient(135deg, #171c60 0%, #289dd3 100%);
                    color: white;
                    width: 100vw;
                    margin-left: calc(50% - 50vw);
                    position: relative;
                    overflow: visible;
                    padding: 40px;

                    .about-main-content-inner {
                        max-width: 100%;
                        padding: 0;
                        margin: 0 auto;
                        width: 100%;
                        position: relative;

                        .about-text {
                            max-width: 100%;
                            z-index: 2;
                            display: flex;
                            flex-direction: column;
                            justify-content: center;
                            padding: 30px 20px;
                            position: relative;
                            background-color: #fff;
                            margin: 0 auto;

                            h3.about-subtitle {
                                font-size: 20px;
                                font-weight: 700;
                                margin-bottom: 15px;
                                color: #333;
                                white-space: normal;
                                text-align: center;

                                .about-subtitle-sub {
                                    color: #289dd3;
                                }
                            }

                            p.about-description {
                                color: #333;
                                line-height: 1.6;
                                font-size: 14px;
                                text-align: left;
                            }
                        }

                        .about-image {
                            display: none;
                        }
                    }
                }
            }
        }
    }
    /* レスポンシブ表示切り替え */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }

    section#team.team-section {
        padding: 20px 0;
        
        /* スマホ時のスムーズなフワッとアニメーション */
        &.fade-in {
            transition: opacity 1.2s ease-out;
        }

        .container {
            max-width: 100%;
            padding: 0 15px;

            p.team-member-title {
                padding: 0;
                font-size: 14px;

                .team-member-title-sub {
                    font-size: 16px;
                }
            }

            /* Slick スライダーコンテナ */
            .team-slider {
                width: 100%;
                padding-bottom: 50px;
                position: relative;

                .team-member {
                    background: white;
                    border: 1px solid #e0e0e0;
                    border-radius: 8px;
                    padding: 20px;
                    text-align: center;
                    margin: 0 10px;
                    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                    min-height: 350px;
                    display: flex;
                    flex-direction: column;
                    opacity: 1;
                    transform: none;
                    transition: none;

                    .member-image {
                        width: 150px;
                        height: 150px;
                        margin: 0 auto 15px;
                        border-radius: 50%;
                        overflow: hidden;

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }
                    }

                    .member-info {
                        flex-grow: 1;
                        display: flex;
                        flex-direction: column;
                        justify-content: flex-start;

                        h3.member-name {
                            font-size: 12px;
                            font-weight: 700;
                            margin-bottom: 8px;
                            color: #171c60;
                        }

                        h4.member-name-jp {
                            font-size: 18px;
                            margin-bottom: 15px;
                            color: #171c60;
                            font-weight: 700;
                        }

                        p.member-description {
                            color: #333;
                            font-size: 13px;
                            line-height: 1.6;
                            text-align: left;
                            flex-grow: 1;
                        }
                    }
                }

                /* Slick arrows スタイル */
                .slick-prev,
                .slick-next {
                    position: absolute;
                    top: calc(50% - 50px);
                    transform: translateY(-50%);
                    z-index: 10;
                    width: 40px;
                    height: 40px;
                    border: none;
                    border-radius: 50%;
                    background: #171c60;
                    color: white;
                    cursor: pointer;
                    font-size: 18px;
                    font-weight: bold;
                    display: flex !important;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
                    transition: all 0.3s ease;

                    &:hover {
                        background: #289dd3;
                        transform: translateY(-50%) scale(1.1);
                    }

                    &:before {
                        display: none;
                    }
                }

                .slick-prev {
                    left: -5px;
                }

                .slick-next {
                    right: -5px;
                }

                /* Slick dots スタイル */
                .slick-dots {
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    list-style: none;
                    display: flex;
                    justify-content: center;
                    gap: 4px;
                    padding: 0;
                    margin: 0;

                    li {
                        margin: 0;

                        button {
                            width: 12px;
                            height: 12px;
                            border-radius: 50%;
                            border: none;
                            background: #171c60;
                            opacity: 0.3;
                            cursor: pointer;
                            text-indent: -9999px;
                            outline: none;
                            transition: all 0.3s ease;

                            &:hover {
                                opacity: 0.6;
                            }
                        }

                        &.slick-active button {
                            opacity: 1;
                            background: #289dd3;
                        }
                    }
                }
            }
        }
    }

    section#results.results-section {
        padding: 60px 0;
        background: white;
    
        .container {
            max-width: 100%;
            padding: 0 15px;

            h2.section-title {
                font-size: 20px;
                .section-title-decoration.blue {
                    color: #289dd3;
                }
            }
    
            .results-grid {
                display: flex;
                flex-direction: column;
                gap: 60px;
    
                .result-item {
                    padding: 15px;
    
                    &.reverse {
                        .result-main {
                            .result-info {
                                order: 1;
                                .stats-box.access {
                                    order: 2;
                                }
                                .stats-box.inquiry {
                                    order: 3;
                                }
                            }
                            .result-chart-container {
                                order: 2;
                                flex-direction: row;
                                
                            }
                        }

                        /* details.accordion.result-accordion {
                            margin-top: 40px;
                            border: 1px solid #e8eaf6;
                            overflow: hidden;
                            background: white;
                            transition: all 0.3s ease;
        
                            summary.accordion-header {
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                padding: 16px 30px;
                                cursor: pointer;
                                background: #000766;
                                color: white;
                                font-size: 16px;
                                font-weight: 600;
                                transition: all 0.3s ease;
                                list-style: none;
        
                                &::-webkit-details-marker {
                                    display: none;
                                }
        
                                .accordion-icon {
                                    font-size: 16px;
                                    color: #fff;
                                    margin-left: 4px;
                                    transition: transform 0.3s ease;
                                }
                            }
        
                            .accordion-content {
                                max-height: 0;
                                overflow: hidden;
                                transition: max-height 0.3s ease;
                                padding: 0 30px;
        
                                .result-detail-image {
                                    padding: 30px 0;
                                    text-align: center;
        
                                    img {
                                        max-width: 100%;
                                        height: auto;
                                        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                                    }
                                }
                            }
        
                            &[open] {
                                box-shadow: 0 4px 16px rgba(40, 157, 211, 0.15);
        
                                summary.accordion-header {
                                    background: #000766;
                                    color: white;
        
                                    .accordion-icon {
                                        transform: rotate(180deg);
                                        color: white;
                                    }
                                }
        
                                .accordion-content {
                                    max-height: 1000px;
                                }
                            }
                        } */
    
                        .result-note-container {
                            align-items: flex-start;
                        }
                    }
                    
                    .result-main {
                        display: grid;
                        grid-template-columns: 1fr;
                        gap: 40px;
    
                        .result-info {
                            flex: 1;
                            width: 100%;
                            height: 100%;
                            display: flex;
                            flex-direction: column;
                            justify-content: space-between;
    
                            .result-header-container {
                                display: block;
                                position: relative;
                                padding: 20px 0;
    
                                .result-number {
                                    font-size: 32px;
                                    margin-bottom: 10px;
                                }
    
                                .result-client-type {
                                    font-size: 28px;
                                    margin-bottom: 10px;
                                }
    
                                .result-period {
                                    font-size: 18px;
                                    color: #666;
                                    line-height: 1.2;
                                    margin-bottom: 0;
    
                                    .period-value {
                                        font-weight: 600;
                                        color: #333;
                                        margin-left: 5px;
                                    }
                                }
                            }
    
                            .result-stats-boxes {
                                display: flex;
                                flex-direction: column;
                                gap: 0;
                                order: 2;
    
                                .stats-box {
                                    padding: 20px;
                                    &.access {
                                        order: 2;
                                        margin-bottom: 20px;
                                    }
                                    &.inquiry {
                                        order: 3;
                                    }
    
                                    .stats-label {
                                        font-size: 12px;
                                    }
    
                                    .stats-value.blue {
                                        color: #289dd3;
                                        font-size: 24px;
                                        font-weight: 700;
                                        line-height: 1;
                                        
                                        .stats-prefix {
                                            font-size: 16px;
                                            font-weight: 400;
                                        }
                                    }
                                }
                            }
                            
                            .result-note-container {
                                order: 1;
                                display: flex;
                                flex-direction: column;
                                gap: 10px;
                                margin-bottom: 20px;
                                
                                p.result-note {
                                    font-size: 14px;
                                    color: #666;
                                    line-height: 1.6;
                                }
                            }
                        }
    
                        .result-chart-container {
                            flex: 1;
                            height: 100%;
                            display: flex;
                            align-items: flex-start;
                            gap: 20px;
                            max-width: 500px;
    
                            .result-chart {
                                flex: 1;
                                text-align: center;
    
                                img {
                                    max-width: 100%;
                                    height: auto;
                                }
                            }
    
                            .result-vertical-text {
                                writing-mode: vertical-rl;
                                text-orientation: mixed;
                                font-size: 40px;
                                line-height: 1;
                                font-weight: 700;
                                color: #333;
                                flex-shrink: 0;
                                font-family: 'Noto Sans JP', sans-serif;
                            }
                        }
                    }

                    details.accordion.result-accordion {
                        margin-top: 20px;
                        border: 1px solid #e8eaf6;
                        overflow: hidden;
                        background: white;
                        transition: all 0.3s ease;
    
                        summary.accordion-header {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            padding: 10px 20px;
                            cursor: pointer;
                            background: #000766;
                            color: white;
                            font-size: 14px;
                            font-weight: 600;
                            transition: all 0.3s ease;
                            list-style: none;
    
                            &::-webkit-details-marker {
                                display: none;
                            }
    
                            .accordion-icon {
                                font-size: 12px;
                                color: #fff;
                                margin-left: 4px;
                                transition: transform 0.3s ease;
                            }
                        }
    
                        .accordion-content {
                            max-height: 0;
                            overflow: hidden;
                            transition: max-height 0.3s ease;
                            padding: 0;
    
                            .result-detail-image {
                                padding: 0;
                                text-align: center;
    
                                img {
                                    max-width: 100%;
                                    height: auto;
                                    box-shadow: none;
                                }
                            }
                        }
    
                        &[open] {
                            box-shadow: 0 4px 16px rgba(40, 157, 211, 0.15);
    
                            summary.accordion-header {
                                background: #000766;
                                color: white;
    
                                .accordion-icon {
                                    transform: rotate(180deg);
                                    color: white;
                                }
                            }
    
                            .accordion-content {
                                max-height: 1000px;
                            }
                        }
                    }
                }
            }
        }
    }

    /* Package セクション（スマホ用スライダー） */
    section.package-section {
        padding: 60px 0;
        background: #f8f9fa;
        
        .container {
            max-width: 100%;
            padding: 0 15px;

            h2.section-title {
                text-align: center;
                font-size: 20px;
                margin-bottom: 20px;
                
                .section-title-decoration.blue {
                    color: #289dd3;
                }
            }
            
            p.section-description {
                font-size: 14px;
                color: #666;
                text-align: center;
                margin-top: 0;
                margin-bottom: 40px;
                line-height: 1.6;
            }

            /* スライダーコンテナ */
            .package-slider {
                width: 100%;
                padding-bottom: 40px;
                position: relative;

                .package-card {
                    background: white;
                    padding: 30px 20px;
                    text-align: center;
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
                    margin: 0 10px;
                    border-radius: 8px;
                    display: flex;
                    flex-direction: column;
                    position: relative;
                    box-sizing: border-box;
                    min-height: 400px;

                    &.featured {
                        border: 2px solid #289dd3;

                        .package-header {
                            h3.package-title {
                                color: #289dd3;
                            }

                            .package-price {
                                .price-amount {
                                    color: #289dd3;
                                }
                            }
                        }
                    }

                    .package-header {
                        margin-bottom: 0;
                        position: relative;

                        .popular-badge {
                            background: #289dd3;
                            color: white;
                            padding: 4px 16px;
                            border-radius: 20px;
                            font-size: 14px;
                            position: absolute;
                            top: -20px;
                            left: 50%;
                            transform: translateX(-50%);
                        }

                        h3.package-title {
                            font-size: 20px;
                            font-weight: 700;
                            color: #333;
                            margin-bottom: 20px;
                            line-height: 1.3;
                            margin-top: 30px;
                        }

                        .package-price {
                            display: flex;
                            align-items: baseline;
                            justify-content: center;
                            gap: 8px;
                            margin-bottom: 15px;

                            .price-currency {
                                font-size: 16px;
                                color: #666;
                            }

                            .price-amount {
                                font-size: 50px;
                                font-weight: 700;
                                color: #333;
                                line-height: 1;
                            }

                            .price-unit {
                                font-size: 16px;
                                color: #666;
                            }
                        }
                    }

                    .package-features {
                        flex-grow: 1;
                        display: flex;
                        flex-direction: column;

                        p.package-description {
                            color: #666;
                            margin-bottom: 20px;
                            font-size: 14px;
                            line-height: 1.6;
                        }

                        ul.feature-list {
                            list-style: none;
                            padding: 0;
                            text-align: left;
                            flex-grow: 1;

                            li {
                                padding: 8px 0;
                                border-bottom: 1px solid #eee;
                                color: #333;
                                position: relative;
                                padding-left: 20px;
                                font-size: 13px;
                                line-height: 1.5;

                                &:before {
                                    content: "✓";
                                    position: absolute;
                                    left: 0;
                                    color: #289dd3;
                                    font-weight: bold;
                                }

                                &:last-child {
                                    border-bottom: none;
                                }
                            }
                        }
                    }
                }

                /* Slick arrows スタイル */
                .slick-prev,
                .slick-next {
                    position: absolute;
                    top: calc(50% - 25px);
                    transform: translateY(-50%);
                    z-index: 10;
                    width: 40px;
                    height: 40px;
                    border: none;
                    border-radius: 50%;
                    background: #171c60;
                    color: white;
                    cursor: pointer;
                    font-size: 18px;
                    font-weight: bold;
                    display: flex !important;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
                    transition: all 0.3s ease;

                    &:hover {
                        background: #289dd3;
                        transform: translateY(-50%) scale(1.1);
                    }

                    &:before {
                        display: none;
                    }
                }

                .slick-prev {
                    left: -5px;
                }

                .slick-next {
                    right: -5px;
                }

                /* Slick dots スタイル */
                .slick-dots {
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    list-style: none;
                    display: flex;
                    justify-content: center;
                    gap: 4px;
                    padding: 0;
                    margin: 0;

                    li {
                        margin: 0;

                        button {
                            width: 12px;
                            height: 12px;
                            border-radius: 50%;
                            border: none;
                            background: #171c60;
                            opacity: 0.3;
                            cursor: pointer;
                            text-indent: -9999px;
                            outline: none;
                            transition: all 0.3s ease;

                            &:hover {
                                opacity: 0.6;
                            }
                        }

                        &.slick-active button {
                            opacity: 1;
                            background: #289dd3;
                        }
                    }
                }
            }

            p.package-note {
                font-size: 12px;
                color: #666;
                margin-top: 40px;
                text-align: center;
                line-height: 1.6;
                padding: 0 10px;
            }
        }

        /* Package セクション全体のfade-inアニメーション（スマホ時） */
        &.fade-in {
            transition: opacity 1.3s ease-out;
            
            /* 個別アイテムのアニメーションを無効化 */
            .package-card {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
        }
    }

    section.after-contract-section {
        padding: 60px 0;
        background: url('../../images/lp/after_bg_01.png');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        position: relative;
    
        .container {
            max-width: 100%;
            padding: 0 15px;

            h2.section-title {
                font-size: 20px;
                color: #333;
            }
    
            .after-contract-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 40px;
                margin-top: 0;
    
                .contract-item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 30px;
                    background-color: #fff;
                    padding: 30px 20px;
                    border: 1px solid #289dd3;
    
                    .contract-icon {
                        width: 80px;
                        height: 80px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        flex-shrink: 0;
    
                        img {
                            width: 80px;
                            height: 80px;
                        }
                    }
    
                    .contract-content {
                        h3.contract-title {
                            font-size: 24px;
                            font-weight: 700;
                            text-align: center;
                            margin-bottom: 20px;
                            color: #289dd3;
                        }
    
                        p.contract-description {
                            font-size: 14px;
                            color: #333;
                            text-align: center;
                        }
                    }
                }
            }
        }
    }

    section.flow-section {
        padding: 60px 0;
        background: white;
        
        .container {
            max-width: 100%;
            padding: 0 15px;

            .flow-section-header {
                text-align: center;
                margin-bottom: 20px;
                
                h2.flow-section-title {
                    font-size: 30px;
                    color: #171c60;
                    font-weight: 700;
                    margin: 0;
                }
            }
    
            .flow-grid {
                display: flex;
                flex-direction: column;
                align-items: stretch;
                justify-content: space-between;
                gap: 0;
                position: relative;
    
                .flow-item {

                    padding: 40px 20px;
                    border-bottom: 1px solid #e0e0e0;
                    border-right: none;
    
                    &:last-child {
                        border-bottom: none;
                    }
    
                    .flow-number {
                        font-size: 40px;
                        color: #289dd3;
                        font-weight: 700;
                        margin-bottom: 20px;
                        line-height: 1;
                    }
    
                    .flow-content {
                        padding: 0;
                        height: auto;
    
                        .flow-icon {
                            width: 80px;
                            height: 80px;
                            margin: 0 auto 30px;
                            background: #289dd3;
                            border-radius: 50%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
    
                            img {
                                width: 40px;
                                height: 40px;
                                filter: brightness(0) invert(1);
                            }
                        }
    
                        h3.flow-title {
                            font-size: 20px;
                            font-weight: 700;
                            color: #289dd3;
                            margin-bottom: 20px;
                            line-height: 1.3;
                        }
    
                        p.flow-description {
                            color: #666;
                            line-height: 1.6;
                            font-size: 14px;
                            margin-bottom: 0;
                            text-align: left;
                        }
    
                        .flow-sub-sections {
                            display: flex;
                            flex-direction: column;
                            gap: 20px;
                            margin-top: 20px;
                            text-align: left;
    
                            .flow-subsection {
                                h4.subsection-title {
                                    font-size: 16px;
                                    color: #289dd3;
                                    font-weight: 700;
                                    margin-bottom: 4px;
                                }
    
                                p.subsection-description {
                                    font-size: 14px;
                                    color: #666;
                                    line-height: 1.5;
                                    margin: 0;
                                
                                }
                            }
                        }
                    }
                }
    
                .flow-arrow.first,
                .flow-arrow.second {
                    display: none;
                }
            }
        }
    }

    /* Voice Section（スマホ用） */
    section#voice.voice-section {
        padding: 60px 0;
        background: #f8f9fa;
        
        .container {
            max-width: 100%;
            padding: 0 15px;
            
            h2.section-title {
                text-align: center;
                font-size: 20px;
                margin-bottom: 40px;
                
                .section-title-decoration.blue {
                    color: #289dd3;
                }
            }
            
            .voice-list {
                display: flex;
                flex-direction: column;
                gap: 30px;
                
                .voice-item {
                    background: white;
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                    overflow: hidden;
                    
                    .voice-content {
                        display: flex;
                        flex-direction: column;
                        
                        .voice-image {
                            width: 100%;
                            max-width: 100%;
                            height: auto;
                            background: #f0f0f0;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            
                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }
                        }
                        
                        .voice-text {
                            padding: 30px 20px;
                            
                            .voice-title {
                                font-size: 18px;
                                font-weight: 700;
                                color: #333;
                                margin-bottom: 15px;
                                line-height: 1.4;
                            }
                            
                            .voice-excerpt {
                                color: #666;
                                line-height: 1.6;
                                margin-bottom: 0;
                                font-size: 14px;
                                
                                p {
                                    margin-bottom: 12px;
                                    
                                    &:last-child {
                                        margin-bottom: 0;
                                    }
                                }

                                .voice-excerpt-wrapper {
                                    margin-bottom: 20px;
                                    padding: 16px;
                                    background: #f8f9ff;

                                    &:last-child {
                                        margin-bottom: 0;
                                    }

                                    .voice-excerpt-question {
                                        font-weight: 600;
                                        color: #171c60;
                                        font-size: 14px;
                                        line-height: 1.5;
                                        margin-bottom: 10px;
                                        position: relative;
                                    }

                                    .voice-excerpt-answer {
                                        color: #444;
                                        font-size: 14px;
                                        line-height: 1.6;
                                        margin: 0;
                                        position: relative;
                                    }
                                }
                            }
                            
                            .voice-link {
                                background: #289dd3;
                                color: white;
                                padding: 10px 20px;
                                border-radius: 4px;
                                text-decoration: none;
                                font-weight: 600;
                                font-size: 13px;
                                display: inline-block;
                                transition: background 0.3s ease;
                                
                                &:hover {
                                    background: #2186b8;
                                    text-decoration: none;
                                    color: white;
                                }
                            }
                        }
                    }
                }
                
                .no-voices {
                    text-align: center;
                    color: #666;
                    font-size: 14px;
                    padding: 40px 20px;
                }
            }
        }
    }

    section#contact.contact-section {
        padding: 60px 0;
        background: #171c60;
        color: #333;
        text-align: center;
        
        .container {
            max-width: 100%;
            padding: 0 15px;

            .contact-header {
                margin-bottom: 30px;
                
                h2.contact-title {
                    font-size: 20px;
                    color: white;
                    font-weight: 700;
                    margin-bottom: 20px;
                    line-height: 1.3;
                }
    
                p.contact-description {
                    font-size: 14px;
                    color: rgba(255, 255, 255, 0.9);
                    line-height: 1.6;
                    max-width: 800px;
                    margin: 0 auto;
                }
            }
    
            .contact-form-container {
                margin: 0 auto;
                padding: 40px 20px;
                background: white;
    
                .wpcf7-form {
                    .form-group {
                        margin-bottom: 30px;
                        text-align: left;

                        p {
                            margin: 0;
                        }
    
                        label {
                            display: block;
                            font-size: 16px;
                            color: #333;
                            font-weight: 600;
                            margin-bottom: 8px;
    
                            .required {
                                background: #dc3545;
                                color: white;
                                font-size: 12px;
                                padding: 2px 8px;
                                margin-left: 8px;
                                font-weight: 500;
                            }
                        }

                        .wpcf7-form-control-wrap {
                            display: block;
                            width: 100%;
                        }
    
                        .wpcf7-form-control.wpcf7-text,
                        .wpcf7-form-control.wpcf7-email {
                            width: 100%;
                            padding: 16px 20px;
                            border: 1px solid #e0e0e0;
                            font-size: 14px;
                            color: #333;
                            background: white;
                            transition: border-color 0.3s ease, box-shadow 0.3s ease;
                            box-sizing: border-box;
    
                            &:focus {
                                outline: none;
                                border-color: #289dd3;
                                box-shadow: 0 0 0 3px rgba(40, 157, 211, 0.1);
                            }
                        }
                        
                        .wpcf7-form-control.wpcf7-textarea {
                            width: 100%;
                            padding: 16px 20px;
                            border: 1px solid #e0e0e0;
                            font-size: 14px;
                            color: #333;
                            background: white;
                            transition: border-color 0.3s ease, box-shadow 0.3s ease;
                            box-sizing: border-box;
                            resize: vertical;
                            min-height: 150px;
                            line-height: 1.6;
                            
                            &:focus {
                                outline: none;
                                border-color: #289dd3;
                                box-shadow: 0 0 0 3px rgba(40, 157, 211, 0.1);
                            }
                        }
                    }
    
                    .form-submit {
                        text-align: center;
                        margin-top: 40px;

                        p {
                            margin: 0;

                            &:first-child {
                                margin-bottom: 20px;
                            }
                        }
    
                        .wpcf7-submit.btn-contact-submit {
                            background: #FFA500;
                            color: white;
                            font-size: 18px;
                            padding: 18px 60px;
                            border: none;
                            cursor: pointer;
                            transition: all 0.3s ease;
                            min-width: 280px;
                            font-family: 游明朝, YuMincho, 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;

                            &:hover {
                                opacity: 0.8;
                            }
                        }
    
                        p.privacy-note {
                            font-size: 12px;
                            color: #666;
                            line-height: 1.5;
                            
                            a {
                                color: #289dd3;
                                text-decoration: none;

                                &:hover {
                                    text-decoration: underline;
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    section.faq-section {
        padding: 60px 0;
        background: #171c60;
        color: white;
    
        .container {
            max-width: 100%;
            padding: 0 15px;

            .faq-header {
                text-align: center;
                margin-bottom: 40px;
                position: relative;
                
                h2.faq-title {
                    font-size: 24px;
                    font-weight: 700;
                    margin-bottom: 40px;
                    line-height: 1.3;
                    color: white;
                }
            }
    
            .faq-list {
                max-width: 100%;
                padding: 0 15px;
                margin: 0 auto;
    
                details.accordion.faq-item {
                    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                    margin-bottom: 0;
                    background: transparent;
                    color: inherit;
                    overflow: hidden;
                    transition: all 0.3s ease;
    
                    summary.accordion-header.faq-question {
                        display: flex;
                        align-items: center;
                        padding: 20px 0;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        position: relative;
                        background: transparent;
                        border: none;
                        width: 100%;
                        color: inherit;
                        font-family: inherit;
                        text-align: left;
                        list-style: none;
                        outline: none;
                        
                        .faq-q {
                            font-size: 18px;
                            font-weight: 700;
                            color: white;
                            margin-right: 15px;
                            flex-shrink: 0;
                        }
    
                        .faq-separator {
                            font-size: 18px;
                            color: rgba(255, 255, 255, 0.6);
                            margin-right: 15px;
                            flex-shrink: 0;
                        }
    
                        .faq-question-text {
                            font-size: 14px;
                            color: white;
                            line-height: 1.6;
                            flex: 1;
                        }
    
                        .faq-arrow {
                            font-size: 14px;
                            color: rgba(255, 255, 255, 0.7);
                            transition: transform 0.3s ease;
                            flex-shrink: 0;
                            margin-left: 20px;
                        }
                    }

                    &[open] {
                        .faq-arrow {
                            transform: rotate(180deg);
                        }
                    }
    
                    .accordion-content.faq-answer {
                        display: flex;
                        align-items: flex-start;
                        padding: 0;
                        max-height: 0;
                        overflow: hidden;
                        transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                                    padding 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                                    opacity 0.3s ease;
                        opacity: 0;
                        
                        .faq-a {
                            font-size: 18px;
                            font-weight: 700;
                            color: white;
                            margin-right: 15px;
                            flex-shrink: 0;
                            margin-top: 5px;
                        }
                        
                        .faq-separator {
                            font-size: 18px;
                            color: rgba(255, 255, 255, 0.6);
                            margin-right: 15px;
                            flex-shrink: 0;
                        }
    
                        .faq-answer-text {
                            font-size: 14px;
                            color: rgba(255, 255, 255, 0.9);
                            line-height: 1.8;
                            margin-bottom: 20px;
                            flex: 1;
                        }
                    }
                }
            }
        }
    }
    /* スマホ用フッターCTA */
    .footer-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e0e0e0;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

        &.is-visible {
            transform: translateY(0);
        }

        .footer-cta-container {
            display: flex;
            width: 100%;
            
            .footer-cta-btn {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 12px 8px;
                text-decoration: none;
                transition: all 0.3s ease;
                min-height: 70px;
                
                &.footer-cta-contact {
                    background: #171c60;
                    color: white;
                    border-right: 1px solid rgba(255, 255, 255, 0.2);
                    
                    &:hover {
                        background: #141856;
                        color: white;
                        text-decoration: none;
                    }
                }
                
                &.footer-cta-phone {
                    background: #289dd3;
                    color: white;
                    
                    &:hover {
                        background: #2186b8;
                        color: white;
                        text-decoration: none;
                    }
                }
                
                .footer-cta-icon {
                    margin-bottom: 4px;
                    
                    svg {
                        width: 24px;
                        height: 24px;
                    }
                }
                
                .footer-cta-text {
                    font-size: 14px;
                    font-weight: normal;
                    line-height: 1;
                    font-family: "Noto Sans JP", sans-serif;
                }
            }
        }
    }
    header#lp-site-header.lp-site-header {
        .container {
            .lp-header-content {
                .lp-header-contact {
                    a.lp-contact-btn {
                        &[href^="tel:"] {
                            display: none !important;
                        }
                    }
                }
            }
        }
    }
    .webmarketing-lp-footer.container {
        max-width: 100%;
        padding: 0 15px;
        .footerBox {
            .box01 {
                margin-bottom: 0;
            }
            .box03 {
                .add.logo {
                    font-size: 14px;
                    .ja {
                        text-align: left;
                    }
                    .en {
                        text-align: left;
                    }
                }
                .sns {
                    justify-content: center;
                    margin-top: 30px;
                }
            }
        }
    }
    .palla {
        overflow: visible;
        .bg-palla {
            transform: none !important;
        }
    }
}
@media screen and (max-width: 375px) {
    header#lp-site-header.lp-site-header {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        max-height: 100px;

        .lp-site-header-toptext {
            font-size: 12px;
            max-width: 100%;
            padding: 0 15px;
        }

        .container {
            max-width: 100%;
            padding: 0 15px;

            .lp-header-content {
                .lp-site-header-logo {
                    margin-top: 4px;

                    img {
                        width: 150px;
                    }
                }

                .lp-header-contact {
                    width: auto;
                    display: flex;
                    flex-direction: column;
                    gap: 4px;

                    a.lp-contact-btn {
                        width: 100%;
                        height: 40px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background: #000766;
                        color: white;
                        padding: 10px 20px;
                        text-decoration: none;
                        font-weight: 600;
                        font-size: 12px;
                        
                        /* 電話番号を非表示 */
                        &[href^="tel:"] {
                            display: none;
                        }
                    }
                }
            }
        }
    }
    section.hero-section {
        margin-top: 0;
        height: calc(100vh - 80px);

        .container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            background-image: none !important;

            .hero-content {
                height: auto;

                .hero-text {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;

                    h1.hero-title {
                        font-size: 8vw;

                        .title-main {
                            font-size: 8vw;

                            .title-main-sub {
                                font-size: 8vw;
                                text-align: center;
                            }
                        }

                        .title-and {
                            display: block;
                            font-size: 8vw;
                            text-align: center;
                        }
                    }

                    .hero-image {
                        display: block;
                        width: 70%;
                        margin-bottom: 0;
                    }

                    .hero-keywords {
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        gap: 10px;
                        margin-bottom: 20px;
                        width: 90%;

                        .keyword-item {
                            padding: 0;
                            border-radius: 50%;
                            width: auto;
                            height: auto;
                            aspect-ratio: 1/1;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

                            .keyword-text {
                                color: #289dd3;
                                font-size: 14px;
                                text-align: center;

                                .sp-only {
                                    display: block;
                                }
                            }
                        }
                    }

                    p.hero-subtitle {
                        display: none;
                    }
                }

                .hero-cta {
                    position: inherit;
                    left: inherit;
                    bottom: inherit;
                    transform: inherit;
                    z-index: inherit;
                    width: 80%;
                    margin: 0 auto;

                    a.btn-primary {
                        padding: 15px;
                        font-size: 14px;
                    }
                }
            }
        }
    }

    /* Thanks Section（スマホ用） */
    section.thanks-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        
        .container {
            .thanks-content {
                max-width: 100%;
                margin: 0 auto;
                text-align: center;
                padding: 0 15px;
                
                .thanks-icon {
                    margin-bottom: 30px;
                    
                    svg {
                        width: 60px;
                        height: 60px;
                        animation: checkmark 0.6s ease-in-out 0.5s both;
                    }
                }
                
                .thanks-title {
                    font-size: 24px;
                    font-weight: 700;
                    color: #171c60;
                    margin-bottom: 20px;
                    line-height: 1.3;
                }
                
                .thanks-message {
                    .thanks-main-text {
                        font-size: 16px;
                        color: #333;
                        line-height: 1.8;
                        margin-bottom: 40px;
                    }
                    
                    .thanks-info-box {
                        background: white;
                        padding: 30px 20px;
                        border-radius: 12px;
                        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
                        margin-bottom: 30px;
                        text-align: left;
                        
                        .thanks-subtitle {
                            font-size: 20px;
                            font-weight: 700;
                            color: #171c60;
                            margin-bottom: 25px;
                            text-align: center;
                        }
                        
                        .thanks-steps {
                            .thanks-step {
                                display: flex;
                                align-items: flex-start;
                                margin-bottom: 25px;
                                
                                &:last-child {
                                    margin-bottom: 0;
                                }
                                
                                .step-number {
                                    width: 32px;
                                    height: 32px;
                                    background: #289dd3;
                                    color: white;
                                    border-radius: 50%;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    font-weight: 700;
                                    font-size: 16px;
                                    margin-right: 15px;
                                    flex-shrink: 0;
                                }
                                
                                .step-content {
                                    flex: 1;
                                    
                                    h3 {
                                        font-size: 16px;
                                        font-weight: 700;
                                        color: #333;
                                        margin-bottom: 6px;
                                        line-height: 1.4;
                                    }
                                    
                                    p {
                                        color: #666;
                                        line-height: 1.7;
                                        margin: 0;
                                        font-size: 14px;
                                    }
                                }
                            }
                        }
                    }
                    
                    .thanks-contact-info {
                        background: #289dd3;
                        color: white;
                        padding: 25px 20px;
                        border-radius: 8px;
                        margin-bottom: 30px;
                        
                        h3 {
                            font-size: 16px;
                            font-weight: 700;
                            margin-bottom: 15px;
                            line-height: 1.4;
                        }
                        
                        .phone-info {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            gap: 6px;
                            
                            .phone-number {
                                font-size: 24px;
                                font-weight: 700;
                                color: white;
                            }
                            
                            .phone-hours {
                                font-size: 13px;
                                color: rgba(255, 255, 255, 0.9);
                            }
                        }
                    }
                }
                
                .thanks-actions {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 15px;
                    margin-top: 30px;
                    
                    .btn-back-to-lp,
                    .btn-home {
                        padding: 14px 24px;
                        border-radius: 8px;
                        text-decoration: none;
                        font-weight: 600;
                        font-size: 14px;
                        transition: all 0.3s ease;
                        width: 100%;
                        max-width: 280px;
                        text-align: center;
                    }
                    
                    .btn-back-to-lp {
                        background: #171c60;
                        color: white;
                        
                        &:hover {
                            background: #141856;
                            text-decoration: none;
                            color: white;
                            transform: translateY(-2px);
                            box-shadow: 0 4px 16px rgba(23, 28, 96, 0.3);
                        }
                    }
                    
                    .btn-home {
                        background: white;
                        color: #171c60;
                        border: 2px solid #171c60;
                        
                        &:hover {
                            background: #171c60;
                            color: white;
                            text-decoration: none;
                            transform: translateY(-2px);
                            box-shadow: 0 4px 16px rgba(23, 28, 96, 0.2);
                        }
                    }
                }
            }
        }
    }

    /* フッターCTAがあるときのページ下部余白 */
    body {
        padding-bottom: 70px;
    }
    
    .webmarketing-lp-footer.container {
        max-width: 100%;
        padding: 0 15px;
        .footerBox {
            .box01 {
                margin-bottom: 0;
            }
            .box03 {
                .add.logo {
                    font-size: 14px;
                    .ja {
                        text-align: left;
                    }
                    .en {
                        text-align: left;
                    }
                }
                .sns {
                    justify-content: center;
                    margin-top: 30px;
                }
            }
        }
    }
}

.webmarketing-lp-footer.container {
    .footerBox {
        .box01 {
            height: auto;
            .top {
                img {
                }
            }
        }
        .box02 {
            .footer-menu {
                .left {
                    .f-company {
                        .en {
                        }
                        .ja {
                        }
                    }
                }
            }
        }
        .box03 {
            .add.logo {
                img {
                    margin-bottom: 30px;
                }
                .ja {
                }
                .en {
                }
            }
            .sns {
                display: flex;
                justify-content: flex-start;
                margin-top: 50px;
                a {
                    display: block;
                    margin-right: 10px;
                    width: 50px;
                    height: 50px;
                    img {
                    }
                }
            }
        }
    }
}

@media (max-width: 768px) {
    .webmarketing-lp-footer.container {
        .footerBox {
            .box01 {
                height: auto;
                .top {
                    img {
                    }
                }
            }
            .box02 {
                .footer-menu {
                    .left {
                        .f-company {
                            .en {
                            }
                            .ja {
                            }
                        }
                    }
                }
            }
            .box03 {
                .add.logo {
                    img {
                        margin-bottom: 30px;
                    }
                    .ja {
                        text-align: left;
                    }
                    .en {
                        text-align: left;
                    }
                }
                .sns {
                    display: flex;
                    justify-content: center;
                    margin-top: 50px;
                    a {
                        display: block;
                        margin-right: 10px;
                        width: 50px;
                        height: 50px;
                        img {
                        }
                    }
                }
            }
        }
    }
}