/*-- //flow --*/
.flow {
	display: flex;
	justify-content: space-between;
}
.flow__item > .step {
	display: inline-block;
	background: #0b3190;
	color: #fff;
	padding: 2px 12px;
	border-radius: 5px;
	font-size: 1.6rem;
	font-weight: 700;
}
.flow__item {
	position: relative;
	display: block;
	background: #def1f7;
	padding: 30px 20px;
	text-align: center;
}
.flow__item:last-child {
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.1em;
}
.flow__item:not(:last-child)::after {
	content: '';
	display: block;
	position: absolute;
	background: #def1f7;
	z-index: 1;
}
.flow__item__img-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}
@media print, screen and (min-width: 768px) {
	.flow[data-flow-length="4"] > .flow__item {
		width: 30.5%;
	}
	.flow[data-flow-length="4"] > .flow__item:first-child {
		border-radius: 10px 0 0 10px;
	}
	.flow[data-flow-length="4"] > .flow__item:last-child {
		border-radius: 0 10px 10px 0;
		width: 7%;
		background: #0b3190;
	}
	.flow__item:last-child {
		writing-mode: vertical-rl;
	}
	.flow__item > .title {
		margin: 20px auto 10px;
		font-size: 1.4em;
		font-weight: 700;
		line-height: 1.4;
	}
	.flow__item__img-wrap {
		height: 120px;
	}
	.flow__item__img {
		max-height: 96px;
		width: auto;
	}
	.flow__item__comment {
		margin-top: 1.6em;
	}
	.flow__item:not(:last-child)::after {
		top: 50%;
		right: -16px;
		margin-top: -13px;
		width: 26px;
		height: 26px;
		border-top: 5px solid #fff;
		border-right: 5px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}
@media print, screen and (max-width: 767px) {
	.flow {
		flex-direction: column;
		margin-top: 1.5em !important;
	}
	.flow__item {
		flex-direction: column;
		padding: 20px 10px 30px;
	}
	.flow__item:not(:first-child):not(:last-child) {
		flex-direction: column;
		padding: 28px 10px;
	}
	.flow__item:not(:last-child) {
		border-bottom: 4px solid #fff;
	}
	.flow__item:not(:last-child)::after {
		top: inherit;
		bottom: -12px;
		right: 50%;
		margin-top: inherit;
		margin-right: -11px;
		width: 20px;
		height: 20px;
		border-top: 4px solid #fff;
		border-right: 4px solid #fff;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.flow[data-flow-length="4"] > .flow__item:first-child {
		border-radius: 8px 8px 0 0;
	}
	.flow[data-flow-length="4"] > .flow__item:last-child {
		border-radius: 0 0 8px 8px;
		background: #0b3190;
		padding: 5px 10px 10px;
	}
	.flow__item > .step {
		font-size: 1.4rem;
	}
	.flow__item > .title {
		margin: 15px auto 10px;
		font-size: 1.2em;
		font-weight: 700;
		line-height: 1.2;
	}
	.flow__item__img-wrap {
		height: 120px;
		margin: 10px auto;
	}
	.flow__item__img-wrap:first-child {
		margin-top: 0;
	}
	.flow__item__img {
		max-height: 100px;
		width: auto;
	}
}
/*-- //flow --*/