@charset "utf-8";
/* CSS Document */

/*-----共通設定-----*/
body {
    font-family:"Noto Sans JP",'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
html {
    font-size: 62.5%;
}
p{
    font-size: 1.6rem;
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
/*.pc { display: block !important; }*/
.sp { 
    display: none !important;
}
.br-sp{
    display: none;
}
/*-----共通設定ここまで-----*/



/**/
/**/
/**/
/**/
/**/
/*-----基本的にはここから下のコードを編集します。-----*/
/*-----振り分け番号のアルファベット(FV-)を検索をして下さい(ctrl+F)-----*/
/**/
/**/
/**/
/**/
/**/
/**/
/**/
/*スクロールボタン設定*/
html{
  scroll-behavior: smooth;
}

/* ボタン全体 */
#page_top{
  width: 100px;
  height: 100px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #fff42c;
  border-radius: 50%;
  z-index: 1;
  }

  /* Font Awesome */
  #page_top::before {
  position: absolute;
  top:20%;
  left: 25%;
  content: '';/*何も入れない*/
  display: inline-block;
  width: 55px;/*画像の幅*/
  height: 55px;/*画像の高さ*/
  background-image: url(../img/angle-up-solid_white.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  
  }
/*header*/
/******* ヘッダーのスタイル ********/
header {
    position: fixed; /*** ← fixedで固定 ***/
    width: 100%; 
    height: 60px; 
    background: #05a601; 
    padding: 20px 30px 20px 0; 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    align-items: center; 
	z-index: 1;
    justify-content:flex-end;
}
header .nav .menu li a{
   color: #ffffff;
   font-weight:bold;
   text-decoration: none;
   font-size: 2.4rem;
}
/*はじめは非表示*/
.content {
  opacity: 0;
}
.content.inview {
  animation-name: fade-in;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-delay: .4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  0% {
    transform: translateY(-40px);/*上から*/
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/*header項目追加*/
ul.menu {
    display: flex;
}

.header-tel:before{
	content: '';/*何も入れない*/
  display: inline-block;
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
  background-image: url("../img/tel.png");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: top;
  margin-right: 5px;
}
.header-form:before{
	content: '';/*何も入れない*/
  display: inline-block;
  width: 30px;/*画像の幅*/
  height: 30px;/*画像の高さ*/
  background-image: url("../img/form.png");
	background-repeat: no-repeat;
  background-size: contain;
  vertical-align: top;
  margin-right: 5px;
}
.header-tel,.header-form{
	height: 60px;
	display: flex;
    align-items: center;
    justify-content: center;
}
.header-tel{
	border-right: 1px solid #ffffff
}
li.header-form {
    padding-left: 20px;
}
li.header-tel {
    padding-right: 20px;
}




/**/
/**/
/**/
/*first-view<!--FV-->*/
/**/
/**/
/**/
#first-view{
    position: relative;
}
#first-view .pc{
    width: 100%;
}
#first-view .btn{
    position: absolute;
    top: 77%;
    left: 55%;
    width: 30%;
    height: auto;
}
#first-view .btn img{
    max-width: 100%;
}
/**/
/**/
/**/
/*<!--FVここまで-->*/
/**/
/**/
/**/





/**/
/**/
/**/
/*targeting<!--TG-->*/
/**/
/**/
/**/
#targeting{
    background: linear-gradient(to bottom, rgba(21, 143, 0, 0.2), rgba(251, 251, 253, 0.2));
    padding: 0 1.5rem;
}
#targeting img{
    max-width: 100%;
}
.targeting-box{
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 10rem;
}
.targeting-warpper01{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 6rem;
}
.targeting-warpper01 img{
    align-self: center;
}
.targeting-item {
    margin-left: 7rem;
}
.targeting-item img{
    margin: 2.4rem 0 3.6rem 0;
}
.targeting-item h1{
    font-size: 4rem;
    font-weight: bold;
    color: #007C67;
    background-color: rgba(255,244,44,0.7);
    line-height: 1.5;
    letter-spacing: 0.04em;
}
.targeting-item h1:nth-of-type(1){
    margin-bottom: 0.8rem;
}
.targeting-item h1:nth-of-type(2){
    margin-bottom: 2rem;
}
.targeting-item p{
    line-height: 1.8;
}
.targeting-sbtext{
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.7;
    letter-spacing: 0.04em; 
    margin-left: 8rem;

}
.targeting-sbtext span{
    color: #007C67;
    background-color: rgba(255,244,44,0.7);  
}
.targeting-warpper02{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    padding: 9.5rem 0;
    height: 650px;
}
.targeting-img01, .targeting-img02, .targeting-img03{
    position: absolute;  
}
.targeting-img01{
    top:15%;
    left: 1%;
    max-width: 75%!important;
}
.targeting-img02{
    top:5%;
    left: 50%;
    max-width: 75%!important;
}
/**/
/**/
/**/
/*targeting<!--TGここまで-->*/
/**/
/**/
/**/





/**/
/**/
/**/
/*pr<!--PR-->*/
/**/
/**/
/**/
#pr{
    background: url(../img/pr-bg.png) no-repeat center center / cover;
}
#pr img{
    max-width: 100%;
    object-fit: contain;
}
.pr-box01{
    text-align: center;
    padding: 10rem 1.5rem 19.5rem 1.5rem;
    background-color:#007C67;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
}
.pr-item01{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
}
.pr-item01-center{
    margin: 0 2.3rem;
}
.pr-box02{
    margin-top:1.7rem;
    padding: 0 1.5rem;
}
.pr-tittle02-img{
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 13.0rem;
}
.pr-item02{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.pr-item02:nth-of-type(2){
    margin-bottom: 10.0rem;
}
.pr-item02:nth-of-type(3){
    margin-bottom: 11.0rem;
}
.pr-item02 p{
    font-size: 2.6rem;
    font-weight: bold;
    text-align: left;
    color: #007C67;
    margin-left: 10.1rem;
    line-height: 1.5;
}
.pr-warpper02-img{
    text-align: center;
}
/**/
/**/
/**/
/*pr<!--PRここまで-->*/
/**/
/**/
/**/




/**/
/**/
/**/
/*voice<!--VO-->*/
/**/
/**/
/**/
#voice{
    background: linear-gradient(to bottom, rgba(21, 143, 0, 0.2), rgba(251, 251, 253, 0.2));
    padding: 10rem 1.5rem 7.0rem 1.5rem;
}
.voice-box{
    max-width: 1358px;
    text-align: center;
    margin: 0 auto;
}
.voice-tittle-img{
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 6.0rem;
    text-align: left;
    
}
.voice-box h2{
    display: inline-block;
    font-size: 3.4rem;
    font-weight: bold;
    color: #007C67;
    background-color: rgba(255,244,44,0.7);
    line-height: 1.5;
    margin-bottom: 10rem;
}
.voice-box h2:nth-of-type(1){
    margin-bottom: 0.8rem;
}
.voice-warpper{
    display: flex;
    justify-content: center;
    padding: 0 1.5rem;
    
}
.voice-item{
    background-color: white;
    width: 530px;
    padding: 2.5rem 2.7rem;
    align-self: flex-end;
    margin:0 0 6.0rem 6.0rem;
    display: flex;/*textを中央に揃える*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.voice-item-center{
    align-self: center;
    margin:0 6.0rem 6.0rem 0;
}
.voice-item img{
    margin-bottom: 2.5rem;
    width: 100%;
}
.voice-item p{
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.7;
}
/**/
/**/
/**/
/*voice<!--VOここまで-->*/
/**/
/**/
/**/



/**/
/**/
/**/
/*step<!--ST-->*/
/**/
/**/
/**/
#step{
     background-color: #007C67;
}
.step-tittle-img img {
    margin: 0 auto;
    display: block;
    margin-bottom: 4.7rem;
}
.step-tittle-img {
    margin-bottom: 12rem;
}
.step-box{
    max-width: 1100px;
    margin: 0 auto;
    padding: 10.0rem 1.5rem 8.6rem 1.5rem;    
}
.step-warpper{
    display: flex;
    /*flex-wrap: wrap;*/
    justify-content: space-between;
    align-items: baseline;
}


.step-area{
    margin: 6rem auto 0 auto;
    max-width: 307px;
    color: #fff;
}

.step-area h4{
    font-size: 2.1rem;
    font-weight: bold;
    margin: 2.0rem 0 3.0rem 0;
}
.step-area p{
    line-height: 1.7;
    font-size: 1.4rem;
}
.step-message{
    font-size: 2.0rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin: 6.0rem 0 3.0rem 0;
    line-height: 1.7;
}
a.btn-step {
    text-align: center;
    display: block;
}
.btn-box.btn-step {
    text-align: center;
}
/**/
/**/
/**/
/*step<!--STここまで-->*/
/**/
/**/
/**/




/**/
/**/
/**/
/*information<!--IN-->*/
/**/
/**/
/**/
#information{
    background: url("../img/in-bg.png")  no-repeat center center / cover;
}
.information-box{
    max-width: 1000px;
    margin: 0 auto ;
    padding: 10rem 1.5rem 40rem 1.5rem;
}
.information-tittle-img{
    text-align: center;
    margin-bottom: 15.6rem;
}
.information-item{
    display: flex;
    max-width: 775px;
    margin: 0 auto;
    margin-bottom: 6.0rem;
    
}
.information-area-01{
    display: flex;
    align-items: center;
    width: 350px;
}
.information-area-02{
    display: flex;
    align-items: center;
}
.information-text-tittle{
    font-size: 2.0rem;
    font-weight: bold;
    margin: 0 23rem 0 1.1rem;
}
.information-area-01:before{
    content: "";
    display: inline-block;
    width: 1rem;
    height: 5rem;
    position: relative;
    left: 0;
    top: 0;
    background-color: #007C67;
   
}
.information-text{
    line-height: 1.7;
    
}
/**/
/**/
/**/
/*information<!--INここまで-->*/
/**/
/**/
/**/





/**/
/**/
/**/
/*closing&footer<!--CL-->*/
/**/
/**/
/**/
 /**/
#closing{
    background: url("../img/cl-bg.png") no-repeat center center;
    height: 1100px;   
}
.closing-box {
    text-align: center;
    padding-top: 17.0rem;
}
.closing-box h2{
    display: inline-block;
    font-size: 3.4rem;
    background-color: rgba(255,244,44,0.7);
    font-weight: bold;
    color:#007C67;
    margin-bottom: 3.2rem;
}
.footer-box{
    background-color: #007C67;
    clip-path: polygon(0% 0%, 50% 30%, 100% 0, 100% 100%, 0% 100%);
    height: 500px;
    margin-top: -17rem;
    padding-top: 25.0rem;
}

.closing-item-01{
    text-align: center;
}
.closing-item-02{
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin:0 auto;
}

a.closing-btn {
    margin-bottom: 2.0rem;
}
.tel{
    font-size: 3.6rem;
    font-weight: bold;
    color:white;
    letter-spacing: 0.35rem;
    align-self: end;
}
.tel:before{
    content: url("../img/tel-mark.png");
    vertical-align: middle;
    padding-right: 5px;
    
}
.address{
    font-size: 2.8rem;
    font-weight: bold;
    color:white;
    line-height: 1.5;
    letter-spacing: 0.2rem;
}
.copyright{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:rgba(1,166,132,0.2);
    height: 80px;
}

.copyright p{
    font-size: 1.4rem;
    text-align: center;
}
/**/
/**/
/**/
/*closing&footer<!--CLここまで-->*/
/**/
/**/
/**/











/**/
/**/
/**/
/*エントリーフォームFM*/
/**/
/**/
/**/
body{
    margin: 0;
}
#form{
    padding-bottom: 6.5rem;
    text-align: center;
    background: linear-gradient(to bottom, rgba(21, 143, 0, 0.2), rgba(251, 251, 253, 0.2));  
}
.entry-tittle {
    background-color: #007C67;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
    padding: 9rem 1.5rem 9rem 1.5rem;
    text-align: center;
}
.entry-tittle img{
    max-width: 100%;
}
form{
    max-width: 800px;
    background-color: #ffffff;
    margin: 0 auto;
    text-align: center;
}
.entry-text{
    margin: 4rem 0;
    font-size: 2rem;
    text-align: center;
    color: #007C67;
    font-weight: bold;
    line-height: 1.7;
    padding: 0 2rem;
}
.entry-text span{
    background-color: #fff100;
}
.entry-subtext {
    font-size: 1.4rem;
    color: #007C67;
    margin-bottom: 6rem;
}
.form-wrapper{
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 0;
}
th{
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
    color: #007C67;
    text-align: left;
}
span.small-text {
    font-size: 12px;
}



/* Table */
    th,
    td {
        padding: 1.5rem 1.25rem 1.5rem 0;
        display: table-cell;
    }
    th {
        width: 30%;
        vertical-align: middle;
    }
    td {
        width: 70%;
        text-align: left;
    }
    span.radio-text {
        font-size: 1.8rem;
        margin-right: 2rem;
    }
.input-text{
    border: 2px solid #007C67;
    background: #fff;
    padding: 1.5rem;
    width: 100%;
    
    }
textarea{
    border: 2px solid #007C67;
    background: #fff;
    padding: 1.5rem;
    width: 100%;
    height: 80px;
    } 

.personal-tittle{
    color: #007C67;
    font-size: 1.8rem;
    text-align: left;
    font-weight: bold;
    
}
h2.personal-tittle {
    margin: 2rem 0 1.0rem 0;
}
.personal-text span{
    font-size: 1.8rem;
}
.personal-link {
    margin-bottom: 20px;
}
.personal-link a{
    font-size: 1.6rem;
}
input.btn.btn-primary{
    margin: 0 0 6.5rem 0;
    text-align: center;
}

.btn-primary {
    align-items: center;
	text-decoration: none;
	width: 300px;
	padding: 1.0rem 0rem 1.0rem 0rem;
	font-weight: bold;
	background: #fff100;
	color: #007C67;
	position: relative;
	transition: 0.5s;
    font-size: 3.6rem;
    border-radius: 100vh;
    margin-bottom: 3rem;
}

.btn-primary:hover {
	background: #007C67;
	color: #fff42c;
}


.select-01{
    border: 2px solid #0081cc;
    background: #fff;
    padding: 1.5rem;
    
}
/* 任意と必須 */
span.text-any {
    font-size: 1.4rem;
    color: #007c677d;
}
span.text-Required{
    font-size: 1.4rem;
    color: #a69701;

}

/* scroll */
.scroll-box{
    overflow:scroll;
    height: 150px;
    width: 100%;
    margin: 0 auto;
    background-color: #007c6717;
    margin-bottom: 2.5rem;
    padding: 1rem;
    line-height: 1.5;
}
.scroll-box  p{
    text-align: left;
    font-size: 1.4rem;
}
/* スクロールの幅の設定 */
.scroll-box::-webkit-scrollbar {
 width: 10px;
 height: 10px;
}
 
/* スクロールの背景の設定 */
.scroll-box::-webkit-scrollbar-track {
 border-radius: 5px;
 background: rgba(110, 108, 108, 0.2);
}
 
/* ドラックできるスクロール部の設定 */
.scroll-box::-webkit-scrollbar-thumb {
 border-radius: 5px;
 background: #007C67;
}
/**/
/*ラジオボタン*/
/**/
.radio-btn {
    position: relative;
    margin: 5px 0;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
    font-size: 1.6rem;
    margin-left: 15px;
  }
 
  /* ラジオボタンは非表示（透明化 requiredを使用したいため） */
 .radio-btn input[type=radio] {
   position: absolute;
   opacity: 0;
   z-index: -1; 
 }
 
  .radio-text {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border: solid 2px #007C67;
    border-radius: 50%;
    box-sizing: border-box;
  }
  
  .radio-text:after {
    content: "";
    position: absolute;
    background: #0081cc;
    border-radius: 50%;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    opacity: 0;
  }
  
   .radio-btn input:checked + .radio-text:after {
    opacity: 1;
  }
 /**/
 /*チェックボックス*/
 /**/
 .check-btn {
    position: relative;
    margin: 5px 0;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
    font-size: 1.6rem;
    margin-left: 15px;
  }
 
 
  .check-text {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    border: solid 2px #007C67;
    box-sizing: border-box;
  }
  
  .check-text:after {
      content: "";
      opacity: 0;
      display: block;
      width: 16px;
      height: 10px;
      border-left-width: 2px;
      border-bottom-width: 2px;
      border-color: #007C67;
      transform: rotate(-45deg);
  }
  
   .check-btn input:checked + .check-text:after {
    opacity: 1;
  }
  /* チェックボックスは非表示（透明化 requiredを使用したいため） */
 .check-btn input[type=checkbox] {
   position: absolute;
   opacity: 0;
   z-index: -1; 
 }
/**/
/**/
/**/
/*エントリーフォームFMここまで*/
/**/
/**/
/**/



/**/
/**/
/**/
/*success*/
/**/
/**/
/**/
#success{
    text-align: center;
    background: linear-gradient(to bottom, rgba(21, 143, 0, 0.2), rgba(251, 251, 253, 0.2)); 
}
.success-tittle{
    background-color: #007C67;
    clip-path: polygon(0 0, 100% 0%, 100% 84%, 50% 100%, 0 84%);
    padding: 9.0rem 1.5rem 9.0rem 1.5rem;
}
.success-warpper{
    max-width: 770px;
    margin: 0 auto;
    padding: 6.2rem 0;
}

.success-warpper h1{
    font-size: 4.0rem;
    color: #007C67;
    font-weight: bold;
    
}
.success-text{
    margin: 4.0rem 0 6.0rem 0;
    font-size: 2.0rem;
    text-align: center;
    color: #007C67;
    font-weight: bold;
    line-height: 1.7;
}
.success-text span{
    background-color: rgba(255,244,44,0.7);
}
.success-warpper a{
    font-size: 2.0rem;
    color: #0071b0;

}


a.success-btn {
	display: flex;
    justify-content: space-evenly;
    align-items: center;
	text-align: center;
	text-decoration: none;
	width: 220px;
	margin: auto;
	padding: 1rem 4rem 1rem 3rem;
	font-weight: bold;
	background: #007C67;
	color: #fff42c;
	border-radius: 100vh;
	position: relative;
	transition: 0.5s;
}
a.success-btn::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff42c;
	border-right: 2px solid #fff42c;
	transform: rotate(230deg);
}
a.success-btn:hover {
	background: #069981;
	color: #fff42c;
}
/**/
/**/
/**/
/*successここまで*/
/**/
/**/
/**/





/* 600px〜959px：タブレット
------------------------------ */
@media screen and (min-width:640px) and (max-width:959px) {
/*targeting*/
#targeting img {
    max-width: 40%;
    align-self: center;
}
#targeting img {
    max-width: 45%!important;
}
.targeting-warpper01{
    justify-content: center;
}
/*pr*/
.pr-item01 img {
    max-width: 30%;
    object-fit: contain;
    margin-bottom: 2.0rem;
}
.pr-item02 p {
    margin-left: 0;
}
.pr-warpper02-img img{
        width: 100%;
    }
img.pr-center-order {
    order: 2;
}

/*voice*/
img.voice-human {
    width: 30%;
    align-self: center;
}
.voice-item img {
    width: 90%;
}



/*step*/
.step-warpper {
    display: block;
    justify-content: space-between;
    align-items: center;
}
img.step-point {
    transform: rotate( 90deg );
    display: block;
    margin: 0 auto;
}
.step-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}
.step-area {
    margin: 6rem auto 0 auto;
    max-width: 500px;
}
    .step-img-pic{
        width: 30%;
    }


/*information*/
.information-box {
    padding: 10rem 1.5rem 20rem 1.5rem;
}
.information-warpper {
    padding: 0 6rem;
}   
/*closing*/
.closing-box h2{
    font-size: 3.0rem;
    margin-top: -2rem;
}
.footer-box{
     padding: 25rem 1.5rem 0 1.5rem;   
 }   
.logo {
    font-size: 5.0rem;
    margin-bottom: 0;
}
.tel {
    font-size: 3rem;
}
.address {
    padding-top: 2rem;
}
.copyright {
    height: 30px;
}





.block{
    background-color:gray;
    height: 100vh;
    position: relative;
}
.block h1{
    font-size: 6.0rem;
    text-align: center;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 80%;
    height: 3.2rem;
}