@charset "utf-8";
/*------------------------------------------------------------
    privacy
------------------------------------------------------------*/
#main .pageTitle {
	padding-bottom: 2.8rem;
}
#main p {
	margin-bottom: 4rem;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.714;
	letter-spacing: 0.06em;
}
#main .textList {
	margin-bottom: 4rem;
	counter-reset: my-counter;
	font-size: 1.4rem;
	line-height: 1.714;
	letter-spacing: 0.06em;
}
#main .textList > li {
	margin-bottom: 3.9rem;
	padding-left: 1.4em;
	position: relative;
	font-weight: 700;
}
#main .textList > li::before {
	position: absolute;
	left: 0;
	top: 0;
	content: counter(my-counter)".";
	counter-increment: my-counter;
}
#main .textList > li:last-child {
	margin-bottom: 0;
}
#main .textList .subList {
	padding: 0.2rem 0 0.1rem 0.3em;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	counter-reset: sub;
}
#main .textList .subList li {
	padding-left: 2em;
	width: 100%;
	position: relative;
	font-weight: 400;
}
#main .textList .subList li::before {
	position: absolute;
	left: 0.1em;
	top: 0;
	content: "(" counter(sub)")";
	counter-increment: sub;
}
#main .last {
	margin-bottom: 0 !important;
	text-align: right;
	font-weight: 700;
}
#main a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	#main .pageTitle {
		padding-bottom: 9.4rem;
	}
	#main p {
		margin-bottom: 4rem;
		font-size: 1.5rem;
		letter-spacing: 0.08em;
		line-height: 1.8667;
	}
	#main .textList {
		margin-bottom: 4rem;
		font-size: 1.5rem;
		line-height: 1.6;
	}
	#main .textList > li {
		margin-bottom: 4.1rem;
		padding-left: 1.3em;
	}
	#main .textList > li:last-child {
		margin-bottom: 0;
	}
	#main .textList .subList {
		padding: 1.2rem 0 0 0;
		gap: 1.1rem;
	}
	#main .textList .subList li {
		font-size: 1.4rem;
		font-weight: 400;
		line-height: 1.428;
	}
}