@charset "utf-8";
/* CSS Document */
#kansentaisaku {
	width: 600px ;				/* 横幅を6000px */
	margin: 10px auto 15px auto ;			/* マージン　中央揃え */
	padding: 10px;				/* パディング */
	border: medium solid #0CB005; /* ボーダー */
	}
#kansentaisaku h2 {
	font-size: 140%;			/* フォントサイズ */
	border: none;				 /* ボーダーなし */
	background-color: transparent;		/* 背景色なし */
	color: #555555;				/* 文字色 */
	margin-top: 10px; 		/* マージン */
	margin-bottom: 20px;	/* マージン */
}
#kansentaisaku h3 {
	font-size: 100%;
	border-bottom: solid 1px #333;	/* ボーダー下線 */
	background-color: none;		/* 背景色なし */
	color: #555555;				/* 文字色 */
	margin-bottom: 20px;	/* マージン */
}

#kansentaisaku ul {			
	padding-left:20px;		/* 箇条書き左パディング */
}
#kansentaisaku li {
	margin: 5px 0px;		/* 箇条書きマージン */
}


/* スマホに適用するCSS */
@media screen and (max-width:600px)
{
#kansentaisaku {
	width: 90% ;				/* 横幅を100% */
}
}