/*------------------------
 * c-flow
 *------------------------*/
.c-flow {
}

.c-flow__item {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	gap: 10px;
}
.c-flow__item li {
	width: calc((100% - (10px * (3 - 1))) / 3);
	min-width: calc((100% - (10px * (3 - 1))) / 3);
}
.c-flow__item li button {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	padding: 10px 0px;
	font-weight: 700;
	background-color: #eeeeee;
	border: 1px solid #cccccc;
	cursor: pointer;
}
.c-flow__item li button::after {
	content: '';
	display: block;
	width: 44px;
	height: 44px;
	background-size: contain;
	background-repeat: no-repeat;
}
.c-flow__item li:nth-of-type(1) button::after {
	background-image: url('/img/flow/icon01_b.png');
}
.c-flow__item li:nth-of-type(2) button::after {
	background-image: url('/img/flow/icon02_b.png');
}
.c-flow__item li:nth-of-type(3) button::after {
	background-image: url('/img/flow/icon03_b.png');
}
.c-flow__item li button:hover,
.c-flow__item li button.is_active {
	color: #ffffff;
	background-color: #e70012;
	border: 1px solid #e70012;
}
.c-flow__item li:nth-of-type(1) button:hover::after,
.c-flow__item li:nth-of-type(1) button.is_active::after {
	background-image: url('/img/flow/icon01_a.png');
}
.c-flow__item li:nth-of-type(2) button:hover::after,
.c-flow__item li:nth-of-type(2) button.is_active::after {
	background-image: url('/img/flow/icon02_a.png');
}
.c-flow__item li:nth-of-type(3) button:hover::after,
.c-flow__item li:nth-of-type(3) button.is_active::after {
	background-image: url('/img/flow/icon03_a.png');
}

.c-flow__tabbody {
	display: none;
}
.c-flow__tabbody.is_active {
	display: block;
}

.c-flow__comment01 {
	margin-bottom: 20px;
	padding: 0 20px;
	font-size: 16px;
}

.c-flow__img01 {
}
.c-flow__img01 img {
	display: block;
	width: 100%;
}

.c-flow__img02 {
	width: 280px;
	margin-left: auto;
	margin-right: auto;
}
.c-flow__img02 img {
	display: block;
	width: 100%;
}
.c-flow__img02 figcaption {
	margin-top: 10px;
	font-size: 16px;
	text-align: center;
}

.c-flow__flex {
	display: flex;
	justify-content: space-around;
	margin-top: 20px;
}
.c-flow__flex figure {
	width: 280px;
}
.c-flow__flex figure img {
	display: block;
	width: 100%;
}
.c-flow__flex p {
	width: calc(100% - 280px -20px);
	margin-left: 20px;
}
.c-flow__flex p a {
	color: #0000EE;
	text-decoration: underline;
}
.c-flow__flex p a:hover {
	text-decoration: none;
}
.c-flow__flex p span {
	font-weight: 700;
	color: #e70012;
}


