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

/* ------------------------------------------------------------------------------------- */

/* BLOG */

/* ------------------------------------------------------------------------------------- */
div#contents {
	width: 780px;
    height: 200px;
	margin: 20px auto 40px auto;
	padding: 20px 40px;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 7px;
	box-shadow: 0 0 7px rgba( 0, 0, 0, 0.2 );
    overflow-y: scroll;
}

div#news div#information div {
	margin: 0 0 0 0;
    padding: 20px 0 20px 0;
	border-bottom: 1px dotted #333333;
}

div#news div#information div:first-child {
    padding: 0 0 20px 0;
}

div#news dl dt {
	font-weight: bold;
	color: #2e8b57;
	padding: 0 0 10px 0;
}

div#news dl dd {
	line-height: 1.6em;
}

/* ----------------- */

/* BLOG（レスポンシブ） */

/* ----------------- */
@media screen and ( max-width: 767px ) {
div#contents {
	width: 90%;
	padding: 20px 5%;
}
    
div#news dl dd {
	font-size: 13px;
}
    
}