@charset "UTF-8";
/* 規約の本文のスタイル */
.term p {
	font-size: 1em;
	line-height: 1.6;

	margin-bottom: 20px;

	color: #555;
}

/* 見出しのスタイル */
.term h4 {
	font-size: 1.2em;
	font-weight: bold;

	margin-top: 20px;
	margin-bottom: 10px;

	color: #333;
}

/* リストのスタイル */
.term ol.list-num {
	margin-bottom: 20px;
	padding-left: 20px;

	list-style-type: decimal;
}

.term ol.list-parentheses {
	margin-bottom: 20px;
	padding-left: 20px;

	list-style-type: none;

	counter-reset: list-parentheses;
}

.term ol.list-parentheses > li:before {
	font-weight: bold;

	margin-right: 5px;

	content: "(" counter(list-parentheses) ")";
	counter-increment: list-parentheses;
}

.term ul {
	margin-bottom: 20px;
	padding-left: 20px;

	list-style-type: none;
}

.term ul li::before {
	font-weight: bold;

	margin-right: 5px;

	content: "・";
}

/* 太字強調 */
.term .font-weight-bold {
	font-weight: bold;

	color: #222;
}
