@charset "UTF-8";

.Bigtitleshadow {
	text-shadow: none;
}
.Bigtitle {
	color: #3e3e3e;
	line-height: 1.4;
}
.Catbox ol {
	counter-reset: number; /* 名前を付けたカウンターをリセット */
	list-style: none; /* olが数字を付けることをキャンセル */
	margin: 0;
	padding: 0;
}
.Catbox ol li {
	margin-bottom: 30px;
	font-size: 14px;
	line-height: 1.6;
}
.Catbox ol li:before{
	/* カウンタ（数字になる部分） */
	counter-increment: number; /* 任意の名前を付けて！ */
	content: counter(number); /* 名前を付けたカウンターを呼び出し */
	margin-right: 5px;
	font-size: 40px;
	line-height: 1;
	color: #bf1920;
	/* 装飾 */
}
.Catbox p {
	font-size: 14px;
	line-height: 1.4;
}
.Catbox p.capImg {
	margin-top: 20px;
	text-align: center;
}
.Catbox p.capImg img {
	max-width: 400px;
	width: 100%;
}