@charset "utf-8"; 

#privacy{
	background: #F2F2F2;
	padding: 5em 3.5em 6.875em;
}
#privacy .block{
	position: relative;
	width: auto;
	max-width: 1080px;
	background: #fff;
	padding: 5em 5.75em 6.875em;
	margin: 0 auto;
	box-sizing: border-box;
}
#privacy .bold{
	font-weight: bold;
}
#privacy .center{
	text-align: center;
}
#privacy p{
	line-height: 1.8;
}
#privacy h2{
	font-size: 1.6rem;
	line-height: 1.8;
	font-weight: bold;
	margin-bottom: 0.5em;
}
#privacy ol{
	counter-reset: item;
}
#privacy ol li{
	position: relative;
	line-height: 1.8;
	padding: 0 0 0 1.5em;
}
#privacy ol li:before {
	position: absolute;
	top: 0;
	left: 0;
	counter-increment: item;
	content: counter(item)'.';
}
#privacy p + p,
#privacy p + h2,
#privacy ol + h2{
	margin-top: 3em;
}
#privacy .notes{
	font-size: 1.4rem;
	text-indent: -1em;
	padding: 0 0 0 1em;
}

@media screen and (max-width : 767px){

	#privacy{
		width: auto;
		padding: 10vw 6.4vw;
		margin-top: -10vw;
	}
	#privacy .block{
		padding: 6.4vw;
	}
	#privacy p + p,
	#privacy p + h2,
	#privacy ol + h2{
		margin-top: 2em;
	}

}
@media (orientation: landscape) and (max-width : 767px){


}