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


/*list-column（トップページで使っているニュース）
---------------------------------------------------------------------------*/
/*カラムブロック全体を囲むボックス*/
#contents .list-column-container {
	display: flex;
	justify-content:  normal;	/*中のブロックの横並びの揃え方*/
	flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
	margin: 0 20px;
}
/*１カラムあたりの設定*/
#contents .list-column {
	display: flex;
	flex-direction: column;		
	width: 47%;	
	margin-bottom: 20px;
	color: #000;
	overflow: hidden;
	margin-right: 3%;
	text-decoration: none;
	font-size: 14px;
	line-height: 150%;
	vertical-align: top;
	
}

#contents .list-column a {
		text-decoration: none;
}

/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list-column .text {
	margin: 0;
	padding-top: 8px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	vertical-align: top;
}
#contents .list-column .text .day{
	font-size: 90%;
	color: #660;
}

/*IEバグ対応*/
#contents .list-column figure {
	min-height: 0%;
}

/*list-column2（トップページで使っているニュース）
---------------------------------------------------------------------------*/
/*カラムブロック全体を囲むボックス*/
#contents .list-column-container2 {
	display: flex;
	justify-content:  normal;	/*中のブロックの横並びの揃え方*/
	flex-wrap: wrap;				/*中のブロックを自動で折り返す*/
	margin: 0 20px;
}
/*１カラムあたりの設定*/
#contents .list-column2 {
	display: flex;
	flex-direction: column;	

	width: 47%;	
	margin-bottom: 20px;
	color: #000;
	overflow: hidden;
	margin-right: 3%;
	text-decoration: none;

	flex-wrap: wrap;
	font-size: 14px;
	text-align: left;
	line-height: 150%;
}
#contents .list-column2 a {
	text-decoration: none;
	color: #666;
}
#contents .list-column2 img {
margin-bottom:8px
}
#contents .list-column2 .brp {
	display: none;
}


/*IEバグ対応*/
#contents .list-column2 figure {
	min-height: 0%;
}


@media screen and (min-width:900px) {
#contents .list-column,#contents .list-column2 {

	justify-content: space-between;	
	width: 30%;
	margin-right: 3%;
	margin-left: 0%;
	line-height: 160%;

}
#contents .list-column {
	vertical-align: top;
	font-size: 16px;

}

#contents .list-column2 {
	font-size: 14px;
	text-align: center;
}


#contents .list-column2 .brp {
	display: block;
}

}


@media screen and (max-width:480px) {
	
#contents .list-column-container,#contents .list-column-container2 {
	margin: 0;
	
}
	#contents .list-column,#contents .list-column2 {
	width: 75%;
	margin-right: auto;
	margin-left: auto;
}
#contents .list-column2 {
	text-align: center;
}
#contents .list-column2 .brp {
	display: block;
}
    


}

