/* 
======================

common

======================
 */


 

    :root {
/* //  文字色　// */
  --color: #161718;
/* //  ネイビー　//   */
  --main-color: #104c5b;
/* //  オレンジ　// */
  --accent-color: #e57008;
/* //  イエロー　// */
  --accent-sub-color: #e5b908;
/* //  レッド　// */
  --accent-extra-color: #ee220d;
/* //  水色　// */
  --back-color: #d4ebf2;
/* //  濃いグレー　// */
  --back-sub-color: #b7bec7;
/* //  薄いグレー　// */
  --back-extra-color: #eaeef4;
  

  /* //  大サイズ文字　2rem// */
  --font-a: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  /* //  中サイズ文字　// */
  --font-b: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);
/* //  小サイズ文字　1.2rem// */
  --font-c: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
  /* //  極小サイズ文字　// */
  --font-d: 0.8rem;


/* //  sp時中サイズ文字　// */
--font-bs:clamp(1rem, 0.75rem + 1.25vw, 1.25rem)

}


body{
    color:var(--color);
    letter-spacing: .2em;
    font-family: "Zen Maru Gothic", serif;
    line-height: 2rem;
    height: 100%;
}

.wrap{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.box{
    padding-top:130px;
    padding-bottom:130px;
}

.box-sub{
    padding-top:80px;
    padding-bottom:80px;
}

.orange-accent{
    color: var(--accent-color);
}

.yellow-accent{
    color: var(--accent-sub-color);
}

.ivory-accent{
    color: #fad56e;
}




.title-common{
    font-size: var(--font-a);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    margin-bottom: 10%;
}

.pc{
    display: block;
 }

 .sp{
    display: none!important;
 }

 .ctabtn:hover{
    opacity: .6;
 }

 .sp-br{
    display: inline-block;
    line-height: 130%;
 }




 /* ===========pagetopへ戻る=============== */


 
.pagetop {
    position: fixed;
    bottom: 22px;
    right: 22px;
    font-size: 77%;
}
.pagetop a {
    background: #e4b908;
    text-decoration: none;
    color: #fff;
    width: 40px;
    padding: 15px 0;
    text-align: center;
    display: block;
    border-radius: 100px;
    line-height: 1;
    padding-left: 3px;
}

.pagetop a:hover {
    background-color: var(--back-sub-color);
    text-align: center;
    color: #fff;

}


 /* ===========pagetopへ戻るここまで=============== */



/* 
======================

header

======================
 */




 .header-top{
    background-color: var(--accent-color);
    color: #fff;
}


.sp-nav-box {
    display: flex;
    background: #fff;
    height: 50px;
}

.headerwrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerlogo {
    height: auto;
    align-self: center;
    width: 100%;
    display: flex;
    align-items: center;
}

.headerlogo img {
    max-width: 100%;
    width: 70%;
    height: auto;
    display: block;
}

.navwrap__sp {
    display: none;
}


.navlist {
    display: flex;
}

.navlist>li {
    margin-right: 3rem;
    line-height: 90px;
    text-align: center;
    transition: .2s;
}

.navlist>li>a {
    font-size: 1.4rem;
    display: block;
}

.cta-btn-box {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cta-btn-box img {
    width: 100%;
}

.cta-btn-box > li{
    border-bottom: none!important;
}


.cta-btn-box > li:first-child{
    margin-bottom: 2%;
}



/* ====================spnav===================== */


.hamburger {
    position: absolute;
    right: 20px;
    top: 35px;
    width: 5rem;
    height: 4rem;
    cursor: pointer;
    z-index: 1001;
}

.ham_line {
    position: absolute;
    width: 2rem;
    height: 3px;
    right: 0;
    background-color: var(--accent-color);
    transition: all 0.5s;
}

.ham_line-1 {
    top: 5px;
}

.ham_line-2 {
    top: 18px;
}

.ham_line-3 {
    top: 31px;
}


.open .ham_line-1 {
    transform: rotate(-45deg);
    top: 11px;
}

.open .ham_line-2 {
    opacity: 0;
}

.open .ham_line-3 {
    transform: rotate(45deg);
    top: 11px;
}


/* 
  spnav(ナビ)
  =================================== */
.spnav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 70%;
    height: 100vh;
    background-color: #fff;
    transition: all 0.5s;
    z-index: 1000;
    overflow-y: auto;
}


.open .spnav {
    right: 0;
}



.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: var(--color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
}

.open .black-bg {
    opacity: 0.3;
    visibility: visible;
}



.spwrap {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 0 4rem;
}

.spnav ul {
    width: 100%;
}




.sp-menu-line  {
    display: flex;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--back-sub-color);
    transition: .2s;
}





.sp-menu-link{
    display: flex;
    padding: 0 0 16px 0;
    width: 100%;
}



.sp-menu-arrow{
    display: block; 
    margin-left: auto;
    font-weight: bold;
    font-size: var(--font-bs);
}

.sp-menu-line:hover {
    color: var(--accent-color);
    border-bottom: 1px solid #fff;
}












/* 
======================

head

======================
 */


.head{
    background:#d4ebf2 url(../img/hero_back.png) no-repeat center / cover; 
}

.head-top{
    display: flex;
    justify-content: space-between;
    padding-top: 2%;
    width: 100%;
}

.head-list-L{
    width: 100%;
    height: auto;
    align-items: center;
    display: flex;
}

.head-list-L > img{
    width: 80%;
    height: auto;
}
    

.head-list-R {
    display:flex;
    width:100%;
}

.head-list-R img {
    width: 100%;
}

.head-list-R > li:first-child{
    margin-right: 10px;
}




.head-center{
    display: flex;
    justify-content: center;
}

.head-center-img{
    width: 100%;
}





.head-bottom{
    display: flex;
    justify-content:center;
    background-color: #fef0dd;
    padding: 50px 0;
    margin-top: -3px;
}

.head-bottom-list{
    display: flex;
    justify-content: space-between;
}

/* 両側余白用 */
.hb_img2{
    margin: 0 10px;
}

.head-bottom-list-item{
    background-color: var(--accent-color);
    box-shadow: 0px 0px 0px 3px var(--accent-color);
    border: 1px solid #fff;
    border-radius: 10px;
    width:90%;
    padding: 5px;
    position: relative;
}

.head-bottom-list-item > div{
    padding: 6%;
    font-size: clamp(1rem, 0.571rem + 1.07vw, 1.375rem);
    font-weight: bold;
    color: #fff;
    text-align:center;
}

.head-bottom-list-item:before{
    position: absolute;
    content: "";
    background:url(../img/top_1.png) no-repeat center / contain;
    width: 100%;
    height: 40px;
    top: -20px;
}

.hb_img2:before{
    background:url(../img/top_2.png) no-repeat center / contain;
}

.hb_img3:before{
    background:url(../img/top_3.png) no-repeat center / contain;
}






/* 
======================

problem

======================
 */



.problem{
    padding: 10% 0 5% 0;
    background-size: auto auto;
    background-color: rgba(235, 239, 243, 1);
   /*  background-image: repeating-linear-gradient(90deg, transparent, transparent 5px, rgba(187, 194, 196, .7) 5px, rgba(187, 194, 196, .7) 10px ); */
}

.problem-title{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: 8%;
}

.problem-title-ex{
    background: var(--main-color);
    color: #fff;
    padding: 1%;
    border-radius: 10px;
    font-size: var(--font-b);
    display: block;
    width: 300px;
    margin-bottom: 3%;
}

.problem-title-h2{
    background: #fff;
    padding: 2%;
    font-size: var(--font-a);
    width: 55%;
    position: relative;
    font-weight: bold;
    min-width: 500px;
}

.problem-title-h2::before{
    content:"";
    background: url(../img/problem_.accent1.png) no-repeat center/ contain;
    width: 30px;
    height: 50px;
    position: absolute;
    left: -10px;
    top: -20px;
}

.problem-title-h2::after{
    content:"";
    position: absolute;
    background: url(../img/problem_.accent2.png) no-repeat center/ contain;
    width: 30px;
    height: 50px;
    bottom: -20px;
    right: -10px;
}



.problem-box{
    display: flex;
    justify-content: space-between;

}

.problem-box-list{
    width: 30%;
}

.problem-box-list > li{
    background-color: #fff;
    border-radius: 10px;
    padding: 8%;
    font-size: var(--font-bs);
    font-weight: bold;
}

.problem-box-list > li:nth-child(2n){
    margin: 5% 0;
}

.problem-box-img{
    background: url(../img/problem_.img.png) no-repeat center/ contain;
    width: 30%;
    height: 320px;
}

.problem-etc{
    text-align: end;
}



/* 
======================

merit

======================
 */


 .merit{
    background: url(../img/merit_back.jpg) no-repeat center / cover;

 }

 .merit-box{
    background-color: var(--back-color);
    border-radius: 10px;
    padding: 10% 0;
    position: relative;
    margin-top: 10%;

 }

 .merit-box::before{
    content: "";
    background: url(../img/merit_title.png) no-repeat center/ contain;
    width: 100%;
    height: clamp(5rem, 3.571rem + 3.57vw, 6.25rem);
    position: absolute;
    top: -50px;
    left: 0;
 }

 .merit-box::after{
    content: "";
    background: url(../img/merit.png) no-repeat center/ contain;
    width: 30%;
    height: 40%;
    position: absolute;
    bottom: -100px;
    right: 0;
 }


 .merit-box-list{
    width: 90%;
    margin: 0 auto;
 }

 .merit-box-list >li{
    background: #fff url(../img/check.png) no-repeat 5% center / 5%;
    padding: 5%;
    border-radius: 10px;
    font-size: var(--font-b);
    padding-left: 15%;
    font-weight: bold;
 }

 .merit-box-list >li:nth-child(2n){
 margin: 2% 0;
}


/* 
======================

cost

======================
 */


 .cost {
    padding: 10% 0;
    background: rgba(235, 239, 243, 1);
 }

 .cost h2 {
    font-size: var(--font-a);
    font-weight: bold;
    text-align: center;
 }

 .costtable {
    margin-top: 5%;
 }

 .cost img {
    width: 100%;
 }

 .cost p {
    background: #fff;
    margin-top: 5%;
    padding: 5%;
    font-size: var(--font-c);
    text-align: left;
 }



/* 
======================

reason

======================
 */

.reason{
    background: var(--back-color) ;
    padding-top: 15%;
}

.reason-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16%;
}

.reason-title-ex{
    font-size: var(--font-b);
    margin-bottom: 1%;
    text-align: center;
}

.reason-title-h2{
    font-size: var(--font-a);
    font-weight: bold;
    background-color: var(--accent-sub-color);
    padding: 1% 2%;
}


.reason-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.reason-list-items{
    position: relative;
    background: #fff;
    border-radius: 10px;
    border-top: 5px solid var(--main-color);
    border-bottom: 5px solid var(--main-color);
    border-left: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    width: 45%;
    text-align: center;
    padding: 10% 0 5% 0;
    margin: 0 0 10%;
}

.reason-list-items::before{
    content: "";
    position: absolute;
    background: url(../img/reason1.png) no-repeat center/ contain;
    width: 100%;
    height:clamp(6.875rem, 3.125rem + 9.38vw, 10.625rem);
    top: -72px;
    left: 0;
    
}

.ri2::before{
    background: url(../img/reason2.png) no-repeat center/ contain;
}

.ri3::before{
    background: url(../img/reason3.png) no-repeat center/ contain;
}

.ri4::before{
    background: url(../img/reason4.png) no-repeat center/ contain;
}

.ri5::before{
    background: url(../img/reason5.png) no-repeat center/ contain;
}




.reason-list-title{
    font-size: var(--font-b);
    color: var(--accent-color);
    font-weight: bold;
    padding: 1% 3%;
}


.reason-list-text{
    padding: 5%;
    font-size: var(--font-c);
    text-align: left;
}


/* 
======================

cta

====================== 
*/


.cta{
    background: var(--accent-sub-color) url(../img/cta_back.jpg) no-repeat center/ cover;
}

.cta-top{ 
    background:var(--back-color);
    padding: 2%;
    border-radius: 30px;
    border: 3px solid var(--main-color);
    font-size: var(--font-b);
    font-weight: bold;
    color: var(--color);
    text-align: center;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 4%;
}

.cta-sp {
    display: none;
}



.cta-center-contents{
    display: flex;
}


.cta-center-block{
    width: 100%;
    text-align: center;
    flex-shrink: 1;
}

.cta-center-white{
    background: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 20px;
    margin: 0 auto 54px;
    width: 100%;
}

.cta-center-text{
    font-size: var(--font-a);
    font-weight: bold;
    margin-bottom: 6%;
    line-height: 3rem;
    text-align: left;
}

.cta-list2 {
    width: 100%;
    margin: 0 auto;
}

.cta-list2 img {
    width: 100%;
}

.cta-list-item {
    width: 95%;
    margin: 0 auto;
}

.cta-box {
    display: flex;
    margin-top: -1%;
}

.cta-box a:first-child {
    margin-right: 2%;
}

.cta-mail{
    margin-right: 10px;
    width: 95%;
}


/* 
======================

solution

====================== 
*/


.solution{
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 10%, rgba(234, 238, 244, .5) 90%) , url(../img/way_back.png) no-repeat center 10%/ cover;
}

.solution-box{
    margin-bottom: 10%;
}


.solution-title{
    padding-bottom: 10%;
}

.solution-title-h2{
    background: var(--accent-color) url(../img/way_title.png) no-repeat 4% center / 5%;
    color: #fff;
    font-size: var(--font-a);
    padding-left: 3rem;
    padding: 16px 10px;
    border-radius: 10px;
    width: clamp(31.25rem, 25rem + 15.63vw, 37.5rem);
    padding-left: 80px;
    margin-bottom: 1%;
    margin: 0 auto 3%;
    text-align: center;
}



.solution-title-text{
    font-size: var(--font-b);
    text-align: center;
    line-height: 2.5rem;
    font-weight: bold;
}

.under-line{
    border-bottom: 5px solid var(--accent-sub-color);
}

.solution-items-top{
    display: flex;
    background: var(--main-color) url(../img/way_1.png) no-repeat 6% center / 6%;
    justify-content: space-between;
    font-weight: bold;
    font-size: var(--font-b);
    color: #fff;
    padding: 3% 6% 3% 16%;
}

.si2{
    background: var(--main-color) url(../img/way_2.png) no-repeat 6% center / 6%;
}

.si3{
    background: var(--main-color) url(../img/way_3.png) no-repeat 6% center / 6%;
}

.si4{
    background: var(--main-color) url(../img/way_4.png) no-repeat 6% center / 6%;
}



.solution-items{
    border: 3px solid var(--main-color);
}

.solution-item{
    display: flex;
}


.solution-item-text{

background: #fff;
padding: 6%;
font-size: 1.4rem;
font-weight: bold;
line-height: 2.5rem;

}


/* 
======================

voice

====================== 
*/


.voice{
    background-color: #fef0dd;
}

.voice-box-top{
    display: flex;
    border-bottom: 1px dotted var(--back-sub-color);
    padding-bottom: 3%;
}


.voice-title{
    background: url(../img/voice_title.png) no-repeat center/ contain;
    width: 100%;
    height: clamp(2.25rem, 1.667rem + 2.92vw, 4rem);
    margin-bottom: 10%;
}

.voice-box{
    background-color:#fff;
    border-radius: 10px;
    position: relative;
    padding: 6%;
    margin-bottom: 130px;
}

.voice-box::before{
    content: "";
    position: absolute;
    background: url(../img/medal.png) no-repeat center/ contain;
    width: 13%;
    height: 20%;
    top: -40px;
    left: 0;
}


.vbc{
    margin-bottom: 0;
}


.client{
    width: 40%;
    align-self: center;
    margin-right: 10px;
}

.client > p{
    text-align: center;
    font-size: var(--font-c);
}

.client-img{
    background: url(../img/A_img.png) no-repeat center/ contain;
    width: 100%;
    height: clamp(7.5rem, -2.5rem + 25vw, 17.5rem);
}

.cli2{
    background: url(../img/B_img.png) no-repeat center/ contain;
}


.cli3{
    background: url(../img/C_img.png) no-repeat center/ contain;
}


.client-detail{
    background: url(../img/A_ex.png) no-repeat center/ contain;
    width: 100%;
    height: clamp(15.625rem, 8.125rem + 18.75vw, 23.125rem);  
}

.cd2{
    background: url(../img/B_ex.png) no-repeat center/ contain;
}

.cd3{
    background: url(../img/C_ex.png) no-repeat center/ contain;

}

.voice-box-bottom{
    padding-top: 3%;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 2.5rem;
}




/* 
======================

flow

====================== 
*/



.flow{
    background-size: auto auto;
    background-color: rgba(234, 238, 244, 1);
    background-image: repeating-linear-gradient(90deg, transparent, transparent 5px, rgba(229, 236, 245, 1) 5px, rgba(229, 236, 245, 1) 10px );
}





.title-under{
    background: url(../img/title_under.png) no-repeat center / contain;
    height: 8px;
    margin-top: 3%;
    width: 100%;
}

.flow-box{
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.flow-img{
    width: 30%;
    height: auto;
    border: 1px solid var(--main-color);
    padding: 3%;
    border-radius: 10px;
    background: #fff;
}

.fi{
    background: #fff url(../img/flow_1.png) no-repeat center / contain;
    width: 100%;
    height: 180px;
}

.fi2{
    background: #fff url(../img/flow_2.png) no-repeat center / contain;

}

.fi3{
    background: #fff url(../img/flow_3.png) no-repeat center / contain;

}

.fi4{
    background: #fff url(../img/flow_4.png) no-repeat center / contain;
}



.flow-content{
    background-color:var(--main-color);
    color: #fff;
    width: 68%;
    padding: 5% 3%;
    border-radius: 10px;
}

.flow-content-top{
    font-size: var(--font-b);
    display: flex;
    align-items: center;
    margin-bottom: 3%;
}

.flow-content-top + dd{
    font-size: var(--font-bs);
}

.flow-content dd {
    text-align: left;
}



.flow-top-step{
    background-color: var(--accent-sub-color);
    color: var(--main-color);
    border-radius: 10px;   
    padding: 2%;
    margin-right: 5%; 
}




.arrow{
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 70px solid transparent;
    border-left: 70px solid transparent;
    border-top: 40px solid #e5b908;
    border-bottom: 0;
    margin: 6% auto;
}


/* 
======================

faq

====================== 
*/


.faq{
    background-color: var(--back-color);
}


.faq-box{
    background-color: #fff;
    border-radius: 10px;
}

.faq-wrap{
    width: 90%;
    margin: 0 auto;
    padding: 6% 0;
}

.faq-question{
    cursor: pointer;
    background: url(../img/faq_question.png) no-repeat 2% center/ 6%;
    border-bottom: 1px dotted var(--back-sub-color);
    padding: 4% 7% 4% 13%;
    font-size: var(--font-bs);
    font-weight: bold;
}

.faq-question > p{
    padding: 3% 7% 3% 13%;
    font-size: var(--font-bs);
}

.faq-answer{
    display: none;
    width: 100%;
    background: #f1f6f8 url(../img/faq_answer.png) no-repeat 2% center/ 6%;
    padding: 3% 7% 3% 13%;
    font-size: var(--font-bs);
    border-radius: 10px;
    margin: 1% 0;
    font-weight: bold;
}





/* ================以下アコーディオン===================== */


.accordionlist:not(:first-child) {
    margin-top: 10px;
  }
  
  .accordion-title {
    position: relative;
  }
  
  .accordion-title:before {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 4px;
    width: 15px;
    background: var(--main-color);
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
  }
  .accordion-title:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 4px;
    width: 15px;
    background: var(--main-color);
    transition: all .3s ease-in-out;
  }
  
  .accordion-title.open:before {
    transform: rotate(180deg);
  }
  .accordion-title.open:after {
    opacity: 0;
  }



  /* ================アコーディオンここまで===================== */




/* 
======================

form

====================== 
*/


.form{
    background: url(../img/form_back.png) no-repeat center / cover;
}

.form-box{
    background-color: var(--back-color);
    border-radius: 10px;
}

#form-wrap{
    padding: 8% 0;
    width: 80%;
    margin: 0 auto;
}

input[type="text"],
textarea{
    width: 100%;
    background-color: #fff;
    padding: 4%;
}

.form-table{
    width: 100%;
    margin-bottom: 2%;
}

.form-tr{
    width: 100%;
    display: flex;
    margin-bottom: 3%;
}

.form-tr > th,
.form-tr > td{
    width: 100%;
    display: block;
}

.required{
    background: var(--accent-sub-color);
    padding: 6px 16px;
    margin-right: 6%;
}

.optional{
    background: var(--back-sub-color);
    padding: 6px 16px;
    margin-right: 6%;
}


.privacy{
    width: 100%;
    height: 150px;
    overflow-y:scroll;
    background-color: #fff;
    margin-bottom: 8%;
    padding: 2% 6%;
}

.red-accent{
    color: var(--accent-extra-color);
}


.submit-btn{
    text-align: center;
    padding: 3%;
    width: 50%;
    margin: 0 auto;
    display: block;
    background-color: var(--accent-color);
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: .1rem;
}





/* 
======================

footer

====================== 
*/


footer{
    background-color: var(--main-color);
    color: #fff;
}

.footer-logo{
    font-size: var(--font-a);
}

.footer-top{
    margin: 3% 0;
}

.footer-middle{
    margin-bottom: 3%;
}

.footer-bottom{
    font-size: var(--font-d);
    line-height: 1.2rem;
}




/* 
======================

sp

====================== 
*/

  

