/*balloon
----------------------------------------------------- */

.balloon {
	color: #FFF;
	font-size: 18px;
	margin-bottom: 20px;
	padding: 10px;
	position: relative;
	text-align: center;
	border-radius: 5px
}
.balloon:after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	margin-left: -10px;
	display: block;
	border-style: solid;
	border-width: 10px 10px 0px 10px
}
.balloon_red {
	background: #ff0000
}
.balloon_red:after {
	border-color: #ff0000 transparent
}
.balloon_pink {
	background: #f9c
}
.balloon_pink:after {
	border-color: #f9c transparent
}
.balloon_green {
	background: #5EA8A7
}
.balloon_green:after {
	border-color: #5EA8A7 transparent
}
.balloon_gray {
	background: #6e6e6e
}
.balloon_gray:after {
	border-color: #6e6e6e transparent
}

/*point
----------------------------------------------------- */
.point {
	margin: 0 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.point li {
	width: 32%
}

/*flow
----------------------------------------------------- */
.flow {
	margin: 0 10px;
	}

.flow--min {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.flow--min li {
	width: 24%
}

.flow--min li img {
	border: 2px solid #5EA8A7;
	box-sizing: border-box
}
.flow li {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background: #eee;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 25px;
	padding: 10px;
	position: relative;
	width: 100%;
	box-sizing: border-box;
	border-radius: 5px
}


.flow li:not(:last-child):after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	margin-left: -20px;
	display: block;
	border-style: solid;
	border-width: 20px 20px 0px 20px;
	border-color: #eee transparent
}
.flow li img {
	width: 32%
}

.flow li div {
	width: 65%
}
