/*--------------------------------------------------*/
/* 共通 */
/*--------------------------------------------------*/

body {
	margin: 0;
	padding: 0;
}
body * {
	box-sizing: border-box;
}
.policy-page {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	color: #444444;
	padding: 30px 20px;
}
.policy-page .text-center {
	text-align: center;
}
.policy-page h1 {
	font-size: 20px;
	line-height: 1.6;
	text-align: center;
	margin: 0 0 1.1rem 0;
}
.policy-page h2 {
	font-size: 16px;
	line-height: 1.6;
	margin: 2rem 0 1rem 0;
}
.policy-page h1 + h2 {
	margin-top: 0;
}
.policy-page p {
	margin: 0 0 1rem 0;
}
.policy-page ol {
	padding-left: 1.3em;
}
.policy-page ul {
	padding-left: 1.6em;
}
.policy-page > ol > li > ul {
	list-style-type: disc;
}
.policy-page > ol > li > ol {
	list-style: none;
	counter-reset: number;
	padding-left: 0;
}
.policy-page > ol > li > ol > li {
	position: relative;
	padding-left: 1.6em;
}
.policy-page > ol > li > ol > li:before {
	counter-increment: number;
	content: '(' counter(number) ')';
	position: absolute;
	left: 0;
}
.policy-page table {
	margin-top: 40px;
}
.policy-page table th,
.policy-page table td {
	vertical-align: top;
	padding: 0;
}
.policy-page table th {
	font-weight: 400;
	text-align: left;
	width: 6em;
}
@media (max-width: 767) {
	.policy-page {
		font-size: 13px;
	}
}