@charset "utf-8";
/* CSS Document */
body{
	position: relative;
}

section .inner .flex .flex_item{
	width: calc((100% - 3.332%) / 2);
}
section .inner .flex .flex_item a{
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 140px;
	border: 1px solid #fff;
	border-radius: 5px;
}
section .inner .flex .flex_item a:hover{
	text-decoration: none;
}
section .inner .flex .flex_item a::before{
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	background: rgba(216, 130, 57, 0.7);
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
	z-index: 1;
	opacity: 0;
	transition: 0.5s all;
}
section .inner .flex .flex_item a:hover::before{
	opacity: 1;
}
section .inner .flex .flex_item:first-child a:after{
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	background: url('/theme/img/img_flex_001.png') no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
section .inner .flex .flex_item:last-child a:after{
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	background: url('/theme/img/img_flex_002.png') no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-ms-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
section .inner .flex .flex_item a:hover::after{
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
section .inner .flex .flex_item a p{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	z-index: 2;
}
section .inner .flex .flex_item a p:after{
	content: '';
	display: inline-block;
	margin: 0 auto 0 20px;
	width: 48px;
	height: 48px;
	background-image: url('/common/img/icon/img_arrow_next.png');
	background-size: contain;
	vertical-align: middle;
}

@media screen and (max-width: 768px) {
	section .inner .flex{
		display: block;
	}
	section .inner .flex .flex_item{
		width: 100%;
	}
	section .inner .flex .flex_item:first-child{
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 480px) {
	section .inner .flex .flex_item a{
		height: 100px;
	}
}
