<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

:root {
    --orange: #FF9E1B;
    --purple: #8E0097;
    --beige: #FFF8EB;
}

body::-webkit-scrollbar {
    /* display: none; */
}

p {
    line-height: 1.5em;
}


.anchor {
    height: 0;
    margin-top: -120px;
    padding-top: 120px;

    @media screen and (max-width: 767px) {
        margin-top: -60px;
        padding-top: 60px;
    }
}

.absolute-anchor {
    position: absolute;
    top: 0;
    height: 0;
    margin-top: -120px;
    padding-top: 120px;

    @media screen and (max-width: 767px) {
        margin-top: -60px;
        padding-top: 60px;
    }
}

#header {
    position: fixed;
    left: 22px;
    top: 20px;
    width: calc(100% - 44px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    height: 77px;
    border-radius: 38.5px;
    background-color: #fff;
    box-shadow: 0 0 5px 2px rgba(60, 60, 60, 0.2);

    @media screen and (max-width: 767px) {
        left: 12px;
        top: 12px;
        width: calc(100% - 24px);
        padding: 0 18px;
        height: 44px;
        border-radius: 22px;
    }

    .logomark {
        .logolink {
            display: flex;
            align-items: center;

            @media screen and (max-width: 1200px) {
                flex-direction: column;
            }

            @media screen and (max-width: 767px) {
                flex-direction: row;
            }

            .logo {
                @media screen and (max-width: 1450px) {
                    width: 225px;
                }

                @media screen and (max-width: 767px) {
                    width: 151px;
                }
            }

            .sns {
                margin-left: 21px;
                width: 173px;

                @media screen and (max-width: 1450px) {
                    margin-left: 12px;
                    width: 150px;
                }

                @media screen and (max-width: 1200px) {
                    margin-left: 0;
                }

                @media screen and (max-width: 767px) {
                    margin-left: 8px;
                    width: 105px;
                }
            }
        }
    }

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

        @media screen and (max-width: 1300px) {
            gap: 20px;
        }

        @media screen and (max-width: 767px) {
            background-color: #fff;
            position: fixed;
            top: 0;
            left: 100%;
            z-index: 999;
            width: 100%;
            pointer-events: none;
            transition: all ease 0.3s;
            flex-direction: column;
            padding-top: 60px;
            gap: 0;
            height: 100dvh;
        }

        .main-list {
            display: flex;
            align-items: center;
            gap: 28px;

            @media screen and (max-width: 1300px) {
                gap: 18px;
            }

            @media screen and (max-width: 1080px) {
                flex-wrap: wrap;
                width: 260px;
                gap: 12px;
            }

            @media screen and (max-width: 767px) {
                width: initial;
                flex-direction: column;
                gap: 10px;
            }

            .list {
                .link {
                    font-family: "Noto Sans JP";
                    font-weight: bold;
                    font-size: 15px;
                    letter-spacing: 0.01em;
                    text-align: right;
                    color: #8e0097;

                    @media screen and (max-width: 1080px) {
                        font-size: 14px;
                    }
                }
            }
        }

        .contact-btn {
            width: 150px;
            height: 45px;
            border-radius: 22.5px;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(#8e0097 0%, #872438 100%);

            @media screen and (max-width: 1450px) {
                width: 120px;
            }

            @media screen and (max-width: 767px) {
                width: 150px;
                margin: 30px auto;
            }

            .contact-text {
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 15px;
                letter-spacing: 0.01em;
                text-align: right;
                color: #fff;
            }
        }
    }

    .menu-btn {
        display: none;

        @media screen and (max-width: 767px) {
            display: block;
            position: absolute;
            top: 50%;
            right: 18px;
            transform: translateY(-50%);
            z-index: 999;
        }

        &amp; a {
            position: relative;
            width: 18px;
            height: 18px;
            vertical-align: top;
            transition: ease 0.25s all;
            display: flex;
            justify-content: center;
            align-items: center;

            &amp; span {
                position: absolute;
                display: block;
                width: 100%;
                height: 3px;
                border-radius: 1.5px;
                background-color: var(--purple);

                &amp;:before,
                &amp;:after {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background-color: var(--purple);
                    border-radius: 0.3rem;
                    transition: ease 0.25s all;
                }

                &amp;:before {
                    margin-top: -7px;
                }

                &amp;:after {
                    margin-top: 7px;
                }
            }
        }
    }
}

.menu-active {
    #header {
        .logomark {}

        .nav {
            @media screen and (max-width: 767px) {
                left: 0;
                pointer-events: auto;
            }
        }

        .menu-btn {
            &amp; a {

                &amp; span {
                    background-color: transparent;

                    &amp;:before {
                        margin-top: 0;
                        transform: rotate(45deg);
                        -webkit-transform: rotate(45deg);
                    }

                    &amp;:after {
                        margin-top: 0;
                        transform: rotate(-45deg);
                        -webkit-transform: rotate(-45deg);
                    }
                }
            }
        }
    }
}

#container {
    background-color: var(--orange);
}

.deco {
    position: absolute;

    @media screen and (max-width: 1450px) {
        transform: scale(0.5);
    }

    @media screen and (max-width: 767px) {
        display: none;
    }
}

.deco1 {
    right: 0;
    top: 0;
    transform-origin: right top;
}

.deco2 {
    left: 0;
    bottom: 0;
    transform-origin: left bottom;
}

.deco3 {
    right: 0;
    bottom: 0;
    transform-origin: right bottom;
}

.deco4 {
    left: 0;
    top: 30%;
    transform-origin: left center;
}

.section01 {
    position: relative;
    padding: 85px 0 0;

    @media screen and (max-width: 767px) {
        padding: 43px 0 0;
    }

    .fv {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;

        @media screen and (max-width: 1600px) {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 0;
        }

        @media screen and (max-width: 767px) {
            display: initial;
        }

        .texts {
            padding-left: 150px;
            padding-top: 102px;

            @media screen and (max-width: 1600px) {
                padding-left: 8vw;
            }

            @media screen and (max-width: 767px) {
                padding-left: 0;
                padding-top: 40px;
                margin: auto;
            }

            &amp; img {
                width: 546px;

                @media screen and (max-width: 767px) {
                    width: 70%;
                }
            }
        }

        .woman {
            display: initial;
            margin: initial;
            width: 750px;

            @media screen and (max-width: 767px) {
                width: 70%;
                display: block;
                margin: 0 auto 0;
            }
        }
    }
}

.section02 {
    background-color: #fff;
    position: relative;
    padding: 28px 0 90px;

    &amp;::before {
        content: '';
        position: absolute;
        top: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: #fff;
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    @media screen and (max-width: 767px) {
        padding: 40px 0 60px;

        &amp;::before {
            top: -32px;
            height: calc(32px * 4);
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }
    }

    .article {
        display: flex;
        justify-content: center;
        gap: 85px;

        @media screen and (max-width: 1080px) {
            gap: 30px;
        }

        @media screen and (max-width: 767px) {
            flex-direction: column;
            gap: 40px;
        }

        .txt {
            margin-top: 4px;
            max-width: 693px;

            .title {
                margin-bottom: 25px;
                display: flex;
                gap: 6px;

                @media screen and (max-width: 1080px) {
                    gap: 3px;
                }

                @media screen and (max-width: 767px) {
                    margin-bottom: 12px;
                    gap: 0;
                }

                .bubble {
                    margin: initial;
                    margin-top: 18px;
                    display: initial;

                    @media screen and (max-width: 1080px) {
                        width: 50px;
                        margin-top: 10px;
                    }

                    @media screen and (max-width: 767px) {
                        width: 30px;
                        margin-top: 6px;
                    }
                }

                .bold {
                    font-family: "Noto Sans JP";
                    font-weight: 900;
                    font-size: 56px;
                    letter-spacing: 0.01em;
                    text-align: left;
                    color: #000;

                    @media screen and (max-width: 1080px) {
                        font-size: 40px;
                    }

                    @media screen and (max-width: 767px) {
                        font-size: 24px;
                    }
                }
            }

            .black {
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 30px;
                letter-spacing: 0.01em;
                text-align: left;
                color: #000;

                @media screen and (max-width: 1080px) {
                    font-size: 24px;
                }

                @media screen and (max-width: 767px) {
                    font-size: 18px;
                }
            }

            .black1 {
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 45px;
                letter-spacing: 0.01em;
                text-align: left;
                color: #8e0097;

                @media screen and (max-width: 1080px) {
                    font-size: 28px;
                }

                @media screen and (max-width: 767px) {
                    font-size: 22px;
                    padding: 5px 0;
                }
            }

            .normal {
                margin-top: 28px;
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 16px;
                line-height: 2em;
                letter-spacing: 0.01em;
                text-align: left;
                color: #000;

                .purple {
                    color: var(--purple);
                }

                @media screen and (max-width: 767px) {
                    margin-top: 14px;
                    font-size: 14px;
                }
            }
        }

        .mobile {
            flex-shrink: 0;
        }
    }
}

.common-title {
    position: relative;
    margin: auto;
    width: fit-content;

    .bubble {
        position: absolute;
        left: -6px;
        top: 16px;
        transform: translateX(-100%);

        @media screen and (max-width: 1080px) {
            top: 13px;
            width: 50px;
            left: -3px;
        }

        @media screen and (max-width: 767px) {
            top: 8px;
            width: 30px;
            left: 0;
        }
    }

    .title-txt {
        width: fit-content;
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 56px;
        line-height: 78px;
        letter-spacing: 0.1em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 1080px) {
            font-size: 40px;
            line-height: 1.5em;
        }

        @media screen and (max-width: 767px) {
            font-size: 24px;
        }
    }
}

.common-title.abnormal {
    transform: translateX(3em);

    @media screen and (max-width: 767px) {
        transform: initial;
    }
}

.section03 {
    background-color: var(--orange);
    padding: 75px 0 73px;

    @media screen and (max-width: 767px) {
        padding: 60px 0;
    }

    .bubble {
        transform: translateX(-15%);
    }

    .text1 {
        margin-top: 38px;
        font-family: "Noto Sans JP";
        font-weight: 500;
        font-size: 22px;
        line-height: 41px;
        letter-spacing: 0.01em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 767px) {
            margin-top: 20px;
            font-size: 18px;
            line-height: 1.8em;
        }

        .purple {
            color: var(--purple);
            font-weight: 700;
        }

    }

    .image {
        margin-top: 34px;
        border-radius: 10px;

        @media screen and (max-width: 767px) {
            margin-top: 20px;
        }
    }

    .text2 {
        margin-top: 25px;
        font-family: "Noto Sans JP";
        font-weight: 500;
        font-size: 16px;
        line-height: 2em;
        letter-spacing: 0.01em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 767px) {
            margin-top: 18px;
        }
    }

    .text3 {
        margin-top: 14px;
        font-family: "Noto Sans JP";
        font-weight: 500;
        font-size: 24px;
        letter-spacing: 0.01em;
        line-height: 46px;
        text-align: center;
        color: #000;

        @media screen and (max-width: 767px) {
            margin-top: 10px;
            font-size: 18px;
            line-height: 2em;
        }

        .purple {
            color: var(--purple);
        }
    }
}

.section04 {
    padding: 100px 0 84px;
    background-color: #fff;

    @media screen and (max-width: 767px) {
        padding: 60px 0;
    }

    .orange-title {
        margin: 40px auto 36px;
        width: fit-content;
        position: relative;

        &amp;::before {
            content: "";
            position: absolute;
            left: -25px;
            top: 0;
            bottom: 0;
            margin: auto 0;
            width: 2px;
            height: 65px;
            background-color: var(--orange);
            transform: rotate(-15deg);
        }

        &amp;::after {
            content: "";
            position: absolute;
            right: -25px;
            top: 0;
            bottom: 0;
            margin: auto 0;
            width: 2px;
            height: 65px;
            background-color: var(--orange);
            transform: rotate(15deg);
        }

        @media screen and (max-width: 767px) {
            margin: 10px auto 18px;

            &amp;::before {
                left: -15px;
                height: 35px;
            }

            &amp;::after {
                right: -15px;
                height: 35px;
            }
        }

        .title-txt {
            font-family: "Noto Sans JP";
            font-weight: 900;
            font-size: 30px;
            letter-spacing: 0.01em;
            text-align: center;
            color: #ff9e1c;

            @media screen and (max-width: 767px) {
                font-size: 20px;
            }
        }
    }

    .boxes {
        margin-top: 100px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;

        @media screen and (max-width: 767px) {
            margin-top: 50px;
            gap: 10px;
        }

        .box {
            border: 5px solid var(--orange);
            border-radius: 10px;
            position: relative;
            padding-bottom: 92px;

            &amp;::after {
                content: "";
                position: absolute;
                bottom: 32px;
                left: 0;
                right: 0;
                margin: 0 auto;
                width: 26px;
                height: 26px;
                border-right: 5px solid var(--orange);
                border-bottom: 5px solid var(--orange);
                transform: rotate(45deg);
            }

            @media screen and (max-width: 767px) {
                padding-bottom: 46px;
                border: 3px solid var(--orange);

                &amp;::after {
                    bottom: 16px;
                    width: 15px;
                    height: 15px;
                    border-right: 3px solid var(--orange);
                    border-bottom: 3px solid var(--orange);
                    transform: rotate(45deg);
                }
            }

            .bookmark {
                margin: auto;
                width: 174px;
                height: 169px;
                transform: translateY(-26px);
                padding: 23px 23px 51px;
                background-color: var(--orange);
                clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);

                @media screen and (max-width: 767px) {
                    width: 80px;
                    height: 90px;
                    transform: translateY(-15px);
                    padding: 10px 10px 30px;
                }

                .merit {
                    font-family: "Noto Sans JP";
                    font-weight: 900;
                    font-size: 18px;
                    letter-spacing: 0.01em;
                    text-align: center;
                    color: #fff;

                    @media screen and (max-width: 767px) {
                        font-size: 14px;
                    }
                }

                .number {
                    font-family: "Noto Sans JP";
                    font-weight: 600;
                    font-size: 56px;
                    letter-spacing: 0.01em;
                    text-align: center;
                    color: #fff;

                    @media screen and (max-width: 767px) {
                        font-size: 25px;
                    }
                }
            }

            .text {
                margin-top: -10px;
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 46px;
                line-height: 64px;
                letter-spacing: 0.01em;
                text-align: center;
                color: #000;

                @media screen and (max-width: 1080px) {
                    font-size: 30px;
                    line-height: 1.5em;
                }

                @media screen and (max-width: 767px) {
                    font-size: 14px;
                }

                .purple {
                    color: var(--purple);
                }
            }
        }
    }
}

.section05 {
    background-color: var(--beige);
    padding: 100px 0 103px;

    @media screen and (max-width: 767px) {
        padding: 40px 0 60px;
    }

    .bookmark {
        position: absolute;
        left: 0;
        top: -100px;
        margin: auto;
        width: 224px;
        height: 247px;
        padding: 52px 23px;
        background-color: var(--orange);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);

        @media screen and (max-width: 1080px) {
            position: relative;
            padding: 25px 10px;
            height: 200px;
        }

        @media screen and (max-width: 767px) {
            position: relative;
            top: -40px;
            width: 150px;
            height: 131px;
            padding: 25px 10px;
        }

        .merit {
            font-family: "Noto Sans JP";
            font-weight: 900;
            font-size: 18px;
            letter-spacing: 0.01em;
            text-align: center;
            color: #fff;

            @media screen and (max-width: 767px) {
                font-size: 14px;
            }
        }

        .number {
            font-family: "Noto Sans JP";
            font-weight: 600;
            font-size: 56px;
            letter-spacing: 0.01em;
            text-align: center;
            color: #fff;

            @media screen and (max-width: 767px) {
                font-size: 26px;
            }
        }
    }

    .section-title {
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 40px;
        line-height: 64px;
        letter-spacing: 0.03em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 1080px) {
            font-size: 32px;
            line-height: 1.5em;
        }

        @media screen and (max-width: 767px) {
            font-size: 19px;
        }

        .purple {
            color: var(--purple);
        }
    }

    .articles {
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 112px;
        position: relative;

        &amp;::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            width: 0;
            height: 0;
            transform: translateX(30%);
            border: 44px solid transparent;
            border-left: 29px solid #000000;
        }

        @media screen and (max-width: 767px) {
            margin-top: 20px;
            grid-template-columns: 1fr;
            gap: 40px;

            &amp;::after {
                transform: translateY(50%) rotate(90deg);
                border: 22px solid transparent;
                border-left: 15px solid #000000;
            }
        }

        .article {
            &amp;:last-child {
                padding-top: 40px;

                @media screen and (max-width: 1080px) {
                    padding-top: 30px;
                }

                @media screen and (max-width: 767px) {
                    padding-top: 20px;
                }
            }

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

                .portrait {
                    flex-shrink: 0;

                    @media screen and (max-width: 1080px) {
                        width: 200px;
                    }

                    @media screen and (max-width: 767px) {
                        width: 160px;
                    }
                }

                .txt {
                    font-family: "Noto Sans JP";
                    font-weight: 900;
                    font-size: 26px;
                    letter-spacing: 0.01em;
                    text-align: center;
                    color: #000;

                    @media screen and (max-width: 767px) {
                        font-size: 18px;
                    }
                }

                .sns {
                    width: 242px;

                    @media screen and (max-width: 767px) {
                        width: 131px;
                    }
                }
            }

            .down1 {
                padding: 42px;
                background-color: #fff;
                transform: translateY(-50px);

                @media screen and (max-width: 767px) {
                    padding: 15px;
                    transform: translateY(-25px);
                }

                .txt1 {
                    font-family: "Noto Sans JP";
                    font-weight: 500;
                    font-size: 16px;
                    line-height: 31px;
                    letter-spacing: 0.01em;
                    text-align: left;
                    color: #000;

                    @media screen and (max-width: 767px) {
                        font-size: 14px;
                        line-height: 2em;
                    }
                }
            }

            .down2 {
                padding: 35px 42px;
                background-color: var(--orange);
                transform: translateY(-50px);

                @media screen and (max-width: 767px) {
                    padding: 15px;
                    transform: translateY(-25px);

                }

                .txt2 {
                    font-family: "Noto Sans JP";
                    font-weight: 900;
                    font-size: 25px;
                    line-height: 43px;
                    letter-spacing: 0.01em;
                    text-align: left;
                    color: #000;

                    @media screen and (max-width: 767px) {
                        font-size: 16px;
                        line-height: 1.5em;
                    }

                    .purple {
                        color: var(--purple);
                    }
                }
            }
        }
    }

    .point {
        background-color: #fff;
        margin-top: 16px;
        border-radius: 18px;
        border: 3px solid var(--orange);
        padding: 60px 40px 48px;
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 42px;

        @media screen and (max-width: 767px) {
            margin-top: 10px;
            border: 2px solid var(--orange);
            padding: 40px 15px;
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .left-txt {
            .big {
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 32px;
                line-height: 1.2em;
                letter-spacing: 0.01em;
                text-align: left;
                color: #000;

                @media screen and (max-width: 1080px) {
                    font-size: 28px;
                }

                @media screen and (max-width: 767px) {
                    font-size: 18px;
                }
            }

            .small {
                margin-top: 19px;
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 21px;
                line-height: 41px;
                letter-spacing: 0.01em;
                text-align: left;
                color: #000;

                @media screen and (max-width: 767px) {
                    margin-top: 12px;
                    font-size: 16px;
                    line-height: 2em;
                }

                .purple {
                    font-weight: 700px;
                    color: var(--purple);
                }
            }
        }

        .right-img {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;

            @media screen and (max-width: 767px) {
                gap: 10px;
            }
        }
    }
}

.section06 {
    background-color: #fff;
    padding: 100px 0 96px;

    @media screen and (max-width: 767px) {
        padding: 40px 0 60px;
    }

    .bookmark {
        position: absolute;
        left: 0;
        top: -100px;
        margin: auto;
        width: 224px;
        height: 247px;
        padding: 52px 23px;
        background-color: var(--orange);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);

        @media screen and (max-width: 1080px) {
            position: relative;
            padding: 25px 10px;
            height: 200px;
        }

        @media screen and (max-width: 767px) {
            position: relative;
            top: -40px;
            width: 150px;
            height: 131px;
            padding: 25px 10px;
        }

        .merit {
            font-family: "Noto Sans JP";
            font-weight: 900;
            font-size: 18px;
            letter-spacing: 0.01em;
            text-align: center;
            color: #fff;

            @media screen and (max-width: 767px) {
                font-size: 14px;
            }
        }

        .number {
            font-family: "Noto Sans JP";
            font-weight: 600;
            font-size: 56px;
            letter-spacing: 0.01em;
            text-align: center;
            color: #fff;

            @media screen and (max-width: 767px) {
                font-size: 26px;
            }
        }
    }

    .section-title {
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 40px;
        line-height: 64px;
        letter-spacing: 0.03em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 1080px) {
            font-size: 32px;
            line-height: 1.5em;
        }

        @media screen and (max-width: 767px) {
            font-size: 19px;
        }

        .purple {
            color: var(--purple);
        }
    }


    .essay {
        margin-top: 57px;
        display: grid;
        grid-template-columns: 1fr 0.9fr;
        align-items: center;
        gap: 87px;

        @media screen and (max-width: 767px) {
            margin-top: 30px;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .left-text {
            .text1 {
                font-family: "Noto Sans JP";
                font-weight: bold;
                font-size: 28px;
                line-height: 2em;
                letter-spacing: 0.01em;
                text-align: left;
                color: #000;

                @media screen and (max-width: 767px) {
                    font-size: 17px;
                }
            }

            .purple {
                color: var(--purple);
            }

            .text2 {
                margin-top: 39px;
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 16px;
                line-height: 2em;
                letter-spacing: 0.01em;
                text-align: left;
                color: #000;

                @media screen and (max-width: 767px) {
                    margin-top: 20px;
                    font-size: 14px;
                }

                .purple {
                    color: var(--purple);
                }
            }
        }

        .right-photo {
            flex-shrink: 0;
        }
    }
}

.section07 {
    background-color: var(--beige);
    position: relative;
    padding: 100px 0 74px;

    &amp;::after {
        content: '';
        position: absolute;
        bottom: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: var(--beige);
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    @media screen and (max-width: 767px) {
        padding: 40px 0;

        &amp;::after {
            bottom: -32px;
            height: calc(32px * 4);
            background-color: var(--beige);
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }
    }

    .bookmark {
        position: absolute;
        left: 0;
        top: -100px;
        margin: auto;
        width: 224px;
        height: 247px;
        padding: 52px 23px;
        background-color: var(--orange);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);

        @media screen and (max-width: 1080px) {
            position: relative;
            padding: 25px 10px;
            height: 200px;
        }

        @media screen and (max-width: 767px) {
            position: relative;
            top: -40px;
            width: 150px;
            height: 131px;
            padding: 25px 10px;
        }

        .merit {
            font-family: "Noto Sans JP";
            font-weight: 900;
            font-size: 18px;
            letter-spacing: 0.01em;
            text-align: center;
            color: #fff;

            @media screen and (max-width: 767px) {
                font-size: 14px;
            }
        }

        .number {
            font-family: "Noto Sans JP";
            font-weight: 600;
            font-size: 56px;
            letter-spacing: 0.01em;
            text-align: center;
            color: #fff;

            @media screen and (max-width: 767px) {
                font-size: 26px;
            }
        }
    }

    .section-title {
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 40px;
        line-height: 64px;
        letter-spacing: 0.03em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 1080px) {
            font-size: 32px;
            line-height: 1.5em;
        }

        @media screen and (max-width: 767px) {
            font-size: 19px;
        }

        .purple {
            color: var(--purple);
        }
    }


    .triple {
        margin-top: 90px;
        display: flex;
        justify-content: space-between;
        align-items: center;

        @media screen and (max-width: 767px) {
            margin-top: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-areas:
                "arrow1 arrow2"
                "mid mid";
            column-gap: 20px;
            justify-self: center;
        }

        .arrow {
            flex-shrink: 0;
            display: initial;

            @media screen and (max-width: 1080px) {
                width: 180px;
            }
        }

        .arrow:nth-of-type(1) {
            grid-area: arrow1;
        }

        .arrow:nth-of-type(2) {
            grid-area: arrow2;
        }

        .mid {
            grid-area: mid;

            @media screen and (max-width: 1080px) {
                padding: 0 20px;
            }

            .sentence1 {
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 16px;
                line-height: 2em;
                letter-spacing: 0.01em;
                text-align: left;
                color: #000;

                @media screen and (max-width: 767px) {
                    margin-top: 30px;
                    font-size: 14px;
                }

                .purple {
                    color: var(--purple);
                }
            }

            .sentence2 {
                margin-top: 32px;
                font-family: "Noto Sans JP";
                font-weight: bold;
                font-size: 24px;
                line-height: 45px;
                letter-spacing: 0.01em;
                text-align: center;

                @media screen and (max-width: 767px) {
                    font-size: 18px;
                    line-height: 2em;
                }

                .purple {
                    color: var(--purple);
                }
            }
        }
    }
}

.global-title {
    position: relative;
    z-index: 2;

    .sc {
        width: 50px;
    }

    .big-white {
        margin-top: 20px;
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 56px;
        letter-spacing: 0.01em;
        text-align: center;
        color: #fff;

        @media screen and (max-width: 1080px) {
            margin-top: 15px;
            font-size: 40px;
        }

        @media screen and (max-width: 767px) {
            margin-top: 10px;
            font-size: 24px;
        }
    }

    .small-black {
        margin-top: 30px;
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 26px;
        letter-spacing: 0.01em;
        line-height: 44px;
        text-align: center;
        color: #000;

        @media screen and (max-width: 767px) {
            margin-top: 15px;
            font-size: 18px;
            line-height: 1.8em;
        }
    }
}

.section08 {
    padding: 224px 0 284px;
    position: relative;

    @media screen and (max-width: 1080px) {
        padding: 120px 0;
    }

    @media screen and (max-width: 767px) {
        padding: 100px 0;
    }

    .exclamation {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        margin: 0 auto;

        @media screen and (max-width: 1080px) {
            top: 55%;
            width: 70px;
        }

        @media screen and (max-width: 767px) {
            width: 50px;
        }
    }
}

.section09 {
    padding: 20px 0 132px;
    background-color: #fff;
    position: relative;

    &amp;::before {
        content: '';
        position: absolute;
        top: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: #fff;
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    @media screen and (max-width: 767px) {
        padding: 60px 0;

        &amp;::before {
            top: -32px;
            height: calc(32px * 4);
            background-color: #fff;
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }
    }

    .result {
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 32px;
        letter-spacing: 0.01em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 767px) {
            font-size: 20px;
        }
    }

    .double {
        margin-top: 58px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;

        @media screen and (max-width: 767px) {
            margin-top: 40px;
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    .data {
        margin-top: 72px;
        font-family: "Noto Sans JP";
        font-weight: bold;
        font-size: 25px;
        letter-spacing: 0.01em;
        text-align: left;
        color: #000;

        @media screen and (max-width: 767px) {
            margin-top: 40px;
        }
    }

    .items {
        margin-top: 20px;
        display: flex;
        justify-content: space-between;

        @media screen and (max-width: 767px) {
            flex-direction: column;
            gap: 30px;
        }

        .item {
            padding: 18px 40px;
            border-radius: 18px;
            border: 3px solid var(--orange);
            position: relative;

            &amp;::after {
                content: "";
                position: absolute;
                right: -56px;
                top: 50%;
                width: 0;
                height: 0;
                transform: translateY(-50%);
                border: 21px solid transparent;
                border-left: 18px solid var(--orange);
            }

            @media screen and (max-width: 1080px) {
                padding: 18px 15px;

                &amp;::after {
                    right: -36px;
                    border: 17px solid transparent;
                    border-left: 15px solid var(--orange);
                }
            }

            @media screen and (max-width: 767px) {
                width: 100%;

                &amp;::after {
                    left: 0;
                    right: 0;
                    margin: 0 auto;
                    bottom: 0;
                    top: initial;
                    transform: translateY(125%) rotate(90deg);
                }
            }

            &amp;:last-child {
                &amp;::after {
                    display: none;
                }
            }

            .stat {
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 20px;
                line-height: 2.3em;
                letter-spacing: 0.01em;
                text-align: center;
                color: #000;

                @media screen and (max-width: 1080px) {
                    font-size: 18px;
                }

                @media screen and (max-width: 767px) {
                    font-size: 16px;
                }

                .emphasis {
                    font-size: 39px;
                    color: var(--orange);

                    @media screen and (max-width: 767px) {
                        font-size: 30px;
                    }
                }
            }
        }
    }
}

.section10 {
    background-color: var(--beige);
    padding: 104px 0 20px;
    position: relative;


    &amp;::after {
        content: '';
        position: absolute;
        bottom: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: var(--beige);
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    @media screen and (max-width: 767px) {
        padding: 60px 0;

        &amp;::after {
            bottom: -32px;
            height: calc(32px * 4);
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }
    }

    .text_1 {
        margin-top: 42px;
        font-family: "Noto Sans JP";
        font-weight: 500;
        font-size: 24px;
        line-height: 40px;
        letter-spacing: 0.01em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 767px) {
            margin-top: 21px;
            font-size: 18px;
            line-height: 1.5em;
        }

        .purple {
            color: var(--purple)
        }
    }

    .text_2 {
        margin-top: 7px;
        font-family: "Noto Sans JP";
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 0.01em;
        line-height: 40px;
        text-align: center;
        color: #000;

        @media screen and (max-width: 767px) {
            font-size: 14px;
            line-height: 2em;
        }

        .purple {
            color: var(--purple)
        }
    }

    .instagram {
        position: relative;
        margin-top: 66px;

        @media screen and (max-width: 767px) {
            margin-top: 35px;
        }

        .pic {
            width: 307px;

            @media screen and (max-width: 767px) {
                width: 160px;
            }
        }

        .addition {
            width: fit-content;
            position: absolute;
            bottom: 20px;
            right: 0;
            display: flex;
            align-items: center;
            gap: 2px;
            padding-bottom: 6px;
            border-bottom: 1px solid #8E0097;

            @media screen and (max-width: 1200px) {
                position: relative;
                bottom: initial;
                right: initial;
                margin: 20px auto 0;
            }

            @media screen and (max-width: 767px) {
                margin: 12px auto 0;
            }

            .add-txt {
                font-family: "Noto Sans JP";
                font-weight: 600;
                font-size: 14px;
                letter-spacing: 0.01em;
                line-height: 1em;
                text-align: center;
                color: #8e0097;

                @media screen and (max-width: 767px) {
                    font-size: 12px;
                }
            }

            .icon_ig {
                @media screen and (max-width: 767px) {
                    font-size: 12px;
                }
            }
        }
    }

    .albums {
        margin-top: 36px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;

        @media screen and (max-width: 767px) {
            margin-top: 20px;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .album {}
    }
}

.section11 {
    padding: 224px 0;
    position: relative;

    @media screen and (max-width: 1080px) {
        padding: 120px 0;
    }

    @media screen and (max-width: 767px) {
        padding: 100px 0;
    }
}

.section12 {
    padding: 20px 0 116px;
    background-color: #fff;
    position: relative;

    &amp;::before {
        content: '';
        position: absolute;
        top: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: #fff;
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    &amp;::after {
        content: '';
        position: absolute;
        bottom: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: #fff;
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    @media screen and (max-width: 767px) {
        padding: 60px 0;

        &amp;::before {
            top: -32px;
            height: calc(32px * 4);
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }

        &amp;::after {
            bottom: -32px;
            height: calc(32px * 4);
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }
    }

    .five-boxes {
        margin-top: 16px;
        padding-bottom: 10px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        column-gap: 55px;
        row-gap: 70px;

        @media screen and (max-width: 767px) {
            margin-top: 10px;
            padding-bottom: 6px;
            column-gap: 15px;
            row-gap: 30px;
        }

        .five-box {
            width: calc((100% - 110px) / 3);
            height: 156px;
            border: 5px solid var(--orange);
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;

            &amp;::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                width: 20px;
                height: 20px;
                border-right: 5px solid var(--orange);
                border-bottom: 5px solid var(--orange);
                transform: translate(-50%, -100%) rotate(45deg);
            }

            @media screen and (max-width: 767px) {
                width: calc((100% - 15px) / 2);
                height: 100px;
                border: 3px solid var(--orange);

                &amp;::after {
                    width: 15px;
                    height: 15px;
                    border-right: 3px solid var(--orange);
                    border-bottom: 3px solid var(--orange);
                    transform: translate(-50%, -100%) rotate(45deg);
                }
            }

            .number {
                position: absolute;
                left: 50%;
                top: 0;
                transform: translate(-50%, -58%);
                width: 72px;
                height: 72px;
                border-radius: 50%;
                background-color: var(--orange);
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 32px;
                letter-spacing: 0.01em;
                line-height: 72px;
                text-align: center;
                color: #fff;

                @media screen and (max-width: 767px) {
                    width: 40px;
                    height: 40px;
                    font-size: 20px;
                    line-height: 40px;
                }
            }

            .content {
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 26px;
                letter-spacing: 0.01em;
                text-align: center;
                color: #000;

                @media screen and (max-width: 1080px) {
                    font-size: 20px;
                }

                @media screen and (max-width: 767px) {
                    font-size: 17px;
                }
            }
        }
    }

    .step {
        margin-top: 90px;
        margin-bottom: 50px;
        padding: 36px;
        border-top: 3px solid var(--orange);
        border-bottom: 3px solid var(--orange);
        position: relative;

        @media screen and (max-width: 767px) {
            margin-top: 70px;
            margin-bottom: 25px;
            padding: 30px 0 20px;
        }

        .step-number {
            position: absolute;
            left: 55px;
            top: 0;
            bottom: 0;
            margin: auto 0;
            height: 112px;
            width: 112px;
            border-radius: 50%;
            background-color: var(--orange);
            font-family: "Noto Sans JP";
            font-weight: 900;
            font-size: 50px;
            letter-spacing: 0.01em;
            line-height: 112px;
            text-align: center;
            color: #fff;

            @media screen and (max-width: 1080px) {
                left: 0;
                margin: initial;
                height: 80px;
                width: 80px;
                line-height: 80px;
            }

            @media screen and (max-width: 767px) {
                top: 0;
                left: 0;
                right: 0;
                margin: 0 auto;
                transform: translateY(-50%);
                height: 50px;
                width: 50px;
                font-size: 30px;
                line-height: 50px;
            }
        }

        .texts {
            .text-1 {
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 24px;
                line-height: 58px;
                letter-spacing: 0.01em;
                text-align: center;
                color: #000;

                @media screen and (max-width: 767px) {
                    font-size: 18px;
                    line-height: 2em;
                }
            }

            .text-2 {
                margin-bottom: 10px;
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 36px;
                line-height: 60px;
                letter-spacing: 0.01em;
                text-align: center;

                @media screen and (max-width: 1080px) {
                    font-size: 32px;
                    line-height: 1.8em;
                }

                @media screen and (max-width: 767px) {
                    margin-bottom: 0;
                    font-size: 22px;
                }

                .orange {
                    color: var(--orange);
                }
            }
        }
    }

    .general-txt {
        margin-top: 40px;
        font-family: "Noto Sans JP";
        font-weight: 500;
        font-size: 16px;
        line-height: 2em;
        letter-spacing: 0.01em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 767px) {
            margin-top: 25px;
            font-size: 14px;
        }

        .purple {
            color: var(--purple)
        }
    }

    .workflow {
        margin-top: 46px;
        padding: 0 44px;
        display: grid;
        grid-template-columns: 2.4fr 1fr;
        gap: 110px;
        align-items: center;

        @media screen and (max-width: 767px) {
            padding: 0;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-top: 25px;
        }

        .left-region {
            .logo {
                width: 459px;
                margin-bottom: 36px;

                @media screen and (max-width: 767px) {
                    width: 250px;
                    margin-bottom: 20px;
                }
            }

            .box {
                display: grid;
                grid-template-columns: 1fr 4fr;
                align-items: center;

                .left-area {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    background-color: var(--purple);
                    /* height: -webkit-fill-available; */
                    height: 100%;
                    border-radius: 16px 0 0 16px;

                    .summary {
                        font-family: "Noto Sans JP";
                        font-weight: bold;
                        font-size: 30px;
                        letter-spacing: 0.01em;
                        text-align: left;
                        color: #fff;

                        @media screen and (max-width: 767px) {
                            font-size: 22px;
                        }
                    }
                }

                .right-area {
                    padding: 36px;
                    border-radius: 0 16px 16px 0;
                    background-color: #ECECEC;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    gap: 12px;

                    @media screen and (max-width: 1080px) {
                        padding: 26px;
                    }

                    @media screen and (max-width: 767px) {
                        gap: 8px;
                    }

                    .specific {
                        font-family: "Noto Sans JP";
                        font-weight: 900;
                        font-size: 22px;
                        letter-spacing: 0.01em;
                        text-align: center;
                        color: #000;

                        @media screen and (max-width: 767px) {
                            font-size: 16px;
                        }
                    }

                    .pink-arrow {
                        @media screen and (max-width: 767px) {
                            width: 20px;
                        }
                    }
                }

                .right-area.special {
                    position: relative;

                    .center-arrow {
                        position: absolute;
                        bottom: 0;
                        left: 50%;
                        transform: translate(-50%, calc(100% + 18px));

                        @media screen and (max-width: 767px) {
                            transform: translate(-50%, calc(100% + 12px));
                            width: 20px;
                        }
                    }
                }
            }

            .out-arrow {
                margin: 18px auto;
                visibility: hidden;

                @media screen and (max-width: 767px) {
                    margin: 12px auto;
                    width: 20px;
                }
            }
        }

        .right-region {

            .confirm {
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 38px;
                letter-spacing: 0.01em;
                text-align: center;
                color: #8e0097;
                margin: auto;
                width: fit-content;
                position: relative;

                &amp;::before {
                    content: "";
                    position: absolute;
                    left: -25px;
                    top: 0;
                    bottom: 0;
                    margin: auto 0;
                    width: 2px;
                    height: 65px;
                    background-color: var(--purple);
                    transform: rotate(-15deg);
                }

                &amp;::after {
                    content: "";
                    position: absolute;
                    right: -25px;
                    top: 0;
                    bottom: 0;
                    margin: auto 0;
                    width: 2px;
                    height: 65px;
                    background-color: var(--purple);
                    transform: rotate(15deg);
                }

                @media screen and (max-width: 767px) {
                    font-size: 24px;

                    &amp;::before {
                        left: -15px;
                        height: 35px;
                    }

                    &amp;::after {
                        right: -15px;
                        height: 35px;
                    }
                }
            }

            .enterprise {
                margin-top: 50px;

                @media screen and (max-width: 767px) {
                    margin-top: 25px;
                    width: 100px;
                }
            }

        }
    }

    .portraits {
        margin-top: 70px;
        padding: 0 60px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;

        @media screen and (max-width: 767px) {
            margin-top: 35px;
            padding: 0;
            gap: 5px;
        }

        .worker {
            margin: initial;
        }
    }

    .galleries {
        margin-top: 43px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;

        @media screen and (max-width: 767px) {
            margin-top: 25px;
            gap: 5px;
        }

        .gallery {
            margin: initial;
        }
    }

    .stacks {
        margin-top: 60px;
        margin-bottom: 132px;
        display: flex;
        justify-content: center;
        align-items: center;

        @media screen and (max-width: 767px) {
            margin-top: 30px;
            margin-bottom: 66px;
        }

        .stack {
            width: 438px;
            margin: initial;

            @media screen and (max-width: 1080px) {
                width: calc(50% + 45px);
            }

            @media screen and (max-width: 767px) {
                width: calc(50% + 22px);
            }
        }

        .stack1 {
            transform: translate(45px, 30px);

            @media screen and (max-width: 767px) {
                transform: translate(22px, 15px);
            }
        }

        .stack2 {
            transform: translate(-45px, -30px);

            @media screen and (max-width: 767px) {
                transform: translate(-22px, -15px);
            }
        }
    }

    .schedule {
        margin-top: 54px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 60px;

        @media screen and (max-width: 767px) {
            flex-direction: column;
            margin-top: 30px;
            gap: 20px;
        }

        .l-pic {
            margin: initial;
            display: initial;

            @media screen and (max-width: 767px) {
                width: 80px;
            }
        }

        .r-desc {
            font-family: "Noto Sans JP";
            font-weight: 500;
            font-size: 16px;
            letter-spacing: 0.01em;
            line-height: 40px;
            text-align: left;
            color: #000;

            @media screen and (max-width: 767px) {
                text-align: center;
                font-size: 14px;
                line-height: 2em;
            }

            .purple {
                color: var(--purple);
            }
        }
    }

    .flow {
        margin-top: 68px;

        @media screen and (max-width: 767px) {
            margin-top: 35px;
        }
    }
}

.section13 {
    padding: 224px 0;
    position: relative;

    @media screen and (max-width: 1080px) {
        padding: 120px 0;
    }

    @media screen and (max-width: 767px) {
        padding: 100px 0;
    }
}

.section14 {
    padding: 0 0 100px;
    background-color: #fff;
    position: relative;

    &amp;::before {
        content: '';
        position: absolute;
        top: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: #fff;
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    @media screen and (max-width: 767px) {
        padding: 60px 0;

        &amp;::before {
            top: -32px;
            height: calc(32px * 4);
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }
    }

    .early {
        margin-top: 96px;
        position: relative;
        font-family: "Noto Sans JP";
        font-weight: 600;
        font-size: 24px;
        letter-spacing: 0.01em;
        text-align: center;
        color: #000;

        &amp;::before {
            content: "";
            position: absolute;
            top: -62px;
            left: 50%;
            transform: translateX(-50%);
            height: 5px;
            width: 50px;
            background-color: var(--orange);
        }

        @media screen and (max-width: 767px) {
            margin-top: 50px;
            font-size: 18px;

            &amp;::before {
                top: -25px;
                left: 50%;
                height: 3px;
                width: 30px;
                transform: translateX(-50%);
            }
        }
    }

    .plans {
        margin-top: 49px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: center;
        gap: 42px;

        @media screen and (max-width: 767px) {
            margin-top: 30px;
            gap: 10px;
        }

        .plan {
            background-color: #FFF0DB;
            border-radius: 18px;
            padding: 60px 10px 38px;

            @media screen and (max-width: 767px) {
                padding: 30px 10px 20px;
            }

            .key {
                margin: 10px 0;
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 20px;
                letter-spacing: 0.01em;
                text-align: center;
                color: #ff9e1c;

                @media screen and (max-width: 767px) {
                    margin: 6px 0;
                    font-size: 14px;
                }
            }

            .type {
                margin-bottom: 95px;
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 26px;
                letter-spacing: 0.01em;
                text-align: center;
                color: #000;
                position: relative;

                &amp;::after {
                    content: "";
                    position: absolute;
                    bottom: -37px;
                    left: 50%;
                    transform: translateX(-50%);
                    height: 5px;
                    width: 50px;
                    background-color: var(--orange);
                }

                @media screen and (max-width: 767px) {
                    margin-bottom: 40px;
                    font-size: 14px;

                    &amp;::after {
                        bottom: -20px;
                        height: 3px;
                        width: 30px;
                    }
                }
            }

            .campaign {
                margin-top: 20px;
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 17px;
                letter-spacing: 0.01em;
                text-align: center;
                color: #f00;
                position: relative;

                &amp;::before {
                    content: "";
                    position: absolute;
                    top: -20px;
                    left: 0;
                    right: 0;
                    margin: 0 auto;
                    width: 0;
                    height: 0;
                    border: 10px solid transparent;
                    border-top: 10px solid red;
                }

                @media screen and (max-width: 767px) {
                    margin-top: 10px;
                    font-size: 10px;

                    &amp;::before {
                        top: -15px;
                        border: 7px solid transparent;
                        border-top: 7px solid red;
                    }
                }
            }

            .value {
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 20px;
                letter-spacing: 0.01em;
                padding: 6px 0 24px;
                text-align: center;
                color: #000;

                @media screen and (max-width: 767px) {
                    font-size: 14px;
                    padding: 0 0 16px;
                }

                .red {
                    color: #FF0000;
                }

                .number {
                    font-size: 41px;

                    @media screen and (max-width: 767px) {
                        font-size: 16px;
                    }
                }
            }
        }

        .plan.mid {
            padding: 93px 10px 72px;
            position: relative;

            @media screen and (max-width: 767px) {
                padding: 40px 10px 30px;
            }

            .recommend {
                position: absolute;
                top: 0;
                right: 0;
                transform: translate(30%, -30%);

                @media screen and (max-width: 767px) {
                    width: 50px;
                }
            }
        }
    }

    .space {
        height: 100px;

        @media screen and (max-width: 767px) {
            height: 50px;
        }
    }

    .share {
        margin-top: 50px;
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 25px;
        letter-spacing: 0.01em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 767px) {
            margin-top: 30px;
            font-size: 18px;
        }

        .orange {
            color: var(--orange);
        }

        .number {
            font-size: 34px;

            @media screen and (max-width: 767px) {
                font-size: 22px;
            }
        }
    }
}

.section15 {
    padding: 100px 0 82px;
    background-color: var(--beige);

    @media screen and (max-width: 767px) {
        padding: 60px 0;
    }

    .tiny {
        margin-top: 50px;
        font-family: "Noto Sans JP";
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 0.01em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 767px) {
            margin-top: 25px;
            font-size: 14px;
        }
    }

    .things {
        margin-top: 72px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;

        @media screen and (max-width: 1080px) {
            grid-template-columns: 1fr 1fr;
        }

        @media screen and (max-width: 767px) {
            margin-top: 40px;
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .thing {
            .photo {
                @media screen and (max-width: 767px) {
                    width: 160px;
                }
            }

            .title {
                margin-top: 35px;
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 21px;
                letter-spacing: 0.01em;
                line-height: 37px;
                text-align: left;
                color: #000;

                @media screen and (max-width: 767px) {
                    text-align: center;
                    margin-top: 20px;
                    font-size: 17px;
                    line-height: 1.5em;
                }
            }

            .detail {
                margin-top: 8px;
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 16px;
                letter-spacing: 0.01em;
                line-height: 2em;
                text-align: left;
                color: #000;

                @media screen and (max-width: 767px) {
                    margin-top: 6px;
                    font-size: 14px;
                }
            }
        }
    }
}

.section16 {
    padding: 100px 0 16px;
    background-color: #fff;
    position: relative;

    &amp;::after {
        content: '';
        position: absolute;
        bottom: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: #fff;
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    @media screen and (max-width: 767px) {
        padding: 60px 0;

        &amp;::after {
            bottom: -32px;
            height: calc(32px * 4);
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }
    }

    .medias {
        margin-top: 102px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 91px;

        @media screen and (max-width: 1080px) {
            gap: 40px;
        }

        @media screen and (max-width: 767px) {
            margin-top: 50px;
            grid-template-columns: 1fr;
        }

        .media {
            .icon {
                @media screen and (max-width: 767px) {
                    width: 100px;
                }
            }

            .media-name {
                margin-top: 28px;
                font-family: "Noto Sans JP";
                font-weight: bold;
                font-size: 24px;
                letter-spacing: 0.01em;
                text-align: center;

                @media screen and (max-width: 767px) {
                    margin-top: 20px;
                    font-size: 18px;
                }
            }

            .description {
                margin-top: 18px;
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 16px;
                letter-spacing: 0.01em;
                line-height: 2em;
                text-align: left;

                @media screen and (max-width: 767px) {
                    font-size: 14px;
                }
            }
        }
    }

    .txt1 {
        margin-top: 120px;
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 42px;
        letter-spacing: 0.01em;
        text-align: center;

        @media screen and (max-width: 1080px) {
            margin-top: 90px;
            font-size: 36px;
        }

        @media screen and (max-width: 767px) {
            margin-top: 60px;
            font-size: 20px;
        }

        .purple {
            color: var(--purple);
        }
    }

    .txt2 {
        @media screen and (max-width: 1080px) {
            width: 400px;
        }

        @media screen and (max-width: 767px) {
            width: 200px;
        }
    }

    .txt3 {
        margin-top: 72px;
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 26px;
        letter-spacing: 0.01em;
        text-align: center;
        color: #000;

        @media screen and (max-width: 767px) {
            margin-top: 40px;
            font-size: 18px;
        }
    }

    .two-btns {
        margin-top: 87px;
        display: flex;
        justify-content: center;
        gap: 67px;

        @media screen and (max-width: 1080px) {
            margin-top: 60px;
            gap: 40px;
        }

        @media screen and (max-width: 767px) {
            flex-direction: column;
            margin-top: 45px;
        }

        .two-btn {
            .type {
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 33px;
                letter-spacing: 0.01em;
                text-align: center;
                color: #8e0097;
                margin: auto;
                width: fit-content;
                position: relative;

                &amp;::before {
                    content: "";
                    position: absolute;
                    left: -45px;
                    top: 0;
                    bottom: 0;
                    margin: auto 0;
                    width: 2px;
                    height: 65px;
                    background-color: var(--purple);
                    transform: rotate(-15deg);
                }

                &amp;::after {
                    content: "";
                    position: absolute;
                    right: -45px;
                    top: 0;
                    bottom: 0;
                    margin: auto 0;
                    width: 2px;
                    height: 65px;
                    background-color: var(--purple);
                    transform: rotate(15deg);
                }

                @media screen and (max-width: 767px) {
                    font-size: 20px;

                    &amp;::before {
                        left: -20px;
                        height: 35px;
                    }

                    &amp;::after {
                        right: -20px;
                        height: 35px;
                    }
                }
            }

            .button {
                margin-top: 31px;
                width: 507px;
                height: 108px;
                border-radius: 54px;
                background: linear-gradient(#8e0097 0%, #872438 100%);
                display: flex;
                gap: 17px;
                justify-content: center;
                align-items: center;

                @media screen and (max-width: 1080px) {
                    width: 330px;
                    height: 80px;
                    border-radius: 40px;
                }

                @media screen and (max-width: 767px) {
                    margin: 20px auto 0;
                    width: 280px;
                    height: 60px;
                    border-radius: 30px;
                    gap: 10px;
                }

                .tel {
                    display: initial;
                    margin: initial;

                    @media screen and (max-width: 1080px) {
                        width: 30px;
                    }
                }

                .text {
                    font-family: "Noto Sans JP";
                    font-weight: bold;
                    font-size: 31px;
                    letter-spacing: 0.01em;
                    text-align: center;
                    color: #fff;

                    @media screen and (max-width: 1080px) {
                        font-size: 20px;
                    }
                }

                .phone-number {
                    font-family: "Noto Sans JP";
                    font-weight: bold;
                    font-size: 40px;
                    letter-spacing: 0.01em;
                    text-align: center;
                    color: #fff;

                    @media screen and (max-width: 1080px) {
                        font-size: 24px;
                    }
                }
            }
        }
    }

    .logo {
        margin-top: 51px;
        width: 406px;

        @media screen and (max-width: 767px) {
            margin-top: 35px;
            width: 250px;
        }
    }
}

.section17 {
    padding: 224px 0 212px;
    position: relative;

    @media screen and (max-width: 1080px) {
        padding: 120px 0;
    }

    @media screen and (max-width: 767px) {
        padding: 100px 0;
    }
}

.section18 {
    padding: 14px 0 100px;
    background-color: #fff;
    position: relative;

    &amp;::before {
        content: '';
        position: absolute;
        top: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: #fff;
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    &amp;::after {
        content: '';
        position: absolute;
        bottom: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: #fff;
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    @media screen and (max-width: 767px) {
        padding: 60px 0;

        &amp;::before {
            top: -32px;
            height: calc(32px * 4);
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }

        &amp;::after {
            bottom: -32px;
            height: calc(32px * 4);
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }
    }

    .conversation {
        margin-bottom: 33px;

        @media screen and (max-width: 767px) {
            margin-bottom: 20px;
        }

        .question {
            padding: 20px;
            background-color: var(--orange);
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            cursor: pointer;

            @media screen and (max-width: 767px) {
                padding: 15px;
            }

            .txt_1 {
                position: absolute;
                left: 20px;
                top: -40px;
                font-family: "Noto Sans JP";
                font-weight: normal;
                font-size: 70px;
                letter-spacing: 0.01em;
                text-align: left;
                color: #000;

                @media screen and (max-width: 767px) {
                    left: 10px;
                    top: -20px;
                    font-size: 40px;
                }
            }

            .txt_2 {
                padding-left: 100px;
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 20px;
                letter-spacing: 0.01em;
                text-align: left;
                color: #000;

                @media screen and (max-width: 767px) {
                    padding-left: 35px;
                    padding-right: 5px;
                    font-size: 16px;
                }
            }

            .accordion-btn {
                background-color: #fff;
                width: 35px;
                height: 35px;
                border-radius: 50%;
                position: relative;
                flex-shrink: 0;

                @media screen and (max-width: 767px) {
                    width: 24px;
                    height: 24px;
                }

                .horizontal {
                    position: absolute;
                    width: 17px;
                    height: 3px;
                    border-radius: 1.5px;
                    top: 50%;
                    left: 50%;
                    background-color: var(--orange);
                    transform: translate(-50%, -50%);
                    transition: all ease 0.3s;

                    @media screen and (max-width: 767px) {
                        width: 12px;
                        height: 2px;
                        border-radius: 1px;
                    }
                }

                .vertical {
                    position: absolute;
                    width: 3px;
                    height: 17px;
                    border-radius: 1.5px;
                    top: 50%;
                    left: 50%;
                    background-color: var(--orange);
                    transform: translate(-50%, -50%);
                    transition: all ease 0.3s;

                    @media screen and (max-width: 767px) {
                        width: 2px;
                        height: 12px;
                        border-radius: 1px;
                    }
                }
            }
        }

        .answer {
            background-color: var(--beige);
            border-radius: 10px;
            padding: 24px 30px;
            display: none;

            @media screen and (max-width: 767px) {
                padding: 18px 20px;
            }

            .txt_3 {
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 16px;
                letter-spacing: 0.01em;
                text-align: left;
                color: #000;

                @media screen and (max-width: 767px) {
                    font-size: 14px;
                }
            }
        }
    }

    .conversation.expand {
        .question {
            .accordion-btn {
                .vertical {
                    transform: translate(-50%, -50%) rotate(90deg);
                }
            }
        }
    }
}

.section19 {
    padding: 224px 0 202px;
    position: relative;

    @media screen and (max-width: 1080px) {
        padding: 120px 0;
    }

    @media screen and (max-width: 767px) {
        padding: 60px 0;
    }
}

.section20 {
    padding: 52px 0 90px;
    background-color: #fff;
    position: relative;

    &amp;::before {
        content: '';
        position: absolute;
        top: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: #fff;
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    @media screen and (max-width: 767px) {
        padding: 60px 0;

        &amp;::before {
            top: -32px;
            height: calc(32px * 4);
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }
    }

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

        @media screen and (max-width: 767px) {
            gap: 10px;
        }

        .item {
            border-radius: 10px;
            background-color: var(--beige);
            padding: 50px 20px;
            position: relative;

            &amp;::after {
                content: "";
                position: absolute;
                left: 50%;
                bottom: 35px;
                width: 26px;
                height: 26px;
                border-right: 5px solid var(--orange);
                border-bottom: 5px solid var(--orange);
                transform: translate(-50%, 0) rotate(45deg);
            }

            @media screen and (max-width: 767px) {
                padding: 30px 10px;

                &amp;::after {
                    bottom: 20px;
                    width: 16px;
                    height: 16px;
                    border-right: 3px solid var(--orange);
                    border-bottom: 3px solid var(--orange);
                }
            }

            .txt-1 {
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 18px;
                letter-spacing: 0.01em;
                text-align: center;
                color: #ff9e1b;

                @media screen and (max-width: 767px) {
                    font-size: 14px;
                }
            }

            .txt-2 {
                font-family: "Noto Sans JP";
                font-weight: 600;
                font-size: 56px;
                line-height: 1.2em;
                letter-spacing: 0.01em;
                text-align: center;
                color: #ff9e1b;

                @media screen and (max-width: 767px) {
                    font-size: 24px;
                }
            }

            .txt-3 {
                margin-top: 24px;
                margin-bottom: 40px;
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 41px;
                letter-spacing: 0.01em;
                line-height: 64px;
                text-align: center;
                color: #000;

                @media screen and (max-width: 1080px) {
                    font-size: 28px;
                    line-height: 1.5em;
                }

                @media screen and (max-width: 767px) {
                    margin-top: 16px;
                    margin-bottom: 25px;
                    font-size: 14px;
                }
            }
        }
    }
}

.reason-up {
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.01em;
    text-align: center;
    color: #000;

    @media screen and (max-width: 767px) {
        font-size: 16px;
    }
}

.reason-mid {
    margin-top: 18px;
    margin-bottom: 38px;
    font-family: "Noto Sans JP";
    font-weight: 900;
    font-size: 36px;
    letter-spacing: 0.01em;
    text-align: center;
    color: #000;

    @media screen and (max-width: 1080px) {
        font-size: 30px;
    }

    @media screen and (max-width: 767px) {
        margin-top: 12px;
        margin-bottom: 20px;
        font-size: 22px;
    }

    .purple {
        color: var(--purple);
    }
}

.reason-down {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 2em;
    text-align: center;
    color: #000;

    @media screen and (max-width: 767px) {
        grid-area: mid;
        font-size: 14px;
    }

    .purple {
        color: var(--purple);
    }
}

.section21 {
    background-color: var(--beige);
    padding: 70px 0 46px;

    .three {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 20px;
        align-items: center;

        @media screen and (max-width: 1080px) {
            grid-template-columns: 1fr 2fr 1fr;
        }

        @media screen and (max-width: 767px) {
            grid-template-columns: 1fr 1fr;
            grid-template-areas:
                "arrow1 arrow2"
                "mid mid";
            column-gap: 20px;
        }

        @media screen and (max-width: 767px) {
            margin-top: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-areas:
                "arrow1 arrow2"
                "mid mid";
            align-items: center;
            column-gap: 20px;
        }

        .partner:nth-of-type(1) {
            @media screen and (max-width: 767px) {
                grid-area: arrow1;
            }
        }

        .partner:nth-of-type(2) {
            @media screen and (max-width: 767px) {
                grid-area: arrow2;
            }
        }
    }
}

.section22 {
    padding: 100px 0 78px;
    background-color: #fff;

    @media screen and (max-width: 767px) {
        padding: 60px 0;
    }

    .rbox {
        margin-top: 20px;

        @media screen and (max-width: 767px) {
            width: 160px;
        }
    }

    .photos {
        margin-top: 27px;
        display: grid;
        grid-template-columns: 293fr 262fr 262fr 262fr;
        align-items: center;
        gap: 20px;

        @media screen and (max-width: 767px) {
            grid-template-columns: repeat(3, 1fr);
            column-gap: 10px;
            row-gap: 20px;
        }

        .photo {
            &amp;:first-child {
                @media screen and (max-width: 767px) {
                    width: 140px;
                    grid-column: 1 / span 3;
                }
            }
        }
    }
}

.section23 {
    background-color: var(--beige);
    padding: 86px 0 74px;
    position: relative;

    &amp;::after {
        content: '';
        position: absolute;
        bottom: -6.77vw;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
        height: calc(6.77vw * 4);
        background-color: var(--beige);
        clip-path: ellipse(calc(50% / 0.866) calc(6.77vw * 2) at 50% 50%);
    }

    @media screen and (max-width: 767px) {
        padding: 60px 0;

        &amp;::after {
            bottom: -32px;
            height: calc(32px * 4);
            clip-path: ellipse(calc(50% / 0.866) calc(32px * 2) at 50% 50%);
        }
    }

    .chart {
        margin-top: 40px;

        @media screen and (max-width: 767px) {
            margin-top: 30px;
        }
    }
}

.section24 {
    padding: 128px 0;
    position: relative;

    @media screen and (max-width: 1080px) {
        padding: 60px 0;
    }

    @media screen and (max-width: 767px) {
        padding: 60px 0 30px;
    }

    .txt1 {
        margin-top: 120px;
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 42px;
        letter-spacing: 0.01em;
        text-align: center;

        @media screen and (max-width: 767px) {
            margin-top: 60px;
            font-size: 20px;
        }

        .purple {
            color: var(--purple);
        }
    }

    .txt2 {
        @media screen and (max-width: 767px) {
            width: 200px;
        }
    }

    .txt3 {
        margin-top: 72px;
        font-family: "Noto Sans JP";
        font-weight: 900;
        font-size: 26px;
        letter-spacing: 0.01em;
        text-align: center;
        color: #fff;

        @media screen and (max-width: 767px) {
            margin-top: 40px;
            font-size: 18px;
        }
    }

    .two-btns {
        margin-top: 87px;
        display: flex;
        justify-content: center;
        gap: 67px;

        @media screen and (max-width: 1080px) {
            margin-top: 60px;
            gap: 40px;
        }

        @media screen and (max-width: 767px) {
            flex-direction: column;
            margin-top: 45px;
            gap: 40px;
        }

        .two-btn {
            .type {
                font-family: "Noto Sans JP";
                font-weight: 900;
                font-size: 33px;
                letter-spacing: 0.01em;
                text-align: center;
                color: #8e0097;
                margin: auto;
                width: fit-content;
                position: relative;

                &amp;::before {
                    content: "";
                    position: absolute;
                    left: -45px;
                    top: 0;
                    bottom: 0;
                    margin: auto 0;
                    width: 2px;
                    height: 65px;
                    background-color: var(--purple);
                    transform: rotate(-15deg);
                }

                &amp;::after {
                    content: "";
                    position: absolute;
                    right: -45px;
                    top: 0;
                    bottom: 0;
                    margin: auto 0;
                    width: 2px;
                    height: 65px;
                    background-color: var(--purple);
                    transform: rotate(15deg);
                }

                @media screen and (max-width: 767px) {
                    font-size: 20px;

                    &amp;::before {
                        left: -20px;
                        height: 35px;
                    }

                    &amp;::after {
                        right: -20px;
                        height: 35px;
                    }
                }
            }

            .button {
                margin-top: 31px;
                width: 507px;
                height: 108px;
                border-radius: 54px;
                background: linear-gradient(#8e0097 0%, #872438 100%);
                display: flex;
                gap: 17px;
                justify-content: center;
                align-items: center;

                @media screen and (max-width: 1080px) {
                    width: 330px;
                    height: 80px;
                    border-radius: 40px;
                }

                @media screen and (max-width: 767px) {
                    margin: 20px auto 0;
                    width: 280px;
                    height: 60px;
                    border-radius: 30px;
                    gap: 10px;
                }

                .tel {
                    display: initial;
                    margin: initial;

                    @media screen and (max-width: 1080px) {
                        width: 30px;
                    }
                }

                .text {
                    font-family: "Noto Sans JP";
                    font-weight: bold;
                    font-size: 31px;
                    letter-spacing: 0.01em;
                    text-align: center;
                    color: #fff;

                    @media screen and (max-width: 1080px) {
                        font-size: 20px;
                    }
                }

                .phone-number {
                    font-family: "Noto Sans JP";
                    font-weight: bold;
                    font-size: 40px;
                    letter-spacing: 0.01em;
                    text-align: center;
                    color: #fff;

                    @media screen and (max-width: 1080px) {
                        font-size: 24px;
                    }
                }
            }
        }
    }

    .white-board {
        margin-top: 66px;
        background-color: #fff;
        border-radius: 19px;
        padding: 69px 106px;

        @media screen and (max-width: 767px) {
            margin-top: 50px;
            padding: 40px 15px;
        }

        .logo {
            width: 406px;

            @media screen and (max-width: 767px) {
                width: 250px;
            }
        }

        .profiles {
            margin-top: 53px;
            display: grid;
            grid-template-columns: 90px auto;
            align-items: center;
            gap: 14px;

            @media screen and (max-width: 767px) {
                margin-top: 40px;
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .key {
                font-family: "Noto Sans JP";
                font-weight: bold;
                font-size: 16px;
                letter-spacing: 0.01em;
                text-align: left;
                color: #ff9e1b;

                @media screen and (max-width: 767px) {
                    font-size: 14px;
                    padding-top: 10px;
                }
            }

            .value {
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 16px;
                letter-spacing: 0.01em;
                text-align: left;
                color: #000;

                @media screen and (max-width: 767px) {
                    font-size: 14px;
                }
            }

            .link {
                font-family: "Noto Sans JP";
                font-weight: 500;
                font-size: 16px;
                letter-spacing: 0.01em;
                text-align: left;
                color: #8e0097;

                @media screen and (max-width: 767px) {
                    font-size: 14px;
                }
            }
        }
    }

    .copyright {
        margin-top: 39px;
        font-family: "Noto Sans JP";
        font-weight: 500;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-align: center;
        color: #fff;

        @media screen and (max-width: 767px) {
            margin-top: 30px;
        }
    }
}

.anchor_from {
    position: fixed;
    right: 3.5rem;
    bottom: 3.5rem;
    z-index: 33;
    transition: transform ease 0.3s;

    @media screen and (max-width: 767px) {
        right: 12px;
        bottom: 15px;
    }

    &amp;:hover {
        opacity: 1;
        transform: scale(1.05);
    }

    &amp; img {
        width: 41.9rem;

        @media screen and (max-width: 767px) {
            /* width: 240px; */
            width: calc(100% - 12px);
            margin-right: 0;
        }
    }
}

.anchor_to {
    background-color: #fff;
    padding-bottom: 10rem;

    @media screen and (max-width: 767px) {
        padding-bottom: 60px;
    }

    .orange-plus {
        display: block;
        margin: auto;
        width: 7.3rem;

        @media screen and (max-width: 767px) {
            width: 40px;
        }
    }

    .banner1 {
        display: block;
        margin: 4.5rem auto 0;
        width: 78.7rem;

        @media screen and (max-width: 767px) {
            margin: 25px auto 0;
            width: 100%;
        }
    }

    .orange-box {
        margin-top: 3rem;
        border-radius: 2.1rem;
        background-color: #FFF0DB;
        padding: 6rem 11.2rem;

        @media screen and (max-width: 767px) {
            margin-top: 20px;
            border-radius: 10px;
            padding: 35px 15px;
        }

        .title {
            font-family: 'Noto Sans JP';
            font-style: normal;
            font-weight: 700;
            font-size: 4rem;
            text-align: center;
            line-height: 1.2;
            color: #000000;

            @media screen and (max-width: 767px) {
                font-size: 24px;
            }
        }

        .desc {
            margin-top: 2rem;
            font-family: 'Noto Sans JP';
            font-style: normal;
            font-weight: 400;
            font-size: 1.6rem;
            line-height: 2;
            text-align: center;
            letter-spacing: 0.06em;
            color: #000000;

            @media screen and (max-width: 767px) {
                margin-top: 15px;
                font-size: 14px;
            }
        }

        .side-by-side1 {
            margin-top: 2.6rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.8rem;

            @media screen and (max-width: 767px) {
                margin-top: 20px;
                gap: 12px;
            }

            .text1 {
                width: 21rem;
                height: 5.2rem;
                border-radius: 2.6rem;
                background-color: #FFA52D;
                display: flex;
                justify-content: center;
                align-items: center;
                font-family: 'Noto Sans JP';
                font-style: normal;
                font-weight: 700;
                font-size: 2.4rem;
                line-height: 1;
                text-align: center;
                color: #000000;

                @media screen and (max-width: 767px) {
                    width: 100px;
                    height: 32px;
                    border-radius: 18px;
                    font-size: 16px;
                }
            }

            .text2 {
                font-family: 'Noto Sans JP';
                font-style: normal;
                font-weight: 700;
                font-size: 3rem;
                line-height: 1;
                color: #000000;

                @media screen and (max-width: 767px) {
                    font-size: 20px;
                }

                &amp; span {
                    font-size: 4rem;

                    @media screen and (max-width: 767px) {
                        font-size: 24px;
                    }
                }
            }
        }

        .banner2 {
            position: relative;
            z-index: 2;
            display: block;
            margin: 3.5rem auto 0;
            width: 53.5rem;

            @media screen and (max-width: 767px) {
                margin: 20px auto 0;
                width: 100%;
            }
        }

        .white-box {
            margin-top: -3rem;
            border-radius: 1.2rem;
            background-color: #fff;
            padding: 6rem 0 5rem;

            @media screen and (max-width: 767px) {
                margin-top: 10px;
                border-radius: 8px;
                padding: 40px 0 30px;
            }

            .side-by-side2 {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 2.6rem;

                @media screen and (max-width: 767px) {
                    gap: 15px;
                }

                .text1 {
                    width: 21rem;
                    height: 5.2rem;
                    border-radius: 2.6rem;
                    background-color: #FFA52D;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    font-family: 'Noto Sans JP';
                    font-style: normal;
                    font-weight: 700;
                    font-size: 2.4rem;
                    line-height: 1;
                    text-align: center;
                    color: #000000;

                    @media screen and (max-width: 767px) {
                        width: 100px;
                        height: 32px;
                        border-radius: 18px;
                        font-size: 16px;
                    }
                }

                .text2 {
                    font-family: 'Noto Sans JP';
                    font-style: normal;
                    font-weight: 700;
                    font-size: 4.4rem;
                    line-height: 1;
                    color: #000000;
                    position: relative;

                    &amp;::after {
                        content: "";
                        width: 17.8rem;
                        height: 0.4rem;
                        background-color: #FF0000;
                        position: absolute;
                        top: 50%;
                        left: -0.2rem;
                    }

                    @media screen and (max-width: 767px) {
                        font-size: 22px;

                        &amp;::after {
                            width: 91px;
                            height: 2px;
                            left: -1px;
                        }
                    }

                    .span1 {
                        font-size: 3rem;

                        @media screen and (max-width: 767px) {
                            font-size: 20px;
                        }
                    }

                    .span2 {
                        font-size: 1.6rem;

                        @media screen and (max-width: 767px) {
                            font-size: 12px;
                        }
                    }
                }
            }

            .arrow {
                margin: 1.5rem auto 0;
                display: block;
                width: 7.7rem;

                @media screen and (max-width: 767px) {
                    margin: 15px auto 0;
                    width: 40px;
                }
            }

            .side-by-side3 {
                display: flex;
                justify-content: center;
                align-items: flex-end;
                gap: 1.6rem;

                @media screen and (max-width: 767px) {
                    margin-top: 10px;
                    gap: 10px;
                    flex-direction: column;
                    align-items: center;
                }

                .text1 {
                    font-family: 'Noto Sans JP';
                    font-style: normal;
                    font-weight: 700;
                    font-size: 2.3rem;
                    line-height: 1.5;
                    color: #FF0000;
                    /* text-decoration: underline; */
                    /* text-underline-offset: -0.4em; */
                    /* text-decoration-color: #fff04e; */
                    /* text-decoration-thickness: 0.7em; */
                    position: relative;
                    z-index: 5;

                    &amp;::after {
                        content: "";
                        width: 100%;
                        height: 1.6rem;
                        background-color: #fff04e;
                        position: absolute;
                        left: 0;
                        bottom: 0.05em;
                        z-index: -1;
                    }

                    @media screen and (max-width: 767px) {
                        font-size: 16px;

                        &amp;::after {
                            height: 10px;
                        }
                    }
                }

                .text2 {
                    font-family: 'Noto Sans JP';
                    font-style: normal;
                    font-weight: 700;
                    font-size: 30px;
                    line-height: 1;
                    color: #000000;

                    @media screen and (max-width: 767px) {
                        font-size: 22px;
                    }

                    &amp; span {
                        font-family: 'Noto Sans JP';
                        font-style: normal;
                        font-weight: 700;
                        font-size: 6.2rem;
                        line-height: 1;
                        color: #FF0000;
                        padding: 0 0.1em;

                        @media screen and (max-width: 767px) {
                            font-size: 30px;
                        }
                    }
                }
            }
        }

        .remark {
            margin-top: 2rem;
            font-family: 'Noto Sans JP';
            font-style: normal;
            font-weight: 400;
            font-size: 1.4rem;
            line-height: 1.8;
            color: #000000;
            text-align: center;

            @media screen and (max-width: 767px) {
                margin-top: 10px;
                font-size: 13px;
                text-align: left;
            }
        }
    }
}</pre></body></html>