@charset "utf-8";

/* ---------------------
 * 
 * 　flow.css
 * 
--------------------- */

/* =================================

 　common setting
  
================================= */

/*  TOP
------------------------ */	
.flow_step_wrap{
	margin-top: 40px;
}
.flow_step_wrap .flow_step{
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
	display: flex;
	counter-increment: step_num;
}
.flow_step_wrap .flow_step .flow_title{
	position: relative;
	background-color: #efefef;
	text-align: center;
}
.flow_step_wrap .flow_step .flow_title.flow_other{
	background-color: #666;
	color: #fff;
}
.flow_step_wrap .flow_step .flow_title span{
	position: absolute;
	top: 0;
	left: -21px;
	display: block;
	width: 42px;
	height: 42px;
	line-height: 1.3;
	padding-top: 6px;
	color: #fff;
	text-align: center;
	background-color: #1b1b1b;
	font-size: 1rem;
}
.flow_step_wrap .flow_step .flow_title span:after{
	content: '';
	display: block;
	content: counter(step_num);
	font-size: 1.4rem;
}
.flow_step_wrap .flow_step .flow_alllist .txt_flowinfo{
	padding: 2rem 15px 1rem;
	color: #666;
}
.flow_step_wrap .flow_step .flow_alllist .flow_list li{
	counter-increment: step_category_num;
	font-size: 1.5rem;
}
.flow_step_wrap .flow_step .flow_alllist .flow_list li a{
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
	display: flex;
		-webkit-align-items: center;
		-ms-flex-align: center;
		-webkit-box-align: center;
	align-items: center;
	position: relative;
	padding: 2.5rem 3rem 2.5rem 1rem;
	border-top: 1px solid #ccc;
	color: #333;
	-webkit-transition: .2s ease-in-out;
	   -moz-transition: .2s ease-in-out;
	        transition: .2s ease-in-out;
}
.flow_step_wrap .flow_step .flow_alllist .flow_list li:last-child a{
	border-bottom: 1px solid #ccc;
}
.flow_step_wrap .flow_step .flow_alllist .flow_list li a:hover{
	background-color: #f1f1f1;
}
.flow_step_wrap .flow_step .flow_alllist .flow_list li a:after{
	content: '';
	display: inline-block;
	width: 6px;
	height: 11px;
	position: absolute;
	top: calc(50% - 6px);
	right: 15px;
	background: url(../images/common/ic_arrow02.png) no-repeat 100% 50%;
	-webkit-background-size: cover;
	background-size: cover;
}
.flow_step_wrap .flow_step .flow_alllist .flow_list li a span{
	display: block;
	width: 58px;
	line-height: 1;
	min-width: 60px;
	margin-right: 10px;
	padding: 5px 0 3px 3px;
	border: 1px solid #800000;
	color: #800000;
	font-size: 1.5rem;
	text-align: center;
	letter-spacing: 3px;
}
.flow_step_wrap .flow_step .flow_alllist .flow_list li a span:before{
	content: '';
	display: inline-block;
	content: counter(step_num) "-";
}
.flow_step_wrap .flow_step .flow_alllist .flow_list li a span:after{
	content: '';
	display: inline-block;
	content: counter(step_category_num);
}

/*  資料ダウンロード
------------------------ */
.post-type-archive-post_document .flow_alllist{
	border-bottom: 1px solid #ccc;	
}
.document_area{
	padding: 8px 0 8px 1.5%;
}
.document_area .list_document{
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
	display: flex;
		-webkit-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
	flex-wrap:wrap;	
}
.document_area .list_document li{
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
	display: flex;
	background-color: #f2f1eb;	
}
.document_area .list_document a{
	display: block;
	color: #820000;
	text-decoration: underline;
}
.document_area .list_document a figure{
	display: block;
}
.document_area .list_document a figure.no_image{
	background-color: #ddd;
}
.document_area .list_document a .data_link{
		display: -ms-flexbox;
		display: -webkit-box;
		display: -webkit-flex;
	display: flex;
		-webkit-align-items: center;
		-ms-flex-align: center;
		-webkit-box-align: center;
	align-items: center;	
}
.document_area .list_document a .data_link span{
	display: block;
	line-height: 1;
	padding: 10px 12px 10px 41px;
	text-indent: -29px;
	font-size: 1.2rem;
}
.document_area .list_document a .data_exel span:before,
.document_area .list_document a .data_word span:before,
.document_area .list_document a .data_ppt span:before{
	content: "";
	display: inline-block;
	width: 21px;
	height: 24px;
	vertical-align: middle;	
	margin-right: 8px;
	background: url(../images/page/post_document/icn_exel.gif) no-repeat 0 0;
	-webkit-background-size: cover;
	background-size: cover;
}
.document_area .list_document a .data_word span:before{
	width: 22px;
	height: 25px;
	background: url(../images/page/post_document/icn_word.gif) no-repeat 0 0;
	-webkit-background-size: cover;
	background-size: cover;
}
.document_area .list_document a .data_ppt span:before{
	background: url(../images/page/post_document/icn_pwpoint.gif) no-repeat 0 0;
	-webkit-background-size: cover;
	background-size: cover;
}



/* ==================================================================

 　[SP style] -768px
  
================================================================== */
@media print, screen and (max-width:767px){

	/*  TOP
	------------------------ */	
	.flow_step_wrap .flow_step{
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
		flex-direction: column;
		margin-top: 40px;	
	}
	.flow_step_wrap .flow_step:first-child{
		margin-top: 0;
	}
	.flow_step_wrap .flow_step .flow_title{
		padding: 2rem 0 2rem 2rem;
		border: 1px solid #ccc;
		font-size: 1.9rem;
		font-weight: bold;
	}
	.flow_step_wrap .flow_step .flow_title span{
		top: 1.2rem;
		left: 1.2rem;
	}
	.flow_step_wrap .flow_step .flow_alllist .txt_flowinfo{
		padding-bottom: 2rem;
	}



	/*  資料ダウンロード
	------------------------ */
	.document_area .list_document li{
		width: 48%;
		margin: 8px 2% 10px 0;
	}
	.document_area .list_document li:nth-child(2n){
		margin-right: 0;
	}
	.document_area .list_document li a{
		width: 100%;
	}
	.document_area .list_document a figure.no_image{
		height: 60px;
	}
	.document_area .list_document a .data_link{
		min-height: 60px;
	}

}/* [SP style] END */





/* ==================================================================

 　[PC style] 768px-
  
================================================================== */
@media print, screen and (min-width:768px){

	/*  TOP
	------------------------ */	
	.flow_step_wrap{
		margin-left: 21px;
	}
	.flow_step_wrap .flow_step .flow_title{
		min-width: 8em;
		padding: 10px 0 8px 21px;
		box-shadow: rgba(0,0,0,0.3) 2px 0 1px;
		flex: 1;
		color: #666;
	}
	.flow_step_wrap .flow_step .flow_alllist{
		flex: 4;
		margin-left: 35px;
	}
	.flow_step_wrap .flow_step .flow_alllist .flow_list li a{
		padding-right: 30px;
	}


	/*  資料ダウンロード
	------------------------ */
	.flow_step_wrap .flow_step:first-child .document_area{
		border-top: 1px solid #ccc;
	}
	.document_area .list_document li{
		width: 31.5%;
		margin: 3px 2% 0 0;
	}
	.document_area .list_document li:nth-child(3n){
		margin-right: 0;
	}
	.document_area .list_document li a{
		width: 100%;
	}
	.document_area .list_document a{
		border: 3px solid #fff;
			-webkit-transition: .1s ease-in-out;
			-moz-transition: .1s ease-in-out;
		transition: .1s ease-in-out;
	}
	.document_area .list_document a:hover{
		border: 3px solid #666;
		border-radius: 3px
	}
	.document_area .list_document a figure.no_image{
		height: 60px;
	}
	.document_area .list_document a .data_link{
		min-height: 60px;
	}




}/* [PC style] END */






/* ==================================================================

 　[Tablet style] 768px-1020px
  
================================================================== */
@media (max-width: 1020px) and (min-width: 768px) {

}/* [Tablet style] END */
