@charset "utf-8";

.step {
	display: flex;
	gap: 4px;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
	.step {
		flex-direction: column;
	}
}
.stepItem {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 20px 15px 20px 10px;
	border: 2px solid #ccc;
	font-size: 13px;
	position: relative;
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
	.stepItem {
		font-size: 14px;
	}
}
.stepItem + .stepItem::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #77849b;
	border-right: 0;
	position: absolute;
	top: 50%;
	left: -11px;
	transform: translateY(-50%);
}
@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
	.stepItem + .stepItem::before {
		border-top: 12px solid transparent;
		border-bottom: 12px solid transparent;
		border-left: 17px solid #77849b;
		top: -15px;
		left: 50%;
		transform: translateX(-50%) rotate(90deg);
	}
}
.stepItem.stepItemAfter {
	border-color: #2661a5;
}
.stepItem li {
	text-indent: -1em;
	margin-left: 1em;
	white-space: nowrap;
}

@media only screen and (max-device-width: 1280px) and (max-width: 640px) {
	.column-three_child:last-child {
		margin-bottom: 0 !important;
	}
}
