@charset "UTF-8";

/* 基本フォントサイズ */
.content{
	font-size: 14px;
}

/* 段落 */
.content p{
	line-height: 1.6;
	margin:0 0 20px;
}
/* 見出し */
.content h2{
	font-size: 18px;
	font-weight: 600;
	margin:0 0 10px;
	position: relative;
	padding-left: 20px;
	margin-top:50px;
}
.content h2:first-of-type{
	margin-top:0;
}
.content h2::before{
	content: '';
	color: #9B7F55;
	display: inline-block;
	width: 20px;
	height: 20px;
	border-top: 1px solid #9B7F55;
	transform: rotate(-50deg);
	-webkit-transform: rotate(-50deg);
	left: 5px;
	position: absolute;
	top: 6px;
}
/* リンク色 */
.content a{
	text-decoration: underline;
}
.grayout{
	color:#999;
}
/* 表組 */
th,td{
	vertical-align: top;
	text-align: left;
	font-weight: 500;
	padding: 2px;
	line-height: 1.6;
}