@charset "utf-8";

/**
 *
 *  ご利用開始までの流れ index
 *
 */

/*--------------------------------------------------------------------------
   overwrite  - 共通CSSの上書き -
---------------------------------------------------------------------------*/


/*--------------------------------------------------------------------------
   flow
---------------------------------------------------------------------------*/
.flow{
	padding: 90px 0 80px;
}

/* flow__unit
-----------------------------------------------------------------*/
.flow__unit{
	display: table;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	min-height: 258px;
	padding: 40px 0;
	border: 1px solid #1b266f;
	border-radius: 5px;
	background: #fff;
}
.flow__unit + .flow__unit{
	margin-top: 60px;
}
.flow__unit + .flow__unit:before{
	content: '';
	position: absolute;
	top: -46px;
	right: 0;
	left: 0;
	width: 6px;
	height: 30px;
	margin: auto;
	background: url(../images/obj_flow.png) no-repeat;
	background-size: cover;
}
.flow__unit__body{
	display: table-cell;
	padding: 0 108px 0 258px;
	vertical-align: middle;
}
.flow__unit__ttl{
	margin-bottom: 20px;
	font-size: 22px;
}
.flow__unit__txt{
	font-size: 15px;
	line-height: 1.7;
}
.flow__unit__number{
	position: absolute;
	top: 0;
	left: 0;
}
.flow__unit__number:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 86px 86px 0 0;
	border-color: #1b266f transparent transparent transparent;
}
.flow__unit__number span{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 16px;
	padding-left: 13px;
	color: #fff;
	font-size: 24px;
	line-height: 1;
}
.flow__unit__fig{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 60px;
	width: 157px;
	height: 157px;
	margin: auto;
}


/* media query -> sp
=================================================================*/
@media screen and (max-width: 768px){
	.flow{
		padding: 40px 15px 30px;
	}

	/* flow__unit
	-----------------------------------------------------------------*/
	.flow__unit{
		display: block;
		min-height: 100%;
		padding: 0;
	}
	.flow__unit + .flow__unit{
		margin-top: 45px;
	}
	.flow__unit + .flow__unit:before{
		top: -36px;
		width: 5px;
		height: 25px;
	}
	.flow__unit__body{
		display: block;
		padding: 155px 20px 25px;
	}
	.flow__unit__ttl{
		margin-bottom: 13px;
		text-align: center;
		font-size: 18px;
	}
	.flow__unit__txt{
		font-size: 11px;
	}
	.flow__unit__number:before{
		border-width: 51px 51px 0 0;
	}
	.flow__unit__number span{
		padding-top: 8px;
		padding-left: 6px;
		font-size: 16px;
	}
	.flow__unit__fig{
		top: 30px;
		right: 0;
		bottom: auto;
		left: 0;
		width: 110px;
		height: 110px;
	}
	.flow__unit__fig img{
		width: 100%;
		height: auto;
	}
}