/* bem のルールに則って制作する。 */


@charset "UTF-8";

html {
    font-size: 10px;
    /* remの基準値をわかりやすくするため。
    基本は16pxなので換算がわかりにくくなるから、10pxに変更する。 */

}

html,
body {
    height: 100%;
}

img {
    width: 100%;
}

body {
    -webkit-text-size-adjust: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Noto Sans JP';

    /* 400は何も指定しなくても400になる */
    font-feature-settings: "palt" 1;
    -webkit-font-feature-settings: "palt" 1;

}

/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900 */

.noto-sans jp-<uniquifier> {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

a:hover,
button:hover {
    opacity: 0.5;
    transition: 0.5s;
}

a,
button {
    transition: 0.5s;
}

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

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

/* header ==================================================================================== */



.header {
    /* background-color: firebrick; */
    height: 95px;
    width: 100%;
    z-index: 999;
    display: flex;
    position: fixed;
    background-color: white;
}

@media screen and (max-width:768px) {
    .header {
        width: 100%;
        height: auto;
        display: flex;
        position: relative;

    }
}



.header_logo {
    width: 57%;
    margin: 26px 1.94% 0px;
}

@media screen and (max-width:768px) {
    .header_logo {
        padding: 17px 0px;
        width: 57.71%;
        height: 49px;

        align-items: center;
        margin: auto 20px;
    }
}



.header_inqury_wrapper {
    display: flex;
    width: 100%;
}

@media screen and (max-width:768px) {
    .header_inqury_wrapper {
        position: fixed;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;

    }
}

.header_inqury {
    background-color: #B20F14;
    color: aliceblue;
    height: 95px;
    width: 280px;
    margin-left: auto;
    border-bottom-left-radius: 30px;
    display: flex;
    /* Flexboxを使用して要素を中央に配置 */
    justify-content: center;
    /* 横方向に中央揃え */
    align-items: center;
    /* 縦方向に中央揃え */

}


@media screen and (max-width:768px) {
    .header_inqury {
        background-color: #B20F14;
        color: aliceblue;
        height: 50px;
        width: 280px;
        margin-left: 0px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        letter-spacing: 0.1rem;

    }
}




.header_inqury_title {
    margin-left: 0px;
    font-size: 1.8rem;
    /* background-color: blue; */
    display: flex;
    /* Flexboxを使用して要素を中央に配置 */
    justify-content: center;
    /* 横方向に中央揃え */
    align-items: center;
    /* 縦方向に中央揃え */
}


.header_inqury_ditail {
    display: flex;
    /* Flexboxを使用して要素を中央に配置 */
    justify-content: center;
    /* 横方向に中央揃え */
    align-items: center;
    /* 縦方向に中央揃え */
    margin-left: 30px;
    /* background-color: red; */
    flex-direction: column;
    /* 縦方向に要素を配置 */
}


.header_inqury_icon {
    width: 40px;
    margin-left: 16px;
    margin-top: -4px;
}


@media screen and (max-width:768px) {
    .header_inqury_icon {
        width: 35px;
        margin-left: 14px;
        margin-top: 1px;
    }
}

.header_inqury_ditail_num {
    font-size: 3rem;

}

.header_inqury_ditail_time {
    font-size: 1.6rem;
    flex-direction: column;
    /* 縦方向に要素を配置 */
    margin-top: 12px;

}



.content_area_wrapper {
    padding-top: 104px;
    width: 100%;
}

@media screen and (max-width:768px) {
    .content_area_wrapper {
        padding-top: 0px;
        width: 100%;
    }
}

/* MV エリア==================================================================================== */



.mv_area {
    overflow: hidden;
    width: 100%;
}




.mv_area_wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 661px;
    position: relative;

}

@media screen and (max-width:768px) {
    .mv_area_wrapper {
        flex-direction: column-reverse;
        width: 100%;
        height: 700px;
        /* background-color: #B20F14; */
    }
}





.mv_left {
    /* background-color: aqua; */
    position: relative;
    width: 81.53%;
    height: 100%;
    margin-left: -22%;
    /* background-color: aqua; */
}

@media screen and (max-width:768px) {
    .mv_left {
        margin-left: -10%;
        width: 100%;
        margin-top: 0px;
        z-index: 1;

    }
}



.mv_left {
    animation-name: fadeUpAnime;
    animation-delay: 0.6s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.mv_img img {
    border-radius: 30px;
    width: 100%;
    height: 661px;
    /* margin-left: calc(20% - 20vw); */
    position: relative;
    aspect-ratio: 1174 / 661;
    object-fit: cover;
}

@media screen and (max-width:768px) {
    .mv_img img {
        border-radius: 40px;
        width: 100%;
        height: 364.28px;
        position: relative;
        aspect-ratio: 647 / 364;
        object-fit: cover;
        margin-top: 40px;
    }
}


.mv_right {
    /* background-color:red; */
    padding-left: 2.85%;
    width: 50%;
    display: flex;
    flex-flow: column;
    /* border: #B20F14 1px solid; */

}


@media screen and (max-width:768px) {
    .mv_right {
        width: 100%;
        padding-top: 0px;
        padding-left: 0%;
        /* background-color: rebeccapurple; */
    }
}



.mv_right_decorate {
    height: 158px;
    margin-top: 156px;
    position: absolute;
    overflow: hidden;
    padding-left: 1%;
    /* background-color: bisque; */
}

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

@media screen and (max-width:768px) {
    .sp_mv_right_decorate {
        position: absolute;
        padding-top: 172px;
        z-index: -3;
        padding-left: 8.53%;
    }
}

@media screen and (max-width:768px) {
    .sp_mv_right_decorate_top {
        position: absolute;
        top: 172px;
        z-index: -3;
        left: 8.53%;
        width: 100%;
    }
}




@media screen and (max-width:768px) {
    .sp_mv_right_decorate_under {
        /* background-color: red;  */
        margin-top: 560px;
        position: absolute;
        /* 親要素（.mv_right）を基準に位置を設定 */
        left: -0px;
        /* 左側に380px移動 */
        width: 100%;
        z-index: 0;
        /* 背景としての位置を設定 */
    }
}

.sp_mv_right_decorate_top,
.sp_mv_right_decorate_under,
.mv_right_decorate {
    animation-name: fadeUpAnime;
    animation-delay: 0.8s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.mv_right_text {
    margin-top: 240px;
    font-weight: 600;
    /* background-color: red; */
    line-height: 2.4em;
    font-size: 2.4rem;
    padding-left: 2.5%;
    letter-spacing: 0.3rem;
}


@media screen and (max-width:768px) {
    .mv_right_text {
        margin-top: 16px;
        font-weight: 700;
        padding: 0px 10.77%;
        line-height: 2.4em;
        font-size: 5.2vw;
        width: 100%;
        letter-spacing: 0.3rem;

    }
}



.mv_right_text {
    animation-name: fadeUpAnime;
    animation-delay: 1s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mv_right_scroll {
    margin-left: 0;
    position: absolute;
    width: 29px;
    z-index: 1;
    bottom: 0;
    right: 0;
    margin-right: 15px;


}

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

}


.mv_right_scroll img {
    width: 29px;
}





/* 共通 コンテンツエリア =========================*/

.content_title {
    font-size: 6.0rem;
    /* margin-top: 168px; */
    /* margin-left: 120px; */
    font-family: "din-2014-narrow", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-family: "din-2014", sans-serif;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 0.06em;
}



.content_title_jp {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 24px;
    /* margin-left: 120px; */
    letter-spacing: 0.06em;
    color: #373737;
}

@media screen and (max-width:768px) {
    .content_title_jp {
        font-size: 2rem;
        font-weight: 600;
        margin-top: 12px;
        letter-spacing: 3px;
        font-family: Noto Sans JP;
    }


}


.content_title_jp::before {
    content: "■";
    margin-right: 0.5em;
    color: #B20F14;
    /* 必要に応じて余白を調整 */
}

.content_text {
    font-size: 1.5rem;
    margin-top: 32px;
    /* margin-left: 120px; */
    line-height: 2em;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

}


@media screen and (max-width:768px) {
    .content_text {
        font-size: 1.5rem;
        margin-top: 24px;
        line-height: 2em;
        letter-spacing: 0.1rem;
        position: relative;
        font-family: Noto Sans JP;

    }

}


/* about エリア===================================================================== */

.about_area {
    position: relative;
    overflow: hidden;
    /* width: 100%; */
    /* widh100%を入れると、横幅がスライドしてしまう仕様になってしまった。。 */
    position: relative;
    margin: 90px 0px 0px;
    padding: 0px 113.5px 120px;
    /* background: rebeccapurple; */
}



@media screen and (max-width:768px) {
    .about_area {
        margin: 0px 0px 0px;
        padding: 0px 20px 60px;
        overflow: hidden;
    }
}



.content_about_point_wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 60px 0px 0px;

}


@media screen and (max-width:768px) {
    .content_about_point_wrapper {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        /* background-color: blue; */
        margin: 36px 0px 0px;
    }
}

.content_about_title {
    /* background-color: #8F8F8F; */
    font-size: 11rem;
    color: #B20F14;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0.8rem;
}

@media screen and (max-width:768px) {
    .content_about_title {
        font-size: 6.0rem;
        width: 100%;
        font-weight: 800;
        font-family: "din-2014", sans-serif;
        letter-spacing: 0.6rem;
    }
}

.content_about_point {
    /* background-color: red; */
    width: 28.85%;
    position: relative;
    /* 親要素に相対位置を指定してスタッキングコンテキストを作成 */
    z-index: 1;
    /* 子要素が親要素の上に配置されるようにするために必要 */
}

@media screen and (max-width:768px) {
    .content_about_point {
        margin: 0;
        padding: 0%;
        width: 100%;
        position: relative;
        z-index: 1;
        /* background-color: rebeccapurple; */
    }
}


.content_about_point_icon {
    z-index: 2;
    width: 110px;
    /* background-color: blue; */
    margin-top: 0px;
    margin-left: 20px;
}

.content_about_point_img {
    z-index: 2;
    width: 94.29%;
    margin-top: -10px;
    margin-left: 19px;
}

@media screen and (max-width:768px) {
    .content_about_point_img {
        z-index: 2;
        width: 82.86%;
        height: 193.15px;
        margin-left: 30px;
        margin-right: auto;
    }
}



.content_about_point_title_1 {
    margin-top: -15px;
    background-color: #202020;
    color: white;
    font-size: 1.4vw;
    line-height: 2em;
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 12px;
    display: inline-block;
}

@media screen and (max-width:768px) {
    .content_about_point_title_1 {
        margin-top: -15px;
        background-color: #202020;
        color: white;
        font-size: 4.4vw;
        line-height: 2em;
        text-align: center;
        z-index: 2;
        position: relative;
        padding: 0px 10px;
        display: inline-block;
    }
}


.content_about_point_title_2 {
    margin-top: -15px;
    background-color: #202020;
    color: white;
    font-size: 1.4vw;
    line-height: 2em;
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 12px;
    display: inline-block;
}



@media screen and (max-width:768px) {
    .content_about_point_title_2 {
        margin-top: -15px;
        background-color: #202020;
        color: white;
        font-size: 4.4vw;
        line-height: 2em;
        text-align: center;
        z-index: 2;
        position: relative;
        padding: 0px 10px;
        display: inline-block;
    }
}


.content_about_point_title_3 {
    margin-top: -15px;
    background-color: #202020;
    color: white;
    font-size: 1.4vw;
    line-height: 2em;
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 12px;
    display: inline-block;
}

@media screen and (max-width:768px) {
    .content_about_point_title_3 {
        margin-top: -15px;
        background-color: #202020;
        color: white;
        font-size: 4.4vw;
        line-height: 2em;
        text-align: center;
        z-index: 2;
        position: relative;
        padding: 0px 10px;
        display: inline-block;
    }
}


.content_about_point_discription {
    margin-top: 30px;
    font-size: 1.5rem;
    line-height: 1.86em;
    letter-spacing: 0.1em;
}

@media screen and (max-width:768px) {
    .content_about_point_discription {
        margin-top: 12px;
        font-size: 1.4rem;
        line-height: 1.86em;
        letter-spacing: 0.1em;
    }
}

/* about エリア backimg*/

.content_about_backimg {
    margin-left: 200px;
    overflow: hidden;
}

.content_about_backimg_1,
.content_about_backimg_2,
.content_about_backimg_3,
.content_about_backimg_4,
.content_about_backimg_5,
.content_about_backimg_6 {
    margin-top: -200px;
    margin-left: 800px;
    width: 215px;
    height: 215px;
    background-color: #F2F3F7;
    position: absolute;
    display: flex;
}

.content_about_backimg_2,
.content_about_backimg_4 {
    margin-left: 1050px;
}

.content_about_backimg_3,
.content_about_backimg_6 {
    margin-left: 1300px;
}


.content_about_backimg_4,
.content_about_backimg_5,
.content_about_backimg_6 {
    margin-top: 50px;

}








/* SOLUTION エリア======================== */
.solution_area {
    position: relative;
    padding: 0px 60px 90px;

}


@media screen and (max-width:768px) {
    .solution_area {
        padding: 0px 20px 60px;
        overflow: hidden;
    }
}



.solution_area_bg {
    background-color: #F2F3F7;
    border-top-left-radius: 110px;
    border-bottom-left-radius: 110px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media screen and (max-width:768px) {
    .solution_area_bg {
        background-color: #F2F3F7;
        border-top-left-radius: 70px;
        border-bottom-left-radius: 70px;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
}



.content_title_solution {
    font-size: 11rem;
    color: #B20F14;
    padding-top: 120px;
    font-family: "din-2014";
    font-weight: 700;
}


@media screen and (max-width:768px) {
    .content_title_solution {
        font-size: 6.0rem;
        width: 100%;
        font-weight: 800;
        font-family: "din-2014", sans-serif;
        letter-spacing: 0.6rem;

    }
}


.content_solution_problem_wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width:768px) {
    .content_solution_problem_wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* background-color: blue; */
        align-items: center;
        margin: 36px 0px 0px;
    }
}


.content_solution_problem,
.content_solution_problem_2,
.content_solution_problem_3 {
    /* background-color: blue; */
    width: 379px;
}

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

    .content_solution_problem,
    .content_solution_problem_2,
    .content_solution_problem_3 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* background-color:red; */
        align-items: center;
    }
}


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

    .content_solution_problem_2,
    .content_solution_problem_3 {
        margin-top: 60px;
    }
}




.content_solution_problem_comment {
    width: 379px;
    height: 166px;
    border-radius: 20px;
    background-color: white;
}

@media screen and (max-width:768px) {
    .content_solution_problem_comment {
        width: 100%;
        height: auto;
        border-radius: 20px;
        background-color: white;
        padding: 0 16px 16px;
    }
}





.content_solution_problem_comment_bubble_wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
}


.content_solution_problem_comment_bubble {
    width: 34px;
    margin-top: -17px;
    /* margin-left: 182px; */
    z-index: -1;
}

.content_solution_problem_comment_bubble_under_1 {
    width: 17px;
    margin-top: 0px;
    margin-right: 46px;
    z-index: -1;
}

.content_solution_problem_comment_title {
    font-size: 1.5em;
    font-weight: 800;
    text-align: center;
    padding-top: 24px;

}

.content_solution_problem_comment_text {
    font-size: 1.6em;
    font-weight: 400;
    margin: 10px 24px 0px;
    width: 331px;
    line-height: 2em;


}


@media screen and (max-width:768px) {
    .content_solution_problem_comment_text {
        font-size: 4.1vw;
        margin: 10px 0px 0px;
        padding: 0px 0px;
        line-height: 2em;
        width: 100%;

    }


}


.content_solution_answer {
    /* background-color: green; */
    text-align: center;
    margin-top: 22px;
}

@media screen and (max-width:768px) {
    .content_solution_answer {
        justify-content: center;
        margin-top: 22px;
        width: 89.74%;
    }


}



.content_solution_answer img {
    width: 300px;
}

@media screen and (max-width:768px) {
    .content_solution_answer img {
        width: 200px;
    }


}

.content_solution_answer_title {
    font-size: 2.8rem;
    text-align: center;
    margin-top: 42px;
    line-height: 1.4;
}


@media screen and (max-width:768px) {
    .content_solution_answer_title {
        font-size: 4.8vw;
        text-align: center;
        margin-top: 20px;
        line-height: 1.4;
        width: 89.74%;
    }
}



.content_solution_answer_discription {
    font-size: 1.5rem;
    margin-top: 20px;
    text-align: left;
    line-height: 1.8em;
    letter-spacing: 0.2rem;
}

@media screen and (max-width:768px) {
    .content_solution_answer_discription {
        font-size: 4.1vw;
        margin-top: 8px;
        text-align: left;
        line-height: 1.8em;
        letter-spacing: 0.2rem;
        width: 89.74%;
    }
}


/* item エリア======================== */
.item_area {
    position: relative;
    padding: 0px 120px 0px;
    overflow: hidden;

}

@media screen and (max-width:768px) {
    .item_area {
        padding: 0px 20px 0px;
        overflow: hidden;
    }
}



.content_title_item {
    margin-top: 0px;
    font-size: 11rem;
    color: #B20F14;
    margin-top: -125px;
    letter-spacing: 0.8rem;
}

.content_text_item {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
}



.content_item_backimg {
    margin-left: 100px;
    overflow: hidden;
    display: flex;
    margin-top: -18px;
    margin-left: 630px;
    justify-content: space-between;
    /* background-color: rebeccapurple; */
    width: 745px;
    z-index: -1;


}

.content_item_backimg_1 {
    width: 215px;
    height: 215px;

    background-color: #F2F3F7;
    position: absolute;
    display: flex;
}

.content_item_backimg_2 {
    width: 215px;
    height: 215px;
    background-color: #F2F3F7;
    margin-left: 265px;

}

.content_item_backimg_3 {
    width: 215px;
    height: 215px;
    background-color: #F2F3F7;
}




.content_item_wrap {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width:768px) {
    .content_item_wrap {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
}


.content_item_point {
    justify-content: space-between;
    margin-top: 60px;
    flex-flow: column;
}

.content_item_point {
    /* margin: 0px 10px; */
    /* background-color: red; */
    display: flex;
    position: relative;
    /* 親要素に相対位置を指定してスタッキングコンテキストを作成 */
    z-index: 1;
    /* 子要素が親要素の上に配置されるようにするために必要 */

}


@media screen and (max-width:768px) {
    .content_item_point {
        align-items: center;

    }
}


.content_item_point_img {
    display: flex;
    width: 360px;
}


@media screen and (max-width:768px) {
    .content_item_point_img {
        width: 350px;

    }
}


.content_item_point_discription {
    margin-top: 20px;
    font-size: 2.2rem;
    line-height: 1.5em;
    text-align: center;
    font-weight: 900;

}

/* price エリア======================== */
.price_area {
    position: relative;
    margin: 90px 0px 0px;
    padding: 90px 120px 90px;
    overflow: hidden;
}

@media screen and (max-width:768px) {
    .price_area {
        padding: 0px 20px 120px;
        overflow: hidden;
    }
}


.price_area_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #F2F3F7;
    border-top-left-radius: 110px;
    border-bottom-left-radius: 110px;
    z-index: -1;
    padding-top: 90px;
}


@media screen and (max-width:768px) {
    .price_area_bg {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #F2F3F7;
        border-top-left-radius: 0px;
        border-top-right-radius: 50px;
        border-bottom-left-radius: 50px;
        z-index: -1;
        padding-top: 90px;
    }
}





.content_price_list {
    display: flex;
    justify-content: center;
    margin-top: 24px;

}

.content_title_price {
    font-size: 11rem;
    color: #B20F14;
    padding-top: 0px;
    letter-spacing: 0.8rem;
}


@media screen and (max-width:768px) {
    .content_title_price {
        padding-top: 60px;
        font-size: 6.0rem;
        width: 100%;
        font-weight: 800;
        font-family: "din-2014", sans-serif;
        letter-spacing: 0.6rem;
    }


}





.content_price_backimg {
    margin-left: 761px;
    overflow: hidden;
}

.content_price_backimg_1,
.content_price_backimg_2,
.content_price_backimg_3,
.content_price_backimg_4,
.content_price_backimg_5,
.content_price_backimg_6 {
    margin-top: -140px;
    width: 215px;
    height: 215px;
    background-color: white;
    position: absolute;
    display: flex;
    z-index: 1;
}

.content_price_backimg_1,
.content_price_backimg_2 {
    /* background-color: aqua; */
}

.content_price_backimg_2,
.content_price_backimg_4,
.content_price_backimg_6 {
    margin-left: 265px;
}

.content_price_backimg_3,
.content_price_backimg_4 {
    /* background-color: blue; */
    margin-top: 120px;
}

.content_price_backimg_5,
.content_price_backimg_6 {
    /* background-color: red; */
    margin-top: 400px;
}







.content_price_list_wrapper {
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    margin-top: 45px;
}





.content_price_list_bg {
    width: 1000px;
    height: 435px;
    background-color: #373737;
    border-radius: 15px;
    z-index: 2;
}

@media screen and (max-width:750px) {
    .content_price_list_bg {
        width: 1000px;
        height: auto;
        background-color: #373737;
        border-radius: 15px;
        z-index: 2;
        padding-bottom: 40px;
    }

}



@media screen and (max-width:750px) {
    .content_price_list_inner_wrapper {
        margin-top: 24px;
        /* background-color: red; */
        padding: 0px 15px;
        height: auto;
    }
}





.content_price_list_title {
    font-size: 1.8rem;
    color: aliceblue;
    text-align: center;
    padding-top: 60px;
    /* background-color: #B20F14; */
}

@media screen and (max-width:750px) {
    .content_price_list_title {
        font-size: 1.8rem;
        font-weight: 600;
        color: aliceblue;
        text-align: center;
        padding-top: 0px;
        /* background-color: #B20F14; */
    }
}



@media screen and (max-width:750px) {
    .content_price_list_title_caegory_1 {
        font-size: 1.5rem;
        color: aliceblue;
        text-align: center;
        padding-top: 24px;
    }
}


@media screen and (max-width:750px) {
    .content_price_list_title_caegory_2 {
        font-size: 1.5rem;
        color: aliceblue;
        text-align: center;
        padding-top: 32px;
    }
}




.content_price_list {
    color: #F2F3F7;
    font-size: 1.3rem;
}


@media screen and (max-width:750px) {
    .content_price_list {
        color: #F2F3F7;
        font-size: 1.3rem;

        width: 100%;

    }

}






.content_price_list table,
{
display: flex;
align-items: center;
justify-content: center;
}








.content_price_list th {
    padding: 10px;
    border: #F2F3F7;
    /* border-collapse: collapse; */
    border: 1px solid #8F8F8F;
    border-left: none;
    border-top: none;
}


.content_price_list td {
    border: #F2F3F7;
    border: 1px solid #8F8F8F;
    border-left: none;
    border-top: none;
}

@media screen and (max-width:750px) {
    .content_price_list td {
        border: #F2F3F7;
        border: 1px solid #8F8F8F;
    }

}



.content_price_list_table_how {
    padding: 0px 30px;
    padding-left: 20px;
    text-align: center;
    vertical-align: middle;
    height: 56px;
    border-right: none;

}


.content_price_list_table_title {
    padding: 12px 20px 12px 20px;
    vertical-align: middle;
    text-align: center;

}

@media screen and (max-width:750px) {
    .content_price_list_table_title {
        padding: 12px 7px 12px 7px;
        vertical-align: middle;
        text-align: center;

    }


}


.content_price_list_table_weight {
    padding: 12px 20px 12px 20px;
    vertical-align: middle;
    text-align: left;
    height: 55px;
    line-height: 2rem;
}

@media screen and (max-width:750px) {
    .content_price_list_table_weight {
        padding: 12px 0px 12px 8px;
        vertical-align: middle;
        text-align: left;
        height: 55px;
        line-height: 2rem;
        width: 153px;
    }

}



.content_price_list_table_cost {
    padding: 12px 20px 12px 20px;
    vertical-align: middle;
    text-align: center;
}

@media screen and (max-width:750px) {
    .content_price_list_table_cost {
        padding: 12px 3px 12px 3px;
        vertical-align: middle;
        text-align: center;
        width: 89px;
    }
}



.content_price_list_table_day {
    padding: 12px 20px 12px 20px;
    vertical-align: middle;
    text-align: center;
}


@media screen and (max-width:750px) {
    .content_price_list_table_day {
        padding: 12px 3px 12px 3px;
        vertical-align: middle;
        text-align: center;
        width: 76px;
    }
}


.content_price_date {
    display: flex;
    justify-content: end;
    color: white;
    padding-top: 10px;
    margin-right: 22%;
}



@media screen and (max-width:750px) {
    .content_price_date {
        display: flex;
        justify-content: end;
        color: white;
        padding-top: 10px;
        margin-right: 0%;
    }

}

/* お客様からの声 ========================*/

.costamer-voice_area {
    position: relative;
    margin: 90px 0px 0px;
    padding: 0px 120px 90px;
}

@media screen and (max-width:768px) {
    .costamer-voice_area {
        padding: 0px 20px 60px;
        overflow: hidden;
    }
}

.content_title_voice {
    font-size: 6rem;
    padding-top: 0px;
    letter-spacing: 0.4rem;
    color: #373737;
}

@media screen and (max-width:768px) {
    .content_title_voice {
        font-size: 3.6rem;
        padding-top: 0px;
        letter-spacing: 0.3rem;
        color: #373737;
    }
}



.content_costamer-voice_bg {
    /*1200px */
    /* height: 190px; */
    background-color: #F2F3F7;
    border-radius: 0px 30px 30px 30px;
    margin-top: 45px;
    padding-bottom: 30px;
}

.content_costamer-voice {
    margin: 0px 30px 0px;
    padding-top: 30px;
}

.content_costamer-voice_row {
    display: flex;
}



@media screen and (max-width:768px) {
    .content_costamer-voice {
        margin: 0px 30px 0px;
        padding-top: 30px;
    }
}

.content_costamer-voice_icon {
    width: 58px;
}

@media screen and (max-width:768px) {
    .content_costamer-voice_icon {
        width: 40px;
    }
}

.content_costamer-voice_textarea {
    width: 1050px;
    margin-left: 32px;

}

@media screen and (max-width:768px) {
    .content_costamer-voice_textarea {
        width: 1050px;
        margin-left: 0px;

    }
}



.content_costamer-voice_text_upside {
    font-weight: 800;
    display: flex;
    align-items: center;
}


@media screen and (max-width:768px) {
    .content_costamer-voice_text_upside {
        font-weight: 800;
        display: flex;
        align-items: center;

    }
}

.content_costamer-voice_title {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;

}


@media screen and (max-width:768px) {
    .content_costamer-voice_title {
        font-size: 1.8rem;
        letter-spacing: 0.2rem;
        font-weight: 800;
        padding-top: 24px;
        line-height: 1.5em;

    }
}



.content_costamer-voice_tag {
    flex-flow: column;
    background-color: white;
    margin-left: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: #373737;
}




.content_costamer-voice_tag_name {
    font-size: 1.2rem;
    padding: 12px;
    color: #373737;
    letter-spacing: 0.1rem;


}

.content_costamer-voice_text_downside {
    margin-top: 12px;
    font-size: 1.5rem;
    line-height: 3rem;
    letter-spacing: 0.2rem;

}

span {
    color: #B20F14;
}

/* business-flow =========================*/

.business-flow_area {
    position: relative;
    margin: 0px 0px 0px;
    padding: 100px 8.33% 90px;
    overflow: hidden;
}

@media screen and (max-width:768px) {
    .business-flow_area {
        padding: 0px 20px 120px;
        overflow: hidden;
    }
}




.content_flow_backimg {
    margin-left: 100px;
    overflow: hidden;
    display: flex;
    margin-top: -18px;
    margin-left: 630px;
    justify-content: space-between;
    /* background-color: rebeccapurple; */
    width: 745px;
}

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

}



.content_flow_backimg_1 {
    width: 215px;
    height: 215px;

    background-color: white;
    position: absolute;
    display: flex;
}

.content_flow_backimg_2 {
    width: 215px;
    height: 215px;
    background-color: white;
    margin-left: 265px;

}

.content_flow_backimg_3 {
    width: 215px;
    height: 215px;
    background-color: white;
}


.business-flow_bg {
    background-color: #F2F3F7;
    border-top-right-radius: 110px;
    border-bottom-right-radius: 110px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.content_title_business-flow {
    font-size: 6rem;
    padding-top: 0px;
    letter-spacing: 0.4rem;
    color: #373737;
}

@media screen and (max-width:768px) {
    .content_title_business-flow {
        font-size: 3.6rem;
        padding-top: 60px;
        letter-spacing: 0.4rem;
        color: #373737;
    }
}


.content_business-flow_wrapper {
    margin-top: 24px;
    margin-left: 100px;
    display: flex;
    align-items: center;
    width: 83.33%;
}


@media screen and (max-width:768px) {
    .content_business-flow_wrapper {
        margin-top: 68px;
        margin-left: 0px;
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;


    }
}


.content_business-flow_icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #373737;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}


@media screen and (max-width:768px) {
    .content_business-flow_icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: #373737;
        display: flex;
        /* align-items: center; */
        justify-content: center;
        z-index: 3;
        position: absolute;
        margin-top: -41px;

    }
}

.content_business-flow_icon_line {
    width: 5px;
    height: 200px;
    background-color: #373737;
    margin-left: 45px;
    margin-top: 7%;
    position: absolute;
    z-index: -1;
}

@media screen and (max-width:768px) {
    .content_business-flow_icon_line {
        width: 5px;
        height: 400px;
        margin-left: 0px;
        background-color: #373737;
        margin-top: 0%;
        z-index: -1;
    }
}




.content_business-flow_main {
    padding-top: 32px;
    background-color: white;
    height: 184px;
    width: 772px;
    margin-left: -50px;
    border-radius: 20px;
    z-index: 2;
}

@media screen and (max-width:768px) {
    .content_business-flow_main {
        padding-top: 45px;
        margin-left: 0px;
        height: 210px;
        border-radius: 20px;
        z-index: 2;
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;

    }
}


.content_business-flow {
    background-color: white;
    height: 92px;
    width: 100%;
    margin-left: -50px;
    border-radius: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
}

@media screen and (max-width:768px) {
    .content_business-flow {
        padding-top: 45px;
        padding-bottom: 24px;
        margin-left: 0px;
        height: auto;
        border-radius: 20px;
        z-index: 2;
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;

    }
}



.content_business-flow_icon img {
    width: 48px;
    height: 48px;
}


.content_business-flow_upside {
    /* background-color: red; */
    margin-left: 15%;
    font-size: 2.4rem;
    display: flex;

}

@media screen and (max-width:768px) {
    .content_business-flow_upside {
        /* background-color: red; */
        margin-left: 0px;
        font-size: 2.4rem;
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        /* background-color: aqua; */

    }
}




.content_business-flow_upside_step {
    display: flex;
    align-items: center;
    width: 108px;
    height: 18px;

}


@media screen and (max-width:768px) {
    .content_business-flow_upside_step {
        width: 29.56%;

    }
}

.content_business-flow_upside_title {
    padding-left: 57px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    pointer-events: none;

}


@media screen and (max-width:768px) {
    .content_business-flow_upside_title {
        padding: 0px 4.57%;
        padding-top: 14px;
        font-size: 1.6rem;
        line-height: 2.7rem;
        display: flex;
        text-align: center;
        pointer-events: none;


    }

}



.content_business-flow_inquiry {
    width: 77.72%;
    height: 72px;
    background-color: #373737;
    margin-top: 20px;
    margin-left: 15%;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-align: center;
    color: white;
}

@media screen and (max-width:768px) {
    .content_business-flow_inquiry {
        width: 77.72%;
        height: 72px;
        margin-left: 0px;


    }
}





/* faq =========================*/

.faq_area {
    position: relative;
    margin: 90px 0px 0px;
    padding: 100px 120px 90px;
}

@media screen and (max-width:768px) {
    .faq_area {
        padding: 0px 20px 0px;
        overflow: hidden;
    }
}


.content_title_faq {
    font-size: 6rem;
    padding-top: 0px;
    letter-spacing: 0.4rem;
    color: #373737;
}

@media screen and (max-width:768px) {
    .content_title_faq {
        font-size: 3.6rem;
        padding-top: 0px;
        letter-spacing: 0.4rem;
        color: #373737;
    }
}


.content_faq_wrapper {
    /* background-color: rebeccapurple; */
    margin: 70px 6.94% 0px;
    height: 109.97px;

}



@media screen and (max-width:768px) {
    .content_faq_wrapper {
        /* background-color: rebeccapurple; */
        margin: 24px 0px 0px;
        height: auto;

    }
}


@media screen and (max-width:768px) {
    .content_faq {
        width: 100%;
        /* background-color: #B20F14; */
        padding: 0px 0px;
        height: auto;
    }
}


.content_faq_question_q {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 1.5rem;
}

@media screen and (max-width:768px) {
    .content_faq_question_q {
        display: flex;
        align-items: center;
        width: 100%;
        font-size: 1.5rem;
        line-height: 2.4rem;
        letter-spacing: 0.2rem;
        /* background-color: rebeccapurple; */

    }
}

.content_faq_question_a {
    display: flex;
    align-items: center;
    margin-left: 4px;
    margin-top: 14px;
    width: 100%;
    line-height: 2em;

}

@media screen and (max-width:768px) {
    .content_faq_question_a {
        display: flex;
        align-items: start;
        margin-left: 4px;
        margin-top: 12px;
        width: 100%;
        line-height: 2em;
        letter-spacing: 0.2rem;

    }
}



.content_faq_text {
    margin-left: 16px;
    font-size: 1.5rem;
    font-weight: 700;
    width: 100%;
}

.content_faq_text_a {
    font-weight: 400;
    margin-left: 12px;
    font-size: 1.5rem;
    width: 100%;
    line-height: 1.6em;

}

.content_faq_icon {
    width: 36px;
    height: 36px;
    flex-shrink: 1;
}

.content_faq_icon img {
    width: 36px;
    height: 36px;
    flex-shrink: 1;
}


.content_faq_line {
    background-color: #8F8F8F;
    width: 100%%;
    height: 1px;
    margin-top: 24px;
}






/* お問い合わせフォーム =========================*/
.form_decolation_row_1 {
    position: absolute;
    margin-left: -68.92%;
    margin-top: -200px;
    z-index: -2;
    /* background-color: rebeccapurple; */
    display: inline-block;

}


.form_decolation_row_2 {
    position: absolute;
    display: inline-block;
    margin-top: 100px;
    margin-left: -68.92%;
    z-index: -2;
    /* background-color: rebeccapurple; */

}


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

    .form_decolation_row_1,
    .form_decolation_row_2 {
        display: none;

    }
}







.form_area {
    position: relative;
    margin: 90px 0px 0px;
    padding: 0px 8.33% 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

@media screen and (max-width:768px) {
    .form_area {
        padding: 0px 20px 120px;
        overflow: hidden;
    }
}

.content_title_area {

    width: 100%;
}

.content_title_form {

    justify-content: start;
}

.content_title_form {
    font-size: 6rem;
    padding-top: 0px;
    letter-spacing: 0.4rem;
    color: #373737;
}

@media screen and (max-width:768px) {
    .content_title_form {
        font-size: 6.0rem;
        width: 100%;
        font-weight: 800;
        font-family: "din-2014", sans-serif;
        letter-spacing: 0.6rem;

    }
}

.content_form_wrapper {
    /* /* border-color: #B20F14; */
    width: 100%;
    display: flex;
    margin-top: 45px;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.content_form {

    width: 69.44%;
}


@media screen and (max-width:768px) {
    .content_form {
        width: 100%;
    }
}







.form_bace {
    font-size: 1.5rem;
}

.form_follow {
    margin-top: 32px;
}

.form_bace_title {
    font-weight: 600;

}

.form_content_trigger {
    resize: none;
}

.form_content {
    resize: none;
    height: 120px;
}

@media screen and (max-width:768px) {
    .form_content {
        resize: none;
        height: 132px;
    }
}




.form_bace input {
    display: flex;
    align-items: center;
    background-color: #F2F3F7;
    width: 100%;
    height: 60px;
    margin-top: 12px;
    border-radius: 10px;
    padding-left: 40px;

}


.form_bace textarea {
    display: flex;
    align-items: center;
    background-color: #F2F3F7;
    padding-top: 20px;
    width: 100%;
    margin-top: 12px;
    border-radius: 10px;
    padding: 20px 30px;
}


.form_bace textarea::placeholder {
    line-height: 3rem;
}



.form_button_area {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}



@media screen and (max-width:768px) {
    .form_button_area {
        margin-top: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        width: 100%;
    }

}

.form_button_area_link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.privacypolicy {
    width: 600px;
    height: 72px;
    background-color: #373737;
    color: #F2F3F7;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:768px) {
    .privacypolicy {
        width: 100%;
        height: 72px;
        background-color: #373737;
        color: #F2F3F7;
        font-size: 1.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}



.pdf_icon {
    width: 16.14px;
    margin-left: 24px;
    display: flex;
}




.privacypolicy_attention {
    font-size: 1.2rem;
    margin-top: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.form_button {
    width: 600px;
    height: 72px;

    margin-top: 24px;
}


.form_button button {
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #B20F14;
    color: white;
    font-size: 1.6rem;
}




@media screen and (max-width:768px) {
    .form_button {
        width: 100%;
        height: 72px;
        background-color: #B20F14;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin-top: 24px;
    }
}









/* 会社概要 =========================*/

.company-overview_area {
    position: relative;
    margin: 120px 0px 0px;
    padding: 60px 0px 24px;
    background-color: #373737;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:768px) {
    .company-overview_area {
        position: relative;
        margin: 10px 0px 0px;
        padding: 60px 0px 24px;
        background-color: #373737;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}


.content_company-overview_wrapper {
    width: 100%;
    margin: 0px 21.18% 0px;
    /* background-color:black; */
}

@media screen and (max-width:768px) {
    .content_company-overview_wrapper {
        /* background-color: rebeccapurple; */
        width: 100%;
        margin: 0px 5.13% 0px;
        /* background-color:black; */
    }
}


.content_title_company-overview {
    font-size: 1.8rem;
    color: white;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}


.company-overview_info {
    font-size: 1.3rem;
    color: white;
    display: flex;

    align-items: center;
    margin-top: 14px;
    /* background-color: aquamarine; */
    line-height: 27px;
}

.company-overview_info_ex {
    align-items: flex-start;
    line-height: 27px;
}



.company-overview_info_title {
    width: 100px;

    /* background-color: blue; */
}

.company-overview_info_detail {
    margin-left: 4.17%;
    line-height: 27px;
    /* background-color: green; */
    width: 100%;

}


.company-overview_info_line {
    border: solid #8F8F8F 1px;
    width: 100%;
    margin-top: 14px;
}



/* footer=========================*/

.footer_area {
    position: relative;
    padding: 0px 0px 0px;
    height: 47px;
    background-color: #373737;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width:768px) {
    .footer_area {
        /* width: 100%; */
        /* widh100%を入れると、横幅がスライドしてしまう仕様になってしまった。。 */
        padding: 0px 0px 120px;
        /* background: rebeccapurple; */
        overflow: hidden;
    }
}

.content_footer_wrapper {
    /* background-color: rebeccapurple; */
}

.content_title_footer {
    font-size: 1.0rem;
    color: white;
    letter-spacing: 0.2rem;
    font-family: Noto Sans Jp;
    font-weight: 400;
}

@media screen and (max-width:768px) {
    .content_title_footer {
        margin-top: 30px;
        font-size: 1.2rem;
        height: 10px;
        color: :read-only;
        letter-spacing: 0.2rem;
        font-family: Noto Sans Jp;
        font-weight: 400;
    }

}



/* inquiry_area_1 */

/* js テストエリア */
.about_area,
.solution_area,
.price_area,
.costamer-voice_area,
.business-flow_area {
    opacity: 0%;
}


.is-fadein {
    opacity: 100%;
    transition: 0.8s ease-in;
}



/* thanks ページ */




.thanks {
    width: 100%;
    /* background-color: red; */
    text-align: center;
    opacity: 100%;
}

.thanks__wrap {
    width: 100%;
    /* background-color: red; */
    padding: 280px;
    text-align: center;
}




@media screen and (max-width:768px) {
    .thanks__wrap {
        width: 100%;
        /* background-color: red; */
        padding: 80px 10px;
        text-align: center;
        margin-top: 60px;
    }
}


.thanks_title {
    font-size: 4em;
    font-family: 'Noto Sans JP';
    color: #B20F14;
    letter-spacing: 0.1em;
}

@media screen and (max-width:768px) {
    .thanks_title {
        font-size: 2.6em;
        font-family: 'Noto Sans JP';
        color: #B20F14;
        width: 90%;
        display: inline-block;
        line-height: 1.4em;
    }

}


.thanks_discription {
    margin-top: 32px;
    font-size: 2em;
}

@media screen and (max-width:768px) {
    .thanks_discription {
        margin-top: 32px;
        font-size: 2em;
        line-height: 1.6em;

    }

}


.thanks_link {
    margin-top: 60px;
    width: auto;
    height: auto;
    background-color: #B20F14;
    display: inline-block;
    color: #F2F3F7;
    align-items: center;
    font-size: 2em;
    padding: 20px 20px;
    border-radius: 10px;
    letter-spacing: 0.1em;
}

@media screen and (max-width:768px) {
    .thanks_link {
        margin-top: 30px;
        width: auto;
        height: auto;
        background-color: #B20F14;
        display: inline-block;
        color: #F2F3F7;
        align-items: center;
        font-size: 2em;
        padding: 20px 50px;
        border-radius: 10px;
        letter-spacing: 0.1em;
    }

}



.footer_area_thanks {
    position: relative;
    padding: 0px 0px 0px;
    height: 47px;
    background-color: #373737;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0%;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}


@media screen and (max-width:768px) {
    .footer_area_thanks {
        bottom: 0%;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px
        /* background: rebeccapurple; */
        overflow: hidden;
    }
    

}

.content_title_footer_thanks{
    font-size: 1.0rem;
    color: white;
    letter-spacing: 0.2rem;
    font-family: Noto Sans Jp;
    font-weight: 400;
}

@media screen and (max-width:768px) {
    .content_title_footer_thanks {
        font-size: 1.2rem;
        height: 10px;
        color: :read-only;
        letter-spacing: 0.2rem;
        font-family: Noto Sans Jp;
        font-weight: 400;
    }

}






.header_inqury_thanks {
    display: none;
}