main{
    width: 100vw;
}
.main_inner{
    overflow: hidden;
}

.inner{
	max-width: calc(1110px + 5% * 2);
	margin: 0 auto;
	padding: 160px 5% 0 5%;
	width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
}
@media (max-width: 1023px) {
    .inner{
        max-width: calc(500px + 5% * 2);
        padding: 80px 5% 0;
    }
}
@media (max-width: 374px) {
    .inner{
        max-width: calc(300px + 3% * 2);
        padding: 80px 3% 0;
        margin: 0 auto;
    }
}

.show-pc{
    display: block;
}
@media (max-width: 1023px) {
    .show-pc{
        display: none!important;
        visibility: hidden;
    }
}

.show-tab{
    display: none;
    visibility: hidden;
}
@media (max-width: 1023px) {
    .show-tab{
        display: block;
        visibility: visible;
    }
}

.show-sp{
    display: none;
    visibility: hidden;
}
@media (max-width: 768px) {
    .show-sp{
        display: block;
        visibility: visible;
    }
}

.header_wrapper{
    max-width: calc(1110px + 5% * 2);
	margin: auto;
    padding: 10px 5%;
    width: 100%;
    justify-content: space-around;
}
@media (max-width: 1023px) {
    .header_wrapper{

        height: auto;
    }
}

.menu_wrapper h2 {
    margin: 30px auto 0 auto;
}
.btn_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #EC4E20;
	border:1px solid #EC4E20;
    border-radius: 50px;
    /* padding: 24px 77px; */
    color: white;
    font-family: Noto Sans JP;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    width: 490px;
    height: 90px;
	transition: all .7s;
}

.cta_btn:hover{
	background-color: #FFF;
	border:1px solid #EC4E20;
	color:#EC4E20;
	transition: all .7s;
}
@media (max-width: 768px) {
    .cta_btn {
        font-size: clamp(15px,5vw,20px);
        width: clamp(300px,45vw,600px);
        height: 60px;
    }
}

.cta_btn::before{
    display: inline-block;
    content: '';
    position: absolute;
    top: 50%;
    right: 44px;

    width: 0;
    height: 0;
    border-style: solid;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #ffffff;
    border-right: 0;

    transform: translate(0%,-50%);
	transition: all .7s;
}
@media (max-width: 768px) {
    .cta_btn::before{
        right: 5%;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 10px solid #ffffff;
    }
}

.cta_btn:hover::before{
    border-left-color:#EC4E20;
	transition: all .7s;
}

.cta_btn_text{
    margin-bottom: 8px;
    position: relative;
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: center;
    color: white;
    padding: 0 16px;
}
@media (max-width: 1023px) {
    .cta_btn_text{
        margin-bottom: 0;
        font-size: clamp(18px,5vw,20px);
    }
}



.cta_btn_text::before,
.cta_btn_text::after{
    display: inline-block;
    content: '';
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 30px;
    background-color: white;
}

.cta_btn_text::before {
    left: 0;
    transform: rotate(-30deg);
}

.cta_btn_text::after {
    right: 0;
    transform:rotate(30deg);
}


.section_ttl_wrapper .en{
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #43906B;
}

.section_ttl_wrapper h2 {
    position: relative;
    font-family: Noto Sans JP;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0em;
    text-align: center;
}
@media (max-width: 1023px) {
    .section_ttl_wrapper h2 {
        font-size: clamp(23px,5vw,30px);
    }
}

.section_ttl_wrapper h2::before{
    display: inline-block;
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 71px;
    height: 4px;
    border-radius: 4px;
    background-color: #43906B;
    transform: translate(-50%,0);
}

.section_ttl_wrapper span{
    color: #43906B;
}


/*header_icon*/

/* .header_icon img{
    filter: brightness(0) invert(1);
} */


.br_pc{
display: none;
}

/*header*/
header{
position: relative;
width: 100%;
background-color: white;
z-index: 999;
}

.menu_wrapper h2{
/* color: white; */
}

header .contact{
background-color: black;
color: white;
}

.header_space{
display: block;
width: 100%;
height: 100px;
background-color: black;
}


/*main_view*/
.main_view {
    position: relative;
    background: url(../../img/img-lp/lp-7/lp-7_main_view-bg.png) bottom center/cover;

}
.main_view_inner {
    padding-top: 110px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1023px) {
    .main_view_inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        row-gap: 40px;
        padding-top: 100px;
        padding-bottom: 3vh;
    }
}
@media (max-width: 768px) {
    .main_view_inner {
        justify-content: center;
        row-gap: 20px;
        padding-top: 20px;
    }
}

.main_view_text_box {
    width: 50%;
}
@media (max-width: 1023px) {
    .main_view_text_box {
        width: 100%;
    }
}
.main_view_text_box p{
    font-family: Noto Sans JP;
    font-size: clamp(40px,4vw,48px);
    font-weight: 700;
    line-height: 70px;
    letter-spacing: 0em;
    color: white;
}
@media (max-width: 1023px) {
    .main_view_text_box p{
        font-size: clamp(20px,8vw,50px);
        line-height: 1.2;

    }
}

.main_view_text_box p span{
    color: #FFCF00;
}


@media (max-width: 1023px) {
    .main_view_ttl{
        text-align: center;
    }
}

.main_view_ttl h1{
    font-family: Noto Sans JP;
    font-size: clamp(48px,5vw,66px);
    font-weight: 700;
    line-height: 86px;
    letter-spacing: 0em;
    color: white;
}

@media (max-width: 1023px) {
    .main_view_ttl h1{
        text-align: center;
        font-size: clamp(28px,10vw,50px);
        line-height: 1.2;
    }
}

.main_view_ttl h1 span {
    color: #FFCF00;
}

.main_view_keyword_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 8px;
}
@media (max-width: 1023px) {
    .main_view_keyword_box {
        justify-content: center;
    }
}

.main_view_keyword {
    margin-top: 24px;
    background-color: white;
    transform: skewX(-10deg);
    padding: 8px 16px;
}
@media (max-width: 1023px) {
    .main_view_keyword {
        margin-top: clamp(8px,4vw,24px);
        background-color: white;
        transform: skewX(-10deg);
        padding: 4px 8px;
    }
}

.main_view_keyword p{
    font-family: Noto Sans JP;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0em;
    text-align: left;
    color: #43906B;
    transform: skewX(10deg);
}
@media (max-width: 1023px) {
    .main_view_keyword p{
        font-size: clamp(16px,4vw,28px);
        text-align: center;
        transform: skewX(10deg);
    }
}

.main_view_logo_box {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 16px;
}
@media (max-width: 1023px) {
    .main_view_logo_box{
        margin-top: clamp(8px,6vw,24px);
        justify-content: center;
    }
}

.main_view_logo {
    width: 64px;
    height: 64px;
}
@media (max-width: 1023px) {
    .main_view_logo {
        width: clamp(40px,8vw,64px);
        height: clamp(40px,8vw,64px);
    }
}
.main_view_logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main_view_img_box {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
@media (max-width: 1023px) {
    .main_view_img_box {
        width: 100%;
        height: 30vh;
    }
}

.main_view_img_box::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background: url(../../img/img-lp/lp-7/lp-7_main_view-icon.png) no-repeat center/cover;
    width: 100%;
    height: 100%;
    z-index: -1;
}
@media (max-width: 1023px) {
    .main_view_img_box::before{
        background: url(../../img/img-lp/lp-7/lp-7_main_view-icon.png) no-repeat top center/contain;
    }
}

.main_view_img_box img{
    height: 100%;
}

.main_view_btn_wrapper {
    position: absolute;
    left: 50%;
    transform: translate(-50%,0%);
}
@media (max-width: 1023px) {
    .main_view_btn_wrapper {
        transform: translate(-50%,-10%);
    }
}

/*problem*/
.problem_inner {
    padding-top: 160px;
    padding-bottom: 80px;
}
@media (max-width: 1023px) {
    .problem_inner {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}

.problem_item_inner {
    margin-top: 80px;
    display: grid;
    justify-content: space-between;
    grid-template-columns:1fr 1fr 1fr 1fr;
    column-gap: 27px;
}

@media (max-width: 1023px) {
    .problem_item_inner{
        margin-top: 60px;
        grid-template-columns:1fr 1fr;
        row-gap: 40px;
    }
}
@media (max-width: 768px) {
    .problem_item_inner {
        margin-top: 60px;
        grid-template-columns:1fr;
    }
}


.problem_item {
    box-shadow: 0px 0px 6px 4px #0000001A;
    border-radius: 10px;
    padding: 40px 24px;
}
@media (max-width: 768px) {
    .problem_item {
        width: 80%;
        padding: 20px 40px;
        margin: 0 auto;
    }
}

.problem_item_img {
    display: flex;
    justify-content: center;
    max-width: 200px;
    height: 170px;
}
@media (max-width: 1024px) {
    .problem_item_img {
        height: 100px;
        margin: 0 auto;
    }
}


.problem_item_img img{

    height: 100%;
    object-fit: contain;
}
.problem_desc {
    margin-top: 24px;
    font-size: clamp(14px,1.3vw,17px);
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0em;
    text-align: center;
}
@media (max-width: 1023px) {
    .problem_desc {
        margin-top: 24px;
        font-size: 14px;
        font-weight: 700;
        line-height: 30px;
        letter-spacing: 0em;
        text-align: center;
    }
}

/*solution*/
.solution {
    position: relative;
    background-color: #43906B;
}

.solution::before{
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 100px solid transparent;
    border-left: 100px solid transparent;
    border-top: 80px solid #ffffff;
    border-bottom: 0;
    transform: translate(-50%,0);
}
@media (max-width: 1023px) {
    .solution::before{
        border-right: 50px solid transparent;
        border-left: 50px solid transparent;
        border-top: 45px solid #ffffff;
        border-bottom: 0;
    }
}
.solution_inner {
    padding-top: 180px;
    padding-top: 120px;
}
@media (max-width: 1023px) {
    .solution_inner {
        padding-top: 80px;
        padding-bottom: 0px;
    }
}

.solution_desc {
    font-size: 36px;
    font-weight: 700;
    line-height: 60px;
    letter-spacing: 0em;
    text-align: center;
    color: white;
}
@media (max-width: 1100px) {
    .solution_desc {
        font-size: clamp(20px,5vw,30px);
        line-height: 1.7;
    }
}


.solution_desc span{
    position: relative;
}
@media (max-width: 1023px) {
    .solution_desc span{
        /* border-bottom: 5px solid #FFCF00; */
    }
}

.solution_desc span::after{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #FFCF00;
    transform: translate(0,50%);
}
@media (max-width: 1023px) {
    .solution_desc span::after{
       height: 5px;
    }
}

.solution_desc strong{
    color: #FFCF00;
}

.solution_video_inner {
    margin-top: 80px;
    display: grid;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 1fr 63px 1fr;
    column-gap: 30px;
}
@media (max-width: 1023px) {
    .solution_video_inner {
        margin-top: 60px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 63px 1fr;
        justify-items: center;
        row-gap: 20px;
    }
}

.solution_video_box {
    background-color: white;
    border-radius: 10px;
    padding: 80px 30px 40px 30px;
}
@media (max-width: 1024px) {
    .solution_video_box {
        background-color: white;
        border-radius: 10px;
        padding: 15% 3% 3% 3%;
        height: 100%;
    }
}

.solution_video {
    margin-top: 16px;
    width: 440px;
    height: 330px;
}
.solution_video iframe{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 1024px) {
    .solution_video {
        margin-bottom: 16px;
        width: 100%;
        height: 400px;
    }
}


.solution_video_ttl {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0em;
    text-align: center;
    z-index: 5;
    min-height: 96px;
}
@media (max-width: 1024px) {
    .solution_video_ttl{
        font-size: clamp(18px,5vw,26px);
        line-height: 1.2;
        min-height: 60px;
    }
}
@media (max-width: 768px) {
    .solution_video_ttl{
        min-height: 60px;
    }
}


.solution_video_ttl::before{
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    
    font-family: Montserrat;
    font-size: 120px;
    font-weight: 700;
    line-height: 146px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #AFAFAF4D;

    transform: translate(-50% ,-50%);
    z-index: 1;
}
@media (max-width: 1024px) {
    .solution_video_ttl::before{
        font-size: clamp(36px,10vw,80px);
    }
}

.solution_video_ttl.ja{
    color: #43906B;
}

.solution_video_ttl.ja::before{
    content: "Before";
}

.solution_video_ttl.ch{
    color: #1C77C3;
}

.solution_video_ttl.ch::before{
    content: "After";
}



.arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 31px solid transparent;
    border-bottom: 31px solid transparent;
    border-left: 55px solid white;
    border-right: 0;
}
@media (max-width: 1023px) {
    .arrow {
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 30px solid transparent;
        border-left: 30px solid transparent;
        border-top: 40px solid white;
        border-bottom: 0;
    }
}

.solution_btn_wrapper {
    margin-top: 80px;
}
@media (max-width: 1024px) {
    .solution_btn_wrapper {
        margin-top: 40px;
    }
}

/*service*/
.service {
    background-color: #F2F8F5;
}

.service_inner {
    padding-top: 120px;
    padding-bottom: 120px;
}
@media (max-width: 1023px) {
    .service_inner {
        padding-top: 60px;
        padding-bottom: 0px;
    }
}

.service_item_inner {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 24px;
    row-gap: 24px;
}
@media (max-width: 1023px) {
    .service_item_inner {
        margin-top: 60px;
        grid-template-columns: 1fr 1fr;
        column-gap: 24px;
        row-gap: 24px;
    }
}
@media (max-width: 768px) {
    .service_item_inner {
        grid-template-columns: 1fr;
        column-gap: 24px;
        row-gap: 24px;
    }
}

.service_item_box {
    background-color: white;
    padding: 40px 40px 75px 40px;
    box-shadow: 3px 3px 10px 0px #AFAFAF4D;
}
@media (max-width: 1023px) {
    .service_item_box {
        margin: 0 auto;
        padding: 20px 20px 30px 20px;
    }
}
@media (max-width: 768px) {
    .service_item_box {
        width: 80%;
    }
}

.service_item_box h3{
    font-size: clamp(14px,1.6vw,21px);
    /* font-size: clamp(18px,4vw,24px); */
    font-weight: 700;
    text-align: center;
    min-height: 68px;
}
@media (max-width: 768px) {
    .service_item_box h3{
        font-size: 17px;
    }
}


.service_item_img{
    margin-top: 34px;
    width: 100%;
    height: 100%;
    max-height: 160px;
}
@media (max-width: 1023px) {
    .service_item_img{
        margin-top: 10px;
        max-height: 80px;
    }
}

.service_item_img img{
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.service_item_desc {
    margin-top: 34px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
}

/*about*/

.about_inner {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 1023px) {
    .about_inner {
        padding-top: 60px;
        padding-bottom: 0px;
    }
}

.about_point_inner {
    margin-top: 80px;
}
@media (max-width: 1023px) {
    .about_point_inner {
        margin-top: 40px;
    }
}

.about_point_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
}
@media (max-width: 1023px) {
    .about_point_box {
        flex-direction: column;
        row-gap: 20px;
    }
}

.about_point_box + .about_point_box {
    margin-top: 40px;
}

.about_point_box:nth-of-type(2n) {
    flex-direction: row-reverse;
}
@media (max-width: 1023px) {
    .about_point_box:nth-of-type(2n) {
        flex-direction: column;
    }
}

@media (max-width: 1023px) {
    .about_point_img {
        width: 100%;
        margin: 0 auto;
    }

    .about_point_img img{
        width: 100%;
        object-fit: cover;
    }
}

.about_point_text {
    background-color: #F2F8F5;
    border-radius: 20px;
    padding: 40px;
}
@media (max-width: 1023px) {
    .about_point_text {
        background-color: transparent;
        padding: 0px;
    }
}

.about_point_num {
    margin-top: 9px;
    font-family: Montserrat;
    font-size: 40px;
    font-weight: 700;
    line-height: 49px;
    letter-spacing: 0em;
    text-align: left;
    color: #43906B;
}
@media (max-width: 1023px) {
    .about_point_num {
        font-size: 34px;
        font-weight: 700;
        line-height: 49px;

    }
}

.about_point_text h3{
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    letter-spacing: 0em;
    text-align: left;
    color: #1C77C3;
}
@media (max-width: 1024px) {
    .about_point_text h3{
        font-size: clamp(17px,5vw,22px);
    }
}
@media (max-width: 324px) {
    .about_point_text h3{
        /* font-size: clamp(18px,5vw,22px); */
    }
}

.about_point_desc {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
}
@media (max-width: 1023px) {
    .about_point_desc {
        margin-top: 10px;
    }
}

/*support*/
.support {
    position: relative;
    background-color: #F2F8F5;
}

.support::before{
    display: inline-block;
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 100px solid transparent;
    border-left: 100px solid transparent;
    border-top: 80px solid #ffffff;
    border-bottom: 0;
    transform: translate(-50%,0);
}
@media (max-width: 1023px) {
    .support::before{
        border-right: 50px solid transparent;
        border-left: 50px solid transparent;
        border-top: 45px solid #ffffff;
        border-bottom: 0;

    }
}

.support_inner {
    padding-top: 160px;
    padding-bottom: 80px;
}
@media (max-width: 1023px) {
    .support_inner {
        padding-top: 80px;
        padding-bottom: 8px;
    }
}

.support_desc {
    font-size: clamp(20px,2.9vw,36px);
    font-weight: 700;
    text-align: center;
}
@media (max-width: 768px) {
    .support_desc {
        font-size: 16px;
        line-height: 1.5;
    }
}
@media (max-width: 324px) {
    .support_desc {
        font-size: 14px;
        line-height: 1.5;
    }
}




.support_desc span{
    position: relative;
}

.support_desc span::after{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: #FFCF00;
    transform: translate(0,50%);
}
@media (max-width: 1023px) {
    .support_desc span::after{
        height: 5px;
    }
}

.support_desc strong{
    color: #43906B;
}

.support_item_inner {
    margin: 80px auto 0 auto;
    max-width: 817px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    column-gap: 24px;
}
@media (max-width: 1023px) {
    .support_item_inner {
        margin: 40px auto 0 auto;
        column-gap: 40px;
    }
}
@media (max-width: 768px) {
    .support_item_inner {
        margin: 40px auto 0 auto;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        justify-content: space-between;
        column-gap: 24px;
        row-gap: 40px;
    }
}

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

.support_item_img {
    max-width: 180px;
    max-height: 180px;
}

.support_item_img  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.support_item_desc {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: center;
}
@media (max-width: 1023px) {
    .support_item_desc {
        margin-top: 10px;
    }
}

.support_item_desc span{
    font-size: 22px;
    font-weight: 700;
    color: #1C77C3;
}


/*CTA*/
.cta {
    padding-bottom: 0;
    background-color: #43906B;
}

.cta_inner {
    padding-top: 40px;
    padding-bottom: 40px;
}

/*price*/
.price_inner {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 1023px) {
    .price_inner {
        padding-top: 60px;
        padding-bottom: 0px;
    }
}

.price_box {
    margin: 80px auto 0 auto;
    max-width: 664px;
    border: 3px solid #43906B;
    border-radius: 10px;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 1023px) {
    .price_box {
        margin: 40px auto 0 auto;
        padding: 8% 10%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.price_ttl {
    position: relative;
    background-color: #43906B;
    border-radius: 10px;
    padding: 8px 24px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    width: fit-content;
}
@media (max-width: 1023px) {
    .price_ttl {
        position: relative;
        background-color: #43906B;
        border-radius: 10px;
        padding: 8px 10px;
        color: white;
        font-size: clamp(16px,5vw,20px);
        font-weight: 700;
        text-align: center;
        width: fit-content;
    }
}

.price_ttl::before{
    display: inline-block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 5px solid #43906B;
    border-bottom: 0;
    transform: translate(-50% , 100%);
}

.price_box2 {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 16px;

}

.price_ttl2 {
    background-color: #F2F8F5;
    border-radius: 10px;
    padding: 16px;
    color: #43906B;
    font-size: 20px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .price_ttl2 {
        padding: 8px;
        color: #43906B;
        font-size: 16px;
        font-weight: 700;
    }
}

.price_text {
    font-size: 56px;
    font-weight: 700;
    line-height: 68px;
    letter-spacing: 0em;
    text-align: center;
    color: #1C77C3;
}
@media (max-width: 1023px) {
    .price_text {
        font-size: clamp(32px,6vw,40px);
        font-weight: 700;
        line-height: 68px;
        letter-spacing: 0em;
        text-align: center;
        color: #1C77C3;
    }
}

.price_text span{
    font-size: 44px;
}
@media (max-width: 1023px) {
    .price_text span{
        font-size: clamp(30px,6vw,38px);
    }
}

.price_text_small {
    margin-top: 24px;
    text-align: center;
}
@media (max-width: 1023px) {
    .price_text_small {
        margin-top: 24px;
        text-align: center;
        font-size: 14px;
    }
}
@media (max-width: 324px) {
    .price_text_small {
        font-size: 12px;
    }
}


/* flow */
.flow {
    background-color: #F2F8F5;
}

.flow_inner {
    max-width: 1280px;
    padding: 120px 3%;
}
@media (max-width: 1023px) {
    .flow_inner {
        padding: 60px 3% 0 3%;
    }
}



.flow_item_inner {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    column-gap: clamp(13px,2vw,40px);
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
    .flow_item_inner {
        margin-top: 40px;
        display: grid;
        grid-template-columns: 1fr;
        column-gap: clamp(13px,2vw,40px);
        row-gap: 40px;
        justify-content: space-between;
        align-items: center;
    }
}

.flow_item {
    position: relative;
    background-color: white;
    border-radius: 20px;
    box-shadow: 4px 4px 4px  rgba(152, 152, 152, 0.25);
    text-decoration: none;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20% 10%;
    z-index: 2;

    height: 184px;
}
@media (max-width: 768px) {
    .flow_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8%;
        z-index: 2;
        width: 70%;
        margin: 0 auto;
        height: 184px;
    }
}

.flow_item:not(:last-of-type)::after{
    position: absolute;
    display: inline-block;
    content: '';
    width: 50%;
    height: 4px;
    background-color: #43906B;
    z-index: 1;
    top: 50%;
    right: -50%;
}
@media (max-width: 768px) {
    .flow_item:not(:last-of-type)::after{
        position: absolute;
        display: inline-block;
        content: '';
        width: 4px;
        height: 40px;
        background-color: #43906B;
        z-index: 1;
        bottom: 0%;
        right: 50%;
        transform: translate(-50%,230%);
    }
}
.flow_num {
    position: absolute;
    top: -23%;
    left: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 84px;
    letter-spacing: 0em;
    text-align: center;
    color: #43906B;
}

.flow_item_img {

}

.flow_item_img img{
    max-width: 70px;
    max-height: 56px;
    object-fit: contain;
}

.flow_item_desc {
    margin-top: 16px;
    font-size: clamp(14px,5vw,16px);
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
}
@media (max-width: 1024px) {
    .flow_item_desc {
        font-size: clamp(13px,1vw,15px);
    }
}
@media (max-width: 768px) {
    .flow_item_desc {
        font-size: 18px;
    }
}
@media (max-width: 324px) {
    .flow_item_desc {
        font-size: 16px;
    }
}

/* company */
.company_inner {
    padding-top: 80px;
    padding-bottom: 80px;
}
@media (max-width: 1023px) {
    .company_inner {
        padding-top: 60px;
        padding-bottom: 00px;
    }
}

.company_ceo_box {
    margin-top: 80px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
@media (max-width: 1023px) {
    .company_ceo_box {
        margin-top: 40px;
        padding-top: 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background-color: #F2F8F5;
        border-radius: 10px;
    }
}

.company_ceo_img {
    width: 50%;
}
@media (max-width: 1023px) {
    .company_ceo_img {
        width: 80%;
        margin: 0;
    }
}

.company_ceo_img img{
    max-width: 100%;
    object-fit: cover;
}
.company_ceo_text {
    width: 60%;
    margin-left: -10%;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    font-family: 'Shippori Mincho', serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
}
@media (max-width: 1023px) {
    .company_ceo_text {
        width: 100%;
        margin: 0 auto;
        padding: 24px 0;
        background-color: transparent;
        border-radius: 10px;
        padding: 24px;
        font-family: 'Shippori Mincho', serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: left;
    }
}

.ceo_name {
    margin-top: 40px;
    font-weight: 800;
    font-size: 20px;
}
@media (max-width: 1023px) {
    .ceo_name {
        font-size: 16px;
    }
}

.ceo_name span{
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.company_about_box {
    margin-top: 80px;
}

.company_about_box table{
    width: 100%;
}

.company_about_box th,
.company_about_box td{
    background-color: #FAFAFA;
    border: 2px solid #fff;
    padding: 16px;
}

.company_about_box th{
    width: 30%;
    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: center;
}
@media (max-width: 768px) {
    .company_about_box th{
        width: 30%;
        font-size: 14px;
        font-weight: 700;
    }
}

.company_about_box td{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
}
@media (max-width: 768px) {
    .company_about_box td{
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: left;
    }
}

.company_about_box td ul li + li{
    margin-top: 16px;
}

/* faq */
.faq {
    background-color: #F2F8F5;
}

.faq_inner {
    padding-top: 120px;
    padding-bottom: 120px;
}
@media (max-width: 1023px) {
    .faq_inner {
        padding-top: 60px;
        padding-bottom: 0px;
    }
}

.faq_item_inner {
    margin-top: 80px;
}

.faq_item {
    background-color: #FFF;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    column-gap: 16px;
}
@media (max-width: 1023px) {
    .faq_item {
        padding: 14px 8px;
    }
}

.faq_item + .faq_item {
    margin-top: 24px;
}

.faq_item_header {
    position: relative;
    display: flex;
    column-gap: 20px;
    cursor: pointer;
    padding: 0 16px;
    transition: all .7s;
}

.faq_item_header.active{
    padding: 20px 16px;
    transition: all .7s;
}

.faq_item_header .q {
    background-color: #43906B;
    border-radius: 50%;
    color: white;
    width: clamp(40px,10vw,56px);
    height: clamp(40px,10vw,56px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: center;
}
@media (max-width: 768px) {
    .faq_item_header .q {
        font-size: 16px;
    }
}

.faq_item_header p{
    display: flex;
    align-items: center;
    font-family: Noto Sans JP;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    max-width: 90%;
}
@media (max-width: 1023px) {
    .faq_item_header p{
        font-size: clamp(14px,6vw,16px);
        max-width: 70%;
    }
}

.triangle {
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    border-top: 16px solid #43906B;
    border-bottom: 0;
    transform: translate(-50%,-50%) rotate(0);
    transition: all .7s;
}
@media (max-width: 1023px) {
    .triangle {
        border-style: solid;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-top: 13px solid #43906B;
    }
}

.triangle.active{
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    border-bottom: 16px solid #43906B;
    border-top: none;
}
@media (max-width: 1023px) {
    .triangle.active{
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-bottom: 13px solid #43906B;
        border-top: none;
    }
}

.faq_item_answer {
    display: none;
    visibility: hidden;
    background-color: #43906B;
    border-radius: 20px;
    padding: 20px 16px;

    column-gap: 20px;
    
    color: white;
    transition: all .7s;

}

.faq_item_answer.active{
    display: flex;
    visibility: visible;
    transition: all 2s;

}

.faq_item_answer .a {
    background-color: white;
    border-radius: 50%;
    color: #43906B;
    width: clamp(40px,10vw,56px);
    height: clamp(40px,10vw,56px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0em;
    text-align: center;
}
@media (max-width: 768px) {
    .faq_item_answer .a {
        font-size: 16px;
    }
}

.faq_item_answer p{
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    max-width: 90%;

}
@media (max-width: 1023px) {
    .faq_item_answer p{
        font-size: clamp(14px,6vw,16px);
        max-width: 70%;
    }
}

/* contact */
#contact{
    padding-bottom: 0;
}
#contact h3 {
    font-size: 14px;
}

#contact .contact_inner{
    padding-top: 120px;
    padding-bottom: 60px;
}
@media (max-width: 1023px) {
    #contact .contact_inner{
        padding-top:60px;
        padding-bottom: 0px;
    }
}

@media (max-width: 1023px) {
    #contact h3 {
        font-size: 14px;
    }
}
#contact .send_btn {
    background-color: #43906B;
    color: white;
    width: 280px;
    height: 82px;
    border-radius: 80px;
    font-size: 30px;
	transition: all .7s;
}
@media (max-width: 768px) {
    #contact .send_btn {
        width: 100%;
    }
}

#contact .send_btn:hover{
	opacity:0.7;
	transition: all .7s;
}

#contact .privacy-policy_wrapper {
    text-align: center;
}
@media (max-width: 1023px) {
    #contact .privacy-policy_wrapper {
        font-size: 15px;
    }
}