/*コンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: left;	
	width: 31%;	
	overflow: auto;
	background: #fff;
	margin-left: 1.5%;	
	margin-bottom: 20px;
	border: 1px solid #fff;
	border-radius: 6px;		
	height: 500px;		
	height: 230px;		
	line-height: 1.4;
	position: relative;
	-webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
	box-shadow: 0px 0px 3px rgba(0,0,0,0.3);		
}
.list a {
	display: block;
	overflow: auto;
	text-decoration: none;
	height: 500px;	/*(CMS専用)*/
	height: 230px;
}
.list a:hover {
	background: #f5f5f5;	
	color: #000;	
}

.list a:hover::before {
	background: #000;	
}
/*ボックス内の画像設定*/
.list .img {
	width: 100%;	
	height: 140px;
	height: auto;	
	padding-bottom: 10px;
}
/*ボックス内のh4（見出し）タグ設定*/

.list .title {
	padding-left: 15px;
	padding-bottom: 5px;
	font-size: 16px;
	font-weight:bold;	
}


/*ボックス内のp（段落）タグ設定*/
.list p {
	font-size: 12px;
}









/*画面幅1200px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1200px){



/*コンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list {
	float: none;
	width: auto;		/*幅*/
	margin-left: 0;
	height: auto;		/*高さ*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin: 0px 3px 15px;
}
.list a {
	height: auto;		/*高さ*/
	padding: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内の画像設定*/
.list .img {
	float: left;
	width: 30%;
	margin-right: 10px;
	height: auto;	/*画像の高さ*/
	padding-bottom: 0;
}
/*ボックス内のp（段落）タグ設定*/
.list p {
	margin-left: 30%;
}

}

/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){



/*コンテンツ内のボックス（list）設定
---------------------------------------------------------------------------*/
/*ボックス内の画像設定*/
.list .img {
	float: none;
	width: 100%;
	margin-right: 0px;
}
/*ボックス内のp（段落）タグ設定*/
.list p {
	margin-left: 0;
}

}