

/*----------------------------------------------
共通部分
----------------------------------------------*/

body {
	font-size: 17px;
}


.txt{
	width: 94%;
	margin: 0 auto 0;
}


.mb1{margin-bottom:1.2rem;}
.mb2{margin-bottom:2.2rem;}



/*** キャッチ ***/

#catch{
	background: #f6f6f6;
	padding-top: 1.5rem;
	padding-bottom: 3rem;
}

#catch .regist_ttl{
	margin-top: -1.5rem;
}



/*** 的中実績 ***/

#hit{
	background: #ffefae;
	color: #f73e0d;
	padding-bottom: 2rem;
}

.ttl_01{
	position:relative;
	top: -0.7rem;
	margin-bottom: 15px;
}





/*** 手順 ***/

#step{
	background: #ffcbe8;
	color: #e90546;
	padding-top: 1.2rem;
	padding-bottom: 1.7rem;
	font-weight: bold;
}

.ttl_02{
	margin-bottom: 1.6rem;
}

#step ul li{
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-top: 1rem;
	background: linear-gradient(#febede, #ffcbe8);
}

#step ul li figure{
	width: 20%;
	padding-left: 1rem;
}
#step ul li div{
	width: 80%;
	padding:0 1rem 0;
}





/*** お客様の声 ***/

#voice{
	background: #e7dfff;
	color: #2947ab;
	padding-top: 1.9rem;
	padding-bottom: 1.7rem;
}

.ttl_03{
	/*position:relative;
	top: -1.3rem;*/
	margin-bottom: 15px;
}

#voice .voice_box li{
	background-color: #ffffff;
	width: 92%;
	margin: 0 auto 1.2rem;
	padding: 15px;
	background:linear-gradient(-45deg, transparent 15px, #fff 0);
	posirion: relative;
	font-size: 15px;
}

#voice .voice_box li div p{
	border-bottom: 3px solid #e7dfff;
	padding-bottom: 10px;
	margin-bottom: 13px;
	padding-left: 3.5rem;
	font-weight: bold;
	font-size: 17px;
}

#voice .voice_box li div p img{
	width: 55px;
	height: 55px;
	position: absolute;
	top: -5px; left: 11px;
}


/*** テキスト ***/

.ttl_04{
	position:relative;
	top: -0.7rem;
}

#txt{
	background: #d0e7bb;
	color: #035d3b;
	padding-top: 0.2rem;
	padding-bottom: 2.2rem;
}

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



.txt_02 p{width: 80%;}
.txt_02 img{width: 20%;}



/*.txt_02{
position: relative;
}

.bike_money{
	width: 30%;
	position: absolute; top: 0px; right: 0px;
}*/




/*** キャッチ ***/

#catch02{
	background: #f6f6f6;
	padding-top: 2.5rem;
	padding-bottom: 3rem;
}


#catch02 .regist_ttl{
	margin-top: -1.6rem;
}




.LP_catch .top_bar_01{
	display:block;
	width: 100%;
	background: #ffffff;
	padding: 7px 7px 7px 10px;
}


.LP_catch .top_bar_01{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.LP_catch .top_bar_01 h1 span{ font-size: 12px; letter-spacing: 0.1;}

.LP_catch .top_bar_01 h1 img{ height: 30px;}

.LP_catch .top_bar_01 a img{ height: 28px;}



.lp_content{
	min-height:100vh;
	padding: 0;
	max-width: 750px;
	margin: 0 auto;
}


#fixed-header {
	position: fixed;
	top: -70px; 
	width: 100%;
	background: #ffffff;
	transition: .5s;
	z-index:9999;
	height:50px;
}

#fixed-header.is-show { top: 0;}

#header_inner{
	height:50px;
	background: #ffffff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	position: relative;
}








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

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

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


/*--- cssアニメーション ここから ---*/
.keyframe {
  animation-name: anim_sc;
  transform: scale(0.9, 0.9);
}

@keyframes anim_sc {
  100% {
    transform: scale(1, 1);
  }
}

.animation {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

/*--- cssアニメーション ここまで ---*/



/********アニメーション＞ふわふわ********/
.fluffy{animation:fluffy 1.2s linear infinite;}
	@keyframes fluffy{
		0%{transform:scale(1.0,1.0);}
		50%{transform:scale(1.04,1.04);}
		100%{transform:scale(1.0,1.0);}
	}


