/*template_02_1*/

/*メインビジュアル*/
.c5-img_border img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
}


/*応募フロー*/
.c5-flow_box {
	background-color: #4b5ba0;
    color: #fff;
    width: 100%;
    height: 160px;
    display: table;
}
.c5-flow_text_area p {
	line-height: 1.75em;
}
.c5-flox_text_area{
	width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}
.c5-flow_block ul{
	display: table;
    border-collapse: separate;
    border-spacing: 35px 0px;
    padding: 0px;
    margin: 0 auto;
    right: 0;
    left: 0;
    width: 100%
}
.c5-flow_block li{
	list-style: none;
	display: table-cell;
	position: relative;
    text-align: center;
    vertical-align: top;
}

.c5-flow_block li:after{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
    border: 8px solid transparent;
    border-left-color: #999;
    top: 50%;
    margin-top: -11%;
    right: -30px;
}
.c5-flow_block li:last-child:after{
	content: none;
}

@media screen and (max-width: 768px){
	.c5-flow_box {
	    height: 60px;
	}
	.c5-flow_block ul{
		display: block;
		padding: 0px;
	}
	.c5-flow_block li{
		display: block;
	    margin-bottom: 30px;
	}
	.c5-flow_block li:after{
		content: "";
		width: 0;
		height: 0;
	    border: 8px solid transparent;
		border-top-color: #999;
	    right: 0;
	    left: 0;
	    margin: 0 auto;
	    top: 115%;
	}
	.c5-small_all{
		text-align: center;
	}
	
}


/*プロフィールブロック*/
.c5-plofile_block {
	background-color: #E2E7EC;
	padding: 30px;
}

.c5-plofile_img_block {
	width: 22%;
	text-align: center;
}

.c5-plofile_img_block img{
	width: 100%;
}

@media screen and (max-width: 639px){
	.c5-plofile_img_block {
		margin: 0 auto;
		margin-bottom: 20px;
		width: 100%;
	}
	.c5-plofile_img_block img{
		width: 50%;
	}
}


/*マージン調整*/
.c5-mar--0{
	margin: 0px;
}