@charset "UTF-8";
/* privacy-policy.css */

section h2 {
	font-size: 20px;
	font-size: clamp(18px,1.8vw,20px);
	text-align: justify;
	color: #03008b;
}
section h2:after {
	content: "";
	width: 100%;
	height: 0.5px;
	display: block;
	margin-top: .75em;
	background-color: #93aab5;
}
section p {
	text-align: justify;
	line-height: 2;
	letter-spacing: .15em;
}
section p + h2 {
	margin-top: min(5vw,50px);
}
section h2 + p {
	margin-top: 1.25em;
}





@media screen and (max-width:768px) {
	section h2 {
		font-size: 14px;
	}
	section p + h2 {
		margin-top: 30px;
	}



}