@charset "utf-8";

.flow_inner2{
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
}
.flow_box2{
	width: 30%;
	position: relative;
	z-index: 10;
	background-color: var(--whiteColor);
	border: dashed 2px var(--orangeColor);
	border-radius: 8px;
	padding: 23px 33px 27px;
	box-sizing: border-box;
	margin-bottom: 40px;
	
	& h4{
		color: var(--orangeColor);
		font-weight: bold;
		font-size: 14px;
		margin-bottom: 6px;
	}
	& h5{
		font-weight: bold;
		font-size: 22px;
		margin-bottom: 22px;
	}
	& p{
		font-size: 15px;
		line-height: 1.6;
	}
}
.flow_arrow2{
	position: absolute;
	z-index: 10;
	top: 0;
	bottom: 0;
	right: -53px;
	width: 40px;
	height: 0;
	margin: auto 0;
	border-top: solid 25px var(--orangeColor);
	border-inline: solid 25px transparent;
	box-sizing: border-box;
	transform: rotate(-90deg);
}
.flow_bottom{
	margin-bottom: 100px;
}


/* ---------------イプシロン導入の流れ(利用の流れのCSS流用)----------------- */

.flow_inner {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	background-color: var(--whiteColor);
	padding: 50px 0;
}
.flow_box_wrapper {
	margin: 50px 0;
}
.flow_box {
	display: flex;
	justify-content: center;
}
.flow_cont_ep{
	width: 100%;
	max-width: 600px;
	margin-top: 6px;
	
	& h5{
		font-size: 20px;
		font-weight: 700;
		margin-bottom: 10px;
		line-height: 1.5;
		border-bottom: 2px dotted var(--orangeColor);
		padding-bottom: 5px;
	}
	& p{
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 30px;
	}
}
.flow_arrow {
	text-align: center;
	margin: 20px 0;
	
	& img{
		width: 60px;
	}
}
.flow_img_ep {
	width: 110px;
	margin-right: 40px;
	text-align: center;
	
	& img{
		width: 85%;
	}
}


@media only screen and (max-width:960px) {
	
	.flow_inner2{
		display: block;
		width: 75%;
	}
	.flow_box2{
		width: 100%;
		padding: 6vw;
		margin-bottom: 15vw;
		
		& h4{
			font-size: 4.4vw;
			margin-bottom: 2vw;
		}
		& h5{
			font-size: 6vw;
			margin-bottom: 5vw;
		}
		& p{
			font-size: 4vw;
		}
	}
	.flow_arrow2{
		transform: rotate(0);
		top: inherit;
		left: 0;
		right: 0;
		bottom: -11vw;
		margin: 0 auto;
		width: 12vw;
		border-width: 7.2vw;
	}
	
	/*---------------イプシロン導入の流れ(利用の流れのCSS流用)-----------------*/
	.flow_inner {
		background-color: transparent;
		padding: 0;
	}
	.flow_box_wrapper{
		margin: 0;
	}
	.flow_box {
		padding: 0;
		justify-content: space-between;
	}
	.flow_img_ep {
		width: 27%;
		margin: 3px 3% 0 0;
	}
	.flow_cont_ep {
		& h5{
			font-size: 5.4vw;
			margin-bottom: 3vw;
		}
		& p{
			font-size: 4.2vw;
			margin-bottom: 3vw;
		}
	}
	.flow_arrow {
		margin: 4vw 0 11vw;
		
		& img{
			width: 10vw;
		}
	}
}
