@charset "UTF-8";

.privacy {
	background: #fff;
	border: 1px solid #000;
	box-sizing: border-box;
	width: 90%;
	max-width: 912px;
	margin: 50px auto 108px;
	padding: 30px 35px 70px;
}

.privacy p,
.privacy li {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.875;
}

.privacy h2 {
	font-size: 25px;
	letter-spacing: .05em;
	line-height: 1.6;
	padding: 7px 0 7px 21px;
	position: relative;
	margin: 67px 0 16px;
}

.privacy h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: #3CCDF2;
	width: 6px;
	height: 53px;
}

.privacy ol {
	counter-reset: counter;
}

.privacy ol li {
	counter-increment: counter;
	padding-left: 1em;
	position: relative;
	margin-top: 16px;
}

.privacy ol li::before {
	content: counter(counter)".";
	position: absolute;
	left: 0;
}

.privacy ol.big > li {
	padding-left: 40px;
}

.privacy ol.big > li::before {
	font-size: 25px;
	font-weight: bold;
	top: -10px;
}

.privacy div {
	margin-top: 54px;
}

@media screen and (max-width:767px) {
	.privacy {
		margin: 22px auto 72px;
		padding: 24px 24px 32px;
	}
}