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

/*-----------------------------------------------------------------

	flow　ご利用ガイド

-----------------------------------------------------------------*/

/*----------------------------------------------------------------
  共有
------*/

.container .flowCont .linkBtn a{
	width: 70%;
}
@media screen and (max-width: 786px) {
	.container .flowCont .linkBtn a{
		width: 80%;
	}
}
@media screen and (max-width: 480px) {
	.container .flowCont .linkBtn a{
		width: 90%;
	}
}

/*--Hタイトル--*/
.container .flowCont .h2Type .captionBox{
	background: linear-gradient(to top, #dddddd 0%, #f6f6f6 50%);
	color: #1b87cb;
	padding: 15px 5px;
	font-size: 23px;
	font-weight: bold;
	line-height: 1.5em;
	text-align: center;
}
.container .flowCont .h2Type{
	margin-bottom: 15px;
}
.container .flowCont .h2Type > div{
	background-color: #e8ee3d;
	border-left: 8px solid #1b87cb;
	margin-bottom: 15px;
	padding: 10px 15px;
}
.container .flowCont .h2Type h2{
	color: #222;
	padding-left: 100px;
	font-size: 23px;
	font-weight: bold;
	line-height: 1.5em;
	position: relative;
}
.container .flowCont .h2Type h2:before{
	content: "";
	display: block;
	background-color: #fff;
	color: #1b87cb;
	width: 90px;
	height: 30px;
	padding: 0 15px;
	font-size: 17px;
	line-height: 1.8em;
	box-sizing: border-box;
	border-radius: 30px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.container .step1Cont .h2Type h2:before{ content: "STEP1";}
.container .step2Cont .h2Type h2:before{ content: "STEP2";}
.container .step3Cont .h2Type h2:before{ content: "STEP3";}
.container .step4Cont .h2Type h2:before{ content: "STEP4";}
.container .step5Cont .h2Type h2:before{ content: "STEP5";}
.container .step6Cont .h2Type h2:before{ content: "STEP6";}

@media screen and (max-width: 786px) {
	/*--Hタイトル--*/
	.container .flowCont .h2Type .captionBox{
		padding: 10px 0;
		font-size: 20px;
	}
	/**/
	.container .flowCont .h2Type{
		padding: 10px 10px;
	}
	.container .flowCont .h2Type h2{
		font-size: 20px;
	}
}



/*--------STEP--------*/
.container .flowCont .stepListBox{
	margin: 15px 0;
}
/*--ステップ状況--*/
.container .flowCont ul.stepList{
	margin-bottom: 20px;
}
.container .flowCont ul.stepList li{
	width: 105px;
	margin-right: 15px;
	float: left;
	position: relative;
}
.container .flowCont ul.stepList li a{
	display: block;
	background-color: #cfcfcf;
}
.container .flowCont ul.stepList li:last-child{
	margin-right: 0;
}
.container .flowCont ul.stepList li p{
	background-color: #fff;
	padding: 5px 0;
	font-size: 11px;
	line-height: 1.3em;
	text-align: center;
}
.container .flowCont ul.stepList li.now a{
	background-color: #1b87cb;
}
.container .flowCont ul.stepList li.now a p{
	color: #1b87cb;
}
.container .flowCont ul.stepList li a:hover{
	background-color: #85cdfb;
}
.container .flowCont ul.stepList li:hover img{
	opacity: 1;
}

.container .flowCont ul.stepList li:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-left: 8px solid #a7a7a7;
	position: absolute;
	right: -20px;
	top: 45%;
}
.container .flowCont ul.stepList li:last-child:after{
	display: none;
}

/*--ページ移動--*/
.container .flowCont .pageBtn{
	margin: 15px 0;
}
.container .flowCont .pageBtn ul li{
	width: 50%;
}
.container .flowCont .pageBtn ul li a{
	display: block;
	background-color: #fff;
	color: #1b87cb;
	padding: 20px 20px;
	font-size: 17px;
	border: 1px solid #c4c4c4;
	position: relative;
}
.container .flowCont .pageBtn ul li a:hover{
	background-color: #ddefff;
}
.container .flowCont .pageBtn ul li a:before{
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background-color: #039251;
	border-radius: 50%;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
.container .flowCont .pageBtn ul li a:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}

/*左*/
.container .flowCont .pageBtn ul li.nextBtn{
	float: left;
}
.container .flowCont .pageBtn ul li.nextBtn a{
	padding-left: 45px;
	text-align: left;
}
.container .flowCont .pageBtn ul li.nextBtn a:before{
	left: 10px;
}
.container .flowCont .pageBtn ul li.nextBtn a:after{
	border-right: 5px solid #fff;
	left: 15px;
}

/*右*/
.container .flowCont .pageBtn ul li.backBtn{
	float: right;
}
.container .flowCont .pageBtn ul li.backBtn a{
	padding-right: 45px;
	text-align: right;
}
.container .flowCont .pageBtn ul li.backBtn a:before{
	right: 10px;
}
.container .flowCont .pageBtn ul li.backBtn a:after{
	border-left: 5px solid #fff;
	right: 15px;
}



@media screen and (max-width: 786px) {
	/*--ステップ状況--*/
	.container .flowCont ul.stepList {
		margin: 0 1%;
	}
	.container .flowCont ul.stepList li{
		width: 15%;
		max-width: 105px;
		margin-right: 2%
	}
	.container .flowCont ul.stepList li:last-child{
		margin-right: 0;
	}
	.container .flowCont ul.stepList li:after{
		border: 7px solid transparent;
		border-left: 7px solid #a7a7a7;
		position: absolute;
		right: -17px;
		top: 40%;
	}
	.container .flowCont ul.stepList li:last-child:after{
		display: none;
	}

	/*--ページ移動--*/
	.container .flowCont .pageBtn{
		margin: 15px 1%;
	}
	.container .flowCont .pageBtn ul li a{
		padding: 15px 20px;
		font-size: 15px;
	}
}
@media screen and (max-width: 480px) {
	/*--ステップ状況--*/
	.container .flowCont ul.stepList li:after{
		border: 5px solid transparent;
		border-left: 5px solid #a7a7a7;
		position: absolute;
		right: -12px;
		top: 35%;
	}
	.container .flowCont ul.stepList li:last-child:after{
		display: none;
	}
	/*--ページ移動--*/
	.container .flowCont .pageBtn ul li a{
		font-size: 15px;
	}

	/*左*//*右*/
	.container .flowCont .pageBtn ul li.nextBtn a,
	.container .flowCont .pageBtn ul li.backBtn a{
		padding: 35px 10px 10px;
		text-align: center;
	}
	.container .flowCont .pageBtn ul li.nextBtn a:before,
	.container .flowCont .pageBtn ul li.backBtn a:before{
		left: 0;
		right: 0;
		top: 5px;
		bottom: auto;
	}

	.container .flowCont .pageBtn ul li.nextBtn a:after,
	.container .flowCont .pageBtn ul li.backBtn a:after{
		left: 0;
		right: 0;
		top: 13px;
		bottom: auto;
	}
	.container .flowCont .pageBtn ul li.nextBtn a:after{
		right: 5px;
	}
	.container .flowCont .pageBtn ul li.backBtn a:after{
		left: 5px;
	}
	
}

/*----------------------------------------------------------------
  STEP1 見積ガイド
------*/

.container .step1Cont .flowBox {
	background: url(../../_images/flow/step_flow_arrow.gif) no-repeat center bottom;
	margin-bottom: 30px;
	padding-bottom: 50px;
	counter-increment: number;
}
.container .step1Cont .flowBox:last-child {
	background: none;
	text-align: center;
	padding-bottom: 0;
}

/**/
.container .step1Cont .guideBox{
	margin-bottom: 20px;
}
.container .step1Cont .guideBox > div{
	width: 280px;
	margin-bottom: 20px;
	float: right;
}
.container .step1Cont .guideBox > div h3{
	background-color: #df2f00;
	color: #fff;
	margin-bottom: 15px;
	padding: 8px 7px 5px 35px;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.5em;
	border-bottom: 2px solid #b71600;
	position: relative;
}
.container .step1Cont .guideBox > div h3:before{
	content: counter(number);
	display: block;
	width: 20px;
	height: 20px;
	background-color: #fff;
	color: #333;
	padding: 3px 4px;
	line-height: 1.2em;
	font-weight: bold;
	box-sizing: border-box;
	position: absolute;
	left: 7px;
	top: 7px;
}
.container .step1Cont .guideBox > div .textBox{
	margin: 0;
}

.container .step1Cont .guideBox .imgBox{
	width: 400px;
	margin: 0;
	float: left;
}


/*--FLOW1-リンク--*/
.container .flowCont .linkList{
	margin: 20px 0;
}
.container .flowCont .linkList h4{
	color: #002458;
	margin-bottom: 10px;
	padding: 2px 10px;
	font-size: 15px;
	font-weight: bold;
	border-left: 6px solid #002458;
}

.container .flowCont .linkList ul li{
	width: 220px;
	background-color: #f9f9f9;
	color: #333333;
	margin: 5px;
	font-size: 14px;
	font-weight: bold;
	box-shadow: 0 0 3px rgba(0,0,0,0.3);
	float: left;
	position: relative;
}
.container .flowCont .linkList ul li:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left: 5px solid #333;
	position: absolute;
	right: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.container .flowCont .linkList ul li a{
	display: block;
	padding: 7px 15px;
}
.container .flowCont .linkList ul li a:hover{
	background-color: #d1e2eb;
}


@media screen and (max-width: 786px) {
	.container .step1Cont .flowBox {
		margin: 0 1% 30px;
	}
	/**/
	.container .step1Cont .guideBox{
		margin-bottom: 10px;
	}
	.container .step1Cont .guideBox > div{
		width: 53%;
		float: right;
	}
	.container .step1Cont .guideBox .imgBox{
		width: 45%;
		margin: 0;
		float: left;
	}
	
	/*--FLOW1-リンク--*/
	.container .flowCont .linkList{
		margin: 20px 0 30px;
	}
	.container .flowCont .linkList ul li{
		width: 31%;
		margin: 5px 1%;
	}	
}
@media screen and (max-width: 480px) {
	/**/
	.container .step1Cont .guideBox > div{
		width: 98%;
		margin: 0 auto 15px;
		float: none;
	}
	.container .step1Cont .guideBox .imgBox{
		width: 98%;
		max-width: 400px;
		margin: 0 auto;
		float: none;
	}
	
	/*--FLOW1-リンク--*/
	.container .flowCont .linkList ul li{
		width: 48%;
		margin: 5px 1%;
	}
}



/*----------------------------------------------------------------
  STEP2-STEP6
------*/

/*----*/
.container .flowCont .pointBox{
	background-repeat: no-repeat;
	background-position: right bottom;
	min-height: 330px;
	margin-bottom: 30px;
	padding: 30px;
	padding-right: 270px;
	box-sizing: border-box;
	border: 1px solid #bfbfbf;
}
.container .flowCont .pointBox dl dt{
	color: #fb3313;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5em;
	margin-bottom: 10px;
}
.container .flowCont .pointBox dl dd p{
	font-size: 14px;
	line-height: 2.0em;
}

.container .step2Cont .pointBox{
	background-image: url(../../_images/flow/step2_point_img.webp);
}
.container .step3Cont .pointBox{
	background-image: url(../../_images/flow/step3_point_img.webp);
}
.container .step4Cont .pointBox{
	background-image: url(../../_images/flow/step4_point_img.webp);
}
.container .step5Cont .pointBox{
	background-image: url(../../_images/flow/step5_point_img.webp);
}
.container .step6Cont .pointBox{
	background-image: url(../../_images/flow/step6_point_img.webp);
}

/*----*/
.container .flowCont .stepCont{
	margin-bottom: 50px;
}
.container .flowCont .stepCont > section{
	margin: 0 0 30px;
}

.container .flowCont .stepCont h3{
	background-color: #333;
	color: #fff;
	margin-bottom: 20px;
	padding: 15px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.container .flowCont .stepCont h4{
	background-color: #f0f6f7;
	color: #333;
	margin-bottom: 15px;
	padding: 7px 15px;
	font-size: 16px;
	font-weight: bold;
	border: 1px solid #d6d6d6;
	border-left: 8px solid #0b4da0;
}

.container .flowCont .stepCont ul.flowList li{
	background-color: #fff;
	padding: 0 10px;
	font-size: 13px;
}
.container .flowCont .stepCont ul.flowList li span{
	padding: 5px 10px;
	position: relative;
}
.container .flowCont .stepCont ul.flowList li span:before{
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-left: 5px solid #333;
}

.container .flowCont .stepCont ul.flowList li .bgYellow{
	background-color: #e8ee3d;
	margin-bottom: 10px;
}

.container .flowCont .stepCont ul{
	margin: 10px 0;
}



/**/
.container .step2Cont .stepCont .okBox{
	background-image: url(../../_images/flow/step2_ok_img.gif);
	background-repeat: no-repeat;
	background-position: left 50%;
	min-height: 90px;
	padding-left: 100px;
}
.container .step2Cont .stepCont .stopBox{
	background-image: url(../../_images/flow/step2_stop_img.gif);
	background-repeat: no-repeat;
	background-position: left 50%;
	min-height: 90px;
	padding-left: 100px;
}
/**/
.container .step4Cont .imgBox{
	margin-bottom: 50px;
}

/**/
.container .step3Cont table{
	width: 100%;
	margin: 10px 0 40px;
}
.container .step3Cont table th{
	width: 20%;
	background-color: #edece6;
	text-align: center;
	border-right: 1px solid #b9b9b9;
}
.container .step3Cont table td{
	padding: 5px;
	text-align: center;
	border-right: 1px solid #b9b9b9;
}
.container .step3Cont table td p{
	font-size: 12px;
	text-align: left;
	line-height: 1.6em;
}
.container .step3Cont table th:last-child,
.container .step3Cont table td:last-child{
	border: none;
}

.container .step3Cont table tr:nth-of-type(odd){
	background-color: #f7f5f5;
}

.container .step3Cont .stepCont ul.flowList li{
	margin: 5px 0;
	font-size: 15px;
}

.container .step3Cont section .textBox p{
	font-size: 13px;
}


/**/
.container .step5Cont .stepCont ol{
	margin: 20px;
	font-size: 16px;
}
.container .step5Cont .stepCont ol li span{
	color: #ff1414;
}

.container .step5Cont .stepCont dl.cautionBox{
	width: 80%;
	margin: 0 auto 30px;
}
.container .step5Cont .stepCont dl.cautionBox dt{
	background-color: #b60022;
	color: #fff;
	margin: 0;
	padding: 5px 5px 5px 40px;
	font-size: 15px;
	position: relative;
}
.container .step5Cont .stepCont dl.cautionBox dt:before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	border: none;
}
.container .step5Cont .stepCont dl.cautionBox dt:after{
	content: "！";
	display: block;
	width: 15px;
	height: 15px;
	color: #9e0000;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.0em;
	position: absolute;
	left: 12px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.container .step5Cont .stepCont dl.cautionBox dd{
	border: 1px solid #b60022;
	padding: 15px;
	margin: auto;
	font-size: 13px;
}


.container .step5Cont .stepCont .paymentBox{
	margin: 0 auto 20px;
	padding: 20px;
	border: 1px solid #b8b8b8;
}
.container .step5Cont .stepCont .paymentBox table{
	width: 100%;
	border-collapse: separate;
	border-spacing: 5px;
}
.container .step5Cont .stepCont .paymentBox th{
	background-color: #0b4da0;
	color: #fff;
	padding: 3px 10px;
	text-align: center;
}
.container .step5Cont .stepCont .paymentBox td{
	padding: 3px 5px;
}

@media screen and (max-width: 786px) {
	.container .flowCont .pointBox{
		background-size: 190px auto;
		min-height: 240px;
		margin: 0 1% 30px;
		padding: 15px 20px;
		padding-right: 195px;
	}
}
@media screen and (max-width: 480px) {
	.container .flowCont .pointBox{
		background-size: 150px auto;
		background-position: right bottom;
		min-height: auto;
		padding: 15px;
		padding-bottom: 180px;
	}
	.container .step5Cont .stepCont .paymentBox tr,
	.container .step5Cont .stepCont .paymentBox th,
	.container .step5Cont .stepCont .paymentBox td {
		display: block;
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}
}












