@charset "utf-8";

main#rContainer {
	background-color: #fff;
	max-width: 1000px;
	margin: 0 auto 100px;
	font-size: calc(16/16*1rem);
	padding: 0 2em;
}
h1 {
	font-size: calc(24/16*1rem);
	padding: 1em;
	white-space: nowrap;
}
ol.listSections {
	text-align: left;
	list-style: decimal;
	list-style-position: inside;
}
ol.listSections > li {
	margin-top: 2em;
	text-indent: -1em;
	margin-left: 1em;
}
ol.listSections ol {
	list-style: none;
	list-style-position: inside;
	margin-left: 2em;
}
ol.listSections ol > li {
	margin-top: 1em;
	counter-increment: cnt;
	text-indent: -1.7em;

}
ol.listSections ol > li::before {
	content: "("counter(cnt)")";
	padding-right: 0.5em;
}

@media (width >= 480px) {
	main#rContainer {
		font-size: calc(20/16*1rem);
	}
	h1 {
		font-size: calc(36/16*1rem);
	}
}