@charset "utf-8";

.header {
    background: var(--main-color);
    position: relative;
    z-index: -1;

    .container_L {
        padding: 55px 5%;

        .logo {
            width: 290px;
            margin-bottom: 30px;
        }

        .title_wrap {
            display: flex;
            margin-bottom: 60px;

            .header_title {
                width: 100%;
                color: #fff;
                font-size: clamp(1.75rem, 1.625rem + 0.625vw, 2.375rem);
                background: url(../images/mv.svg) no-repeat center right / 60%;
                position: relative;

                strong {
                    font-size: clamp(5rem, 4.9rem + 0.5vw, 5.5rem);
                    display: block;
                    margin-bottom: 40px;
                    line-height: 1.2;
                }

                &::before {
                    content: '';
                    position: absolute;
                    top: -30%;
                    right: 10%;
                    width: 400px;
                    height: 400px;
                    background: url(../images/dot_circle.png) no-repeat 50%/ cover;
                    z-index: -1;
                }

                &::after {
                    content: '';
                    position: absolute;
                    bottom: -50%;
                    left: 0;
                    width: 280px;
                    height: 280px;
                    background: url(../images/dot_circle.png) no-repeat 50%/ cover;
                    z-index: -1;
                }

                span {
                    display: inline-block;
                }
            }

            img {
                width: 45%;
                height: max-content;
                display: inline-block;
            }
        }
    }

    &::before {
        content: '';
        position: absolute;
        top: 150px;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--sub-color);
        transform: skewY(-7deg);
        z-index: -1;
    }
}

@media screen and (max-width: 980px) {

    .header {

        .container_L {

            .title_wrap {
                margin-bottom: 0;

                .header_title {
                    background: url(../images/mv.svg) no-repeat center bottom / 60%;
                    padding-bottom: 300px;
                }
            }
        }
    }

}

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

    .header {

        .container_L {

            .title_wrap {

                .header_title {

                    strong {
                        font-size: 10vw;
                    }

                    &::before {
                        width: 240px;
                        height: 240px;
                        top: 40%;
                        right: 5%;
                    }

                    &::after {
                        width: 200px;
                        height: 200px;
                        bottom: 0;
                    }
                }
            }
        }
    }

}

@media screen and (max-width: 600px) {

    .header {

        .container_L {
            padding: 30px 15px;

            .logo {
                width: 240px;
            }

            .title_wrap {

                .header_title {
                    background: url(../images/mv.svg) no-repeat center bottom 0 / 360px;
                    padding-bottom: 200px;

                    &::before {
                        width: 200px;
                        height: 200px;
                        top: 40%;
                        right: 0;
                    }

                    &::after {
                        width: 160px;
                        height: 160px;
                        bottom: -10%;
                        left: 0;
                    }
                }
            }
        }
    }

}

#about {
    background: transparent;
    position: relative;
    z-index: -1;
    padding: 240px 0 200px;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--main-color);
        transform: skewY(-7deg);
        z-index: -1;
    }

    &::after {
        content: '';
        position: absolute;
        top: -40px;
        left: 25%;
        width: 300px;
        height: 288px;
        background: url(../images/border_triangle.png) no-repeat 50% / cover;
        z-index: 1;
    }

    .container_S {
        background: url(../images/about.svg) no-repeat center left / 45%;

        .contents_title {
            width: 50%;
            color: #fff;
            font-size: clamp(1.75rem, 1.625rem + 0.625vw, 2rem);
            margin-left: auto;
            margin-bottom: 40px;
            position: relative;
            text-align: left;

            &::before {
                content: "ABOUT";
                font-family: 'josefin', 'Helvetica Neue', Helvetica, sans-serif;
                font-size: clamp(5rem, 1.625rem + 0.625vw, 7rem);
                color: #fff;
                opacity: .2;
                position: absolute;
                bottom: 65px;
            }
        }

        .contents_text {
            width: 50%;
            margin-left: auto;
            color: #fff;
            font-size: clamp(1rem, 1.625rem + 0.625vw, 1.125rem);
            position: relative;
            font-weight: bold;

            p {
                line-height: 1.6;
                margin-bottom: 50px;
            }

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 300px;
                height: 300px;
                background: url(../images/dot_circle.png) no-repeat 100% / cover;
                z-index: -1;
            }

            &::after {
                content: '';
                position: absolute;
                left: 40%;
                width: 300px;
                height: 300px;
                background: url(../images/dot_circle.png) no-repeat 100% / cover;
                z-index: -1;
            }
        }
    }
}

.contents_title {
    text-align: center;
    font: 36px /1.5 'Noto Sans JP', sans-serif;
    font-weight: bold;
    color: var(--sub-color);

    span {
        display: block;
        font: 32px /1.5 'josefin', 'Helvetica Neue', Helvetica, sans-serif;
        position: relative;

        &::before {
            content: "SERVICE";
            font: 120px / 1.5 'josefin', 'Helvetica Neue', Helvetica, sans-serif;
            position: absolute;
            top: 50%;
            left: 50%;
            translate: -50% -55%;
            color: var(--title-b);
            opacity: .2;
        }
    }
}

.border_yerrow {
    position: relative;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    display: inline-block;
}

@media screen and (max-width: 1280px) {

    #about {

        .container_S {
            width: 95%;
        }

        &::after {
            top: 0;
        }

    }

}

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

    .contents_title {
        font-size: 5.4vw;

        span {
            font-size: 16px;

            &::before {
                font-size: 18vw;
            }
        }
    }

    #about {

        .container_S {

            .contents_title {
                width: 100%;
            }
        }
    }

}


@media screen and (max-width: 600px) {

    #about {
        padding-top: 150px;
        padding-bottom: 100px;

        &::after {
            top: 40%;
            width: 200px;
            height: 188px;
            left: auto;
            right: 10%;
        }

        .container_S {
            background: url(../images/about.svg) no-repeat center bottom -30px / 380px;
            padding-bottom: 250px;

            .contents_text {
                width: 100%;
                margin-bottom: 80px;

                p {
                    margin-bottom: 20px;
                }

                &::after {
                    width: 200px;
                    height: 200px;
                    left: auto;
                    right: -50px;
                    bottom: -360px;
                }
            }
        }
    }

}

@media screen and (max-width: 480px) {

    #about {
        padding-top: 100px;

        .container_S {

            .contents_title {
                font-size: 5.8vw;
                white-space: pre;

                &::before {
                    bottom: 35px;
                }
            }
        }
    }

}


#service {
    padding: 240px 0 100px;
    position: relative;
    overflow: hidden;

    &::before {
        content: '';
        height: 55%;
        position: absolute;
        top: 28%;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: var(--title-b);
        transform: skewY(-7deg);
        z-index: -1;
    }

    &::after {
        content: '';
        height: 75%;
        position: absolute;
        top: 15%;
        bottom: 0;
        left: 0;
        right: 0;
        background-image: radial-gradient(rgba(255, 255, 255, .2) 25%, transparent 25%), radial-gradient(rgba(255, 255, 255, .2) 25%, transparent 25%);
        background-size: 50px 50px;
        background-position: 0 0, 25px 25px;
        z-index: -1;
    }

    .content_text {
        text-align: center;
        line-height: 2;
        font-weight: bold;
        margin-bottom: 70px;
    }

    .service_list {
        counter-reset: qumeru-counter;

        .service_item {
            background: var(--sub-color);
            padding: 75px 140px 100px;
            border-radius: 20px 0 0 20px;
            color: #fff;
            position: relative;
            margin-bottom: 40px;

            &::before {
                content: "";
                display: block;
                width: 50vw;
                transform: translateX(100%);
                position: absolute;
                background-color: var(--sub-color);
                top: 0;
                bottom: 0;
                right: 1px;
            }

            &:nth-of-type(even) {
                background: #fff;
                border-radius: 0 20px 20px 0;
                color: #000;

                &::before {
                    content: "";
                    display: block;
                    width: 50vw;
                    transform: translateX(-100%);
                    position: absolute;
                    background-color: #fff;
                    top: 0;
                    bottom: 0;
                    left: 0;
                }

                h3 {
                    color: var(--sub-color);

                    &::before {
                        color: var(--title-b);
                    }
                }
            }


            h3 {
                position: relative;
                counter-increment: qumeru-counter;
                font-size: 34px;
                display: inline-block;
                margin-bottom: 30px;
                z-index: 3;

                &::before {
                    content: "0"counter(qumeru-counter);
                    display: block;
                    font: 120px /1.8 'josefin', sans-serif;
                    color: #fff;
                    opacity: .2;
                    position: absolute;
                    top: -53.5%;
                    line-height: 1;
                    z-index: 1;
                }

                .marker {
                    background: linear-gradient(transparent 90%, var(--accent-y) 10%);
                    position: relative;
                    z-index: 3;
                }
            }

            p {
                line-height: 1.8;
            }

            .s_item_list {
                display: flex;
                justify-content: space-between;

                h4 {
                    font-size: 28px;
                    margin-bottom: 15px;
                }

                p {
                    font-size: 1rem;
                    line-height: 2;
                }
            }
        }
    }
}

#service {

    .service_list {

        li:nth-child(1) {

            .s_item_list__box {
                width: calc((100% / 2) - 80px);
                padding-top: 400px;
                background: url(../images/service01.svg) no-repeat center top 50px / 100%;

                &:nth-of-type(2) {
                    background: url(../images/service02.svg) no-repeat center top 30px/140%;
                }
            }
        }

        li:nth-child(2) {

            .s_item_list__box {
                width: calc((100% / 2) - 80px);
                padding-top: 400px;
                background: url(../images/service03.svg) no-repeat center top 50px / 100%;

                &:nth-of-type(2) {
                    background: url(../images/service04.svg) no-repeat center top 30px / 65%;
                }
            }
        }

        li:nth-child(3) {

            .s_item_list__box {
                width: calc((100% / 2) - 80px);
                padding-top: 400px;
                background: url(../images/service05.svg) no-repeat center top 10px / 90%;

                &:nth-of-type(2) {
                    background: url(../images/service06.svg) no-repeat center top 30px / 100%;
                }
            }
        }
    }
}

@media screen and (max-width: 1280px) {

    #service {

        .service_list {

            .service_item {
                padding: 75px 50px;
            }
        }
    }

}

@media screen and (max-width: 980px) {

    #service {
        padding: 240px 10px 100px;

        .contents_title {
            font-size: 4.6vw;
            white-space: pre;
        }

        .service_list {

            .service_item {

                .s_item_list {

                    .s_item_list__box {
                        width: calc((100% / 2) - 40px);
                    }
                }
            }
        }
    }

}

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

    #service {
        padding: 240px 10px 100px;

        .service_list {

            .service_item {

                .s_item_list {
                    flex-direction: column;

                    .s_item_list__box {
                        width: 100%;
                    }
                }
            }
        }

        .service_list {

            li:nth-child(1) {

                .s_item_list__box {
                    background: url(../images/service01.svg) no-repeat center top 50px / 70%;

                    &:nth-of-type(2) {
                        background: url(../images/service02.svg) no-repeat center top 50px / 80%;
                    }
                }
            }

            li:nth-child(2) {

                .s_item_list__box {
                    background: url(../images/service03.svg) no-repeat center top 20px / 75%;

                    &:nth-of-type(2) {
                        background: url(../images/service04.svg) no-repeat center top 25px / 45%;
                    }
                }
            }

            li:nth-child(3) {

                .s_item_list__box {
                    background: url(../images/service05.svg) no-repeat center top / 70%;

                    &:nth-of-type(2) {
                        background: url(../images/service06.svg) no-repeat center top 10px / 75%;
                    }
                }
            }
        }
    }

}

@media screen and (max-width: 600px) {

    #service {

        .service_list {

            .service_item {
                padding: 70px 10px 70px 40px;

                &:nth-of-type(2) {
                    padding: 70px 40px 70px 10px;
                }
            }

            li:nth-child(1) {

                .s_item_list__box {
                    padding-top: 300px;
                    background: url(../images/service01.svg) no-repeat center top 30px / 85%;

                    &:nth-of-type(2) {
                        padding-top: 280px;
                        background: url(../images/service02.svg) no-repeat center top 30px / 100%;
                    }
                }
            }

            li:nth-child(2) {

                .s_item_list__box {
                    padding-top: 280px;
                    background: url(../images/service03.svg) no-repeat center top 20px / 85%;

                    &:nth-of-type(2) {
                        padding-top: 280px;
                        background: url(../images/service04.svg) no-repeat center top 30px / 50%;
                    }
                }
            }

            li:nth-child(3) {

                .s_item_list__box {
                    padding-top: 280px;
                    background: url(../images/service05.svg) no-repeat center top 30px / 70%;

                    &:nth-of-type(2) {
                        padding-top: 280px;
                        background: url(../images/service06.svg) no-repeat center top 40px / 80%;
                    }
                }
            }
        }
    }

}

@media screen and (max-width: 480px) {

    #service {
        padding: 120px 10px 40px;

        .content_text {
            font-size: 4vw;
        }

        .service_list {

            .service_item {
                padding: 50px 10px 50px 20px;

                h3 {
                    font-size: 5.2vw;
                    white-space: pre;

                    &::before {
                        font-size: 100px;
                        top: -80%;
                    }
                }

                .s_item_list {

                    h4 {
                        font-size: 4.6vw;
                        display: flex;
                        justify-content: center;
                    }
                }

                &:nth-of-type(2) {
                    padding: 50px 20px 50px 10px;
                }
            }
        }
    }

}


#price {
    padding: 150px 0;
    position: relative;
    background: url(../images/contact01.svg) no-repeat left 2% bottom / 300px, url(../images/contact02.svg) no-repeat right 2% bottom / 340px;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(253, 194, 0, .2);
        background-image: radial-gradient(rgba(255, 255, 255, .8) 25%, transparent 25%), radial-gradient(rgba(255, 255, 255, .8) 25%, transparent 25%);
        background-size: 50px 50px;
        background-position: 0 0, 25px 25px;
        z-index: -1;
    }

    .contents_title {
        margin-bottom: 50px;

        span {
            &::before {
                content: "PRICE";
                color: var(--title-o);
                opacity: 1;
                z-index: -1;
            }
        }
    }

    .contents_text {
        text-align: center;
        line-height: 2;

        .c_btn {
            text-align: left;
            margin-inline: auto;
            margin-top: 70px;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .catch {
            font-size: 1.25rem;
            font-weight: bold;

            span {
                /* border-bottom: 4px solid var(--accent-y); */

                em {
                    font-size: 150%;
                }
            }
        }
    }
}

@media screen and (max-width: 1280px) {

    #price {
        padding: 150px 10px 300px;
        background: url(../images/contact01.svg) no-repeat left 2% bottom / 240px, url(../images/contact02.svg) no-repeat right 2% bottom / 262px;
    }

}

@media screen and (max-width: 600px) {

    #price {
        padding: 150px 10px 220px;
        background: url(../images/contact01.svg) no-repeat left 2% bottom / 180px, url(../images/contact02.svg) no-repeat right 2% bottom / 204px;
    }

}

@media screen and (max-width: 389px) {

    #price {

        .contents_text {
            font-size: 15px;
            letter-spacing: 0;

            .catch {
                font-size: 1.2rem;
            }
        }

    }

}

@media screen and (max-width: 480px) {

    #price {
        padding: 80px 10px 200px;
    }

}

#price_ma {
    padding: 100px 0;
    position: relative;

    &::after {
        content: '';
        width: 102%;
        height: 50px;
        display: block;
        background: linear-gradient(to top right, transparent 50%, #fff 50.5%) no-repeat bottom left / 50% 100%, linear-gradient(to top left, transparent 50%, #fff 50.5%) no-repeat bottom right / 50.001% 100%;
        position: absolute;
        left: -2%;
        bottom: -50px;
        z-index: 100;
    }

    .contents_title {
        margin-bottom: 45px;
        padding-top: 80px;
        background: url(../images/price02.svg) no-repeat center top / 80px;

        .marker {
            font-weight: 600;

            &::before {
                display: none;
            }
        }
    }

    .contents_text {
        text-align: center;

        p {
            display: inline-block;
            text-align: left;
            margin-inline: auto;
            margin-bottom: 45px;
            line-height: 2;
        }

        img {
            max-width: 1000px;
        }
    }
}

@media screen and (max-width: 1000px) {

    #price_ma {
        padding: 100px 10px;
    }

}

@media screen and (min-width: 601px) {

    #price_ma {

        .contents_text {
            img.img-pc {
                display: block;
            }

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

}

@media screen and (max-width: 600px) {

    #price_ma {

        .contents_text {
            img.img-pc {
                display: none;
            }

            img.img-sp {
                display: block;
                padding: 0 30px;
            }
        }
    }

}

@media screen and (max-width: 480px) {

    #price_ma {
        padding: 100px 10px 60px;

        .contents_title {
            font-size: 6.2vw;
            line-height: 1.8;
        }
    }

}

#feature {
    padding: 200px 0 100px;
    position: relative;
    background: var(--main-color);

    .contents_title {
        margin-bottom: 50px;
        color: #fff;

        span {
            position: relative;
            z-index: 2;

            &::before {
                content: "FEATURE";
                color: #fff;
                opacity: .2;
                z-index: -1;
            }
        }
    }

    .contents_text {
        text-align: center;
        color: #fff;
        font-weight: bold;
        margin-bottom: 60px;
    }

    .feature_list {
        counter-reset: qumeru-counter;

        &::after {
            content: '';
            width: 100%;
            height: 50px;
            display: block;
            background: linear-gradient(to top right, transparent 50%, var(--main-color) 50.5%) no-repeat bottom left / 50% 100%, linear-gradient(to top left, transparent 50%, var(--main-color) 50.5%) no-repeat bottom right / 50.001% 100%;
            position: absolute;
            bottom: -50px;
            z-index: 100;
        }

        .feature_list_item {
            background: #fff url(../images/feature01.svg) no-repeat center right 40px / 30%;
            padding: 25px 100px;
            width: 100%;
            max-width: 1240px;
            margin-inline: auto;
            margin-bottom: 30px;
            border-radius: 15px;
            filter: drop-shadow(5px 5px 0 var(--sub-color)) drop-shadow(-1.1px -0.8px 0 var(--sub-color)) drop-shadow(0 1.1px 0 var(--sub-color));
            border: 1px solid var(--sub-color);
            counter-increment: qumeru-counter;
            position: relative;

            &::before {
                content: "0"counter(qumeru-counter);
                display: block;
                font: 48px / 1.8 'josefin', sans-serif;
                color: var(--sub-color);
                width: 120px;
                height: 120px;
                line-height: 130px;
                background: #fff;
                border-radius: 50%;
                text-align: center;
                position: absolute;
                top: 50%;
                left: -60px;
                translate: 0 -50%;
            }

            div {
                width: 60%;

                h3 {
                    position: relative;
                    font-size: 24px;
                    color: var(--sub-color);
                    /* border-bottom: 4px solid var(--accent-y); */
                    display: inline-block;
                    margin-top: 50px;
                    margin-bottom: 30px;

                }

                p {
                    width: 100%;
                    max-width: 630px;
                    line-height: 2;
                    margin-bottom: 50px;
                    position: relative;
                }
            }

            &:nth-child(even) {
                filter: drop-shadow(5px 5px 0 var(--sub-color)) drop-shadow(1px -1px 0 var(--sub-color));

                &::before {
                    right: -60px;
                    left: auto;
                }

                div {
                    margin-left: auto;
                }
            }

            &:nth-child(2) {
                background: #fff url(../images/feature02.svg) no-repeat center left 40px / 25%;
            }

            &:nth-child(3) {
                background: #fff url(../images/feature03.svg) no-repeat center right 40px / 30%;
            }
        }
    }
}

@media screen and (max-width: 1380px) {

    #feature {

        .feature_list {

            .feature_list_item {
                width: 80%;
            }
        }

    }

}

@media screen and (max-width: 980px) {

    #feature {

        .feature_list {

            .feature_list_item {
                background: #fff url(../images/feature01.svg) no-repeat center top 170px / 240px;
                padding: 25px 50px;

                &:nth-child(2) {
                    background: #fff url(../images/feature02.svg) no-repeat center top 170px / 240px;
                }

                &:nth-child(3) {
                    background: #fff url(../images/feature03.svg) no-repeat center top 170px / 280px;
                }

                div {
                    width: 100%;

                    h3 {
                        margin-bottom: 220px;
                    }
                }
            }
        }
    }

}

@media screen and (max-width: 600px) {

    #feature {

        .feature_list {

            .feature_list_item {
                padding: 20px 20px 30px;
                margin-left: 15%;
                background: #fff url(../images/feature01.svg) no-repeat center top 120px / 240px;

                &:nth-child(2) {
                    background: #fff url(../images/feature02.svg) no-repeat center top 120px / 240px;
                }

                &:nth-child(3) {
                    background: #fff url(../images/feature03.svg) no-repeat center top 120px / 280px;
                }

                &:nth-child(2) {
                    margin-left: 5%;
                    margin-right: 15%;
                }

                div {

                    h3 {
                        margin-top: 0;
                    }

                    p {
                        margin-bottom: 0;
                    }
                }
            }
        }
    }

}

@media screen and (max-width: 480px) {

    #feature {
        padding: 140px 0 60px;

        .contents_title {
            font-size: 5.4vw;

            span {
                font-size: 16px;
            }
        }

        .feature_list {

            .feature_list_item {
                width: 85%;
                margin-left: 10%;

                &::before {
                    width: 80px;
                    height: 80px;
                    left: -40px;
                    font-size: 32px;
                    line-height: 84px;
                    text-indent: -20px;
                }

                &:nth-child(even) {

                    &::before {
                        right: -40px;
                        left: auto;
                        text-indent: 20px;
                    }
                }
            }
        }
    }

}

@media screen and (max-width: 389px) {

    #feature {

        .contents_text {
            font-size: 15px;
            letter-spacing: 0;
        }
    }

}

#contact {
    padding: 200px 0 150px;
    position: relative;
    background: url(../images/contact01.svg) no-repeat left 2% bottom / 300px, url(../images/contact02.svg) no-repeat right 2% bottom / 340px;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(253, 194, 0, .2);
        background-image: radial-gradient(rgba(255, 255, 255, .8) 25%, transparent 25%), radial-gradient(rgba(255, 255, 255, .8) 25%, transparent 25%);
        background-size: 50px 50px;
        background-position: 0 0, 25px 25px;
        z-index: -1;
    }

    .contents_title {
        margin-bottom: 50px;

        span {
            &::before {
                content: "CONTACT";
                color: var(--title-o);
                opacity: 1;
                z-index: -1;
            }
        }
    }

    .contents_text {
        text-align: center;
        line-height: 2;

        .c_btn {
            text-align: left;
            margin-inline: auto;
            margin-top: 70px;
            margin-bottom: 30px;
            font-weight: bold;
        }

        .catch {
            font-size: 1.25rem;
            font-weight: bold;

            span {
                /* border-bottom: 4px solid var(--accent-y); */

                em {
                    font-size: 150%;
                }
            }
        }
    }
}

@media screen and (max-width: 1280px) {

    #contact {
        padding: 200px 10px 300px;
        background: url(../images/contact01.svg) no-repeat left 2% bottom / 240px, url(../images/contact02.svg) no-repeat right 2% bottom / 262px;
    }

}

@media screen and (max-width: 600px) {

    #contact {
        padding: 200px 10px 220px;
        background: url(../images/contact01.svg) no-repeat left 2% bottom / 180px, url(../images/contact02.svg) no-repeat right 2% bottom / 204px;
    }

}

@media screen and (max-width: 600px) {

    #contact {
        padding: 140px 10px 220px;
    }

}

@media screen and (max-width: 389px) {

    #contact {

        .contents_text {

            .catch {
                font-size: 1.2rem;
            }
        }
    }

}

#case {
    padding: 150px 0 360px;
    position: relative;
    overflow: hidden;
    background-color: var(--main-color);
    background-image: repeating-linear-gradient(transparent, transparent, 20px, rgba(255, 255, 255, .2) 20px, rgba(255, 255, 255, .2) 40px);


    .contents_title {
        margin-bottom: 50px;
        color: #fff;

        span {
            position: relative;
            z-index: 2;

            &::before {
                content: "CASE";
                color: #fff;
                opacity: .2;
                z-index: -1;
            }
        }
    }

    .case_list {
        counter-reset: qumeru-counter;

        .case_list_item {
            background: var(--sub-color) url(../images/case.svg) no-repeat top 63% left 10% / 33%;
            padding: 50px 140px 50px 100px;
            border-radius: 0 20px 20px 0;
            color: #fff;
            position: relative;
            margin-bottom: 40px;

            &::before {
                content: "";
                display: block;
                width: 50vw;
                transform: translateX(-100%);
                position: absolute;
                background-color: var(--sub-color);
                top: 0;
                bottom: 0;
            }

            &:nth-of-type(even) {
                background: #fff url(../images/case.svg) no-repeat center left 15% / 30%;
                border-radius: 20px 0 0 20px;
                color: var(--sub-color);

                &::before {
                    content: "";
                    display: block;
                    width: 50vw;
                    transform: translateX(100%);
                    position: absolute;
                    background-color: #fff;
                    top: 0;
                    bottom: 0;
                    right: 1px;
                }

                h3 {
                    span:first-child {
                        &::after {
                            color: var(--sub-color);
                            border-right: 2px solid var(--sub-color);
                        }
                    }
                }
            }

            h3 {
                position: relative;
                counter-increment: qumeru-counter;
                font-size: 24px;
                line-height: 1.6;
                display: flex;
                margin-bottom: 30px;

                span:first-child {
                    flex-shrink: 0;
                    font: 24px /1.8 'josefin', sans-serif;
                    margin-right: 1.5em;

                    &::after {
                        content: "0"counter(qumeru-counter);
                        display: inline-block;
                        font: 36px /1.8 'josefin', sans-serif;
                        color: #fff;
                        line-height: 1;
                        margin-left: .3em;
                        padding-right: 1em;
                        border-right: 2px solid #fff;
                        line-height: 1;
                    }
                }

                span:last-child {
                    margin-top: -2px;
                }
            }

            div {
                line-height: 2;
                width: 56%;
                margin-left: auto;

                p {
                    margin-bottom: 20px;
                }
            }

        }

    }

    .case_text {
        margin-top: 100px;
        text-align: center;

        strong {
            color: #fff;
            font-size: 34px;
            display: inline-block;
            position: relative;
            z-index: 2;
            letter-spacing: .1em;
            line-height: 1.7;
            padding: 0 50px;
            position: relative;

            &::before {
                content: '';
                width: 40px;
                height: 40px;
                display: inline-block;
                background: url(../images/border-left.png) no-repeat center / cover;
                margin-right: 0.5em;
                position: absolute;
                top: 8px;
                left: 0;
            }

            &::after {
                content: '';
                width: 40px;
                height: 40px;
                display: inline-block;
                background: url(../images/border-right.png) no-repeat center / cover;
                margin-left: 0.5em;
                position: absolute;
                top: 8px;
                right: 0;
            }
        }
    }
}

@media screen and (max-width: 980px) {

    #case {
        padding: 150px 10px 360px;
    }

}

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

    #case {

        .case_list {

            .case_list_item {
                padding: 50px 40px 50px 20px;
                background: var(--sub-color) url(../images/case.svg) no-repeat top 150px center / 300px;

                h3 {
                    font-size: 20px;

                    span:first-child {
                        margin-right: 1em;

                        &::after {
                            padding-right: .5em;
                        }
                    }

                }

                div {
                    width: 100%;
                    margin-top: 280px;
                }

                &:nth-of-type(even) {
                    padding: 50px 20px 50px 40px;
                    background: #fff url(../images/case.svg) no-repeat top 160px center / 300px;
                }
            }
        }

        .case_text {

            strong {
                font-size: 20px;
            }
        }
    }

}

@media screen and (max-width: 600px) {

    #case {
        padding: 150px 10px 300px;

        .case_list {

            .case_list_item {
                width: 102%;
                padding: 30px 20px 30px 10px;

                h3 {

                    span:first-child {
                        font-size: 15px;
                        margin-right: .8em;

                        &::after {
                            font-size: 30px;
                            padding-right: .25em;
                        }
                    }
                }

                &:nth-of-type(even) {
                    margin-left: -2%;
                    padding: 30px 10px 30px 20px;
                }
            }

        }
    }

}

@media screen and (max-width: 480px) {

    #case {
        padding: 100px 10px 200px;
    }

}

@media screen and (max-width: 389px) {

    #case {

        .case_text {

            strong {
                font-size: 18px;
                padding: 0 35px;

                &::before,
                &::after {
                    width: 30px;
                }
            }
        }
    }

}



#voice {
    padding: 0 0 40px;
    background: #ddf2f6;
    position: relative;
    z-index: 100;

    &::before {
        content: '';
        display: block;
        width: 100%;
        height: 60%;
        position: absolute;
        top: -100px;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #ddf2f6;
        transform: skewY(-7deg);
        z-index: -1;
    }

    &::after {
        content: '';
        display: block;
        width: 100%;
        height: 60%;
        position: absolute;
        bottom: -100px;
        left: 0;
        right: 0;
        background-color: #ddf2f6;
        transform: skewY(-7deg);
        z-index: -1;
    }

    .voice_inner {
        background: url(../images/voice_bg.png) repeat-y center / cover;
        padding: 100px 0 0;

        .contents_title {
            margin-bottom: 50px;

            span {
                position: relative;
                z-index: 2;

                &::before {
                    content: "VOICE";
                    z-index: -1;
                }
            }
        }

        .voice_list {
            display: flex;
            justify-content: space-between;

            .voice_list_item {
                display: flex;
                align-items: center;
                width: 940px;
                min-height: 406px;
                background: var(--main-color);
                border-radius: 20px;
                padding: 70px;
                color: #fff;
                margin: 0 30px;

                .voice_img {
                    flex-shrink: 0;
                    width: 100%;
                    max-width: 220px;
                    margin-right: 20px;
                }

                .voive_data {
                    margin-left: auto;
                    text-align: justify;

                    h3 {
                        font-size: 1. 25rem;
                        margin-bottom: 30px;

                        strong {
                            font-size: 1.4rem;
                            display: inline-block;
                            margin-bottom: 20px;
                        }


                    }
                }

                p {
                    font-weight: bold;
                    line-height: 2;
                    font-size: 1rem;
                }
            }

            .slick-dots {
                display: flex;
                justify-content: center;
                align-items: center;
                bottom: -55px;

                li {
                    background-color: var(--dots);
                    border-radius: 50%;
                    margin: 0 10px;
                    transition: .3s;
                }

                li.slick-active {
                    width: 30px;
                    height: 30px;
                    background-color: var(--main-color);
                    transition: .3s;
                }
            }

        }

        .voice_item {
            width: 65%;
            padding: 30px 30px 50px;
            margin: 10% auto 0;
            background: #fff;
            border-radius: 20px;

            .voice_item_title {
                text-align: center;
                margin-bottom: 20px;
                font-size: 1.4rem;
            }
        }
    }
}

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

    #voice {

        .voice_inner {

            .voice_list {

                .voice_list_item {
                    flex-direction: column;

                    .voice_img {
                        margin-bottom: 20px;
                    }

                    .voive_data h3 {
                        text-align: center;
                    }
                }
            }

            .voice_item {
                width: 75%;
                margin-top: 15%;
            }
        }
    }

}

@media screen and (max-width: 600px) {

    #voice {

        .voice_inner {
            padding: 0;

            .voice_list {

                .voice_list_item {
                    padding: 30px 20px;
                }
            }
        }
    }

}

@media screen and (max-width: 480px) {

    #voice {

        .voice_inner {
            padding: 0;

            .voice_item {
                width: 85%;
                margin-top: 120px;
            }
        }
    }

}

#process {
    padding: 360px 0 120px;
    position: relative;

    &::after {
        content: '';
        width: 102%;
        height: 50px;
        display: block;
        background: linear-gradient(to top right, transparent 50%, #fff 50.5%) no-repeat bottom left / 50% 100%, linear-gradient(to top left, transparent 50%, #fff 50.5%) no-repeat bottom right / 50.001% 100%;
        position: absolute;
        left: -2%;
        bottom: -50px;
        z-index: 100;
    }

    .contents_title {
        margin-bottom: 50px;

        span {
            position: relative;
            z-index: 2;

            &::before {
                content: "PROCESS";
                z-index: -1;
            }
        }
    }

    .c_btn {
        margin-inline: auto;
    }

    .process_list {
        counter-reset: qumeru-counter;
        width: 100%;
        max-width: 760px;
        margin-inline: auto;

        .process_list_item {
            padding-left: 3em;
            position: relative;
            counter-increment: qumeru-counter;
            margin-bottom: 60px;

            h3 {
                color: var(--sub-color);
                font-size: 1.25rem;
                margin-bottom: 10px;
            }

            p {
                font-size: 1rem;
                line-height: 2;
            }

            &::before {
                content: counter(qumeru-counter);
                display: block;
                font: 3rem / 1.8 'josefin', sans-serif;
                color: #fff;
                width: 100px;
                height: 100px;
                line-height: 100px;
                background: url(../images/process01.png) no-repeat center /contain;
                border-radius: 50%;
                text-align: center;
                position: absolute;
                top: 50%;
                left: -60px;
                translate: 0 -50%;
            }

            &::after {
                content: '';
                display: block;
                width: 3px;
                height: 150px;
                background: var(--main-color);
                position: absolute;
                top: 50%;
                left: -13px;
                z-index: -1;
            }

            &:last-of-type {
                &::before {
                    background: url(../images/process02.png) no-repeat center /contain;
                    width: 90px;
                    height: 90px;
                    margin-left: 5px;
                }

                &::after {
                    content: none;
                }
            }
        }

    }
}

@media screen and (max-width: 980px) {

    #process {
        padding: 360px 10px 120px;

        .process_list {
            width: 80%;
            padding-left: 20px;

            .process_list_item {

                &::after {
                    height: 240px;
                }
            }
        }
    }

}

@media screen and (max-width: 600px) {

    #process {
        padding: 360px 10px 120px;

        .process_list {
            width: 90%;
            padding-left: 30px;
        }
    }

}

@media screen and (max-width: 480px) {

    #process {
        padding: 220px 10px 20px;

        .process_list {
            width: 95%;
            padding-left: 40px;
            margin-bottom: 60px;

            .process_list_item {
                padding-left: 1.5em;

                &::before {
                    width: 80px;
                    height: 80px;
                    line-height: 80px;
                }

                &:last-of-type {
                    margin-bottom: 20px;

                    &::before {
                        width: 70px;
                        height: 70px;
                        line-height: 70px;
                    }
                }

                &::after {
                    left: -22px;
                }
            }
        }
    }

}

#company {
    padding: 200px 0 100px;
    position: relative;
    background: var(--main-color);
    color: #fff;

    &::after {
        content: '';
        width: 102%;
        height: 50px;
        display: block;
        background: linear-gradient(to top right, transparent 50%, var(--main-color) 50.5%) no-repeat bottom left / 50% 100%, linear-gradient(to top left, transparent 50%, var(--main-color) 50.5%) no-repeat bottom right / 50.001% 100%;
        position: absolute;
        left: -2%;
        bottom: -50px;
        z-index: 100;
    }

    .contents_title {
        color: #fff;
        margin-bottom: 50px;

        span {
            position: relative;
            z-index: 2;

            &::before {
                content: "COMPANY";
                color: #fff;
                opacity: .2;
                z-index: -1;
            }
        }
    }

    .company_list {
        width: 100%;
        max-width: 760px;
        margin-inline: auto;

        dt {
            float: left;
            clear: left;
            width: 20%;
            min-width: 112px;
            padding: 30px 0;
        }

        dd {
            padding: 30px 0 30px 20%;
            border-bottom: 1px solid rgba(255, 255, 255, .3);
        }
    }
}

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

    #company {
        padding: 200px 10px 100px;

        .company_list {
            padding: 0 10px;
        }
    }

}

@media screen and (max-width: 480px) {

    #company {
        padding: 140px 10px 60px;
    }

}

#contact2 {
    padding: 200px 0 100px;
    position: relative;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(253, 194, 0, .2);
        background-image: radial-gradient(rgba(255, 255, 255, .8) 25%, transparent 25%), radial-gradient(rgba(255, 255, 255, .8) 25%, transparent 25%);
        background-size: 50px 50px;
        background-position: 0 0, 25px 25px;
        z-index: -1;
    }

    .contents_title {
        margin-bottom: 50px;

        span {
            &::before {
                content: "CONTACT";
                color: var(--title-o);
                opacity: 1;
                z-index: -1;
            }
        }
    }

    .contents_text {
        text-align: center;
        line-height: 2;
        font-weight: bold;
        margin-bottom: 50px;
    }

    .contact_form {
        width: 100%;
        max-width: 640px;
        margin-inline: auto;
        margin-bottom: 80px;
        padding: 30px 120px;
        border-radius: 20px;
        background: #efefef;
        border: 1px solid var(--sub-color);
        filter: drop-shadow(5px 5px 0 var(--sub-color));
        font-size: .9375rem;
        font-weight: bold;
        color: var(--sub-color);

        input[type=text],
        input[type=email],
        input[type=tel] {
            width: 100%;
            height: 35px;
            margin-top: 5px;
            margin-bottom: 30px;
            border: 1px solid var(--sub-color);
            border-radius: 3px;
        }

        input[type=checkbox] {
            display: inline-block;
            position: relative;
            width: 16px;
            height: 16px;
            border: 1px solid #000;
            vertical-align: -5px;
        }

        span.accept input[type=checkbox] {
            border-radius: 50%;
        }

        input[type="checkbox"]:checked:before {
            position: absolute;
            top: 1px;
            left: 4px;
            transform: rotate(50deg);
            width: 4px;
            height: 8px;
            border-right: 2px solid #000;
            border-bottom: 2px solid #000;
            content: '';
        }

        .form_item {

            dd:has(> input[type=checkbox]) {
                font-weight: normal;
                color: #000;
                margin-left: 1em;
                margin-bottom: 30px;
            }

            .privacy-policy {
                height: 240px;
                overflow-y: scroll;
                color: #000;
                font-weight: normal;
                font-size: 15px;
                background-color: #fff;
                padding: 20px;
                margin-top: 5px;
                margin-bottom: 10px;

                p {
                    margin-bottom: 5px;
                }

                h3 {
                    margin-top: 30px;
                    margin-bottom: 15px;
                }

                &::-webkit-scrollbar {
                    width: 4px;
                    height: 10px;
                }

                &::-webkit-scrollbar-thumb {
                    background-color: var(--sub-color);
                }
            }
        }

        textarea {
            width: 100%;
            height: 85px;
            border: 1px solid var(--sub-color);
            border-radius: 3px;
            resize: none;
            margin-bottom: 30px;
        }

        input[type=radio] {
            display: inline-block;
            position: relative;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 1px solid #000;
            vertical-align: sub;
        }

        input[type="radio"]:checked:before {
            position: absolute;
            top: 1px;
            left: 4px;
            transform: rotate(50deg);
            width: 4px;
            height: 8px;
            border-right: 2px solid #000;
            border-bottom: 2px solid #000;
            content: '';
        }

        .form_item {

            dt:has(> input[type=radio]) {
                font-weight: normal;
                font-size: 1.125rem;
                color: #000;
                margin-bottom: 10px;
                text-align: center;
            }

            dd:has(> input[type=radio]) {
                font-weight: normal;
                font-size: .875rem;
                color: #000;
                margin-bottom: 10px;
                text-align: center;
            }

            a {
                text-decoration: underline;
            }
        }
    }

    .required {
        font-size: .625rem;
        color: #fff;
        background: #cd0018;
        border-radius: 3px;
        padding: 1px 3px;
    }

    button {
        text-align: center;
        width: 90%;
        max-width: 540px;
        height: 70px;
        margin-inline: auto;
        background: var(--accent-o);
        border: none;
        border-radius: 50px;
        font-size: 1.625rem;
        font-weight: bold;
        color: #fff;
        position: relative;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);
    }
}

#contact2.thanks {
    height: 90vh;
    padding: 200px 0 200px;
}

#contact2 {

    .wpcf7-list-item {
        display: block;
        font-weight: normal;
        color: #000;
        margin-left: 1em;
        margin-bottom: 0px;
    }

    .accept {
        font-size: 1.125rem;
        text-align: center;
        margin-top: 30px;
        line-height: 2.5em;
    }

    .checks {
        margin-bottom: 30px;
    }

    input[type="submit"] {
        text-align: center;
        width: 90%;
        max-width: 540px;
        height: 70px;
        margin-inline: auto;
        background: var(--accent-o);
        border: none;
        border-radius: 50px;
        font-size: 1.625rem;
        font-weight: bold;
        color: #fff;
        position: relative;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, .2);

    }

    span.wpcf7-spinner {
        display: none;
    }

    .wpcf7 form.sent .wpcf7-response-output {
        text-align: center;
        border: none;
    }

}

@media screen and (max-width: 600px) {

    #contact2 {

        .contact_form {
            width: 90%;
            padding: 30px 20px;
        }
    }

}

@media screen and (max-width: 600px) {

    #contact2 {
        padding: 140px 0 100px;
    }

}

.footer {
    background: var(--sub-color);
    padding: 20px 0;

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

        .footer_logo {
            width: 180px;
            height: 50px;

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

        }

        p {
            align-self: center;
            line-height: 1.2;

            small {
                color: #fff;
                font-size: 0.875rem;
            }
        }
    }
}

@media screen and (max-width: 600px) {

    .footer {

        .container_S {

            .footer_logo {
                width: 100px;
                height: auto;
            }

            p {

                small {
                    font-size: 10px;
                }
            }
        }
    }

}

@media screen and (max-width: 460px) {

    .footer {

        .container_S {

            .footer_logo {
                width: 100px;
                height: auto;
            }
        }
    }

}