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

/*//////////----- NEWS-ARCHIVE -----//////////*/

#news div.post-content{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
	
	box-sizing: border-box;
	padding:5px;
}

#news div.post-content article{
	width:100%;
	margin-bottom:20px;
}

#news div.post-content article:last-child{
	margin-bottom:0;
}

/*//////////----- NEWS-SHOW -----//////////*/

#news div.summary{
	margin-bottom:20px;
}

#news div.summary ul.postdata{
	margin-bottom:5px;
	
	font-size:0.8rem;
	line-height:25px;
	
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: flex-start;
	
	width:100%;
}

#news div.summary ul.postdata li{
	margin-right:10px;
}

#news div.summary ul.postdata li.update:before{
	content:"投稿日:";
}

#news div.summary ul.postdata li.category{
	display:inline-block;
	
	box-sizing: border-box;
	padding:0 10px;
	
	background-color:#048;
	color:#fff;
}

#news div.summary h4{
	font-weight:bold;
	
	font-size:1.25rem;
	line-height:1.5em;
	
	box-sizing: border-box;
	padding-left:15px;
	
	position: relative;
}

#news div.summary h4:before{
	display:block;
	content:"";
	
	width:5px;
	height:20px;
	
	background-color:#048;
	
	position: absolute;
	top:7.5px;
	left:0;
}