@charset   "Shift_JIS";
/* --- ボックス --- */
.section {
	background-color: #ffffff; /* ボックスの背景色 */
	border: 1px solid green; /* ボックスの枠線 */
	font-size: 80%; /* ボックスの文字サイズ */
		
  margin-top : 20px;
  margin-left : 20px;
  margin-right : 20px;
  margin-bottom : 20px;
}

/* --- 見出し --- */
.section H2 {
margin: 0; /* 見出しのマージン */
padding: 6px 10px; /* 見出しのパディング（上下、左右） */
background-color : green; /* 見出しの背景色 */
border-bottom: 1px #c0c0c0 solid; /* 見出しの下枠線 */
font-size: 100%; /* 見出しの文字サイズ */
  color : white;
}

/* --- ボックス内の段落 --- */
.section p {
margin: 1em 10px; /* 段落のマージン（上下、左右） */
}
