@charset "UTF-8";

/* =========================================
   Base Layout
========================================= */
.LP {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    position: relative;
    background-color: var(--color-white);
    overflow: hidden;

    @media screen and (max-width: 768px) {
        width: 100%;
    }
}

.sp-br {
    display: none;

    @media screen and (max-width: 768px) {
        display: block;
    }
}

/* =========================================
   First View Section
========================================= */
.fv {
    display: flex;
    flex-direction: column;
    height: 90vh;
    min-height: 700px;
    align-items: flex-start;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: var(--color-white);
    overflow: hidden;

    @media screen and (max-width: 768px) {
        height: 100vh;
        height: 100dvh;
        min-height: 600px;
    }

    .pt3-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        perspective: 1000px;
    }

    .pt3-rect {
        position: absolute;
        top: 50%;
        left: 50%;
        border: 2px solid;
        box-sizing: border-box;
        transform-style: preserve-3d;
    }

    .copy-wrapper {
        position: absolute;
        top: 38%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 950px;

        @media screen and (max-width: 768px) {
            width: 95%;
            margin-top: -40px;
        }

        .title-img {
            width: 100%;
            max-width: 850px;
            height: auto;

            @media screen and (max-width: 768px) {
                max-width: 90%;
            }
        }

        .neon-box {
            position: relative;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.85);
            padding: 30px 30px;
            align-self: flex-end;
            z-index: 5;
            margin-top: -110px;
            margin-right: 20px;

            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                border-radius: inherit;
                padding: 3px;
                background: linear-gradient(90deg, #ff499e, #ffeb3b, #4df886, #00f0ff);
                -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
                -webkit-mask-composite: xor;
                mask-composite: exclude;
                pointer-events: none;
            }

            @media screen and (max-width: 768px) {
                padding: 15px 20px;
                align-self: center;
                margin-top: -10px;
                margin-right: 0;
                width: auto;
                max-width: 90%;
            }

            .main-copy {
                position: relative;
                z-index: 1;
                font-family: var(--font-bold);
                font-weight: 700;
                color: var(--color-primary);
                font-size: 24px;
                letter-spacing: 2px;
                margin: 0;
                white-space: nowrap;

                @media screen and (max-width: 768px) {
                    font-size: clamp(12px, 3.5vw, 18px);
                }
            }
        }
    }

    .bottom-area {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        z-index: 999;

        @media screen and (max-width: 768px) {
            justify-content: center;
        }

        .white-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 130px;
            background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
            z-index: 1;
        }

        .cta-link {
            position: relative;
            z-index: 2;
            width: 319px;
            margin-right: 15px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
            display: block;

            &:hover {
                transform: translateY(-4px);
            }

            @media screen and (max-width: 768px) {
                width: 90%;
                max-width: 320px;
                margin-right: 0;
                margin-bottom: 10px;
            }

            img {
                width: 100%;
                height: auto;
                display: block;
            }
        }
    }

    .header {
        position: absolute;
        top: 30px;
        left: 40px;
        z-index: 10;

        @media screen and (max-width: 768px) {
            top: 20px;
            left: 20px;
        }

        .logo {
            width: 120px;
            height: auto;
            filter: brightness(0);

            @media screen and (max-width: 768px) {
                width: 90px;
            }
        }
    }
}

/* =========================================
   About Section
========================================= */
.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 100px 0px 120px;
    position: relative;
    width: 100%;
    background-color: var(--color-white);

    @media screen and (max-width: 768px) {
        padding: 60px 20px 80px;
        gap: 24px;
    }

    .headings {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;

        .sub {
            font-family: var(--font-bold);
            font-weight: 700;
            font-size: 22px;
            text-align: center;
            letter-spacing: 4px;
            line-height: 1.4;
            margin: 0;

            @media screen and (max-width: 768px) {
                font-size: clamp(14px, 4vw, 18px);
                letter-spacing: 2px;
            }
        }

        .main {
            font-family: var(--font-bold);
            font-weight: 700;
            font-size: 56px;
            text-align: center;
            letter-spacing: 6.40px;
            line-height: 1.4;
            white-space: nowrap;
            margin: 4px 0 0 0;

            @media screen and (max-width: 768px) {
                font-size: clamp(16px, 6.5vw, 28px);
                letter-spacing: 0px;
                white-space: nowrap;
            }
        }
    }

    .desc {
        font-weight: 500;
        font-size: 20px;
        text-align: center;
        letter-spacing: 1.60px;
        line-height: 1.6;
        margin: 0;

        @media screen and (max-width: 768px) {
            font-size: clamp(14px, 4vw, 16px);
            letter-spacing: 1px;
            line-height: 1.8;
        }
    }
}

/* =========================================
   Problem Section
========================================= */
.problem {
    position: relative;
    width: 100%;
    height: 919px;

    @media screen and (max-width: 768px) {
        height: auto;
        padding-bottom: 60px;
    }

    .inner {
        position: relative;
        top: 35px;
        left: calc(50% - 600px);
        width: 1200px;
        height: 852px;
        border-radius: 16px;

        @media screen and (max-width: 768px) {
            width: 95%;
            left: 2.5%;
            height: auto;
            padding-top: 150px;
            padding-bottom: 40px;
        }

        .bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 630px;
            object-fit: cover;

            @media screen and (max-width: 768px) {
                height: 100%;
                border-radius: 16px;
            }
        }

        .ja-title {
            position: absolute;
            top: 38px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-bold);
            font-weight: 550;
            color: var(--color-white);
            font-size: 18px;
            letter-spacing: 1.80px;
            margin: 0;

            @media screen and (max-width: 768px) {
                font-size: 14px;
                letter-spacing: 1.4px;
            }
        }

        .en-title {
            position: absolute;
            top: 64px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-bold);
            font-weight: 600;
            color: var(--color-white);
            font-size: 56px;
            letter-spacing: 5.60px;
            margin: 0;

            @media screen and (max-width: 768px) {
                font-size: 40px;
                letter-spacing: 4px;
            }
        }

        .card-list {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            position: absolute;
            top: 175px;
            left: calc(50% - 400px);
            transform: none;

            @media screen and (max-width: 768px) {
                position: relative;
                top: auto;
                transform: none;
                left: 0;
                width: 100%;
                padding: 0 16px;
                box-sizing: border-box;
            }

            .card {
                display: flex;
                width: 460px;
                align-items: center;
                justify-content: center;
                padding: 16px 36px;
                background-color: var(--color-card-dark);
                border-radius: 8px;

                @media screen and (max-width: 768px) {
                    width: 100%;
                    padding: 16px;
                }

                .text {
                    font-family: var(--font-bold);
                    font-weight: 500;
                    color: var(--color-white);
                    font-size: 16px;
                    text-align: center;
                    letter-spacing: 1.60px;
                    line-height: 25.6px;
                    margin: 0;

                    @media screen and (max-width: 768px) {
                        font-size: clamp(12px, 3.5vw, 15px);
                        letter-spacing: 0px;
                        line-height: 1.6;
                        white-space: nowrap;
                    }

                    &.is-lg {
                        font-size: 18px;

                        @media screen and (max-width: 768px) {
                            font-size: clamp(12px, 3.5vw, 15px);
                        }
                    }
                }
            }
        }

        .bottom-box {
            display: flex;
            width: 840px;
            align-items: center;
            justify-content: center;
            padding: 24px;
            position: absolute;
            top: 566px;
            left: calc(50% - 400px);
            transform: none;
            background-color: var(--color-white);
            border-radius: 8px;
            box-shadow: var(--shadow-lg);

            @media screen and (max-width: 768px) {
                position: relative;
                top: auto;
                transform: none;
                left: 0;
                width: 90%;
                margin: 40px auto 40px;
            }

            .text {
                font-family: var(--font-bold);
                font-size: 24px;
                text-align: center;
                letter-spacing: 2.40px;
                line-height: 1.8;
                margin: 0;

                @media screen and (max-width: 768px) {
                    font-size: clamp(11px, 3.4vw, 15px);
                    letter-spacing: 0px;
                    white-space: nowrap;
                }

                .normal {
                    font-weight: 700;
                }

                .highlight {
                    font-family: var(--font-black);
                    font-weight: 900;
                    font-size: 52px;

                    @media screen and (max-width: 768px) {
                        font-size: 26px;
                        display: block;
                        margin: 4px 0;
                    }
                }
            }
        }
    }
}

/* =========================================
   Solution Section
========================================= */
.solution {
    position: relative;
    width: 100%;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 100px;

    @media screen and (max-width: 768px) {
        padding: 60px 20px 80px;
    }

    .bg-shape {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 45%;
        background-color: var(--color-bg-light);
        z-index: 0;
    }

    .title-area {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 68px;

        @media screen and (max-width: 768px) {
            margin-bottom: 40px;
        }

        .ja-label {
            font-family: var(--font-bold);
            font-weight: 750;
            font-size: 18px;
            letter-spacing: 2px;
            margin: 0;

            @media screen and (max-width: 768px) {
                font-size: 14px;
                letter-spacing: 1.4px;
            }
        }

        .en-title {
            font-family: var(--font-bold);
            font-weight: 600;
            font-size: 56px;
            letter-spacing: 5.60px;
            margin: 0;

            @media screen and (max-width: 768px) {
                font-size: 40px;
                letter-spacing: 4px;
            }
        }
    }

    .desc-area {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 30px;
        width: 100%;

        .heading {
            font-family: var(--font-bold);
            font-weight: 700;
            font-size: 32px;
            letter-spacing: 2.80px;
            margin: 0;

            @media screen and (max-width: 768px) {
                font-size: 20px;
                letter-spacing: 2px;
                margin-bottom: 8px;
            }
        }

        .body {
            font-weight: 500;
            font-size: 20px;
            letter-spacing: 1.60px;
            line-height: 1.6;
            text-align: center;
            margin: 0;

            @media screen and (max-width: 768px) {
                font-size: clamp(11px, 3.5vw, 15px);
                letter-spacing: 0px;
                line-height: 1.8;
                white-space: nowrap;
            }

            .bold {
                font-family: var(--font-bold);
                font-weight: 700;
                font-size: 22px;

                @media screen and (max-width: 768px) {
                    font-size: clamp(12px, 4vw, 17px);
                }
            }

            .highlight {
                font-family: var(--font-bold);
                font-weight: 700;
                background: linear-gradient(90deg, #FF3FEA, #08ACFF);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
        }
    }

    .icons-row {
        position: relative;
        z-index: 1;
        margin-bottom: 40px;

        @media screen and (max-width: 768px) {
            margin-bottom: 16px;
        }

        img {
            width: 848px;
            max-width: 100%;
            height: auto;

            @media screen and (max-width: 768px) {
                width: 95%;
                margin: 0 auto;
                display: block;
            }
        }
    }

    .bottom-desc {
        position: relative;
        z-index: 1;
        width: 100%;

        .text {
            font-weight: 500;
            font-size: 20px;
            letter-spacing: 1.60px;
            line-height: 1.6;
            text-align: center;
            margin: 0;

            @media screen and (max-width: 768px) {
                font-size: 15px;
                letter-spacing: 1px;
                line-height: 1.8;
            }

            .bold {
                font-family: var(--font-bold);
                font-weight: 700;
                font-size: 24px;

                @media screen and (max-width: 768px) {
                    font-size: 18px;
                }
            }

            .highlight {
                background: linear-gradient(90deg, #FF3FEA, #08ACFF);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
        }
    }
}

/* =========================================
   Benefit Section
========================================= */
.benefit {
    position: relative;
    width: 100%;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0 0;

    .dark-bg {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 450px;
        z-index: 0;
        background-image: url('../img/benefit-bg.jpg');
        background-size: cover;
        background-position: center top;
    }

    .header {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        margin-bottom: 60px;
        width: 100%;
        text-align: center;
        transform: translateX(-4px);

        @media screen and (max-width: 768px) {
            margin-bottom: 40px;
        }

        .ja-label {
            font-family: var(--font-bold);
            font-weight: 700;
            font-size: 18px;
            margin: 0;
            letter-spacing: 2px;

            @media screen and (max-width: 768px) {
                font-size: 14px;
                letter-spacing: 1.4px;
            }
        }

        .en-title {
            font-family: var(--font-bold);
            font-weight: 600;
            font-size: 56px;
            margin: 0 0 40px;
            letter-spacing: 6px;

            @media screen and (max-width: 768px) {
                font-size: 40px;
                margin: 0 0 24px;
                letter-spacing: 4px;
            }
        }

        .lead {
            font-family: var(--font-bold);
            font-weight: 700;
            font-size: 22px;
            margin: 0;
            letter-spacing: 2.0px;

            @media screen and (max-width: 768px) {
                font-size: clamp(12px, 3.5vw, 16px);
                white-space: nowrap;
                letter-spacing: 0px;
            }
        }
    }

    .cards {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        width: 800px;
        gap: 8px;

        @media screen and (max-width: 768px) {
            width: 90%;
            gap: 20px;
        }

        .card {
            position: relative;
            width: 100%;
            height: 246px;

            @media screen and (max-width: 768px) {
                height: auto;
                padding: 30px 24px;
                border-radius: 8px;
                box-shadow: var(--shadow-sm);
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: 1;

                @media screen and (max-width: 768px) {
                    border-radius: 8px;
                }
            }

            .student-img {
                position: absolute;
                z-index: 2;

                @media screen and (max-width: 768px) {
                    position: relative;
                    top: auto !important;
                    bottom: auto !important;
                    left: auto !important;
                    right: auto !important;
                    height: 160px;
                    width: auto;
                    margin-bottom: 16px;
                }
            }

            .content {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 5;
                display: flex;
                flex-direction: column;
                gap: 12px;
                width: 460px;

                @media screen and (max-width: 768px) {
                    position: relative;
                    top: auto;
                    left: auto;
                    right: auto;
                    transform: none;
                    width: 100%;
                    text-align: center;
                    align-items: center;
                }

                .title {
                    font-family: var(--font-bold);
                    font-weight: 580;
                    color: var(--color-white);
                    font-size: 24px;
                    letter-spacing: 2.40px;
                    line-height: 1.5;
                    margin: 0;

                    @media screen and (max-width: 768px) {
                        color: var(--color-white);
                        text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.8);
                        font-size: 18px;
                        letter-spacing: 1px;
                    }
                }

                .label {
                    padding: 10px 12px;
                    border-radius: 4px;
                    font-family: var(--font-bold);
                    font-weight: 580;
                    color: var(--color-white);
                    font-size: 16px;
                    margin: 0;
                }
            }

            @media screen and (min-width: 769px) {
                &.is-green {
                    .bg {
                        border-radius: 8px 8px 0 0;
                    }

                    .student-img {
                        bottom: -8px;
                        left: 0px;
                        height: 290px;
                    }

                    .content {
                        right: -20px;
                        align-items: flex-start;
                        text-align: left;
                        text-shadow: 0px 0px 10px #015F0B, 0px 0px 28px #015F0B;
                    }
                }

                &.is-yellow {
                    .bg {
                        border-radius: 0;
                    }

                    .student-img {
                        bottom: -8px;
                        right: 0px;
                        height: 300px;
                    }

                    .content {
                        left: 90px;
                        align-items: flex-start;
                        text-align: left;
                        text-shadow: 0px 0px 10px #6E6C02, 0px 0px 28px #6E6C02;
                    }
                }

                &.is-blue {
                    .bg {
                        border-radius: 0;
                    }

                    .student-img {
                        bottom: -8px;
                        left: 0px;
                        height: 330px;
                    }

                    .content {
                        right: -100px;
                        align-items: flex-start;
                        text-align: left;
                        text-shadow: 0px 0px 10px #003E5D, 0px 0px 28px #003E5D;
                    }
                }

                &.is-pink {
                    .bg {
                        border-radius: 0 0 8px 8px;
                    }

                    .student-img {
                        bottom: 0px;
                        right: 0px;
                        height: 290px;
                    }

                    .content {
                        left: 40px;
                        align-items: flex-start;
                        text-align: left;
                        text-shadow: 0px 0px 10px #68005C, 0px 0px 30px #68005C;
                    }
                }
            }

            &.is-green .label {
                background-color: var(--color-accent-green);
                letter-spacing: 1.80px;
            }

            &.is-yellow .label {
                background-color: var(--color-accent-yellow);
                letter-spacing: 1.80px;
            }

            &.is-blue .label {
                background-color: var(--color-accent-blue);
                letter-spacing: 1.80px;
            }

            &.is-pink .label {
                background-color: var(--color-accent-pink);
                letter-spacing: 1.80px;
            }
        }
    }

    .bottom-area {
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 20px 0;

        .down-arrows {
            width: 41px;
            margin-bottom: 20px;

            @media screen and (max-width: 768px) {
                width: 24px;
                margin-bottom: 12px;
            }
        }

        .whitebox {
            background: var(--color-white);
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            margin-bottom: 24px;
            width: 812px;
            height: 115px;
            box-sizing: border-box;
            max-width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 32px;

            @media screen and (max-width: 768px) {
                width: 90%;
                height: auto;
                padding: 24px 16px;
            }

            .highlight-text {
                font-family: var(--font-bold);
                font-weight: 700;
                font-size: 32px;
                margin: 0;
                background: var(--grad-text);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;

                @media screen and (max-width: 768px) {
                    font-size: clamp(18px, 5vw, 24px);
                    text-align: center;
                    line-height: 1.5;
                }
            }
        }

        .subtext {
            font-family: var(--font-bold);
            font-weight: 500;
            color: var(--color-white);
            font-size: 20px;
            text-align: center;
            line-height: 1.8;
            margin: 0;

            @media screen and (max-width: 768px) {
                width: 90%;
                font-size: 14px;
                letter-spacing: 1px;
            }
        }
    }
}

/* =========================================
   Flow Section
========================================= */
.flow {
    position: relative;
    width: 100%;
    background-color: var(--color-bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0;

    .ja-title {
        font-family: var(--font-bold);
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 15px;

        @media screen and (max-width: 768px) {
            font-size: 14px;
            letter-spacing: 1.4px;
            margin-bottom: 8px;
        }
    }

    .en-title {
        font-family: var(--font-bold);
        font-weight: 700;
        font-size: 56px;
        margin-bottom: 30px;

        @media screen and (max-width: 768px) {
            font-size: 40px;
            letter-spacing: 4px;
            margin-bottom: 20px;
        }
    }

    .lead {
        font-family: var(--font-bold);
        font-weight: 700;
        font-size: 22px;
        margin: 32px 0 0;
        text-align: center;
        line-height: 1.6;
    }

    .highlight {
        background: linear-gradient(90deg, #FF3FEA, #08ACFF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .flow-steps-container {
        display: flex;
        flex-direction: column;
        gap: 80px;
        width: 100%;
        max-width: 900px;
        margin: 60px auto 0;
        position: relative;
        z-index: 1;

        @media screen and (max-width: 768px) {
            width: 90%;
            gap: 40px;
            margin: 40px auto 0;
        }
    }

    .flow-step {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        width: 100%;

        &.is-reverse {
            flex-direction: row-reverse;
        }

        @media screen and (max-width: 768px) {
            flex-direction: column !important;
            gap: 20px;
        }
    }

    /* ▼ スマホ画面（画像）のエリア ▼ */
    .step-image {
        flex: 1;
        display: flex;
        justify-content: center;

        .step-mockup-img {
            width: 100%;
            max-width: 280px;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            object-fit: cover;
            border: 8px solid #e2e8f0;

            @media screen and (max-width: 768px) {
                max-width: 240px;
                border-width: 6px;
            }
        }

        /* 画像がない場合のダミー枠（STEP5用） */
        .mockup-placeholder {
            width: 280px;
            height: 560px;
            background-color: #ffffff;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 8px #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            position: relative;
            overflow: hidden;

            @media screen and (max-width: 768px) {
                width: 240px;
                height: 480px;
            }

            .mockup-text {
                font-size: 14px;
                color: #64748b;
                font-weight: bold;
                line-height: 1.6;
            }
        }
    }

    /* ▼ テキストのエリア ▼ */
    .step-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;

        @media screen and (max-width: 768px) {
            background-color: #ffffff;
            padding: 24px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
            position: relative;
            width: 100%;
            align-items: center;
            text-align: center;
            margin-top: -40px;
            z-index: 2;

            &::before {
                content: "";
                position: absolute;
                top: -10px;
                left: 50%;
                transform: translateX(-50%);
                border-width: 0 10px 10px 10px;
                border-style: solid;
                border-color: transparent transparent #ffffff transparent;
            }
        }

        .step-number {
            font-family: var(--font-black);
            font-size: 48px;
            color: var(--color-bg-light);
            /* 白抜き黒フチ文字 */
            text-shadow:
                -1px -1px 0 var(--color-primary),
                1px -1px 0 var(--color-primary),
                -1px 1px 0 var(--color-primary),
                1px 1px 0 var(--color-primary);
            margin-bottom: 8px;
            line-height: 1;

            @media screen and (max-width: 768px) {
                font-size: 36px;
            }
        }

        .title {
            font-family: var(--font-bold);
            font-weight: 700;
            font-size: 28px;
            margin: 0 0 16px 0;
            color: var(--color-primary);

            @media screen and (max-width: 768px) {
                font-size: clamp(18px, 4.5vw, 22px);
                margin: 0 0 12px 0;
            }
        }

        .desc {
            font-weight: 500;
            font-size: 18px;
            margin: 0;
            line-height: 1.6;
            color: #334155;

            @media screen and (max-width: 768px) {
                font-size: clamp(13px, 3.5vw, 15px);
                line-height: 1.5;
            }
        }
    }
}

/* =========================================
   Point Section
========================================= */
.point {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 951px;
    background-color: var(--color-primary);

    @media screen and (max-width: 768px) {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 60px 0 80px;
    }

    .bg,
    .bg-overlay {
        position: absolute;
        top: calc(50% - 476px);
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        min-width: 1440px;
        height: 951px;

        @media screen and (max-width: 768px) {
            top: 0;
            left: 0;
            transform: none;
            width: 100%;
            min-width: auto;
            height: 100%;
            object-fit: cover;
        }
    }

    .bg {
        object-fit: cover;
    }

    .bg-overlay {
        mix-blend-mode: screen;
    }

    .ja-title {
        position: absolute;
        top: 79px;
        left: 50%;
        transform: translateX(-50%);
        font-family: var(--font-bold);
        font-weight: 550;
        color: var(--color-white);
        font-size: 18px;
        letter-spacing: 2px;
        padding-left: 2px;
        margin: 0;

        @media screen and (max-width: 768px) {
            position: relative;
            top: auto;
            left: 0;
            transform: none;
            margin: 0 0 30px 0;
            font-size: 14px;
            letter-spacing: 1.4px;
            padding-left: 1.4px;
        }
    }

    .en-title {
        position: absolute;
        top: 101px;
        left: 50%;
        transform: translateX(-50%);
        font-family: var(--font-bold);
        font-weight: 700;
        color: var(--color-white);
        font-size: 56px;
        letter-spacing: 4px;
        padding-left: 4px;
        margin: 0;

        @media screen and (max-width: 768px) {
            position: relative;
            top: auto;
            left: 0;
            transform: none;
            font-size: 40px;
            margin: 0 0 8px 0;
        }
    }

    .wrapper {
        position: absolute;
        width: 380px;
        display: flex;

        &.wrap-1 {
            top: 225px;
            left: calc(50% - 400px);
            height: 332px;

            .title-box {
                width: 243px;
            }
        }

        &.wrap-2 {
            top: 586px;
            left: calc(50% - 400px);
            height: 300px;

            .title-box {
                width: 332px;
            }
        }

        &.wrap-3 {
            top: 225px;
            left: calc(50% + 18px);
            height: 304px;

            .title-box {
                width: 350px;
            }
        }

        &.wrap-4 {
            top: 586px;
            left: calc(50% + 18px);
            height: 305px;

            .title-box {
                width: 240px;
            }
        }

        @media screen and (max-width: 768px) {
            position: relative !important;
            top: auto !important;
            left: auto !important;
            width: 90% !important;
            height: auto !important;
            margin: 0 auto 40px !important;
        }

        .item {
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100%;
            gap: 4px;
        }

        .img-wrapper {
            display: inline-flex;
            flex-direction: column;
            height: 164px;
            gap: 8px;

            @media screen and (max-width: 768px) {
                width: 100%;
                height: auto;
            }

            img {
                width: 380px;
                height: 193px;
                margin-bottom: -29px;
                aspect-ratio: 1.97;
                border-radius: 8px;

                &.is-cover {
                    object-fit: cover;
                }

                @media screen and (max-width: 768px) {
                    width: 100%;
                    height: auto;
                    margin-bottom: -15px;
                }
            }
        }

        .title-box {
            display: flex;
            align-items: center;
            padding: 0 16px;
            background: var(--grad-box);
            height: 46px;
            box-sizing: border-box;

            &.is-small {
                width: 256px !important;
            }

            @media screen and (max-width: 768px) {
                width: 90% !important;
                height: 46px;
                padding: 8px 16px;
                z-index: 2;
            }

            .title {
                font-family: var(--font-bold);
                font-weight: 550;
                color: var(--color-white);
                font-size: 24px;
                letter-spacing: 1.5px;
                margin: 0;
                line-height: 1;

                @media screen and (max-width: 768px) {
                    font-size: 20px;
                    line-height: 1.4;
                }
            }
        }

        .desc-box {
            padding: 8px 16px 24px;
            width: 400px;

            @media screen and (max-width: 768px) {
                width: 100%;
            }

            .text {
                color: var(--color-white);
                font-size: 16px;
                line-height: 1.4;
                margin: 0;

                @media screen and (max-width: 768px) {
                    font-size: 15px;
                }

                .font-medium {
                    font-weight: 350;
                }

                .font-medium-lg {
                    font-weight: 350;
                    font-size: 18px;
                }

                .font-bold-lg {
                    font-family: var(--font-bold);
                    font-size: 20px;
                    font-weight: 550;
                }
            }
        }
    }
}

/* =========================================
   Voice Section
========================================= */
.voice {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 502px;
    padding: 60px 0 0;
    box-sizing: border-box;
    background-image: url('../img/voice-bg.png');
    background-repeat: no-repeat;
    background-size: 110% auto;
    background-position: 170% 20%;

    @media screen and (max-width: 768px) {
        height: auto;
        padding-bottom: 80px;
        background-position: center bottom;
    }

    .ja-title {
        font-family: var(--font-bold);
        font-weight: 700;
        font-size: 18px;
        letter-spacing: 2px;
        margin: 50px 0 4px;
        z-index: 1;

        @media screen and (max-width: 768px) {
            font-size: 14px;
            letter-spacing: 1.4px;
            margin: 30px 0 4px;
        }
    }

    .en-title {
        font-family: var(--font-bold);
        font-weight: 700;
        font-size: 56px;
        letter-spacing: 6px;
        margin: 0 0 60px;
        z-index: 1;

        @media screen and (max-width: 768px) {
            font-size: 40px;
            letter-spacing: 4px;
            margin: 0 0 30px;
        }
    }

    .cards {
        display: flex;
        gap: 24px;
        z-index: 2;

        @media screen and (max-width: 768px) {
            width: 90%;
            flex-direction: column;
            margin-top: 24px;
        }

        .card {
            position: relative;
            width: 580px;
            height: 160px;
            border-radius: 8px;
            overflow: hidden;
            background-color: var(--color-white);
            box-shadow: 16px 16px 32px rgba(0, 0, 0, 0.2);

            @media screen and (max-width: 768px) {
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .bg {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: 1;
                object-position: left center;
            }

            .content {
                position: relative;
                z-index: 3;
                display: flex;
                align-items: center;
                height: 100%;
                padding: 0 16px 0 160px;

                @media screen and (max-width: 768px) {
                    padding: 24px 16px 24px 120px;
                    text-align: left;
                    justify-content: center;
                }

                .quote {
                    font-family: var(--font-bold);
                    font-weight: 700;
                    font-size: 16px;
                    line-height: 1.6;
                    margin: 0;

                    @media screen and (max-width: 768px) {
                        font-size: 13px;
                        line-height: 1.7;
                    }

                    @media screen and (max-width: 768px) {
                        br {
                            display: none;
                        }
                    }
                }
            }
        }
    }
}

/* =========================================
   CTA Section
========================================= */
.cta {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;

    .top-area {
        position: relative;
        width: 100%;
        height: 330px;
        box-sizing: border-box;
        padding: 0 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2;

        @media screen and (max-width: 768px) {
            height: 240px;
        }

        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(50% + 40px) calc(100% - 30px), 50% 100%, calc(50% - 40px) calc(100% - 30px), 0 calc(100% - 30px));
        background-image: url('../img/cta-bg1.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;

        &::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: linear-gradient(90deg, rgba(71, 175, 217, 0.85) 0%, rgba(71, 175, 217, 0.85) 30%, rgba(241, 91, 221, 0.85) 100%);
        }

        .content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            text-align: center;
            margin-top: -10px;

            .catch {
                font-family: var(--font-bold);
                font-weight: 700;
                letter-spacing: 4px;
                color: var(--color-white);
                font-size: clamp(32px, 4vw, 48px);
                margin-bottom: 30px;

                @media screen and (max-width: 768px) {
                    font-size: clamp(22px, 6vw, 28px);
                    letter-spacing: 2px;
                    margin-bottom: 20px;
                }
            }

            .sub-catch {
                color: var(--color-white);
                text-align: center;
                letter-spacing: 2px;
                margin: 0;

                @media screen and (max-width: 768px) {
                    letter-spacing: 1px;
                }

                .bold {
                    font-family: var(--font-bold);
                    font-weight: 500;
                    font-size: clamp(18px, 2vw, 22px);
                    display: block;
                    margin-bottom: 10px;

                    @media screen and (max-width: 768px) {
                        font-size: clamp(14px, 4vw, 16px);
                        margin-bottom: 8px;
                    }
                }

                .medium {
                    font-weight: 350;
                    font-size: 18px;

                    @media screen and (max-width: 768px) {
                        font-size: clamp(12px, 3.5vw, 14px);
                    }
                }
            }
        }
    }

    .bottom-area {
        position: relative;
        width: 100%;
        height: 470px;
        background-image: linear-gradient(rgba(16, 34, 56, 0.4) 0%, rgba(16, 34, 56, 0.4) 100%), url('../img/cta-bg3.png');
        background-size: cover;
        background-position: center 100%;
        padding: 50px 20px 80px;
        display: flex;
        justify-content: center;
        margin-top: -30px;
        z-index: 1;

        @media screen and (max-width: 768px) {
            height: auto;
            padding: 20px 20px 60px;
        }

        .content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
            text-align: center;
            width: 100%;
            max-width: 800px;
            margin-top: 30px;

            @media screen and (max-width: 768px) {
                margin-top: 20px;
            }

            .bridge {
                font-family: var(--font-bold);
                font-weight: 500;
                color: var(--color-white);
                font-size: 18px;
                margin: 0 0 -12px;

                @media screen and (max-width: 768px) {
                    font-size: 14px;
                    margin: 0 0 -8px;
                }
            }

            .highlight-box {
                background: var(--grad-box);
                padding: 16px 8px;
                border-radius: 4px;

                @media screen and (max-width: 768px) {
                    padding: 12px 8px;
                }

                .highlight-text {
                    font-family: var(--font-bold);
                    font-weight: 550;
                    letter-spacing: 2px;
                    color: var(--color-white);
                    font-size: clamp(18px, 2.5vw, 24px);
                    margin: 0;

                    @media screen and (max-width: 768px) {
                        font-size: clamp(14px, 4vw, 18px);
                        letter-spacing: 1px;
                    }
                }
            }

            .lead-box {
                display: flex;
                flex-direction: column;
                letter-spacing: 2px;
                align-items: center;
                gap: 12px;
                margin-top: 16px;

                @media screen and (max-width: 768px) {
                    gap: 8px;
                    letter-spacing: 1px;
                }

                .lead {
                    color: var(--color-white);
                    font-size: 18px;
                    line-height: 1.2;
                    margin-bottom: 2px;

                    @media screen and (max-width: 768px) {
                        font-size: clamp(14px, 4vw, 16px);
                        line-height: 1.5;
                    }
                }

                .note {
                    color: var(--color-white);
                    font-size: 14px;
                    margin: 0;

                    @media screen and (max-width: 768px) {
                        font-size: 11px;
                    }
                }
            }

            .btn-area {
                position: relative;
                margin-top: 40px;
                width: 100%;
                max-width: 450px;

                @media screen and (max-width: 768px) {
                    max-width: 95%;
                    margin-top: 30px;
                }

                .cta-image-link {
                    display: block;
                    width: 100%;
                    transition: transform 0.3s ease, filter 0.3s ease;

                    &:hover {
                        transform: translateY(-4px);
                        filter: brightness(1.05);
                    }

                    img {
                        width: 100%;
                        height: auto;
                        display: block;
                        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
                    }
                }
            }
        }
    }
}

/* =========================================
   Footer Section
========================================= */
.footer-area {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: var(--color-primary);

    @media screen and (max-width: 768px) {
        width: 100%;
    }
}