@charset "utf-8";

*, *::before, *::after {
  box-sizing: border-box;
}
/*cssのリセット*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,
summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    border: 0;
    outline: 0;
    background: transparent;
}
 
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
     display: block;
}
 
ul {
    list-style: none;
}
 
blockquote,
q {
    quotes: none;
}
 
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
 
a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    transition: all .5s;
}
a:hover{
    opacity: .7;
}
ins {
    text-decoration: none;
    color: #000;
    background-color: #ff9;
}
 
mark {
    font-weight: bold;
    font-style: italic;
    color: #000;
    background-color: #ff9;
}
 

abbr[title],
dfn[title] {
    cursor: help;
    border-bottom: 1px dotted;
}
 
table {
    border-spacing: 0;
    border-collapse: collapse;
}
 
hr {
    display: block;
    height: 1px;
    margin: 1em 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #ccc;
}

html {
    font-size: 62.5%;
}
 
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
    font-size:1.6rem;/* 16px*/
    color: #333333;
    line-height: 1.5;
}
img{
    width: 100%;
    vertical-align: bottom;
    image-rendering: -webkit-optimize-contrast;
}

.inner{
    width: 95%;
    max-width:1000px;
    margin: 0 auto;
  }

.section_ttl {
    background-image: url(./img/form_bg.jpg);
    background-size: contain;
    background-repeat: repeat;
    text-align: center;
    padding: 30px 0;
}


.section_ttl h2 {
    color: #fff;
    text-shadow: 2px 1px 1px rgb(0 0 0);
    font-size: 40px;
}

.section_ttl h2 .color {
    color: #F9DE04;
}
/*--------------------------- 
        header
-----------------------------*/
header .read{
    display: block;
    background-color: #006935;
    padding: 0 2px;
    padding-left: 32px;
    width: 100%;
    height: 30px;
}
header .read p{
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #fff;

}
h1 {
    display: flex;
}
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;

}

.h_menu{
    background-color: #fff;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}
.h_logo{
    width: 184px;
}
.h_logo img{
    vertical-align: middle;
}
@media screen and (max-width: 1000px) {

.h_logo{
    width: 150px;
}
}
.h_nav{
    display: flex;
    align-items: center;
}
.h_nav ul{
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.h_nav ul li a{
    color: #333333;
    font-size: clamp(12px, 1.15vw, 17px);
    font-weight: bold;
    padding: 0 15px;
}
@media screen and (max-width: 1050px) {

.h_nav ul {
    margin-right: 15px;
}
.h_nav ul li a{
    padding: 0 4px;
}

}
@media screen and (max-width: 768px) {
.h_logo {
    width: 130px;
}
.h_menu {
    height: 50px;
}  
header .read p{
    display: none;

}
header .read{
    height: 10px;

}
.h_nav ul {
    display: none;
}
}


.sp-menu {
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin-left: 5px;
    position: relative;
    z-index: 100;
    display: none;
}
.sp-menu span {
    position: absolute;
    width: 70%;
    height: 2px;
    background: #3C663E;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
}
.sp-menu  span:nth-of-type(1) {
    top: 30%;
}
.sp-menu  span:nth-of-type(3) {
    top: 70%;
}
.sp-menu.show span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.sp-menu.show span:nth-of-type(2) {
    opacity: 0;
}
.sp-menu.show span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.nav-layer {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000;
    opacity: 0;
    visibility: hidden;
    z-index: 50;
    transition: .5s;
}
.nav-layer.show {
    opacity: 0.35;
    visibility: visible;
}
.sp-nav {
    position: fixed;
    width: 330px;
    height: 100%;
    top: 0;
    right: 0;
    background: #EDF0EF;
    z-index: 70;
    transform: translateX(100%);
    transition: .5s;
}
.sp-nav.show {
    transform: none;
}
.nav-top {
    background: #fff;
    height: 50px;
    display: grid;
    align-items: center;
    padding-inline-start: 15px;
}
.nav-top img {
    width: 130px;
}
.sp-nav ul {
    display: block;
    margin-right: 0;
    margin-bottom: 30px;
}
.sp-nav ul li a {
    font-size: 16px;
    font-weight: 500;
    padding: 15px;
    border-bottom: 1px solid #D6D6D6;
    display: block;
    position: relative;
}
.sp-nav ul li a::after {
    content: "";
    height: 15px;
    width: 10px;
    background: url(./img/arrow.svg) no-repeat center/contain;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.sp-nav p {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-inline: 15px;
}
.sp-nav p span {
    background: linear-gradient(transparent 60%, #F3D362 60%);
    
}
.sp-nav .sp-tel img {
    max-width: none;
    padding-inline: 15px;
}
.sp-nav .sp-tel02 img {
    padding-inline: 23px;
}
@media screen and (max-width: 768px) {
    .sp-menu {
        display: block;
    }
}

.h_menu a img{
    max-width: 300px;
}
@media screen and (max-width: 1000px) {

.h_menu a img{
    max-width: 180px;
}
}
@media screen and (max-width: 768px) {

    .h_menu a img{
        max-width: 170px;
    }
}
/*--------------------------- 
        top
-----------------------------*/
main {
    margin-top: 105px;
    overflow: hidden;
}
.fv_sp{
    display: none;
}
.fv_pc,.fv_sp{
   vertical-align: bottom;
}
@media screen and (max-width: 768px) {
    main {
        margin-top: 60px;
    }
    .fv_pc{
        display: none;
    }
    .fv_sp{
        display: block;
    }
}
/*--------------------------- 
        form
-----------------------------*/

#form {
    background-image: url(./img/form_bg.jpg);
    background-size: contain;
    background-repeat: repeat;
    text-align: center;
    padding: 40px 0 45px 0;
}

.form_ttl .f_img {
    width: 84%;
    max-width: 803px;
}
@media screen and (max-width: 768px) {
    .form_ttl .f_img {
        width: 100%;
        max-width: 655px;
    }

}
.form_box{
    max-width: 940px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
    position: relative;
    text-align: left;
    padding: 30px 0;
    z-index: 0;
    margin-top: 30px;
}
.form_box01 .tel_img{
    position: absolute;
    bottom: 70px;
    right: -19px;
    max-width: 260px;
    z-index: 1;
}


.form_fx{
    position: relative;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.line_img{
    max-width: 303px;
}
.tel_img02{
    width: 100%;
    max-width: 533px;
}
.tel_txt{
    margin-left: 3%;
    max-width: 710px;
}
.tel_txt_sp,.line_img_sp,.form_ttl_txt_sp,.present_sp{
    display: none;
}

.present_txt{
    position: relative;
    background-color: #f4d5c1;
    text-align: center;
    z-index: 2;
    height: 41px;
    margin-top: 30px;
}
.present_txt img{
    position: absolute;
    top: 62%;
    left: 43%;
    transform: translate(-50%,-50%);
    width: 88%;
    max-width: 624px;
}
.form_ttl_txt {
    max-width: 715px;
    margin-right: 8%;
}
@media screen and (max-width: 1035px) {
    .form_ttl,.form_box {
        max-width: 700px;
        margin-right:  auto;
        margin-left: auto;
    }
    .form_ttl .f_img {
        width: 97%;
        max-width: none;
    }
    .form_fx{
        flex-direction: column;
        row-gap: 5px;
    }
    .form_box{
        padding-top: 19%;
        text-align: center;
        padding-bottom: 15px;
    }
    .tel_txt,.tel_img,.line_img,.form_ttl_txt,.present{
        display: none;
    }
    .tel_img02 {
        width: 80%;
        margin: 0 auto;
        margin-right: 6%;
        max-width: none;
    }
    .tel_txt_sp{
        display: block;
        position: absolute;
        top: 10%;
        left: 51%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        max-width: 96%;
    }
    .line_img_sp,.form_ttl_txt_sp,.present_sp{
        display: block;
    }
    .form_ttl_txt_sp {
        width: 97%;
        margin: 0 auto;
    }
    .line_img_sp {
        width: 95%;
        margin: 0 auto;
    }

    /* 今、無料相談をされた方に粗品プレゼント中！ */
    .present_txt{
        height: 66px;
        margin-top: 10px;
    }
    .present_txt img{
        position: absolute;
        top: 37%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 95%;
        max-width: 877px;
    }

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

    .form_box{
        text-align: center;
    }

    .tel_txt{
        margin: 0 auto;
    }
}
@media screen and (max-width: 800px) {

    .tel_txt_sp{
        top: 6%;
    }


}
@media screen and (max-width: 768px) {
    .form_ttl,.form_box {
        max-width: 500px;
    }
    #form {
        padding: 15px 0;
    }
    .form_box{
        margin-top: 15px;
        padding-top: 15%;
    }
    .present_txt{
        height: 45px;
    }
    .present_txt img {
        width: 85%;
    }
}
@media screen and (max-width: 479px) {
    .form_box{
        padding-top: 18%;
    }
    .present_txt {
        height: 35px;
    }
    .present_txt img{
        width: 90%;
        top: 40%;
    }

}
/*--------------------------- 
         worries
-----------------------------*/
#worries{
    background-color: #EDF0EF;
}

.worries_ttl {
    background-color: #2F5844;
    padding: 40px 0 35px 0;
    text-align: center;
}
.worries_ttl img {
    width: 90%;
    max-width: 706px;
}

.worries_contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    column-gap: 16px;
    margin-bottom: 90px;
}

.worries_box {
    width: 32%;
    max-width: 300px;
    text-align: center;
    margin-bottom: 38px;
}
.worries_img_sp{
    display: none;
}
@media screen and (max-width: 850px) {

    .worries_img{
        display: none;
    }
    .worries_img_sp{
        display: block;
    }
    .worries_contents {
        width: 65%;
        margin:0 auto;
        margin-top: 40px;
    }    
    .worries_box {
        width: 47%;
        max-width: none;
        text-align: center;
        margin-bottom: 38px;
    }
}

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

    .worries_contents {
        width: 73%;
    } 
    .worries_ttl img {
        width: 90%;
        max-width: 450px;
    }


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

.worries_contents {
    width: 83%;
} 
}

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

.worries_contents {
    width: 95%;
} 
}
.worries_contents02 {
    position: relative;
    background-color: #FF8E22;
    text-align: center;
    padding: 29px 0 21px 0;
}

.worries_arrow {
    position: absolute;
    top: -14%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 560px;
}

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

.worries_arrow {
    position: absolute;
    top: 2%;
    left: 50%;
    width: 32%;
    max-width: none;
    min-width: 176px;
}

}



@media screen and (max-width: 479px) {
    .worries_contents02 {
        padding: 10px 0 10px 0;
    }
    
    .worries_arrow {
        position: absolute;
        top: -4%;
        left: 50%;
        width: 32%;
        max-width: none;
        min-width: 176px;
    }
}

.txt_img{
    width: 90%;
    max-width: 809px;
}
@media screen and (max-width: 768px) {

    .txt_img {
        width: 90%;
        max-width: 450px;
    }
}
.worries_contents03{
    padding: 70px 0;
    background-color: #FCF8F3;
}

/* .worries_contents03_box {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #F6E4C5;
    text-align: center;
    padding: 47px 0 52px 0;
} */
.worries_contents03_fx{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    row-gap: 48px;
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
}
.contents03_item{
    width: 48.6%;
    max-width: 490px;
    height: 582px;
    background-color: #fff;
    text-align: center;
}
.contents03_item .contents03_item_img img{
    width: 90%;
    max-width: 430px;
    margin-top: 30px;
}

.contents03_item h3{
    color: #fff;
    height: 57px;
    line-height: 57px;
    font-size: clamp(28px, 2.58vw, 36px);
    font-weight: bold;
    text-shadow: 2px 2px 0 rgb(255, 0, 0, .58);
    background: linear-gradient(30deg, #F89955, #FB842F);
}
.contents03_item_data{
    display: flex;
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
}
.contents03_item .item_data{
    display: flex;
    align-items: center;
    gap: 15px;
    width: 50%;
}
.contents03_item .item_data .o_bx{
    display: block;
    background-image: url('./img/org_box.jpg');
    background-size: cover;
    width: 37%;
    max-width: 80px;
    padding: 9.7px 0;
    color: #fff;
    font-size: clamp(18px, 1.72vw, 24px);
    font-weight: bold;
    letter-spacing: .05em;
    line-height: 1.16;
}
.contents03_item .item_data .o_bx02{
    padding: 23.6px 0;
}
.contents03_item .item_data img{
    width: 30%;
}
.contents03_item .item_data p{
    text-align: left;
    font-size: clamp(17px, 1.72vw, 24px);
    font-weight: 600;
    line-height: 1.16;
    letter-spacing: .05em;
}
.contents03_item .item_data p .co_o{
    font-size: clamp(15px, 1.3vw, 18px);
    
}
.contents03_item .item_txt{
    text-align: left;
    width: 90%;
    margin: 0 auto;
    margin-top: 21px;
}
.contents03_item .item_txt p{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.55;

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

    .worries_contents03 {
        padding: 35px 0;
        background-color: #FCF8F3;
    }
    .worries_contents03_box {
        background-color: #F6E4C5;
        text-align: center;
        padding: 10px 0 10px 0;
    }

    .worries_contents03_fx{
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
    }
    .contents03_item{
        width: 100%;
        height: auto;
        padding-bottom: 40px;
    }
    .contents03_item h3{
        font-size: 24px;
        height: 40px;
         line-height: 40px;
    }

    .contents03_item .contents03_item_img img {
        width: 90%;
        max-width: none;
        margin-top: 18px;
    }
    .contents03_item_data {
        margin-top: 16px;
    }
    .contents03_item .item_data .o_bx{
        font-size: 16px;
        padding: 3.97px 0;
        max-width: 48px;
    }
    .contents03_item .item_data .o_bx02 {
        padding: 13.2344px 0;
    }
    .contents03_item .item_data p .co_o {
        font-size: 13px;
    }
    .contents03_item .item_txt p {
        font-size: 15px;
    }
    .contents03_item .item_txt {
        margin-top: 16px;
        width: 90%;
    }
}


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

    /* .contents03_item{
        width: 100%;
        height: 427px;
        padding-bottom: 0;
    } */
}

.worries_contents04 {
    padding: 20px 20px 60px;
    text-align: center;
}
.worries_contents04 p {
    font-size: 40px;
}
.worries_contents04 span {
    font-size: clamp(33px, 3.23vw, 45px);
    font-weight: 700;
    color: #347843;
    background: linear-gradient(transparent 60%, #F3D362 60%);
}
.worries_contents04 .sp_br{
    display: none;
}
.worries_comment {
    max-width: 100%;
    max-width: 880px;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}
.worries_comment .pc {
    display: block;
}
.worries_comment .sp {
    display: none;
}
@media screen and (max-width: 768px) {
    .worries_contents04 p {
        font-size: 20px;
    }
    .worries_contents04 span {
        font-size: 24px;
    }
    .worries_contents04 .sp_br{
        display: block;
    }
    .worries_comment {
        padding: 0;
    }
    .worries_comment .pc {
        display: none;
    }
    .worries_comment .sp {
        display: block;
        padding-left: 20px;
        max-width: 550px;
        margin: 0 auto;
    }
}
/*--------------------------- 
         reason
-----------------------------*/
#reason{
    background-color: #F3F6F5;
}
.reason_contents{
    background-color: #E6EBE8;
    padding-top: 50px;
    padding-bottom: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {

.reason_contents {
    padding-top: 10px;
    padding-bottom: 8px;
}
}


.reason_ttl {
    background-image: url(./img/form_bg.jpg);
    background-size: contain;
    background-repeat: repeat;
    text-align: center;
    padding: 20px 0 0 0;
}
.reason_ttl_sp{
    display: none;
}
.reason_ttl_pc{
    width: 99%;
    max-width: 976px;
    vertical-align: bottom;
}
@media screen and (max-width: 768px) {

.reason_ttl_pc{
    display: none;
}
.reason_ttl_sp{
    display: block;
    width: 90%;
    margin: 0 auto;
}
}


/* reason_box */
.reason_box{
    width: 95%;
    max-width: 860px;
    margin: 0 auto;
    background-color: #fff;
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {

.reason_box {
    width: 95%;
    max-width: 500px;
    margin-bottom: 16px;
}
}


/* reason_box_ttl */
.reason_box_ttl{
    display: flex;
}
.reason_box_ttl01 {
    width: 87%;
    max-width: 740px;
    border-bottom: 1px solid #ACACAC;

}
.reason_box_ttl01 p{
    background-color: #007A3D;
    font-size: 24px;
    color: #fff;
    display: block;
    width: 100%;
    padding: 5px 0 5px 40px;
}
.reason_box_ttl01 h3{
    font-size: 42px;
    font-size: clamp(30px, 4.5vw, 42px);
    font-weight: 600;
    padding-left: 7.5%;
    padding-top: 4px;
}
.reason_box_ttl01 h3 .color{
    color: #FF5004;
}


.box_ttl_img{
    width: 120px;
}
.box_ttl_img img{
    vertical-align: bottom;
}

@media screen and (max-width: 768px) {
    .reason_box_ttl01 p{
        font-size: 12px;
        padding: 4px 0 5px 7px;
    }

    .reason_box_ttl01 h3{
        font-size: 24px;
        line-height: 1.33;
        padding-top: 4px;
        padding-left: 7px;
    }

}



/* reason_box_txt */
.reason_box_txt {
    display: flex;
    align-items: center;
    padding: 5px 0 5px 0;
}
.reason_box_txt img {
    max-width: 185px;
    margin-left: 30px;
}
.reason_box_txt p{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    width: 90%;
    max-width: 495px;
    margin-left: 33px;
    margin-right: 35px;
}
.reason_box_ttl .sp_br{
    display: none;
}
@media screen and (max-width: 768px) {
.reason_box_ttl .sp_br{
    display: block;
}
.reason_box_txt img {
    max-width: 185px;
    margin-left: 0;
}
.reason_box_txt {
    padding: 5px 0 5px 0;
    flex-direction: column;
}
.reason_box_txt p{
    margin: 0 auto;
    margin-bottom: 24px;
    
}
}
/*--------------------------- 
         promotion
-----------------------------*/
.promotion_read {
    background-image: url(./img/form_bg.jpg);
    background-size: contain;
    background-repeat: repeat;
    text-align: center;
    padding: 35px 0 24px 0;
}
.promotion_read img{
    width: 86%;
    max-width: 750px;
    vertical-align: middle;
}
.promotion_box {
    background-image: url(./img/promotion_bg.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 30px 0 0 0;

}
.promotion_box img{
    width: 100%;
    vertical-align: bottom;
    max-width: 882px;
    margin: 0 auto;
}
.promotion_img_sp{
    display: none;
}
@media screen and (max-width: 768px) {
    .promotion_img{
        display: none;
    }
    .promotion_img_sp{
        display: block;
        max-width: 450px !important;
    }
    .promotion_read {
        padding: 13px 0 15px 0;
    }
    .promotion_read img {
        width: 90%;
        max-width: 450px;
    }
}
/*--------------------------- 
         case
-----------------------------*/
#case{
    background-color: #EAEDEB;
    padding-top: 50px;
}
.case_contents{
    border: 2px solid #007A3D;
    border-top: none;
    background-color: #fff;
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 5px;
}
.case_contents h2{
    background-color: #007A3D;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 32px;
    height: 50px;
    line-height: 50px;
    margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
    

#case {
    padding-top: 25px;
    padding-bottom: 30px;
}
.case_contents h2 {
    font-size: 18px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 18px;
}
.case_contents {
    padding-bottom: 12px;
    max-width: 590px;
}
}



.case_box{
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 30px;
}

.case_box_img{
    display: flex;
    gap: 19px;
    width: 56%;
    max-width: 530px;
    position: relative;
}

.arrow02{
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translateX(-50%);
    width: 11%;
    max-width: 58px;
}

@media screen and (max-width: 840px) {
    .arrow02{
        top: 38%;
    }

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

    .case_box{
        flex-direction: column;
        gap: 6px;
        align-items: center;
        margin-bottom: 18px;
    }
    .case_box_img {
        display: flex;
        justify-content: center;
        gap: 8px;
        width: 100%;
        max-width: none;
    }
    .arrow02 {
        top: 48%;
        max-width: 45px;
    }

}

@media screen and (max-width: 479px) {
    .arrow02{
        top: 53%;
        max-width: 26px;
    }
}



.case__img{
    width: 49%;
    max-width: 256px;
}
.case__img img{
    vertical-align: bottom;
}
.case_box_txt{
    width: 50%;
    max-width: 356px;
}

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

    .case_box_txt{
        max-width: 356px;
    }
    .case__img{
        width: 100%;
        max-width: none;
    }
}

.case_box_txt h4 {
    font-size: 28px;
    line-height: 1.43;
}
.case_box_txt h4 span{
    font-size: 24px;
    color: #126D38;
    padding-right: 22px;
}
.case_box_txt .total {
    font-size: 30px;
    color:#EA0F0F;
    line-height: 1.46;
    font-weight: bold;
    border-bottom: 1px solid #ACACAC;
    padding-bottom: 5px;
    margin-bottom: 13px;
}
.case_box_txt .total span{
    background-color: #EA0F0F;
    color: #fff;
    display: inline-block;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    width: 59px;
    height: 26px;
    line-height: 26px;
    vertical-align: middle;
    margin-bottom: 2px;
    margin-right: 12px;
}
.case_box_txt p{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}
@media screen and (max-width: 1000px) {
    .case_box_txt h4 {
        font-size: 21px;
    }
    .case_box_txt h4 span {
        font-size: 18px;
        padding-right: 14px;
    }
    .case_box_txt p {
        font-size: 14px;
        line-height: 1.71;
    }
}
@media screen and (max-width: 768px) {
    

    .case_box_txt{
        width: 100%;
        max-width: none;
    }
    .case_box_txt .total {
        font-size: 26px;
        padding-bottom: 12px;
        margin-bottom: 15px;
    }
    .case_box_txt .total span{
        font-size: 16px;
        width: 50px;
        height: 25px;
        line-height: 25px;
        margin-bottom: 2px;
        margin-right: 13px;
    }
}


/*--------------------------- 
         voice
-----------------------------*/

#voice{
    background-color: #EAEDEB;
    padding-top: 72px;
    padding-bottom: 86px;
}
#voice h2{
    position: relative;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    height: 70px;
    line-height: 70px;
    background-color: #126D38;
    color: #fff;
    width: 444px;
    margin: 0 auto;
}

#voice h2::before,#voice h2::after{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    top: 0;
}
#voice h2:before {
    right: 0;
    border-top: 35px solid #EAEDEB;
    border-left: 40px solid #126D38;
    border-bottom: 35px solid #EAEDEB;
	transform: translateX(100%);
}
#voice h2:after {
    left: 0;
    border-top: 35px solid #EAEDEB;
    border-right: 40px solid #126D38;
    border-bottom: 35px solid #EAEDEB;
	transform: translateX(-100%);
}
@media screen and (max-width: 768px) {
    

    #voice {
        padding-top: 0;
        padding-bottom: 48px;
    }
    #voice h2 {
        font-size: 18px;
        height: 42px;
        line-height: 42px;
        width: 293px;
        margin: 0 auto;
    }
    #voice h2:before {
        border-top: 21px solid #EAEDEB;
        border-left: 26px solid #126D38;
        border-bottom: 21px solid #EAEDEB;
    }
    #voice h2:after {
        left: 0;
        border-top: 21px solid #EAEDEB;
        border-right: 26px solid #126D38;
        border-bottom: 21px solid #EAEDEB;
    }
}

.voice_fx{
    display: flex;
    justify-content: space-between;
    margin-top: 44px;
    gap: 8px;
}

.voice_fx_item{
    width: 33%;
    max-width: 324px;
    height: 321px;
    background-image: url('./img/dot_bg.jpg');
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgb(0, 0, 0, .16);
    padding-top: 43px;
}
.voice_fx_item h3{
    font-size: clamp(15px, 1.25vw, 18px);
    color: #fff;
    background-color: #126D38;
    position: relative;
    text-align: left;
    padding: 7px 0;
    padding-left: 22.5%;
    padding-right: 10px;
    margin-bottom: 37px;
    margin-right: 23px;
}
.voice_fx_item03 h3{
    font-size: 15px;
    line-height: 1.13;
}
.voice_fx_item h3::before,.voice_fx_item h3::after{
    content: '';
    position: absolute;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}
.voice_fx_item h3::before{
    background-image: url('./img/voice01_img.png');
    width: 24%;
    max-width: 70px;
    height: 70px;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
}
.voice_fx_item02 h3::before{
    background-image: url('./img/voice02_img.png');
}
.voice_fx_item03 h3::before{
    background-image: url('./img/voice03_img.png');
}
.voice_fx_item h3::after{
    background-image: url('./img/voice01.png');
    width: 74px;
    height: 24px;
    right: 11px;
    top: -19px;
}
.voice_fx_item02 h3::after{
    background-image: url('./img/voice02.png');
}
.voice_fx_item03 h3::after{
    background-image: url('./img/voice03.png');
}


.voice_fx_item_txt{
    max-width: 269px;
    margin: 0 auto;
}
.voice_fx_item_txt p{
    font-size: clamp(15px, 1.25vw, 16px);
    font-weight: 500;
    line-height: 1.5;
}
.voice_fx_item_txt p span{
    color: #F77C35;
    font-weight: 700;
}
@media screen and (max-width: 950px) {

    .voice_fx{
        flex-direction: column;
        align-items: center;
        row-gap: 24px;
    }
    .voice_fx_item{
        width: 100%;
        max-width: 450px;
        height: auto;

    }
    .voice_fx_item_txt{
        width: 90%;
        max-width: none;
        margin: 0 auto;
        padding-bottom: 55px;
    }
    .voice_fx_item03 .voice_fx_item_txt{
        padding-bottom: 21px;
    }
    .voice_fx_item h3::before {
        left: 14px;
    }
}
@media screen and (max-width: 768px) {
    

    .voice_fx{
        margin-top: 35px;
    }
    .voice_fx_item{
        padding-top: 30px;
    }
    .voice_fx_item h3{
        font-size: 13.5px;
        margin-bottom: 20px;
        margin-right: 26px;
        padding-left: 21%;
    }

    .voice_fx_item h3::before {
        width: 100%;
        max-width: 55px;
        height: 55px;
    }
    .voice_fx_item h3::after {
        right: 0px;
    }

}
/*--------------------------- 
         form02
-----------------------------*/


.form02{
    padding: 62px 0 70px 0 !important;
    position: relative;
    z-index: 1;
}
.form02 .form_ttl {
    text-align: left;

}
.form02 .form_ttl .f_img {
    width: 84%;
    max-width: 803px;
    margin-bottom: 30px;
}
.form02 .form_ttl .form02_txt{
    max-width: 708px;
}
.form02_box{
    background-color: #fff;
    border-radius: 20px;
    padding: 40px 0 45px 0;
    position: relative;
    text-align: left;
    margin-top: 35px;

}

.form02_box .form02_img {
    position: absolute;
    top: -272px;
    right: -8px;
    max-width: 217px;
    z-index: -1;
}
.form02_box .form02_img02 {
    max-width: 571px;
    /* margin-left: 66px; */
}
.form02_box .line_img {
    max-width: 360px;
}
.form02_box .form_fx {
    gap: 10px;
    position: relative;
}
.form02_box .form02_img03 {
    width: 90%;
    max-width: 880px;
    margin: 0 auto;
    margin-top: 10px;
}
.form02_box .present02{
    position: absolute;
    width: 23%;
    max-width: 227px;
    top: -66px;
    right: 46px;

}
.form02_box .form02_img02_sp,.form02_box .area_sp {
    display: none;
}
@media screen and (max-width: 1035px) {


    .form02 {
        padding: 10px 0 20px 0 !important;
    }

    .form02_box .form_fx {
        width: 100%;
        align-items: normal;
        margin: 0 auto;
        row-gap: 0;
    }
    .form02 .form_ttl .f_img {
        width: 100%;
        margin-bottom: 10px;
    }
    .form02_box{
        padding-top: 14px;
        padding-bottom: 15px;
        margin-top: 6px;
    }
    .form02_box .form02_img02 {
        width: 97%;
        max-width: 490px;
        margin-left: 6%;
    }
    .form02_box .present02,.form02_box .area{
        display: none;
    }
    .form02_box .area_sp{
        display: block;
    }
    .form02_box .form02_img {
        position: absolute;
        top: -30px;
        right: 54px;
        max-width: 120px;
        z-index: 0;
    }

}

@media screen and (max-width: 768px) {
    .form02_box .form02_img02 {
        width: 72%;
        max-width: 350px;
    }

    .form02_box .form02_img {
        position: absolute;
        top: -30px;
        right: 0;
        max-width: 100px;
    }
}
@media screen and (max-width: 429px) {
    .form02_box .form02_img {
        position: absolute;
        top: -23px;
        right: 0;
        max-width: 80px;
    }

}

/*--------------------------- 
         relief
-----------------------------*/

#relief{
    background-color: #FFFAF0;
    padding-bottom: 48px;
}
.relief_ttl {
    background-color: #FF7B00;
    text-align: center;
    padding: 40px 0;
}

.relief_ttl img{
    width: 72%;
    max-width: 687px;
}
@media screen and (max-width: 768px) {
.relief_ttl {
    padding: 18px 0;
}
#relief{
    padding-bottom: 12px;
}
}


.relief {
    background-color: #fff;
    width: 95%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid #FF5005;
    border-top: none;
    margin-top: 40px;
   padding-bottom: 10px;
}
.relief h3 {
    background-color: #FF5005;
    color: #fff;
    font-size: 26px;
    display: block;
    height: 70px;
    line-height: 70px;
}
@media screen and (max-width: 768px) {
.relief {
    width: 95%;
    max-width: 1000px;
    margin-top: 12px;
    padding-bottom: 10px;
}
.relief h3 {
    font-size: 20px;
    height: 36px;
    line-height: 36px;
}
}


.relief_contents {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto;
    margin-top: 35px;
}
.relief_box{
    width: 33%;
    max-width: 252px;
    margin-bottom: 25px;
}
.relief_box_img img{
    max-width: 170px;
}
.relief_box p{
    font-size: 22px;
    line-height: 1.45;
    margin-top: 10px;
}
.relief_box .sp_br{
    display: none;
}
@media screen and (max-width: 860px) {
    .relief_box .sp_br{
        display: block;
    }
    .pc_br{
        display: none;
    }
}


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

.relief_box p{
    font-size: 16px;
    line-height: 1.45;
    margin-top: 10px;
}
.relief_box_img img {
    max-width: 110px;
}
}

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

.relief_box p{
    margin-top: 0;
}
.relief_box_img img {
    max-width: 80px;
}
}

/*--------------------------- 
         form03
-----------------------------*/
.form03{
    padding: 25px 0 40px 0 !important;
}
.form03 .form_ttl .f_img {
    width: 60%;
    max-width: 601px;
    margin-bottom: 0;
}
.form03 .form_ttl .form02_txt {
    max-width: 560px;
}
.form03 .form02_box .form02_img02 {
    max-width: 465px;
}
.form03 .form02_box .form_fx {
    justify-content: normal;
    padding-left: 15px;
}
.form03 .form02_box .line_img {
    max-width: 290px;
}
.form03 .form02_box {
    padding: 6px 0 6px 0;
    margin-top: 15px;
}

/* 粗品 */
.form03 .form02_box .present02 {
    position: absolute;
    width: 23%;
    max-width: 225px;
    top: -68px;
    right: 154px;
}
/* 人物 */
.form03 .form02_box .form02_img {
    position: absolute;
    top: -189px;
    right: -45px;
    max-width: 264px;
    z-index: 0;
}
.form03 .present02_sp,.form03 .form02_txt_sp{
    display: none;
}
@media screen and (max-width: 1035px) {
    .form03 .form02_box {
        margin-top: 0;
        padding-top: 21.25%;
    }
    .form03 .form_ttl .f_img{
        width: 100%;
        max-width: none;
    }
    .form03 .form02_img02,.form03 .form02_box .form02_img,.form03 .form02_txt{
        display: none;
    }
    .form03 .form02_img02_sp,.form03 .form02_txt_sp,.form03 .present02_sp{
        display: block;
    }
    .form03 .form02_img02_sp{
        position: absolute;
        width: 95%;
        top: -113%;
        left: 50%;
        transform: translateX(-50%);
    }
    .form03 .form02_txt_sp{
        width: 75%;
        max-width: 500px;
    }
    .form03 .form02_box .line_img_sp {
        max-width: none;
        margin: 0 auto;
    }
    .form03 .present02_sp {
        margin-top: -13px;
        width: 93%;
    }
}

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

    .form03{
        padding: 20px 0 20px 0 !important;
    }
}
/*--------------------------- 
         intro
-----------------------------*/
#intro{
    background-color: #F2F2F2;
}
.intro_top{
    background-image: url('./img/intoro_bg.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    padding: 31px 0 56px 0;
    margin-bottom: 40px;
}
.intro_top_txt {
  text-align: center;
    /* padding: 30px 0; */
}
.intro_top_txt span{
    background-color: #fff;
    border-radius: 20px;
    font-size: 23px;
    font-weight: 600;
    display: block;
    width: 490px;
    margin: 0 auto;
    color: #575757;
    height: 39px;
    line-height: 39px;
}
.intro_top_txt p{
    color: #fff;
    font-size: 46px;
    font-weight: 600;
    margin-top: 17px;
    text-shadow: 0 0 3px rgb(0, 0, 0, .81);
} 
#intro .sp_br{
    display: none;
}
@media screen and (max-width: 768px) {

    #intro .sp_br{
        display: block;
    }
    .intro_top_txt span{
        font-size: 15px;
        width: 294px;
        height: 24px;
        line-height: 24px;
    }
    .intro_top_txt p{
        font-size: 24px;
        line-height: 1.41;
        margin-top: 10px;
    } 
    .intro_top{
        background-image: url('./img/intoro_bg_sp.png');
        padding: 20px 0 29px 0;
        margin-bottom: 16px;
    }
}


.intro_list{
    text-align: center;
    position: relative;

}
.intro_img{
    width: 72%;
    max-width: 718px;
    margin-bottom: 28px;
}
.intro_list ul{
    max-width: 570px ;
    margin: 0 auto;
}
.intro_list li{
    text-align: left;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.75;
    padding: 2px 47px 2px 47px;
    background-color: #fff;
    border-left: 10px solid #000000;
    box-shadow: 0 3px 6px rgb(0, 0, 0, .16);
    margin-bottom: 16px;
    display: table;
}
.intro_list li span{
    color: #B40A0A;
    font-size: 36px;
}
.intro_list p{
    font-size: 24px;
    font-weight: 600;
    position: absolute;
    bottom: 0 ;
    right: 175px;
}
.intro_img02{
    width: 14px;
    margin-top: 24px;
}
@media screen and (max-width: 768px) {

    .intro_list{
        max-width: 450px;
        margin: 0 auto;
    }
    .intro_list ul {
        max-width: 370px;
        margin: 0 auto;
    }
    .intro_list li{
        font-size: 20px;
        padding: 2px 34px 2px 24px;
        border-left: 6px solid #000000;
        margin-bottom: 10px;
    }
    .intro_list li span{
        font-size: 23px;
    }
    .intro_img{
        width: 100%;
        max-width: 450px;
        margin-bottom: 21px;
    }
    .intro_list p {
        font-size: 15px;
        right: 50px;
    }
}

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

    .intro_list p {
        right: 2px;
    }
}
/* intro_contents */

.intro_contents{
    text-align: center;
}

.intro_read{
    display: flex;
    align-items: center;
}
.intro_read img{
    width: 17%;
    max-width: 169px;
    margin-right: 14px;
    margin-top: -32px;
}
.intro_read p{
    font-size: clamp(23px, 2.25vw, 32px);
    font-weight: 700;
    margin-top: 17px;
}
.intro_read p span{
    color: #fff;
    display: inline-block;
background: linear-gradient(90deg, rgba(170,170,170,1) 0%, rgba(201,201,201,1) 25%, rgba(190,190,190,1) 50%, rgba(208,208,208,1) 75%, rgba(162,162,162,1) 100%);
    padding: 2px 30px;
    margin: 0 24px ;
    text-shadow: 0 0 5px rgb(0, 0, 0, .45);
}

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

    .intro_read{
        flex-direction: column;
        align-items: normal;
        max-width: 330px;
        margin: 0 auto;
    }
    .intro_read p{
        margin-top: 26px;
        font-size: 20px;
    }
    .intro_read p span{
        padding: 4.5px 16px;
        margin: 0 8px 0 20px;
        font-size: 23px;
        
    }
    .intro_read img{
        width: 31%;
        max-width: 101px;
        margin-right: 0;
        margin-top: -25px;
        margin-bottom: -20px;
    }
    .intro_read p .sp_br{
        display: block;
    }
}


/* intro_box */

.intro_box{
    display: flex;
    background-color: #fff;
    align-items: center;
    gap: 23px;
    margin-top: 31px;
    box-shadow: 0 3px 6px rgb(0, 0, 0, .16);

}
.intro_box_img{
    max-width: 286px;
}
.intro_box_txt li{
    font-size: clamp(18px, 1.68vw, 24px);
    font-weight: 600;
    position: relative;
    text-align: left;
}
.intro_box_txt li:first-child{
    margin-bottom: 27px;
}
.intro_box_txt li::before{
    content: '';
    display: inline-block;
    background-image: url('./img/check.png');
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: bottom;
    margin-bottom: -5px;
    width: 29.3px;
    height: 31px;
    margin-right: 7px;
}
.intro_box_img .truck_sp{
    display: none;
}


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

    .intro_box_img .truck{
        display: none;
    }
    .intro_box_img .truck_sp{
        display: block;
        
    }
    .intro_box_img{
        max-width: none;
    }
    .intro_box {
        max-width: 500px;
        margin: 0 auto;
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
        row-gap: 17px;
        padding-bottom: 22px;
    }
    .intro_box_txt{
        width: 95%;
        max-width: 400px;
        margin: 0 auto;
    }
    .intro_box_txt li::before{
        width: 24px;
        height: 19px;
        margin-right: 4px;
        vertical-align: super;
        margin-bottom: -10px;
    }
    .intro_box_txt li {
        font-size: 15px;
        padding-left: 2em;
        text-indent: -2em;
    }
    .intro_box_txt li:first-child{
        margin-bottom: 20px;
    }
}



/* intro_last */
.intro_last{
    background-image: url('./img/intro_bg02.jpg');
    background-size: cover;
    background-position: center;
    padding:80px 0 55px 0;
    text-align: center;
    margin-top: 88px;
    position: relative;
  z-index: 0;

}

.intro_last .sonna{
    width: 297px;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);

}




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

    .intro_last{
        padding:44px 0 27px 0;
        margin-top: 46px;
    }

    .intro_last .sonna{
        width: 255px;
        top: -25px;
        left: 50%;
    }

    
}


.intro_last p{
    display: inline-block;
    font-size: 50px;
    font-weight: 700;
    color: #126D38;
    position: relative;
    padding: 5px 86px;
}
.intro_last p span{
    color: #FB4C1F;
}
.intro_last p::before, .intro_last p::after {
	content: '';
	width: 26px;
	height: 100%;
	position: absolute;
}

.intro_last p::before {
	border-left: solid 3px #1B552E;
	border-top: solid 3px #1B552E;
	border-bottom: solid 3px #1B552E;
	top: 0;
	left: 0;
}

.intro_last p::after {
	border-right: solid 3px #1B552E;
	border-top: solid 3px #1B552E;
	border-bottom: solid 3px #1B552E;
	top: 0;
	right: 0;
}

@media screen and (max-width: 768px) {
    
    .intro_last p{
        font-size: 25px;
        padding: 5px 30px;
    }

    .intro_last p::before, .intro_last p::after {
        width: 13px;
    }
    .intro_last p::before {
        border-left: solid 2px #1B552E;
        border-top: solid 2px #1B552E;
        border-bottom: solid 2px #1B552E;

    }
    
    .intro_last p::after {
        border-right: solid 2px #1B552E;
        border-top: solid 2px #1B552E;
        border-bottom: solid 2px #1B552E;

    }

}


/*--------------------------- 
         flow
-----------------------------*/

#flow{
    background-color: #EAEDEB;
}
#flow .section_ttl {
    padding: 40px 0;
}
.flow_ttl{
    width: 64%;
    vertical-align: middle;
    max-width: 456px;
}
.flow_contents {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 44px;
    padding-bottom: 48px;
    background-color: #D4E1DA;
}
@media screen and (max-width: 768px) {

    .flow_contents {
        padding-top: 16px;
        padding-bottom: 21px;
    }
}


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

    #flow .section_ttl {
        padding: 17px 0;
    }

}
.flow_box {
    display: flex;
    align-items: center;
    border: 1px solid #333;
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 57px;
    background-color: #fff;
    position: relative;
}
.flow_box:last-child{
    align-items: flex-start;
    padding: 24px 0 42px 0;
    margin-bottom: 0;
}
.flow_box_txt {
    padding-right: 60px;
}

.flow_box_txt h3 {
    color: #2D684B;
    font-size: 32px;
    border-bottom: 1px solid #ACACAC;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.flow_box_txt p{
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}
.flow_box_txt .sp_br{
    display: none;
}
@media screen and (max-width: 768px) {
    .flow_box_txt .pc_br{
        display: none;
    }
    .flow_box_txt .sp_br{
        display: block;
    }
    .flow_box {
        margin-bottom: 37px;
    }
    .flow_box_img {
        display: none;
    }
    .flow_box_txt {
        width: 95%;
        max-width: 500px;
        margin: 0 auto;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .flow_box:last-child {
        padding: 24px 0 0 0;
        margin-bottom: 0;
    }
    .flow_box_txt h3 {
        font-size: 24px;
        line-height: 1.33;
        padding-bottom: 0;
        margin-bottom: 10px;
    }
    .flow_box_txt p{
        width: 95%;
        margin: 0 auto;
    }
}


.flow_box:after {
    content: "";
    position: absolute;
    bottom: -49px;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 0;
    height: 0;
    border-top: 32px solid #2D684B;
    border-right: 65px solid transparent;
    border-left: 65px solid transparent;
}

.flow_box:last-child:after {
    border: none;
}

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

    .flow_box:after {
        bottom: -38px;
        left: 50%;
        border-top: 25px solid #2D684B;
        border-right: 50px solid transparent;
        border-left: 50px solid transparent;
    }
}


.flow_box_img{
    width: 40%;
    max-width: 224px;
    text-align: center;
}
.flow_box_img01 img{
    max-width: 190px;
}
.flow_box_img02 img{
    max-width: 198px;
}
.flow_box_img03 img{
    max-width: 154px;
}
.flow_icon_sp{
    display: none;
}
@media screen and (max-width: 768px) {

    .flow_icon{
        display: none;
    }
    .flow_icon_sp{
        display: inline-block;
        vertical-align: middle;
    }
    .flow_box01 .flow_icon_sp{
        max-width: 87px;
    }
    .flow_box02 .flow_icon_sp{
        max-width: 100px;
    }
    .flow_box03 .flow_icon_sp{
        max-width: 104px;
    }

}
/*--------------------------- 
         faq
-----------------------------*/
#faq {
    background-color: #EAEDEB;
}
.faq_ttl{
    width: 90%;
    max-width: 267px;
    vertical-align: middle;
}
.faq_contents {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 33px;
    padding-bottom: 26px;
    background-color: #D4E1DA;
}

.faq_box {
    border: 1px solid #707070;
    width: 95%;
    max-width: 840px;
    margin: 0 auto;
    margin-bottom: 21px;
    background-color: #fff;
    padding: 25px 0 35px 0;
}
.faq_box_ttl{
    border-bottom: 1px dotted #707070;
    padding-bottom: 19px;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 27px;

}
.faq_box dt{
    font-size: 24px;
    line-height: 1.33;
    color: #2D684C;
    width: 95%;
    font-weight: 600;
    margin: 0 auto;
    display: flex;
    gap: 7px;
}

.faq_box dd{
    font-size: 16px;
    line-height: 1.31;
    font-weight: 400;
    width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 7px;
}
.faq_box .sp_br{
    display: none;
}

@media screen and (max-width: 768px) {
    
    #faq .section_ttl {
        padding: 18px 0;
    }
    .faq_box .sp_br{
        display: block;
    }
    .faq_ttl {
        max-width: 182px;
    }
    .faq_box {
        margin-bottom: 12px;
        padding: 15px 0 20px 0;
    }
    .faq_contents {
        padding-top: 12px;
        padding-bottom: 6px;
    }
    .faq_box_ttl{
        padding-bottom: 9px;
        margin-bottom: 9px;
    
    }
    .faq_box dt{
        font-size: 18px;
        gap: 7px;
        width: 96%;
    }
    
    .faq_box dd{
        gap: 10px;
        width: 91%;
    }

}

@media screen and (max-width: 479px) {
    .faq_ttl {
        max-width: 142px;
    }
    .faq_box dt{
        font-size: 15px;
        gap: 7px;
    }
    
 

}


/*--------------------------- 
         last_form
-----------------------------*/

.last_form_ttl{
    width: 90%;
    max-width: 755px;
}

.form04 .form03_box {
    background-color: #fff;
    max-width: 940px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 25px 0 20px 0;
    position: relative;
    text-align: left;
    margin-top: 14px;
}
.last_form_img02{
    width: 90%;
    max-width: 626px;
    margin-left: 6%;
    margin-top: 10px;
}
.form04_txt {
    max-width: 808px;
}
/* 人物 */
.tel_img {
    position: absolute;
    bottom: 0;
    right: 15px;
    max-width: 245px;
}
.form04 .form_fx{
    justify-content: flex-start;
    margin-left: 6%;
}
.form04 .line_img {
    max-width: 265px;
}
.form04 .tel_img02 {
    width: 100%;
    max-width: 384px;
}
.form04 .present02{
    position: absolute;
    max-width: 242px;
    bottom: 25px;
    right: 40px;
}
.last_form_img_sp,.form04_txt_sp,.form04 .tel_img_sp{
    display: none;
}
@media screen and (max-width: 1035px) {
    .form04 .form03_box {
        text-align: center;
        margin-top: 5px;
        padding: 10px 0 15px 0;
    }

    .last_form_img,.form04_txt,.form04 .present02,.form04 .tel_img{
        display: none;
    }
    .form04 .tel_img_sp{
        display: block;
        position: absolute;
        top: -30px;
        right: 65px;
        max-width: 120px;
        z-index: 0;
    }
    .form04 .present02_sp {
        margin: 0 auto;
        margin-top: -5px;
        width: 77%;
        margin-bottom: 5px;
    }
    .form04_txt_sp{
        display: block;
        width: 90%;
        margin: 0 auto;
    }
    .form04 .tel_img02 {
        width: 97%;
        max-width: 490px;
        margin-left: 6%;
    }
    .last_form_img_sp{
        display: block;
        position: absolute;
        top: 22.7%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        max-width: 95%;
    }


    .form04 .form_fx {
        margin-left: 6%;
        row-gap: 0;
        align-items: flex-start;
    }
    .last_form_img02{
        width: 90%;
        max-width: none;
        margin: 0 auto;
    }

    .form-4 .line_img_sp {
        width: 95%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px) {

    .form03{
        padding-bottom: 15px !important;
    }
    .form04 .tel_img02 {
        width: 77%;
        max-width: 460px;
        margin-right: 14%;
    }
    .form04 .tel_img_sp {
        display: block;
        position: absolute;
        top: -35px;
        right: 6px;
        width: 24%;
        max-width: 120px;
        z-index: 0;
    }
    .form04 .form_fx {
        justify-content: flex-start;
        margin-left: 0;
        margin: 0 auto;
        width: 95%;
    }
}


/*--------------------------- 
         target
-----------------------------*/
.target {
    background: #EAEEEA;
    padding-block: 70px;
}
.target h2 {
    font-size: 20px;
    color: #fff;
    background: #347843;
    padding: 5px 20px;
    margin-bottom: 20px;
    display: inline-block;
}
.target h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.target p {
    margin-bottom: 50px;
}
.target .inner > *:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    .target {
        padding-block: 50px;
    }
    .target h2 {
        font-size: 18px;
    }
    .target h3 {
        font-size: 16px;
    }
    .target p {
        font-size: 14px;
    }
}

/*--------------------------- 
         footer
-----------------------------*/
footer{
    background-color: #333333;
    text-align: center;
    color: #fff;
    padding: 30px 20px;
}
.footer_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    column-gap: 30px;
    row-gap: 15px;
    margin-bottom: 20px;
}
.footer_menu a {
    color: #fff;
}
footer small{
    font-size: 12px;
    letter-spacing: .05em;
}

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

    footer{
        margin-bottom: 58px;
    }
    .footer_menu {
        font-size: 14px;
    }
    footer small{
        font-size: 10px;
    }
}

#footer_CTA {
    display: none;
  }
  
  @media only screen and (max-width: 768px) {
  
    #footer_CTA {
        display: block;
        width:100%;
        position:fixed;
        bottom:0;
        text-align:center;
        height: 57px;
        display: grid;
        z-index: 9;
    }
    #footer_CTA  #footer_CTA_menu {
        text-align :center;
        padding :0;
        display :flex;
        width :100%;
        position: relative;
    }
    #footer_CTA  #footer_CTA_menu li {
        width :50%;
        padding :0;
        margin :0;
        position :relative;
        vertical-align :middle;
        transition: all .5s;
        background-image: url('./img/f_bg02.png');
        background-position: center;
    }
    
    #footer_CTA  #footer_CTA_menu li:hover {
        opacity :0.9;
    }
    #footer_CTA  #footer_CTA_menu li:first-child{
        background-image: url('./img/f_bg01.png');
    }
    #footer_CTA  #footer_CTA_menu li:first-child img{
        width: 15px;
        margin-right: 7px;
    }
    #footer_CTA  #footer_CTA_menu li img{
        width: 23px;
    margin-bottom: -4px;
        margin-right: 3px;

    }
    .cta_logo{
        display: inline-block;
        background-color: #fff;
        width: 87%;
        margin: 0 auto;
        margin-bottom: 4px;
    }
    .cta_logo img {
        max-width: 50%;
        vertical-align: middle;
        min-width: 84px;
        padding: 3px 0;
    }

    .cta_txt{
        position: absolute;
        top: 53%;
        left: 50%;
        -webkit-transform : translate(-50%,-50%);
        transform : translate(-50%,-50%);
        font-size: 18px;
        line-height: 1;
        font-weight: bold;
        color: #fff;
        width: 100%;
    }
    .cta_txt .small{
        font-size: 16px;
    }
    .cta_txt .small02{
        font-size: 10px;
    }

    .soshina_f{
        max-width: 285px;
        position: absolute;
        top: -8%;
        left: 50%;
        -webkit-transform : translate(-50%,-50%);
        transform : translate(-50%,-50%);
    }
}


/*--------------------------- 
         会社概要ページ
-----------------------------*/
.company_ttl {
    background: url(./img/company-bg.jpg);
    display: grid;
    place-content: center;
    margin-bottom: 80px;
    padding-block: 100px;
}
.company_ttl h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}
.company_logo {
    display: block;
    margin-inline: auto;
    max-width: 280px;
    margin-bottom: 80px;
}
.company_lead {
    font-size: 18px;
    margin-bottom: 60px;
}
.company_detail {
    display: grid;
    grid-template-columns: auto 1fr;
    margin-bottom: 80px;
    font-size: 18px;
}
.company_detail dt {
    padding: 15px 50px 15px 30px;
}
.company_detail dd {
    padding: 15px 20px;
}
.company_detail dt:nth-last-of-type(2n+1), .company_detail dd:nth-last-of-type(2n+1) {
    background: #EFEFEF;
}
.company_detail a {
    color: #438EBE;
}
.company iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
    .company_ttl {
        margin-bottom: 40px;
        padding-block: 50px;
    }
    .company_ttl h1 {
        font-size: 24px;
    }
    .company_logo {
        margin-bottom: 40px;
        max-width: 160px;
    }
    .company_lead {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .company_detail {
        margin-bottom: 40px;
        font-size: 14px;
    }
    .company_detail dt {
        padding: 15px 20px 15px 10px;
    }
    .company_detail dd {
        padding: 15px  15px 15px 0;
    }
    .company iframe {
        margin-bottom: 40px;
    }
}
