@charset "utf-8";
/* CSS Document */

.webFlow {
}

.webFlow_contents {
}
.webFlow_contents_title {
	color: var(--color_orange);
	text-align: center;
	border: 1px solid var(--color_orange);
}
.webFlow_contents_inn {
	display: flex;
	justify-content: center;
	align-items: center;
}
.webFlow_lists {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
.webFlow_lists:before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	height: 100%;
	background: #eee;
}
.webFlow_list {
	position: relative;
}
.webFlow_list_inn {
	position: relative;
}
.webFlow_list_inn:before,
.webFlow_list_inn:after {
	content: "";
	display: block;
	position: absolute;
}
.webFlow_list_inn:before {
	background: var(--color_lightblue);
	border-radius: 50%;
}
.webFlow_list_inn:after {
	border-bottom: 2px dotted #999;  
}

.webFlow_list_title {
	display: flex;
	align-items: center;
}
.webFlow_list_num {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	border-radius: 100%;
	background: var(--color_lightblue);
}
.webFlow_list_text {
}

.webFlow_contents_afterword {
	color: var(--color_orange);
	text-align: center;
	border: 1px solid var(--color_orange);
}


/* --------------------------------------------------
PC
-------------------------------------------------- */
@media screen and (min-width: 768px) {
	.webFlow_contents {
	}
	.webFlow_contents_title {
		width: 50%;
		font-size: 18px;
		margin: 0 auto 20px;
		padding: 5px 0;
	}
	.webFlow_contents_inn {
		margin-bottom: 20px;
		padding: 0 10px;
	}
	.webFlow_lists {
	}
	.webFlow_lists:before {
		width: 20px;
		border-radius: 40px;
	}
	.webFlow_list {
		padding: 10px;
	}
	.webFlow_list_inn {
		padding-left: 70px;
	}
	.webFlow_list_inn:before {
		top: 14px;
		left: -3px;
		width: 8px;
		height: 8px;
	}
	.webFlow_list_inn:after {
		top: 17px;
		left: 15px;
		width: 50px;
	}

	.webFlow_list_title {
		height: 34px;
		font-size: 17px;
	}
	.webFlow_list_num {
		width: 34px;
		height: 34px;
		font-size: 15px;
		margin-right: 5px;
	}
	.webFlow_list_text {
		font-size: 15px;
		padding: 10px 5px;
	}

	.webFlow_contents_afterword {
		width: 50%;
		font-size: 18px;
		margin: 0 auto;
		padding: 5px 0;
	}
}


/* --------------------------------------------------
スマホ
-------------------------------------------------- */
@media all and (max-width: 767px) {
	.webFlow_contents {
	}
	.webFlow_contents_title {
		width: 96%;
		font-size: 4vw;
		margin: 0 auto 4vw;
		padding: 1vw 0;
	}
	.webFlow_contents_inn {
		margin-bottom: 4vw;
		padding: 0 2vw;
	}
	.webFlow_lists {
	}
	.webFlow_lists:before {
		width: 4vw;
		border-radius: 8vw;
	}
	.webFlow_list {
		padding: 2vw;
	}
	.webFlow_list_inn {
		padding-left: 16vw;
	}
	.webFlow_list_inn:before {
		top: 2vw;
		left: -1vw;
		width: 2vw;
		height: 2vw;
	}
	.webFlow_list_inn:after {
		top: 3vw;
		left: 3vw;
		width: 12vw;
	}

	.webFlow_list_title {
		height: 6.5vw;
		font-size: 4vw;
	}
	.webFlow_list_num {
		width: 6.5vw;
		height: 6.5vw;
		font-size: 3.5vw;
		margin-right: 1vw;
	}
	.webFlow_list_text {
		font-size: 3.25vw;
		padding: 2vw 1vw;
	}

	.webFlow_contents_afterword {
		width: 96%;
		font-size: 4vw;
		margin: 0 auto;
		padding: 1vw 0;
	}

}
