@charset "UTF-8";

/*--------------------------------------------------------------------
privacy.html
privacy.css
--------------------------------------------------------------------*/

/*------------privacy---------------------------------------------------------------*/
#privacy section:not(:first-of-type) { margin-top: 20px; }
#privacy ol li,
#privacy ul li:not(:last-of-type) { margin-top: 0.25em; }
#privacy ol { counter-reset: number; }
#privacy ol li {
	position: relative;
	padding-left: 1.6em;
	text-indent: -1.6em;
}
#privacy ol li::before {
	margin-right: 0.5em;
  counter-increment: number;
  content: counter(number, lower-latin) '）';
}
#privacy div {
	margin-top: 1em;
	padding: 1em;
	background-color: var(--co-gray10);
}
#privacy ul > li {
	padding-left: 1.3em;
	text-indent: -1.3em;
}
#privacy ul > li:before {
	content: "〇";
	margin-right: 0.3em;
}

@media (max-width: 960px) {
}