@charset "utf-8";
/* CSS Document */
.step_flow{
	overflow: hidden;
	width: 100%;
}

.step_flow li:nth-child(1){ background: #58A9B7; }
.step_flow li:nth-child(2){ background: #58ABA5; }
.step_flow li:nth-child(3){ background: #57AE93; }
.step_flow li:nth-child(4){ background: #57B080; }
.step_flow li:nth-child(5){ background: #56B26E; }

.step_flow li:nth-child(1) span:before{ content: "STEP1"; }
.step_flow li:nth-child(2) span:before{ content: "STEP2"; }
.step_flow li:nth-child(3) span:before{ content: "STEP3"; }
.step_flow li:nth-child(4) span:before{ content: "STEP4"; }
.step_flow li:nth-child(5) span:before{ content: "STEP5"; }


@media (max-width: 600px) {
.step_flow {
	width: 90%;
	margin: 0 auto;
}
.step_flow li{
	text-align: left;
	font-size: 12px;
	padding: 10px 10px 10px 85px;
	margin-bottom: 20px;
	color: #fff;
	border-radius: 5px;
	position: relative;
}
.step_flow li span:before{
	position: absolute;
	top: 11px;
	left: 10px;
	font-size: 11px;
	line-height: 15px;
	padding: 0 15px;
	background: #fff;
	color: #287C60;
	border-radius: 30px;
}
.step_flow li:after{
	position: absolute;
	bottom: -20px;
	left: 35px;
	content: "";
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top: 10px solid #f00;
}

.step_flow li:nth-child(1):after{ border-top: 10px solid #58A9B7; }
.step_flow li:nth-child(2):after{ border-top: 10px solid #58ABA5; }
.step_flow li:nth-child(3):after{ border-top: 10px solid #57AE93; }
.step_flow li:nth-child(4):after{ border-top: 10px solid #57B080; }
.step_flow li:nth-child(5):after{ border: none; }

}
