@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url('/fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Zen Kaku Gothic New';
    src: url('/fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Bold.ttf') format('truetype');
    font-weight: bold;
}

:root {
    --color-base: #343434;
    --color-primary-light: #316BEF;
    --color-primary: #39508E;
    --color-primary-dark: #182751;
    --color-separate-lighter: #B1B1B1;
    --color-separate-light: #939393;
    --color-separate: #8A8FA3;
    --color-white: #FFFFFF;
    --color-yellow: #F9D84A;
    --color-company-text: #939393;
    --color-project-accent: #6455C1;
    --color-linear-gradient-light-dark-orange: linear-gradient(109deg, #F0772A 0%, #F55221 100%);
    --color-linear-gradient-dark-light-orange: linear-gradient(109deg, #F55221 0%, #F0772A 100%);
    --color-linear-gradient-light-dark-blue: linear-gradient(229deg, #1A81CC 0%, #6754C1 100%);
    --color-linear-gradient-dark-light-blue: linear-gradient(229deg, #6754C1 0%, #1A81CC 100%);
}

:root {
    --font-size-small: 10px;
    --font-size-base: 12px;
    --font-size-large: 15px;
    --font-size-larger: 20px;
    --font-size-largest: 25px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
    :root {
        --font-size-small: 6px;
        --font-size-base: 8px;
        --font-size-large: 10px;
        --font-size-larger: 12px;
        --font-size-largest: 14px;
    }
}

.font-white {
    color: var(--color-white);
}

.font-bold {
    font-weight: bold;
}

.after-none::after {
    background-image: unset !important;
}

.d-none {
    display: none !important;
}

.faded-in {
    opacity: 1;
}

.faded-out {
    opacity: 0;
}

.border-bottom-none {
    padding-bottom: 0 !important;
    border: none !important;
}

.loader-wrapper {
    position: absolute;
    left: 45%;
    top: 35%;
}
.loader {
    width: 50px;
    --b: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 1px;
    background: conic-gradient(#0000 10%,#575757) content-box;
    -webkit-mask:
        repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),
        radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
    mask-composite: intersect;
    animation:l4 1s infinite steps(10);
}
@keyframes l4 {
    to{transform: rotate(1turn)
    }
}

@media screen and (min-width: 769px) {
    .mobile-content {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    .pc-content {
        display: none !important;
    }
}

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: var(--color-base);
    font-size: var(--font-size-base);
    font-style: normal;
}

header {
    z-index: 99;
    position: fixed;
    width: 100%;
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        background-color: var(--color-white);

        nav {
            display: flex;
            align-items: center;

            ul {
                display: flex;
                align-items: center;
                font-size: var(--font-size-large);
            }

            @media screen and (min-width: 769px) {
                ul {
                    gap: 2em;
                    padding: 0 2em;
                }
                @media screen and (min-width: 769px) and (max-width: 1024px) {
                    ul {
                        gap: 1em;
                        padding: 0 1em;
                    }
                }
            }
        }

        .button-container {
            display: flex;
        }
        @media screen and (min-width: 769px) {
            .button-container {
                gap: 15px;
            }
        }

        .logo-container {
            display: flex;
            align-items: center;
        }
    }

    .side-menu-container {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        transition: opacity 0.2s ease-in-out;
        nav {
            margin: 35px 20px;
            ul {
                li {
                    position: relative;
                    padding-left: 60px;
                    a {
                        display: block;
                        padding: 1rem 0;
                        font-weight: bold;
                        font-size: var(--font-size-larger);
                    }
                }
                li::before {
                    position: absolute;
                    content: '';
                    left: 0;
                    top: 37%;
                    width: 30px;
                    height: 25px;
                    background-image: url(/img/top/new_lp_202510/arrow_blue.svg);
                    background-size: contain;
                    background-repeat: no-repeat;
                }
            }
        }
        .under-container {
            margin: 0 20px;
            .button-container {
                position: relative;
                display: flex;
                justify-content: space-between;
                padding: 35px 0 15px;
                a {
                    width: 48%;
                    img {
                        width: 100%;
                        height: auto;
                        border-radius: 1rem;
                    }
                }
            }
            .button-container::before {
                position: absolute;
                content: '';
                top: 0;
                width: 100%;
                height: 5px;
                background-image: radial-gradient(circle, var(--color-separate-lighter) 1px, transparent 1px);
                background-size: 6px 6px;
            }
        }

        .link-client {
            display: block;
            text-align: center;
            width: 100%;
            padding: 1rem;
            background-color: var(--color-yellow);
            border-radius: 1rem;
            text-decoration: unset;
            color: var(--color-base);
            font-size: var(--font-size-large);
            font-weight: bold;
        }
    }

    img {
        height: 50px;
        width: auto;
    }
    @media screen and (min-width: 769px) {
        img {
            height: auto;
            margin: 0 3em;
        }
        @media screen and (min-width: 769px) and (max-width: 1024px) {
            img {
                margin: 0;
            }
        }
    }

    .link-client {
        color: #4E62C4;
        text-decoration: underline;
        letter-spacing: 2px;
    }
    .link-client:hover {
        text-decoration: unset;
    }

    .login-button {
        border: 2px solid #2659B7;
        border-radius: 1.2em;
        padding: 0.3em 1em;
        color: #2659B7;
    }
    .login-button:hover {
        background-color: #2659B7;
        color: var(--color-white);
    }

    .register-button {
        background: transparent var(--color-linear-gradient-light-dark-orange) 0 0 no-repeat padding-box;
        color: var(--color-white);
        border-radius: 1.2em;
        padding: 0.4em 1em;
    }
    .register-button:hover {
        background: transparent var(--color-linear-gradient-dark-light-orange) 0 0 no-repeat padding-box;
    }
}

.main-visual {
    padding-top: 50px;
    background-image: url(/img/top/new_lp_202510/mv_bg_sp.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;

    .main-visual-header-container {
        display: grid;
        justify-content: end;

        .link-client {
            width: fit-content;
            padding: 10px 25px;
            background-color: var(--color-yellow);
            border-radius: 0 0 0 15px;
        }
    }

    .main-visual-container {
        display: flex;
        align-items: stretch;

        h1 {
            z-index: 1;
            font-size: 3rem;
            font-weight: bold;
            line-height: 1em;
            background: transparent linear-gradient(337deg, var(--color-primary) 0%, #1D2847 100%) 0 0 no-repeat padding-box;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;

            span {
                font-size: 5rem;
                line-height: 1em;
            }
        }

        @media screen and (min-width: 769px) {
            h1 {
                color: #253A72;
                font-size: 4vw;
                background: unset;
                -webkit-background-clip: unset;
                background-clip: unset;
                -webkit-text-fill-color: unset;

                span {
                    font-size: 1.5em;
                    line-height: 1em;
                }
            }
        }

        h2 {
            z-index: 1;
            margin-top: 1em;
            font-size: 1rem;

            p {
                width: fit-content;
                margin: 0.5em 0;
                padding: 0.2em 1em;
                background: transparent linear-gradient(159deg, #313C5A 25%, #0A0C12 100%) 0 0 no-repeat padding-box;
                color: var(--color-white);
            }
        }

        @media screen and (min-width: 769px) {
            h2 {
                font-size: 1.5vw;

                p {
                    background: unset;
                    margin: 0;
                    padding: 0;
                    color: var(--color-base);
                }
            }
        }

        .register-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 35%;
            padding: 5% 0;

            .main-visual-text {
                padding-left: 2em;
            }

            @media screen and (min-width: 769px) {
                .main-visual-text {
                    display: flex;
                    flex-direction: column;
                }
            }

            .mobile-mv-img-container {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;

                .mv-img {
                    position: relative;
                    width: 100vw;

                    img {
                        width: 100%;
                        height: 100%;
                    }
                }
            }

            form {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
                width: 100%;
                padding: 1rem;
                background-color: var(--color-white);

                .input-container {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    gap: 0.8rem;
                    width: 100%;
                    padding: 0 0.5rem;
                    border: 1px solid #45549A;
                    border-radius: 8px;

                    .email-label {
                        position: relative;
                        white-space: nowrap;
                        text-align: center;
                        font-size: 10px;
                        color: #45549A;
                    }

                    @media screen and (min-width: 769px) {
                        .email-label {
                            color: var(--color-primary-dark);
                            font-size: var(--font-size-large);
                        }

                        .email-label::before,
                        .email-label::after {
                            content: '';
                            position: absolute;
                            top: 50%;
                            width: 25px;
                            height: 2px;
                            background-color: var(--color-primary-dark);
                        }

                        .email-label::before {
                            left: -30px;
                            -webkit-transform: rotate(45deg);
                            transform: rotate(45deg);
                        }

                        .email-label::after {
                            right: -30px;
                            -webkit-transform: rotate(-45deg);
                            transform: rotate(-45deg);
                        }
                    }

                    .separator {
                        width: 1px;
                        height: 60%;
                        background-color: var(--color-separate);
                    }

                    input {
                        flex-grow: 1;
                        max-width: 70%;
                        padding: 1rem 0;
                        font-size: var(--font-size-base)
                    }

                    @media screen and (min-width: 769px) {
                        input {
                            max-width: 100%;
                            width: 100%;
                            padding: 1em 0.5em;
                            border: solid 1px var(--color-separate);
                            border-radius: 6px;
                            box-shadow: inset 0 3px 6px #00000015;
                            font-size: var(--font-size-large);
                        }
                    }

                    input::placeholder {
                        color: #9A9EB1;
                    }

                    @media screen and (min-width: 769px) {
                        input::placeholder {
                            color: #8992BA;
                        }
                    }
                }

                @media screen and (min-width: 769px) {
                    .input-container {
                        flex-direction: column;
                        align-items: center;
                        gap: 0.5rem;
                        border: none;
                    }
                }

                button {
                    display: block;
                    width: 100%;
                    padding: 8px;
                    background: transparent var(--color-linear-gradient-light-dark-orange) 0 0 no-repeat padding-box;
                    border-radius: 30px;

                    span {
                        display: block;
                        padding: 12px;
                        border: 1px solid var(--color-white);
                        border-radius: 31px;
                        color: var(--color-white);
                    }
                }
                button:hover {
                    background: transparent var(--color-linear-gradient-dark-light-orange) 0 0 no-repeat padding-box;
                }

                .term-container {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 5px;

                    .term-link {
                        border-bottom: solid 1px;
                        cursor: pointer;
                        color: #808080;
                    }
                }
            }

            @media screen and (min-width: 769px) {
                form {
                    margin-top: 3rem;
                    padding: 5% 15%;
                    box-shadow: 0 0 30px #00000029;
                    border-radius: 0 35px 35px 0;
                }
            }
        }

        @media screen and (max-width: 768px) {
            .register-container {
                align-items: flex-start;
                width: 100%;
                padding: 0;
            }
        }

        .main-img {
            width: 65%;
            height: 65%;
            margin: 0 0 0 auto;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }

    .main-img-under-container {
        position: absolute;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: flex-end;
        gap: 1rem;
        bottom: 0;
        right: 0;

        .award-img {
            width: 40%;
            height: auto;

            img {
                width: 100%;
                height: 100%;
            }
        }
    }

    .note-text {
        position: absolute;
        bottom: 0;
        margin: 0 0 1%;
        cursor: pointer;
        text-decoration: underline;
        font-size: 2.5vw;
        color: var(--color-primary);
    }

    @media screen and (min-width: 769px) {
        .note-text {
            position: relative;
            bottom: unset;
            margin: 1rem 0;
            font-size: var(--font-size-base);
        }
    }
}
@media screen and (min-width: 769px) {
    .main-visual {
        padding-top: 77px;
        background-image: url(/img/top/new_lp_202510/mv_bg_pc.jpg);
    }
}

.sections-container {
    background-image: url(/img/top/new_lp_202510/bg_follow_sp.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    section {
        position: relative;
    }
    .bg-opacity-lightgray::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(/img/top/new_lp_202510/bg_lightgray_sp.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0.5;
        z-index: 0;
    }
    @media screen and (min-width: 769px) {
        .bg-opacity-lightgray::before {
            background-image: url(/img/top/new_lp_202510/bg_lightgray_pc.jpg);
            opacity: 0.8;
            z-index: -1;
        }
    }
    .bg-lightgray {
        background-image: url(/img/top/new_lp_202510/bg_lightgray_sp.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .bg-gray {
        position: relative;
        background-image: url(/img/top/new_lp_202510/bg_gray_sp.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .title-horizontal-linear-gradient {
        text-align: center;
        background: linear-gradient(180deg, #1A81CC 0%, #6754C1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 0.1rem;
        z-index: 1;
    }
    @media screen and (min-width: 769px) {
        .title-horizontal-linear-gradient {
            font-size: 3rem;
        }
    }
    .title-vertical-linear-gradient {
        text-align: center;
        background: var(--color-linear-gradient-light-dark-blue);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 3rem;
        font-weight: bold;
        letter-spacing: 0.1rem;
    }
    @media screen and (min-width: 769px) {
        .title-vertical-linear-gradient {
            font-size: 4rem;
        }
    }
    .title-white {
        text-align: center;
        font-size: 3rem;
        font-weight: bold;
        letter-spacing: 0.1rem;
        color: var(--color-white);
    }
    @media screen and (min-width: 769px) {
        .title-white {
            font-size: 4rem;
        }
    }
    .sub-title {
        text-align: center;
        font-size: 1rem;
    }
    @media screen and (min-width: 769px) {
        .sub-title {
            font-size: 1.5rem;
        }
    }
    .title-container {
        position: relative;
        display: grid;
        justify-content: center;
        padding: 1rem 0;
    }
    .title-container::after {
        content: '';
        position: absolute;
        left: 35%;
        bottom: 0;
        width: 30%;
        height: 1px;
        background-image: url(/img/top/new_lp_202510/title_bar_sp.svg);
    }
    @media screen and (min-width: 769px) {
        .title-container::after {
            background-image: url(/img/top/new_lp_202510/title_bar_pc.svg);
        }
    }
    .more-under-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2em;
        .more-button {
            display: flex;
            text-align: center;
            width: 90%;
            height: 4em;
            padding: 0.2em;
            background: var(--color-linear-gradient-light-dark-blue);
            border-radius: 2em;
            span {
                display: grid;
                align-items: center;
                width: 100%;
                height: 100%;
                border: 1px solid var(--color-white);
                border-radius: 2em;
                font-weight: bold;
                color: var(--color-white);
            }
            @media screen and (min-width: 769px) {
                span {
                    border-radius: 3em;
                }
            }
        }
        @media screen and (min-width: 769px) {
            .more-button {
                position: relative;
                left: 75vw;
                width: 20em;
                height: 5em;
                padding: 0.4em;
                border-radius: 3em;
                transition: width 0.3s ease;
            }
            .more-button:hover {
                width: 25em;
                background: var(--color-linear-gradient-dark-light-blue);
            }
        }
    }
    @media screen and (min-width: 769px) {
        .more-under-container {
            position: relative;
            display: block;
            margin-top: 4em;
        }
        .more-under-container::before {
            position: absolute;
            content: '';
            top: 50%;
            right: 0;
            width: 15vw;
            height: 2px;
            background-image: linear-gradient(to right, #262626 5px, transparent 3px);
            background-size: 10px 1px;
            background-repeat: repeat;
        }
    }
}
@media screen and (min-width: 769px) {
    .sections-container {
        background-image: url(/img/top/new_lp_202510/bg_follow_pc.png);
    }
}

.info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    padding: 5rem 0;

    ol {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-self: stretch;
        gap: 2em;
        padding: 0;

        li {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;

            .info-img {
                max-width: 90%;
                height: auto;

                img {
                    width: 100%;
                    height: 100%;
                }
            }

            @media screen and (min-width: 769px) {
                .info-img {
                    max-width: 45%;
                }
            }

            .info-text-container {
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
                padding: 5% 0 5% 5%;

                .info-text {
                    font-weight: bold;
                    font-size: var(--font-size-large);

                    span {
                        margin-right: 0.5em;
                        padding: 0.3em 1em;
                        background: linear-gradient(90deg, #2777E3 0%, #7962E3 100%);
                        clip-path: polygon(
                            5% 0%,
                            100% 0%,
                            95% 100%,
                            0% 100%
                        );
                        line-height: 1.2em;
                        color: var(--color-white)
                    }
                }

                @media screen and (min-width: 769px) {
                    .info-text {
                        font-size: var(--font-size-largest);
                    }
                }
            }

            @media screen and (min-width: 769px) {
                .info-text-container {
                    margin: 0 auto 0 3em;
                    padding: 0;
                }
            }

            .margin-left-auto {
                margin: 0 5% 0 auto;
            }

            .info-list-num-1::before {
                content: url(/img/top/new_lp_202510/info_num_01.svg);
                position: absolute;
                right: 5%;
                opacity: 0.2;
            }

            @media screen and (min-width: 769px) {
                .info-list-num-1::before {
                    top: -45%;
                    right: -30%;
                }
            }

            .info-list-num-2::before {
                content: url(/img/top/new_lp_202510/info_num_02.svg);
                position: absolute;
                left: -32%;
                opacity: 0.2;
            }

            @media screen and (min-width: 769px) {
                .info-list-num-2::before {
                    top: -20%;
                    left: -30%;
                }
            }

            .info-list-num-3::before {
                content: url(/img/top/new_lp_202510/info_num_03.svg);
                position: absolute;
                right: 5%;
                opacity: 0.2;
            }

            @media screen and (min-width: 769px) {
                .info-list-num-3::before {
                    top: -45%;
                    right: -10%;
                }
            }
        }

        @media screen and (min-width: 769px) {
            li {
                flex-direction: row;
                align-self: stretch;
                align-items: center;
                padding: 0 5%;
            }
        }
        @media screen and (min-width: 769px) {
            li::after {
                content: '';
                background-image: url(/img/top/new_lp_202510/title_bar_pc.svg);
                position: absolute;
                width: 45%;
                height: 1px;
                right: 10%;
                bottom: -2em;
            }
        }

        .under-border-left::after {
            left: 10%;
        }

        .flex-end {
            align-items: flex-end;
        }
    }

    @media screen and (min-width: 769px) {
        ol {
            gap: 4em;
        }
    }

    .movie-container {
        display: grid;
        justify-content: center;
        z-index: 1;
        width: 100%;
        height: 0;
        margin: 0 0 0 auto;

        .movie {
            width: 340px;
            height: 190px;
            box-shadow: -10px 15px 10px #0000005D;

            iframe {
                width: 100%;
                height: 100%;
            }
        }

        @media screen and (min-width: 769px) {
            .movie {
                width: 40vw;
                height: 22vw;
            }
        }
    }

    @media screen and (min-width: 769px) {
        .movie-container {
            justify-content: start;
            width: 50%;
        }
    }

    .info-movie-container {
        position: relative;
        display: grid;
        justify-content: flex-start;
        align-self: stretch;
        align-items: end;
        height: 280px;
        padding: 0 0 1.5em 30%;
        margin: 0 0 10% 2%;
        background-image: url(/img/top/new_lp_202510/bg_darkgray.jpg);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        border-radius: 50px 0 0 50px;
        font-size: var(--font-size-larger);
        line-height: 1.5em;
        color: var(--color-white);
    }

    @media screen and (min-width: 769px) {
        .info-movie-container {
            justify-content: flex-start;
            align-items: center;
            padding-left: 15%;
            height: 400px;
            margin: 0 0 0 5%;
            border-radius: 200px 0 0 200px;
            font-size: var(--font-size-largest);
            line-height: 2em;
        }
        @media screen and (min-width: 769px) and (max-width: 1024px) {
            .info-movie-container {
                height: 200px;
            }
        }
    }

    .info-movie-container::before {
        content: '';
        position: absolute;
        bottom: -25%;
        left: 10%;
        width: 20%;
        height: 60%;
        background-image: url(/img/top/new_lp_202510/movie_icon.svg);
        background-size: contain;
        background-position: left bottom;
        background-repeat: no-repeat;
    }

    @media screen and (min-width: 769px) {
        .info-movie-container::before {
            bottom: -15%;
            left: 3%;
            height: 100%;
        }
    }
}

.merit-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2em;
    padding-bottom: 15em;

    ol {
        display: grid;
        gap: 13rem;

        li {
            position: relative;
            display: grid;
            gap: 1em;
            padding: 3em;
            background-color: var(--color-white);
            letter-spacing: 0.2em;

            h4 {
                position: relative;
                font-weight: bold;
                font-size: 2em;
                color: var(--color-primary);
            }

            h4::before {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 2em;
                height: 100%;
                background-size: contain;
                background-position: top;
                background-repeat: no-repeat;
            }

            .num-01::before {
                background-image: url(/img/top/new_lp_202510/merit_num_01.svg);
            }

            .num-02::before {
                background-image: url(/img/top/new_lp_202510/merit_num_02.svg);
            }

            .num-03::before {
                background-image: url(/img/top/new_lp_202510/merit_num_03.svg);
            }

            .num-04::before {
                background-image: url(/img/top/new_lp_202510/merit_num_04.svg);
            }

            img {
                position: absolute;
                width: 50%;
                height: 100%;
            }

            .merit-img-left {
                left: 10%;
            }

            @media screen and (min-width: 769px) {
                .merit-img-left {
                    left: -47%;
                }
            }

            .merit-img-right {
                right: 10%;
            }

            @media screen and (min-width: 769px) {
                .merit-img-right {
                    right: -47%;
                }
            }

            .merit-img-01 {
                bottom: -11rem;
            }

            .merit-img-02 {
                bottom: -13rem;
            }

            .merit-img-03 {
                bottom: -16rem
            }

            .merit-img-04 {
                bottom: -11rem;
            }

            @media screen and (min-width: 769px) {
                .merit-img-01,
                .merit-img-02,
                .merit-img-03,
                .merit-img-04 {
                    bottom: 0;
                }
            }
        }

        @media screen and (min-width: 769px) {
            li {
                position: relative;
                font-size: 1.5em;
                padding: 4% 10%;
            }
        }

        .margin-right-container {
            border-radius: 2.5em 0 0 2.5em;
            width: 95%;
            margin: 0 0 0 auto;
        }

        @media screen and (min-width: 769px) {
            .margin-right-container {
                border-radius: 17em 0 0 17em;
                width: 66%;
            }
        }

        .margin-left-container {
            border-radius: 0 2.5em 2.5em 0;
            width: 95%;
            margin: 0 auto 0 0;
        }

        @media screen and (min-width: 769px) {
            .margin-left-container {
                border-radius: 0 17em 17em 0;
                width: 66%;
            }
        }
    }
}

.companies-section {
    position: relative;

    h3 {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2em 0;
        font-size: var(--font-size-larger);
        font-weight: bold;

        strong {
            position: relative;
            font-size: 3em;
            line-height: 0.9em;

            small {
                font-size: 0.7em;
            }
        }

        @media screen and (min-width: 769px) {
            font-size: var(--font-size-largest);
            strong {
                font-size: 4rem;
            }
        }

        strong::before,
        strong::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 1em;
            height: 1px;
            background-color: var(--color-base);
        }

        strong::before {
            left: -1em;
            -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
        }

        strong::after {
            right: -1em;
            -webkit-transform: rotate(-60deg);
            transform: rotate(-60deg);
        }

        @media screen and (min-width: 769px) {
            strong::before,
            strong::after {
                width: 0;
            }
        }
    }

    @media screen and (min-width: 769px) {
        h3 {
            display: block;
            width: fit-content;
            margin: 0 auto;
            padding: 0.5em 0;
            font-size: 3rem;
        }

        h3::before,
        h3::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 4rem;
            height: 1px;
            background-color: var(--color-base);
        }

        h3::before {
            left: -2em;
            -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
        }

        h3::after {
            right: -2em;
            -webkit-transform: rotate(-60deg);
            transform: rotate(-60deg);
        }
    }
    @media screen and (min-width: 769px) {
        .companies-list-container {
            padding: 2% 0;
            background-color: var(--color-white);
        }
    }

    dl {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        padding: 2em 0;
        background-color: var(--color-white);

        dt {
            position: absolute;
            top: -1em;
            width: 100%;

            .text {
                width: fit-content;
                padding: 0.3em 1em;
                background-color: var(--color-base);
                font-size: var(--font-size-large);
                font-weight: bold;
                color: #D9D9D9;
            }

            @media screen and (min-width: 769px) {
                .text {
                    text-align: center;
                    width: 8rem;
                    padding: 0.5em 0;
                    background-color: unset;
                    border: 1px solid var(--color-separate-light);
                    border-radius: 2em;
                    font-size: var(--font-size-base);
                    color: var(--color-separate-light);
                }

                .dash-bar {
                    width: 5rem;
                    height: 100%;
                    background-size: contain;
                    background-position: center;
                    background-repeat: no-repeat;
                    background-image: url(/img/top/new_lp_202510/company_group_bar_pc.svg);
                }
            }
        }

        @media screen and (min-width: 769px) {
            dt {
                position: relative;
                top: 0;
                display: flex;
                align-items: center;
                width: 13rem;
                margin-right: 2rem;
            }
        }

        dd {
            width: calc(100% / 3);

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

        @media screen and (min-width: 769px) {
            dd {
                width: auto;
            }
        }
    }

    @media screen and (min-width: 769px) {
        dl {
            flex-wrap: nowrap;
            justify-content: center;
            padding: 0 5%
        }
    }

    dl::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-image: repeating-linear-gradient(
            to right,
            #707070,
            #707070 1.2px,
            transparent 1.2px,
            transparent 5px
        );
    }

    @media screen and (min-width: 769px) {
        dl::before {
            display: none;
        }
    }

    .under-container {
        position: relative;
        text-align: center;
        font-weight: bold;
        font-size: var(--font-size-large);
        padding: 2em 0;
    }

    @media screen and (min-width: 769px) {
        .under-container {
            padding: 1.5em 0 5em 0;
        }
    }
}

.project-section {
    display: flex;
    flex-direction: column;
    padding: 4rem 0;
    ul {
        z-index: 1;
        display: flex;
        align-items: center;
        width: 85%;
        margin: 2rem auto;
        background-color: var(--color-white);
        border-radius: 1em;
        li {
            text-align: center;
            width: calc(100% / 5);
            padding: 1em;
            background-color: var(--color-white);
            border-radius: 1em;
            cursor: pointer;
            font-size: var(--font-size-large);
            font-weight: 600;
            color: #ACACAC;
        }
        @media screen and (min-width: 769px) {
            li {
                border-radius: 3em;
            }
        }
        .active {
            position: relative;
            margin: -0.5em 0;
            padding: 1.5em 0;
            background-color: var(--color-base);
            color: var(--color-white);
        }
        @media screen and (min-width: 769px) {
            .active {
                margin: 0;
                padding: 1em;
            }
        }
    }
    @media screen and (min-width: 769px) {
        ul {
            border-radius: 3em;
        }
    }
    .projects-container {
        position: relative;
        min-height: 100px;
    }
}
.project-section::before {
    content: '';
    position: absolute;
    top: 23%;
    width: 100%;
    height: 10%;
    background-image: url(/img/top/new_lp_202510/projects_bg_text.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}
@media screen and (min-width: 769px) {
    .project-section::before {
        top: 13%;
        width: 100%;
        height: 15%;
        background-position: left center;
    }
}

.user-voice-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
    background-image: url(/img/top/new_lp_202510/bg_usersvoice_sp.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    ul {
        width: 100%;
        li {
            display: grid;
            gap: 1.5em;
            padding: 3em 2em;
            border-bottom: 1px dashed var(--color-white);
            img {
                width: 100%;
                height: auto;
            }
            .voice-title-container {
                display: grid;
                gap: 0.5em;
                strong {
                    width: fit-content;
                    padding: 0.5em 1em;
                    background-color: var(--color-white);
                    font-size: var(--font-size-large);
                }
            }
            a {
                position: relative;
                width: fit-content;
                border-bottom: 1px solid var(--color-white);
                font-size: var(--font-size-large);
                color: var(--color-white);
            }
            a::before {
                position: absolute;
                content: '';
                right: -60%;
                width: 100%;
                height: 95%;
                background-image: url(/img/top/new_lp_202510/usersvoice_arrow.svg);
                background-size: contain;
                background-position: right center;
                background-repeat: no-repeat;
            }
            a:hover {
                border: none;
            }
        }
        @media screen and (min-width: 769px) {
            li {
                border-bottom: none;
            }
        }
    }
    @media screen and (min-width: 769px) {
        ul {
            display: flex;
            align-items: flex-start;
            padding: 0 5em;
        }
    }
}
@media screen and (min-width: 769px) {
    .user-voice-section {
        background-image: url(/img/top/new_lp_202510/bg_usersvoice_pc.jpg);
    }
}

.flow-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        li {
            min-height: 150px;
            padding: 1rem;
            background-color: #E6E6E6;
            border-radius: 0.5rem;
            h4 {
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 1em;
                padding-bottom: 1rem;
                border-bottom: 1px dotted var(--color-base);
                font-weight: bold;
                font-size: 1.5em;
                color: var(--color-primary);
                .number {
                    font-size: 1.2em;
                    letter-spacing: -0.3em;
                }
                @media screen and (min-width: 769px) {
                    .number {
                        font-size: 2em;
                        line-height: 1em;
                        letter-spacing: -0.3em;
                    }
                }
            }
            @media screen and (min-width: 769px) {
                h4 {
                    gap: 1.5em;
                    font-size: 2em;
                }
            }
            .text-container {
                padding-top: 1rem;
                letter-spacing: 0.1em;
            }
            @media screen and (min-width: 769px) {
                .text-container {
                    padding: 1rem 2rem 0;
                    line-height: 2em;
                    font-size: var(--font-size-large);
                    letter-spacing: 0.2em;
                }
            }
        }
        @media screen and (min-width: 769px) {
            li {
                width: 45%;
                min-height: 250px;
                padding: 2rem 1rem;
                border-radius: 0;
            }
        }
    }
    @media screen and (min-width: 769px) {
        ul {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
        }
    }
}
@media screen and (min-width: 769px) {
    .flow-section {
        padding: 4rem;
    }
}

.registration-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 4rem 1.5rem 1.5rem;
    background-image: url(/img/top/new_lp_202510/bg_2weekswork_sp.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    .title-container {
        gap: 1em;
        h3 {
            line-height: 1.2em;
            .number {
                font-size: 1.5em;
                line-height: 0;
            }
        }
        @media screen and (min-width: 769px) {
            h3 {
                text-align: left;
            }
            .sub-title {
                text-align: left;
                text-wrap-mode: nowrap;
            }
            @media screen and (min-width: 769px) and (max-width: 1024px) {
                h3 {
                    font-size: 5vw;
                }
                .sub-title {
                    font-size: 1.2vw;
                }
            }
        }
    }
    @media screen and (min-width: 769px) {
        .title-container {
        }
    }
    .register-container {
        display: grid;
        gap: 0.5rem;
        width: 100%;
        form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            width: 100%;
            padding: 2rem 1.5rem;
            background-color: var(--color-white);
            border-radius: 0.5rem;
            font-size: var(--font-size-large);
            .email-label {
                position: relative;
                color: var(--color-primary-dark);
            }
            .email-label::before,
            .email-label::after {
                content: '';
                position: absolute;
                top: 50%;
                width: 25px;
                height: 2px;
                background-color: var(--color-primary-dark);
            }
            .email-label::before {
                left: -30px;
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
            }
            .email-label::after {
                right: -30px;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }
            input {
                width: 100%;
                padding: 1rem 0.5rem;
                border: solid 1px var(--color-separate);
                border-radius: 0.5rem;
                box-shadow: inset 0 3px 6px #00000015;
            }
            input::placeholder {
                color: #8992BA;
            }
            button {
                display: block;
                width: 100%;
                padding: 0.3rem;
                background: transparent var(--color-linear-gradient-dark-light-orange) 0 0 no-repeat padding-box;
                border-radius: 2rem;
                font-size: 1em;
                span {
                    display: block;
                    padding: 0.7rem;
                    border: 1px solid var(--color-white);
                    border-radius: 2rem;
                    color: var(--color-white);
                }
            }
            @media screen and (min-width: 769px) {
                button {
                    width: 80%;
                }
            }
            button:hover {
                background: transparent var(--color-linear-gradient-light-dark-orange) 0 0 no-repeat padding-box;
            }
        }
        @media screen and (min-width: 769px) {
            form {
                width: 35vw;
                padding: 3rem;
            }
        }
        .term-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: var(--color-white);
            .term-link {
                cursor: pointer;
                border-bottom: 1px solid var(--color-white);
                color: var(--color-white);
            }
            .term-link:hover {
                border: none;
            }
        }
        @media screen and (min-width: 769px) {
            .term-container {
                justify-content: end;
            }
        }
    }
    @media screen and (min-width: 769px) {
        .register-container {
            justify-content: end;
            width: auto;
        }
    }
}
@media screen and (min-width: 769px) {
    .registration-section {
        flex-direction: row;
        justify-content: center;
        gap: 5rem;
        padding: 5rem 0;
        background-image: url(/img/top/new_lp_202510/bg_2weekswork_pc.jpg);
    }
}

.owned-media-section {
    padding-bottom: 2rem;
    ul {
        padding: 2rem 1rem;
        li {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            padding: 2rem 0;
            border-bottom: 1px solid #C3C3C3;
            .img {
                width: 100%;
                height: auto;
                img {
                    width: 100%;
                    height: auto;
                    border-radius: 1rem;
                }
            }
            @media screen and (min-width: 769px) {
                .img {
                    width: 40%;
                }
            }
            .text-container {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                .title {
                    font-size: 1.2rem;
                }
                .category-text {
                    width: fit-content;
                    padding: 0.1rem 0.5rem;
                    background-color: var(--color-white);
                    border: 1px solid var(--color-base);
                }
                @media screen and (min-width: 769px) {
                    .category-text {
                        padding: 0.3rem 1rem;
                    }
                }
                .detail-text {
                    letter-spacing: 0.1rem;
                    line-height: 1.5rem;
                }
                @media screen and (min-width: 769px) {
                    .detail-text {
                        letter-spacing: 0.1rem;
                        line-height: 1.5rem;
                    }
                }
            }
            @media screen and (min-width: 769px) {
                .text-container {
                    width: 50%;
                    gap: 1rem;
                }
            }
        }
        @media screen and (min-width: 769px) {
            li {
                flex-direction: row;
                gap: 4rem;
            }
        }
    }
    @media screen and (min-width: 769px) {
        ul {
            padding: 2rem 5rem;
        }
    }
}
@media screen and (min-width: 769px) {
    .owned-media-section {
        padding: 4rem 0;
    }
}
.owned-media-section::before {
    content: '';
    position: absolute;
    left: -15%;
    top: 7%;
    width: 115%;
    height: 5%;
    background-image: url(/img/top/new_lp_202510/owndmedia_bg_ttl.svg);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}
@media screen and (min-width: 769px) {
    .owned-media-section::before {
        top: 13%;
        left: -10%;
        width: 60%;
        height: 10%;
    }
}

.service-section {
    padding: 4rem 1.5rem;
    ul {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 0;
        li {
            .service-link {
                position: relative;
                display: flex;
                align-items: center;
                padding: 1rem 0;
                background-color: var(--color-white);
                border-radius: 1rem;
                border: 1px solid var(--color-separate-lighter);
                .img {
                    width: 25%;
                    padding: 0 0.5rem;
                    border-right: 1px solid var(--color-separate-lighter);
                    img {
                        width: 100%;
                        height: auto;
                    }
                    @media screen and (min-width: 769px) {
                        img {
                            height: 100%;
                        }
                    }
                }
                @media screen and (min-width: 769px) {
                    .img {
                        width: 80%;
                        padding: 0.5rem 0;
                        border-right: unset;
                        border-bottom: 1px solid var(--color-separate-lighter);
                    }
                }
                .text-container {
                    flex-grow: 1;
                    display: flex;
                    align-items: center;
                    padding: 1rem;
                    font-weight: bold;
                }
                @media screen and (min-width: 769px) {
                    .text-container {
                        padding: 0;
                    }
                }
            }
            @media screen and (min-width: 769px) {
                .service-link {
                    flex-direction: column;
                    align-items: flex-start;
                    height: 160px;
                    padding: 0 1rem;
                }
                @media screen and (min-width: 769px) and (max-width: 1024px) {
                    .service-link {
                        height: 110px;
                    }
                }
            }
            .service-link::before {
                content: '';
                position: absolute;
                right: 3%;
                width: 6%;
                height: 20%;
                background-image: url(/img/top/new_lp_202510/service_arrow.svg);
                background-size: contain;
                background-position: center;
                background-repeat: no-repeat;
            }
            @media screen and (min-width: 769px) {
                .service-link::before {
                    top: 45%;
                    width: 7%;
                    background-position: unset;
                }
            }
        }
        @media screen and (min-width: 769px) {
            li {
                width: calc(100% / 4);
            }
        }
        li::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 2.5%;
            width: 95%;
            height: 100%;
            border-radius: 1rem;
            background-color: #D6E1E2;
        }
        @media screen and (min-width: 769px) {
            li::before {
                top: 10px;
                left: 10px;
                width: 100%;
            }
        }
    }
    @media screen and (min-width: 769px) {
        ul {
            flex-direction: row;
            gap: 2rem;
            padding: 4rem 0;
        }
    }
}
@media screen and (min-width: 769px) {
    .service-section {
        flex-direction: row;
        padding: 4rem 6rem;
    }
    @media screen and (min-width: 769px) and (max-width: 1024px) {
        .service-section {
            padding: 4rem 1rem;
        }
    }
}

.media-section {
    padding: 2rem;
    background-color: var(--color-white);
    border-top: 1px solid #E9ECF2;
    ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        li {
            width: calc(100% / 3);
            img {
                width: 100%;
                height: auto;
            }
        }
        @media screen and (min-width: 769px) {
            li {
                width: calc(100% / 6);
            }
        }
    }
    @media screen and (min-width: 769px) {
        ul {
            flex-wrap: nowrap;
        }
    }
}
@media screen and (min-width: 769px) {
    .media-section {
        padding: 2rem 12rem;
    }
}

footer {
    position: relative;
    padding: 2rem 1.5rem;
    .img-logo {
        width: 50%;
    }
    @media screen and (min-width: 769px) {
        .img-logo {
            width: 70%;
        }
    }
    nav {
        padding: 2rem 0;
        ul {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            li {
                .link {
                    font-size: var(--font-size-large);
                    color: var(--color-white);
                }
                @media screen and (min-width: 769px) {
                    .link {
                        font-size: var(--font-size-base);
                    }
                }
            }
        }
        @media screen and (min-width: 769px) {
            ul {
                justify-content: space-between;
            }
        }
    }
    @media screen and (min-width: 769px) {
        nav {
            padding: 1rem 0;
        }
    }
    .under-container {
        display: flex;
        flex-direction: row;
    }
    @media screen and (min-width: 769px) {
        .under-container {
            justify-content: space-between;
            align-items: center;
            padding: 2rem 0;
        }
    }
    .client-button-container {
        position: relative;
        width: 100%;
        .client-button-message {
            position: absolute;
            top: -35%;
            left: 9%;
            padding: 0 2rem;
            background-color: var(--color-white);
            border-radius: 5rem;
            border: 1px solid var(--color-base);
            line-height: 2rem;
            z-index: 1;
            strong {
                color: var(--color-primary-light);
                .number {
                    font-size: 1.5em;
                }
            }
        }
        @media screen and (min-width: 769px) and (max-width: 1024px) {
            .client-button-message {
                left: 9%;
            }
        }
        .client-button-message::before {
            content: "";
            position: absolute;
            bottom: -47%;
            left: 50%;
            transform: translateX(-50%);
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 15px solid var(--color-base);
        }
        .client-button-message::after {
            content: "";
            position: absolute;
            bottom: -43%;
            left: 50%;
            transform: translateX(-50%);
            border-left: 14px solid transparent;
            border-right: 14px solid transparent;
            border-top: 14px solid var(--color-white);
        }
        .client-button {
            position: relative;
            display: block;
            text-align: center;
            width: 100%;
            padding: 1rem;
            cursor: pointer;
            background: linear-gradient(180deg, var(--color-primary-light) 0%, #2E396D 100%);
            border-radius: 0.5rem;
            font-size: var(--font-size-large);
            color: var(--color-white);
        }
        @media screen and (min-width: 769px) {
            .client-button {
                width: fit-content;
                height: fit-content;
                padding: 1.5rem 8rem;
                border-radius: 5rem;
            }
            @media screen and (min-width: 769px) and (max-width: 1024px) {
                .client-button {
                    padding: 1.5rem 6rem;
                }
            }
        }
        .client-button:hover {
            background: linear-gradient(180deg, #2E396D 0%, var(--color-primary-light) 100%);
        }
        .client-button::before {
            position: absolute;
            top: 30%;
            left: 9%;
            content: '';
            width: 7%;
            height: 45%;
            background-image: url(/img/top/new_lp_202510/user_icon.svg);
            background-size: contain;
            background-repeat: no-repeat;
        }
        @media screen and (min-width: 769px) {
            .client-button::before {
                top: 33%;
                left: 20%;
                height: 38%;
            }
        }
        .client-button::after {
            position: absolute;
            top: 27%;
            right: 9%;
            content: '>>';
        }
        @media screen and (min-width: 769px) {
            .client-button::after {
                top: 33%;
                right: 20%;
            }
        }
    }
    @media screen and (min-width: 769px) {
        .client-button-container {
            width: auto;
        }
    }
    .copy-lighting {
        display: block;
        text-align: center;
        width: 100%;
        margin-top: 1rem;
        font-size: var(--font-size-base);
        color: var(--color-white);
    }
    @media screen and (min-width: 769px) {
        .copy-lighting {
            text-align: left;
        }
    }
}
@media screen and (min-width: 769px) {
    footer {
        padding: 2rem 12rem;
    }
    @media screen and (min-width: 769px) and (max-width: 1024px) {
        footer {
            padding: 2rem 4rem;
        }
    }
}
footer::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(/img/top/new_lp_202510/bg_darkgray.jpg);
    background-size: cover;
    z-index: -1;
}

/* ---------------------------
 *
 * Splide.js関連
 * docs: https://ja.splidejs.com/
 *
 -----------------------------*/
.splide {
    width: 100%;
    .splide__arrow--prev:before,
    .splide__arrow--next:before,
    .splide__arrow--prev:after,
    .splide__arrow--next:after {
        content: '';
    }
    .splide__arrow--prev,
    .splide__arrow--next {
        position: absolute;
        top: 30%;
        z-index: 1;
        width: 45px;
        height: 110px;
        cursor: pointer;
        background-size: contain;
    }
    @media screen and (min-width: 769px) {
        .splide__arrow--prev,
        .splide__arrow--next {
            width: 70px;
            height: 180px;
        }
    }
    .splide__arrow--prev {
        left: 0;
        background-image: url(/img/top/new_lp_202510/projects_arrow_prev.svg);
    }
    .splide__arrow--next {
        right: 0;
        background-image: url(/img/top/new_lp_202510/projects_arrow_next.svg);
    }
    .splide__slide {
        display: flex;
        flex-direction: column;
        gap: 1.5em;
        width: 90vw;
        height: 500px;
        padding: 1.5em;
        background-color: var(--color-white);
        border: 1px solid #B7B7B7;
        border-radius: 1em;
        .slider-card-header {
            display: flex;
            flex-direction: column;
            gap: 1em;
            padding-bottom: 1em;
            border-bottom: 1px dashed;
            .label-container {
                display: flex;
                align-items: center;
                gap: 1em;
                font-size: var(--font-size-small);
                .black-tag {
                    padding: 0.5em 2em;
                    background-color: var(--color-base);
                    border: 1px solid var(--color-base);
                    color: var(--color-white);
                }
                .white-tag {
                    padding: 0.5em 2em;
                    background-color: var(--color-white);
                    border: 1px solid var(--color-base);
                    color: var(--color-base);
                }
            }
            h3 {
                padding-left: 0.5em;
                border-left: 2px solid var(--color-base);
                line-height: 1.5em;
                letter-spacing: 0.1em;
                font-weight: bold;
            }
            .strong-text-container {
                position: relative;
                display: flex;
                align-items: baseline;
                gap: 0.1em;
                padding-left: 2.5em;
                font-weight: bold;
                font-size: var(--font-size-large);
                strong {
                    font-size: 1.5em;
                    color: var(--color-project-accent);
                }
            }
            .strong-text-container::before {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 2em;
                height: 90%;
                background-image: url(/img/top/new_lp_202510/projects_money_icon.svg);
                background-size: contain;
                background-repeat: no-repeat;
            }
        }
        .slider-card-body {
            display: flex;
            flex-direction: column;
            gap: 0.5em;
            .text-container {
                position: relative;
                display: flex;
                align-items: center;
                padding: 0.2em 0 0.3em 2.5em;
            }
            .tag-container {
                position: relative;
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                gap: 0.5em;
                padding-left: 2.5em;
            }
            .text-container::before,
            .tag-container::before {
                content: '';
                position: absolute;
                left: 0;
                width: 2em;
                height: 100%;
                background-image: url(/img/top/new_lp_202510/projects_dot_icon.svg);
                background-size: contain;
                background-repeat: no-repeat;
            }
            .tag {
                padding: 0.2em 1em;
                color: var(--color-project-accent);
                border: 1px solid var(--color-project-accent);
                border-radius: 1em;
            }
        }
        .slider-card-footer {
            display: flex;
            flex-direction: column;
            gap: 1em;
            height: fit-content;
            min-height: 100px;
            margin-top: auto;
            strong {
                font-size: 1.2em;
            }
            .text-container {
                flex-grow: 1;
                padding: 1em;
                background-color: #F2F3F5;
                border-radius: 0.5em;
                .text-area {
                    overflow: hidden;
                    text-overflow: ellipsis;
                    display: -webkit-box;
                    -webkit-line-clamp: 5;
                    -webkit-box-orient: vertical;
                    .text-block {
                        margin: 0.25em 0;
                    }
                }
                @media screen and (min-width: 769px) {
                    .text-area {
                        -webkit-line-clamp: 7;
                    }
                }
            }
        }
        @media screen and (min-width: 769px) {
            .slider-card-footer {
                min-height: 200px;
            }
        }
    }
    @media screen and (min-width: 769px) {
        .splide__slide {
            width: 800px;
        }
    }
}

