@charset "UTF-8";


.policy {
}
.policy h2 {
	position: relative;
	padding-bottom: .7em;
	margin-bottom: 1em;
	font-size: 1.5em;
	margin-top: 2em;
}
.policy h2::before,
.policy h2::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 1px;
	width: 100%;
	background: #F5F5F5;
}
.policy h2::after {
	width: 5.6%;
	background: var(--gold);
}
.policy ul {
	list-style: disc;
	padding-left: 4em;
}
.policy > ol {
	padding: 1em 0 0;
}
.policy > ol > li {
	list-style-type: none;
	counter-increment: cnt;
	padding: 0 0 1em;
	margin-left: 1.7em;
}
.policy > ol > li::before {
	content: counter(cnt) ".";
	margin-left: -1.3em;
	margin-right: .5em
}
.policy > ol > li > ol {
	padding: 1em 0 .5em;
}
.policy > ol > li > ol > li {
	list-style-type: none;
	counter-increment: cnt2;
	margin-left: 2em;
}
.policy > ol > li > ol > li::before {
	content: "(" counter(cnt2) ")";
	margin-left: -1.85em;
	margin-right: .5em
}
@media screen and (max-width: 540px) {
	.policy h2::after {
		width: 14%;
	}
}