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

.menu_list li{
	width:48%;
	float: left;
	background:#f7f7f7;
	padding:20px 20px 40px;
	border:1px solid #eee;
}

.menu_list li{
	margin-bottom: 35px;
}

.menu_list li a{
	display: block;
}

.menu_list li div:first-of-type img{
	width:100%;
}

.menu_list li a:hover .hov_overlay{
	opacity:0;
}

.menu_list li a:hover .detail_btn{
	background:#c3a045 ;
}


.menu_list li:nth-of-type(2n){
	margin-left:4%;
}

.menu_list li div:first-of-type{
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.menu_list li div:first-of-type .hov_overlay{
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.2);
	transition:.3s;
	
}

.menu_list li > div:last-of-type{
	border-left: #7b7b7b 1px solid;
	padding-left:30px;
}	

.menu_list li div section{
	float: left;
}

.menu_list li div section h4{
	font-size: 1.7rem;
}

.menu_list li div section h4 + p{
	font-family:Merriweather;
	color:#888;
	font-size: 1.4rem;
}

.menu_list li .detail_btn{
	float:right;
	background:#000;
	width: 148px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border-radius:3px;
	margin-top: 8px;
	color:#fff;
	font-size: 1.4rem;
	transition:.3s ease;
}

.menu_list li .detail_btn:after{
	content:url(../img/menu/detail_arrow.png);
	display: inline-block;
	margin-left: 10px;
}

@media screen and (max-width: 1200px) {
	.under_content{
	padding:30px 3% 60px;
	}
}

@media screen and (max-width: 600px) {
	.menu_list li div section{
		float: none;
	}
	.menu_list li .detail_btn{
		float: none;
		margin:15px auto;
	}
	.menu_list li .detail_btn{
		width:100%;
	}
	.menu_list li{
		width:100%;
		float: none;
	}
	
	.menu_list li:nth-of-type(2n){
		margin-left: 0;
	}

}

