@charset "utf-8";

.content_area {
	max-width: 1920px;
	padding: 0 0 100px;
}

h3 {
	margin-top: 100px;
}

.flow {
	margin: 100px auto;
}

.flow ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.flow ul li {
	background-color: #fff;
	border: 1px solid #0084DD;
	;
	font-weight: bold;
	color: #0084DD;
	;
	height: 80px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	text-align: center;
	font-size: 1.4rem;
	position: relative;
	margin-right: 30px;
}

.flow ul li:last-child {
	margin-right: 0;
}

.flow ul li:after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #0084DD;
	;
	border-right: 2px solid #0084DD;
	;
	position: absolute;
	right: -16px;
	top: 50%;
	transform: rotate(45deg) translate(0, -50%);
}

.flow ul li:last-child:after {
	display: none;
}

.entry p {
	margin-bottom: 20px;
}

.entry div a:first-child {
	margin-right: 80px;
}

.flow ul li:after {
	right: -53px;
}

@media (max-width: 768px) {
	h3 {
    	margin-top: 50px;
	}
	.flow {
		margin: 60px auto;
	}

	.flow ul {
		display: block;
		margin-bottom: 10px;
		padding-left: 0;
	}

	.flow ul li {
		height: auto;
		padding: 15px 20px !important;
		display: block;
		margin-bottom: 25px;
		margin-right: 0 !important;
	}

	.flow ul li:after {
		right: 50% !important;
		top: auto;
		bottom: -14px;
		transform: rotate(135deg) translate(0%, 0%);
	}

	.flow ul li:last-child {
		margin-right: 0;
	}


}