.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	z-index: 999;
	display: none;
}
.privacy-modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 1000px;
	background: var(--gray01);
	z-index: 1000;
	padding: 20px;
}
.privacy-title-box{
	display:flex;
	align-items: center;
	justify-content: space-between;
}
.privacy-title-box h3{
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--white);
	text-align: center;
}
.modal-close i{
	font-size: 1.25rem;
	color: var(--white);
}
.privacy-content{
	height: 400px;
	background: var(--white);
	overflow-y: auto;
	margin-top: 20px;
	padding: 20px;
}
.privacy-content h4{
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--black);
	margin-top: 40px;
}
.privacy-content .text-box{
	margin-top: 10px;
}
.privacy-content ol li{
	line-height: 1.5;
}
.privacy-content strong{
	display: block;
	font-weight: 700;
	margin-bottom: 10px;
}

