@charset "UTF-8";



/* ------------------------------
	.flow
------------------------------ */
.main_img img{
	width: 100%;
}

.flow{
	padding: 60px 0 0;
}

.flow .txt_center{
	margin-bottom: 95px;
	text-align: center;
}

.flow_list{
	padding-left: 23px;
}

.flow_box{
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: 0 0 100px 70px;
	border-left: 1px solid #cccccc;
}
.flow_box + .flow_box{
	margin-top: 12px;
}
.flow_box:last-child::before{
	position: absolute;
	left: -25px;
	bottom: 12px;
	content: "";
	display: block;
	width: 30px;
	height: 1px;
	background: #cccccc;
	transform: rotate(55deg);
}

.flow_box .num{
	position: absolute;
	top: 0;
	left: -23px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	background: #f08803;
	box-shadow: 0.5rem 0.5rem 0 #dfdfdf;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
}

.flow_box .img{
	width: 390px;
}

.flow_box .txt_box{
	width: 643px;
}

.flow_box .ttl{
	margin-bottom: 25px;
	font-size: 2.3rem;
	font-weight: bold;
	line-height: 1.6;
}
@media screen and (min-width: 769px) {
	.flow_box .ttl{
		display: flex;
		align-items: center;
		min-height: 46px;
	}
}

.bg_box{
	padding: 30px 30px 45px;
	margin-top: 35px;
	background: #eeeeee;
}

.bg_box .box_ttl{
	margin-bottom: 15px;
	line-height: 1.8;
}

.bg_box .box_list{
	display: flex;
	flex-wrap: wrap;
}

.bg_box .box_list li:not(.flow_btn),
.bg_box .box_list .flow_btn a{
	display: block;
	padding: 1.5rem 3rem;
	background: #fff;
	font-size: 1.4rem;
	line-height: 1.6;
	font-weight: bold;
}
@media screen and (min-width: 769px){
	.bg_box .box_list.col2 li{
		width: calc(50% - 9px);
	}
	.bg_box .box_list.col2 li:nth-child(even){
		margin-left: 18px;
	}
	.bg_box .box_list.col2 li:nth-child(n + 3){
		margin-top: 18px;
	}
	.bg_box .box_list.col3 li:not(.flow_btn),
	.bg_box .box_list.col3 .flow_btn a{
		width: calc(33.3333% - 8px);
		padding: 1.5rem 2.5rem;
		text-align: center;
	}
	.bg_box .box_list.col3 li + li{
		margin-left: 12px;
	}
	.bg_box .box_list.col3 li:nth-child(3n + 1){
		margin-left: 0;
	}
	.bg_box .box_list.col3 li:nth-child(n + 4){
		margin-top: 12px;
	}
}

.round_list{
	display: flex;
	align-items: center;
	justify-content: center;
}

.round_list li{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 130px;
	background: #fff;
	border-radius: 50%;
	font-size: 1.6rem;
	font-weight: bold;
}
.round_list li + li{
	margin-left: 85px;
}
.round_list li + li::before{
	position: absolute;
	top: 0;
	bottom: 0;
	left: -85px;
	margin: auto;
	content: "";
	display: block;
	width: 85px;
	height: 100%;
	background: url(../img/common/btn_arw01.svg) no-repeat center center;
	background-size: 2.4rem;
}

.bg_flow_list li{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 5.4rem;
	background: #fff;
	font-size: 1.4rem;
	font-weight: bold;
}
.bg_flow_list li .bg_flow_num{
	font-size: 1.8rem;
	margin-top: -0.1em;
	margin-right: 1em;
}

.bg_flow_list li + li{
	margin-top: 2rem;
}
.bg_flow_list li + li::before{
	position: absolute;
	left: 0;
	right: 0;
	top: -1.4rem;
	margin: auto;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 1rem solid #252122;
	border-left: 0.8rem solid transparent;
	border-right: 0.8rem solid transparent;
}


@media screen and (max-width: 768px){
	.flow{
		padding: 3rem 0 0;
	}

	.flow .txt_center{
		margin-bottom: 6rem;
		text-align: left;
	}

	.flow_list{
		padding: 0;
	}

	.flow_box{
		flex-direction: column;
		padding: 0 2rem 4rem;
	}
	.flow_box + .flow_box{
		margin-top: 1rem;
	}

	.flow_box:last-child::before{
		left: -1.7rem;
		bottom: 0.8rem;
		width: 2rem;
	}

	.flow_box .num{
		left: -4vw;
		width: 4rem;
		height: 4rem;
		font-size: 2.1rem;
	}

	.flow_box .img{
		width: 100%;
		margin-bottom: 2rem;
	}

	.flow_box .txt_box{
		width: 100%;
	}

	.flow_box .ttl{
		margin-bottom: 2.5rem;
		padding-left: 2.5rem;
	}

	.bg_box{
		padding: 2rem 1.5rem;
		margin-top: 2.5rem;
		background: #eeeeee;
	}

	.bg_box .box_ttl{
		margin-bottom: 1rem;
	}

	.bg_box .box_list{
		justify-content: space-between;
	}

	.bg_box .box_list li{
		width: 18rem;
	}
	.bg_box .box_list li a{
		width: 100%;
	}
	.bg_box .box_list li:not(.flow_btn),
	.bg_box .box_list .flow_btn a{
		padding: 1.2rem 1.5rem;
		text-align: center;
	}
	.bg_box .box_list li:nth-child(n + 3){
		margin-top: 0.8rem;
	}

	.round_list li{
		width: 10rem;
		height: 10rem;
	}
	.round_list li + li{
		margin-left: 5.2rem;
	}
	.round_list li + li::before{
		left: -5.2rem;
		width: 5.2rem;
	}
}