@charset "UTF-8";


/*
------------------------------------ .roadimg_list_area ------------------------------------
*/

.roadimg_list_area{
	margin: 140px 0 0 0;
}

.roadimg_list_wrap{
	margin: 0 0 60px 0;
}

.roadimg_list_wrap:last-child{
	margin-bottom: 0;
}

.roadimg_list_title01{
	font-size: 30px;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	margin: 0 0 40px 0;
}

.roadimg_list{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin: 0 -60px -60px 0;
}

.roadimg_list_item{
	width: 25%;
	display: flex;
	flex-direction: column;
	padding: 0 60px 60px 0;
}

.roadimg_list_block{
	position: relative;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}


.roadimg_list_block_img{
	position: relative;
	margin: 0 0 10px 0;
}

.roadimg_list_block_text{
	flex-grow: 1;
	/*border: 1px solid #cccccc;
	padding: 10px 15px 15px 15px;*/
}

.roadimg_list_arrow{
	position: absolute;
	top: 50%;
	right: -30px;
	width: 0px;
	height: 0px;
}

.roadimg_list_arrow_obj{
	position: absolute;
	width: 46px;
	height: 30px;
	top: 50%;
	left: 50%;
	margin: -15px 0 0 -22px;
	transform-origin: 50% 50%;
}

.roadimg_list_arrow_obj:before,
.roadimg_list_arrow_obj:after{
	content: "";
	display: block;
	position: absolute;
}

.roadimg_list_arrow_obj:before{
	top: 50%;
	left: 0;
	background-color: #ff0000;
	height: 10px;
	width: 32px;
	margin: -5px 0 0 0;
}

.roadimg_list_arrow_obj:after{
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 0 15px 15px;
	border-color: transparent transparent transparent #ff0000;
}

.roadimg_list_item:last-child .roadimg_list_arrow{
	display: none;
}

@media screen and  (max-width: 1000px) {
	.roadimg_list_item{
		width: 50%;
	}
	
	.roadimg_list_item:nth-child(2n) .roadimg_list_block_img{
		position: static;
	}
	
	.roadimg_list_item:nth-child(2n) .roadimg_list_arrow{
		top: auto;
		right: auto;
		left: -30px;
		bottom: -30px;
	}
	
	.roadimg_list_item:nth-child(2n) .roadimg_list_arrow_obj{
		transform: rotate(145deg);
	}
	
}

@media screen and (max-width: 700px) {
	
	.roadimg_list_area{
		margin: 90px 0 0 0;
	}
	
	.roadimg_list_title01{
		font-size: 25px;
		margin: 0 0 30px 0;
	}
	
	.roadimg_list{
		margin: 0 -30px -30px 0;
	}

	.roadimg_list_item{
		padding: 0 30px 30px 0;
	}

	.roadimg_list_block_img{
		margin: 0 0 10px 0;
	}

	.roadimg_list_arrow{
		right: -15px;
	}

	.roadimg_list_arrow_obj{
		width: 23px;
		height: 15px;
		margin: -7.5px 0 0 -11px;
	}
	
	.roadimg_list_arrow_obj:before{
		height: 5px;
		width: 16px;
		margin: -2.5px 0 0 0;
	}

	.roadimg_list_arrow_obj:after{
		border-width: 7.5px 0 7.5px 7.5px;
	}
	
	.roadimg_list_item:nth-child(2n) .roadimg_list_arrow{
		left: -15px;
		bottom: -15px;
	}
	
	
	/*.roadimg_list_item{
		width: 100%;
	}
	
	.roadimg_list_arrow{
		top: auto;
		right: 50%;
		bottom: -30px;
	}
	
	.roadimg_list_arrow:after{
		transform: rotate(90deg);
	}*/
	
}


