@charset "utf-8";
.under {
	background:linear-gradient(transparent 60%, #ff6 60%);
	font-weight: bold;
}
.mini_headline {
	font-weight: bold;
	color: #007943;
	position: relative;
	border-bottom: 1px dashed #007943;
	margin-bottom: 5px;
	padding-left: 20px;
}
.mini_headline::before {
	content: "■";
	position: absolute;
	left: 0;
}

.flow_box .f_box {
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}
.flow_box .f_box::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-top: 20px solid #007943;
	border-right: 50px solid transparent;
	border-left: 50px solid transparent;
}
.flow_box .f_box:first-of-type {
	margin-top: 40px;
}
.flow_box .f_box:last-of-type {
	padding-bottom: 0;
	margin-bottom: 0;
}
.flow_box .f_box:last-of-type::before {
	border: none;
}
.flow_box .f_box dt {
	margin-bottom: 10px;
	font-weight: bold;
	padding-bottom: 5px;
	border-bottom: 2px dashed #007943;
	font-size: 1.2em;
	line-height: 1;
}
.flow_box .f_box dt .flow_number {
	color: #007943;
	font-family: "Anton SC", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.6em;
	padding-right: 5px;
}
.flow_box .f_box dd {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.flow_box .f_box dd img {
	width: 140px;
	height: auto;
	margin-right: 20px;
}
.flow_box .f_box dd p {
	width: calc(100% - 160px);
}

.p_list {
	max-width: 500px;
	width: 100%;
	margin: 20px auto 0;
}
.p_list dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border: 1px solid #ccc;
	border-bottom: none;
}
.p_list dl:last-of-type {
	border-bottom: 1px solid #ccc;
}
.p_list dl dt,
.p_list dl dd {
	padding: 10px;
	font-weight: bold;
	text-align: center;
}
.p_list dl dt {
	background-color: #eee;
	border-right: 1px solid #ccc;
	width: 60%;
}
.p_list dl dd {
	width: 40%;
	color: #ff0000;
}


@media only screen and (max-width: 768px){
	.flow_box .f_box dd img {
		margin: 10px auto;
	}
	.flow_box .f_box dd p {
		width: 100%;
	}
}