.privacy {
	width: 89%;
	max-width: 980px;
	margin: 50px auto;
	padding: 20px 20px 50px;
	border: 4px solid #cc0033;
	box-sizing: border-box;
}
.privacyTtl {
	margin-bottom: 20px;
	color: #cc0033;
	font-size: 1.28rem;
	font-weight: bold;
	text-align: center;
}
.privacyBox {
	padding: 0 20px;
	box-sizing: border-box;
}
.privacyTxt {
	margin-bottom: 30px;
	font-size: 1.14rem;
}
.privacyList {
	counter-reset: number;
}
.privacyList > * + * {
	margin-top: 20px;
}
.privacyList_item {
	position: relative;
	padding-left: 35px;
	font-size: 1.14rem;
	box-sizing: border-box;
}
.privacyList_item::before {
	content: counter(number);
	counter-increment: number;
	position: absolute;
	top: 0;
	left: 0;
	color: #c81528;
	font-size: 1.14rem;
	font-weight: bold;
	display: block;
}
.privacyList_item span {
	font-weight: bold;
	display: block;
}
.mb10 {
	margin-bottom: 10px;
}
@media screen and (max-width: 767px){
	.privacy {
		margin: 30px auto;
		padding: 15px;
		border: 2px solid #cc0033;
	}
	.privacyTtl {
		margin-bottom: 10px;
	}
	.privacyBox {
		padding: 0;
	}
	.privacyTxt {
		margin-bottom: 15px;
	}
	.privacyList_item {
		padding-left: 25px;
	}
}
