@charset "utf-8";
body{
	background-color: #222222;
}
*{
	margin:0;
	padding:0;
	box-sizing: border-box;
}
img{
	display: block;
	width: 100%;
}

.container{
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
ul{
	list-style: none;
}
.sec1{
	position: relative;
}
.sec1_btn{
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	width: 75%;
	cursor: pointer;
}
.form_wrapper{
	background-color: #fff;
	padding: 5% 12%;

}
form{
	margin: 0 auto;
}
.form_box{
	display: flex;
	flex-direction: column;
	margin-bottom: 3%;
}
.form_box label{
	font-size: clamp(16px, 3vw, 26px);
	margin-bottom: 10px;
	font-weight: bold;
}
.form_box input{
	font-size: clamp(14px, 3vw, 26px);
	padding: 3% 5%;
	border-radius: 50px;
	border: 1px solid #999999;

}
.form_box input::placeholder{
	font-size: clamp(14px, 3vw, 26px);
	color: #cccccc;
}
.privacy_box{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
#privacy_agreement{
	width: 20px;
	height: 20px;
	margin-right: 2%;
	cursor: pointer;
}
.label_privacy_agreement{
	font-size: clamp(14px, 2vw, 20px);
}
.privacy_modal{
	font-weight: bold;
	cursor: pointer;
	font-size: clamp(14px, 2vw, 20px);
}
.form_box button{}
.consult_request_btn{
	display: block;
	width: 100%;
}
/*모달창*/
#privacy_modal_container{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	z-index: 100;
}
.privacy_modal_content{
	position: absolute;
	width: 80%;
	height: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #fff;
	padding: 2%;
	border-radius: 10px;

}
.privacy_modal_contents{
	width: 100%;
	height: 100%;
	overflow-y: auto; /* 세로 스크롤을 자동으로 생성 */
	overflow-x: hidden; /* 가로 스크롤을 숨김 */
}
.close{
	text-align: right;
	cursor: pointer;
	position: absolute;
	top: -6%;
	right: 1%;
	font-weight: bold;
	color: #ffffff;
}
@media (max-width: 768px){
	#privacy_agreement{
		width: 15px;
		height: 15px;
	}
	.privacy_modal_content{
		padding: 5%;
		height: 50%;
	}
}
