@charset "UTF-8";

.box_flow{
	display: flex;
	justify-content: space-evenly;
}
.box_flow .col{
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: calc(calc(100% - 60px) / 4);
	border: 2px solid #65ad29;
	text-align: center;
	align-items: center;
}
.box_flow .col:not(:last-of-type)::before{
	position: absolute;
	top: calc(50% - 10px);
	bottom: calc(50% - 10px);
	right: -20px;
	margin-right: -20px;
	content: "";
	vertical-align: middle;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	border: 20px solid transparent;
	border-left: 20px solid #65ad29;
}
.box_flow .col .col_head{
	color: #fff;
	background: #65ad29;
	font-weight: normal;
	padding: 5px;
	width: 100%;
}
.box_flow .col .col_img,
.box_flow .col .col_txt{
	margin: 30px 20px;
}
.box_flow .col .col_txt{
	margin-top: 0;
}
.box_flow .col .col_img{
	max-width: max-content;
}
.txt_big{
	font-size: 120%;
}
.f_center{
	align-items: center;
}
.pc_only {
	display: none;
}
.sp_only{
	display: none;
}

@media only screen and (min-width: 991px) {
	.pc_only {
		display: inline-block;
	}
}
@media only screen and (max-width: 767px){
	.sp_only{
		display: inline-block;
	}
	.box_flow{
		display: block;
	}
	.box_flow .col{
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	.box_flow .col:not(:last-of-type)::before{
		top: 100%;
		right: auto;
		bottom: -55px;
		margin: auto;
		border-top: 20px solid #65ad29;
		border-left: 20px solid transparent;
	}
}