/* event.css */

/* reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Noto Sans KR", sans-serif;
}

body, html {
	min-width: 320px;
	overflow-x: hidden;
	
}

ol, li {
	list-style: none;
}

input[type='text'],
input[type='tel'],
input[type='mail'],
select,
button {
	appearance: none;
}

input[type='file'] {
	padding-top: 6px !important;
}

img {
	max-width: 100%;
}

/* common */
.container {
	max-width: 620px;
	margin: auto;
}

.image_zone {
	text-align: center;	
}

.image_zone > img {
	display: block;
	margin: auto;
	/*border: 1px solid #000;*/
}

.form_zone {
	max-width: 1100px;
	margin: auto;
	padding: 0 10px 40px;
	margin-top: 60px;
}

.form_zone .form_group {
	margin-bottom: 12px;
}

.form_zone .form_group:last-child {
	margin-bottom: 0px;
}

.form_zone .form_group label,
.form_zone .form_group input {
	display: block;
}

.form_zone .form_group > label {
	font-weight: bold;
	margin-bottom: 4px;
}

.form_zone .form_group input {
	width: 100%;
	height: 40px;
	padding: 0 8px;
	border: 1px solid #999;
	border-radius: 8px;
}

.term_zone .term_content {
	height: 200px;
	padding: 8px;
	margin-bottom: 8px;
	font-size: 13px;
	color: #454545;
	border: 1px solid #999;
	overflow-y: scroll;
	border-radius: 8px;
}

.term_zone .term_content p {
	font-size: 14px;
	color: #000;
	font-weight: 700;
}

.agree_chk_zone {
	display: flex;
	justify-content: center;
	align-items: center;
}

.agree_chk_zone .term_text {
	margin-right: 16px;
}

.agree_chk_zone .agree_chk span {
	margin-right: 8px;
}

.agree_chk_zone .agree_chk span:last-child {
	margin-right: 0;
}


.agree_chk_zone .agree_chk input {
	display: none;
}

.agree_chk_zone .agree_chk label {
	position: relative;
	cursor: pointer;
}

.agree_chk_zone .agree_chk input + label::before {
	content:'';
	display: inline-block;
	width: 12px;
	height: 12px;
	border: 1px solid #999;
	border-radius: 50%;
	margin-right: 4px;
}

.agree_chk_zone .agree_chk input:checked + label::after {
	content: '';
	display: inline-block;
	position: absolute;
	left: 2px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #E63394;
}

.btn_zone {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 60px;
}

.btn_zone .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-basis: calc(50% - 5px);
	height: 60px;
	background-color: #999;
	color: #fff;
	cursor: pointer;
}

.btn_zone .btn.submit_btn {
	background-color: #E63394;
}

.result_zone {
	text-align: center;
	margin-top: 60px;
	padding: 40px 10px;
	border: 1px solid #999;
	border-radius: 8px;
	font-size: 24px;
}

.footer {
	width: 100%;
	border-top: 1px solid #999;
	padding: 40px 10px;
	text-align: center;
	font-size: 12px;
}

@media screen and (max-width: 991px) {
	.form_zone,
	.btn_zone,
	.result_zone {
		margin-top: 32px;
	}

	.agree_chk_zone {
		flex-direction: column;
	}

	.result_zone {
		font-size: 16px;
	}
}