@charset "utf-8";
/*==================================================
	【個人情報保護方針】ページ固有のスタイル
==================================================*/
#privacy::after {
	content: "PRIVACY";
}
#privacy .box_txt {
	border: 3px solid #fff;
	padding: 25px 30px;
	margin-bottom: 50px;
}
#privacy .box_list {
	background: #fff;
	border-radius: 25px;
	padding: 50px 60px;
}
#privacy ul.list_policy {
	counter-reset: number;
	list-style: none;
}
#privacy ul.list_policy li {
	position: relative;
	padding: 20px 0 20px 1.5em;
}
#privacy ul.list_policy > li::before {
	position: absolute;
	top: 20px;
	left: 0;
	counter-increment: number;
	content: counter(number) ".";
	color: var(--color-font);
}
#privacy ul.list_policy li b {
	display: block
}
#privacy ul.maru li {
	padding: 0.5em 0 0 1.2em;
}
#privacy ul.maru li::before {
	position: absolute;
	content: "";
	background: #fed300;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	top: 22px;
	left: 0;
}
#privacy .box_date {
	margin-top: 2em;
}
#privacy .box_date p {
	text-align: right;
	margin-bottom: 0;
}
#privacy .under {
	text-decoration: underline;
	color: #f5a20e;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) and (min-width: 641px){ /* タブレットのみ */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#privacy .box_txt {
		padding: 15px 20px;
		margin-bottom: 30px;
	}
	#privacy .box_list {
		padding: 20px 30px 30px;
	}
	#privacy ul.list_policy li {
		padding: 10px 0 10px 1.5em;
	}
	#privacy ul.list_policy li::before {
		top: 10px;
	}
	#privacy ul.maru li {
		padding: 0.5em 0 0 1.2em;
	}
	#privacy ul.maru li::before {
		width: 12px;
		height: 12px;
		top: 14px;
	}
	#privacy .box_date {
		margin-top: 1em;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#privacy .box_txt {
		padding: 10px 20px;
		margin-bottom: 20px;
	}
	#privacy .box_list {
		padding: 10px 20px 20px;
	}
	#privacy ul.list_policy li::before {
		top: 10px;
	}
	#privacy ul.maru li {
		padding: 0.5em 0 0 1.2em;
	}
	#privacy ul.maru li::before {
		width: 10px;
		height: 10px;
		top: 14px;
	}
}