
/* -------------------------------------
	ページ：プライバシーポリシー
----------------------------------------*/
.site__conditions-container {
	background: var(--bg-color-gray);
	padding: 7% 0;
}
@media screen and (max-width: 750px) {
	.site__conditions-container {
		padding: 7% 0 15%;
	}
}

.site__conditions-area {
	width: 80%;
	margin: auto;
	background: #fff;
	padding: 3%;
	border-radius: 5px;
	font-size: 1.1vw;
	line-height: 1.9;
}
@media screen and (max-width: 750px) {
	.site__conditions-area {
		width: 90%;
		font-size: 4.0vw;
		padding: 6% 5% 9%;
	}
}

.site__conditions-area-wrap {
	display: flex;
	flex-direction: column;
	gap: 4vw;
}
@media screen and (max-width: 750px) {
	.site__conditions-area-wrap {
		gap: 13vw;
		margin-bottom: 5%;
	}
}

.site__conditions-area>p {
	margin-bottom: 4%;
}
@media screen and (max-width: 750px) {
	.site__conditions-area>p {
		margin-bottom: 10%;
	}
}
.site__conditions-area .common__text-with-leftline {
	margin-bottom: 2%;
}
@media screen and (max-width: 750px) {
	.site__conditions-area .common__text-with-leftline {
		margin-bottom: 7%;
	}
}

