@charset "UTF-8";

#common-banner {
    position: relative;

    &::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 100%;
        height: 250%;
        background-image: url("../../img/page/purpose/bg.png");
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    @media screen and (max-width: 767px) {

        &::after {
            display: none;
        }
    }
}

#purpose {
    padding: 4rem 0 14rem;

    @media screen and (max-width: 767px) {
        padding: 0 0 8rem;
    }

    .section {
        position: relative;

        .cyan-title {
            padding-top: 10rem;
            font-family: var(--monst);
            font-style: italic;
            font-weight: 700;
            font-size: 4.9rem;
            line-height: 1.5;
            text-align: center;
            letter-spacing: 0.04em;
            color: #00ADA9;

            @media screen and (max-width: 767px) {
                padding-top: 5rem;
                font-size: 3rem;
            }
        }

        .bold-text {
            margin-top: 4rem;
            font-family: var(--zenkaku);
            font-weight: 700;
            font-size: 3.6rem;
            line-height: 1.5;
            text-align: center;
            letter-spacing: 0.1em;

            @media screen and (max-width: 767px) {
                margin-top: 2rem;
                font-size: 2rem;
            }

            .highlight {
                color: #E00000;
            }
        }

        .description-text {
            margin-top: 4rem;
            font-family: var(--noto);
            font-size: 2rem;
            line-height: 2;
            text-align: center;
            letter-spacing: 0.08em;
            padding-bottom: 6rem;

            @media screen and (max-width: 767px) {
                margin-top: 2rem;
                font-size: 1.4rem;
                padding-bottom: 0;
            }
        }

        .logo-image {
            display: block;
            width: 62.1rem;
            z-index: -1;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);

            @media screen and (max-width: 767px) {
                top: 10rem;
                width: calc(100% - 4rem);
            }
        }

        .cycle-image {
            display: block;
            margin-top: 10rem;
            width: 100%;

            @media screen and (max-width: 767px) {
                margin-top: 2rem;
            }
        }

        .sp-intro {
            margin-top: 3rem;
            display: grid;
            grid-template-columns: 10.3rem 1fr;
            align-items: center;
            gap: 2rem;

            & img {}

            & p {
                font-family: 'Noto Sans JP';
                font-weight: 500;
                font-size: 1.4rem;
                line-height: 1.8;
                letter-spacing: 0.04em;
            }
        }

        .box {
            margin-top: 5rem;
            padding: 7.5rem 12rem;
            background-color: #f0f3f6;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem 2rem;
            align-items: baseline;

            @media screen and (max-width: 767px) {
                margin-top: 2rem;
                padding: 2rem 1.5rem;
                gap: 2rem 1.5rem;
            }

            .number {
                width: 5rem;
                height: 5rem;
                border-radius: 50%;
                background-color: #00ada9;
                display: flex;
                justify-content: center;
                align-items: center;
                font-family: var(--monst);
                font-size: 2.6rem;
                text-align: center;
                letter-spacing: 0.04em;
                color: #FFFFFF;

                @media screen and (max-width: 767px) {
                    width: 4rem;
                    height: 4rem;
                    font-size: 1.8rem;
                }
            }

            .text {
                font-family: var(--noto);
                font-weight: 700;
                font-size: 2.4rem;
                line-height: 1.5;
                letter-spacing: 0.08em;

                @media screen and (max-width: 767px) {
                    font-size: 1.4rem;
                }
            }
        }
    }
}