@charset "utf-8";
/* CSS Document */
@media all and (-ms-high-contrast:none){
	*::-ms-backdrop, #news_wrap {
		margin-left:-1px;
		padding-right: 1px;
	}
}
#news{
	width: 100%;
	max-width: 768px;
	position: absolute;
	top: 10vh;
}
#news_wrap{
	padding: 0 5%;
	background-color:rgba(255,255,255,0.70);	
	padding-bottom: 100px;
	padding-top: 50px;
	min-height: 100vh;
	border-left: 3px solid #2d8c36;
	border-right: 3px solid #2d8c36;
}
#news .news_box{
	border-bottom: 1px solid #4d4d4d;
	padding-bottom: 50px;
	margin-bottom: 50px;
	color: #4d4d4d;
}
#news .news_box:first-of-type {
	padding-top: 20px;
}
#news .news_box:last-child{
	border-bottom: none;
	margin-bottom: 0;
}
#news .news_box .news_date{
	background-color: #761c18;
	color: #fff;
	padding: 5px 0;
	text-align: center;
	width: 50%;
	margin-bottom: 10px;
	border-radius: 10px;
}
#news .news_box h3 {
	padding-bottom: 3px;
}
#news .news_box .news_date:empty,
#news .news_box h3:empty {
	display: none;
}
#news .news_box figure{
	margin-top: 20px;
	text-align: center;
}
#news .news_box figure img {
	width:auto;
	height: auto;
	max-width: 100%;
	max-height: 500px;
}
#news #news_list{
	display:block;
	text-align:center;
	margin-bottom:50px;
}

#news #news_list li{
	display:inline;
	padding-left:10px;
	padding-right:10px;
}
#news #news_list li a{
	color: #4d4d4d;
}
@media screen and (orientation: landscape){
   /* 横向きの場合のスタイル */
#news{
	margin-top: 0;
}
}
@media screen and (max-width:320px) {
}
/*ここからスマートフォン用（415px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 415px){
#news .news_box figure img {
	max-height: 300px;
}
}