@charset "UTF-8";


.flow{
	background: #f3f9f1;
	padding-top: 70px;
	padding-bottom: 100px;
}

@media screen and (max-width:767px){
	.flow{
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

.step_list{
	margin-top: 60px;
}

.step_list .header_adjust {
    padding-top: 70px;
    margin-top: -70px;;
}

.step_list .step{
	padding:70px 5%;
	background-color: #fff;
	border-radius: 6px;
	box-sizing: border-box;
	margin-bottom: 50px;
}


.step .step_title{
	border-radius: 4px;
	background: #38b349;
	padding:9px 25px;
	box-sizing: border-box;
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.1em;
	line-height: 1.5;
	color: #fff;
	margin-bottom: 35px;
}

.step .step_title .number{
	position: relative;
	font-family: 'Lato', sans-serif;
	/*font-size: 22px;*/
	padding-right: 40px;
	letter-spacing: 0.05em;
	font-weight: bold;
}

.step .step_title .number:after{
	content: "";
	position: absolute;
	width: 2px;
	height: 17px;
	right: 19px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;

}

.step .flex_box{
	display: flex;
	justify-content: space-between;
}

.step .flex_box .image{
	width: 50%;
	/*max-width: 300px;*/
}

.step .flex_box .text_box{
	width: 45%;
	max-width: 490px;
}

.step .flex_box .text_box li{
	position: relative;
	padding-left: 32px;
	box-sizing: border-box;
}

.step .flex_box .text_box li:not(:last-of-type){
	margin-bottom: 30px;
}

.step .flex_box .text_box li .number{
	position: absolute;
	left: 0;
	top: 0px;
	width: 26px;
	height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Lato', sans-serif;
	font-weight: bold;
	font-size: 14px;
	letter-spacing: 0.2em;
	color: #fff;
	background-color: #F24C39;
	border-radius: 50%;
	box-sizing: border-box;
}

.step .flex_box .text_box li .cap{
	font-weight: 500;
	font-size: 18px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	color: #f24c39;
	margin-bottom: 10px;
}

.step .flex_box .text_box li p{
	letter-spacing: 0.2em;
	line-height: 1.4;
}

.step .flex_box .text_box li p a{
	text-decoration: underline;
}

.step .flex_box .text_box li p.step_attention{
	position: relative;
	padding-left:1.2em;
	font-size: 14px;
}

.step .flex_box .text_box li p.step_attention .mark{
	position: absolute;
	left: 0;
	top: 0;
	color: #F24C39;
}

.step .flex_box .text_box li p:not(:last-of-type){
	margin-bottom: 15px
}

.step .flex_box .text_box li p.step_attention:not(:last-of-type){
	margin-bottom: 10px
}


.step .flex_box .text_box .attention{
	
	margin-top: 50px;
	padding:25px 0;
	border-top:1px solid #38B349;
	border-bottom:1px solid #38B349;
	font-size: 14px;
	letter-spacing: 0.2em;
	line-height: 1.5;
}

.step .flex_box .text_box .attention p{
	position: relative;
	padding:0 1.3em;
}

.step .flex_box .text_box .attention p:nth-of-type(n+2){
	margin-top: 5px;
}

.step .flex_box .text_box .attention .mark{
	position: absolute;
	top: 0;
	left: 0;
	color:#38B349;
}


@media screen and (max-width:767px){
	.step_list{
		margin-top: 40px;
	}

	.step_list .step{
		padding:40px 20px;

	}

	.step .step_title{
		padding:10px 15px;
		font-size: 18px;
	}

	.step .step_title .number{
		font-size: 20px;
	}

	.step .flex_box{
		flex-direction: column;
	}

	.step .flex_box .image{
		width: 100%;
		max-width: initial;
		text-align: center;
		margin-bottom: 20px;
	}

	.step .flex_box .text_box{
		width: 100%;
		max-width: initial;
	}

	.step .flex_box .text_box li .cap{
		font-size: 16px;
	}

	.step .flex_box .text_box li .number{
		width: 20px;
		height: 20px;
	}

	.step .flex_box .text_box li p.step_attention{
		font-size: 12px;
	}

	.step .flex_box .text_box .attention{
		margin-top: 30px;
	}

}