/* popup-container */
.popup-container {
	display: none;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
}
.popup-container.on {
	display: block;
}

.popup-container .popup {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 512px;
	max-height: calc(100% - 24px);
	border: 6px solid #4391ff;
	transform: translate(-50%, -50%);
}
.popup-container .popup .title {
	position: sticky;
	top: 0;
	left: 0;
	background-color: #4391ff;
	text-align: center;
	color: #ffffff;
	font-size: 22px;
	line-height: 58px;
	font-weight: 800;
}

.popup-container .popup .content {
	padding: 28px;
	background-color: #ffffff;
}

.popup-container .popup .content .message {
	text-align: center;
	font-size: 18px;
}

.popup-container .popup .content .notice-field {
	width: 100%;
	margin-bottom: 20px;
	padding: 16px;
	border-radius: 32px;
	background-color: #efefef;
	text-align: center;
	font-size: 14px;
	line-height: 20px;
}
.popup-container .popup .content .notice-field .lb {
	display: block;
}
.popup-container .popup .content .input-field {
	display: inline-block;
	width: 100%;
	margin-bottom: 12px;
}
.popup-container .popup .content .input-field .label {
	float: left;
	display: inline-block;
	width: 120px;
	margin: 0;
	font-size: 16px;
	line-height: 32px;
	font-weight: 400;
	text-indent: 8px;
	cursor: default;
}
.popup-container .popup .content .input-field input {
	float: left;
	display: inline-block;
	width: calc(100% - 120px);
	height: 32px;
	padding: 8px;
	font-size: 16px;
	line-height: 30px;
}
.popup-container .popup .content .button-field button {
	display: inline-block;
	width: 100px;
	height: 40px;
	margin-left: 10px;
	border: 2px solid #292e34;
	background-color: #292e34;
	color: #ffffff;
	font-size: 16px;
	line-height: 36px;
	font-weight: 400;
	cursor: pointer;
}
.popup-container .popup .content .button-field button:hover {
	background-color: #ffffff;
	color: #292e34;
}
.popup-container .popup .content .button-field button.blue {
	border-color: #4391ff;
	background-color: #4391ff;
	color: #ffffff;
}
.popup-container .popup .content .button-field button.blue:hover {
	background-color: #ffffff;
	color: #4391ff;
}

@media screen and (max-width: 1024px) {
	.popup-container .popup {
		width: calc(100% - 24px);
		overflow: auto;
	}
	.popup-container .popup .content {
		min-height: calc(100% - 58px);
		padding: 14px;
	}
	.popup-container .popup .content .notice-field {
		text-align: left;
	}
	.popup-container .popup .content .notice-field .lb {
		display: inline-block;
	}
	.popup-container .popup .content .input-field input {
		width: 100%;
	}
}

#survey.popup-container .popup {
	background-color: #4391ff;
}
#survey.popup-container .popup .content .text-field {
	display: inline-block;
	width: 100%;
	margin-top: 12px;
	vertical-align: top;
}
#survey.popup-container .popup .content .text-field .label {
	float: left;
	display: inline-block;
	width: 80px;
	margin: 0;
	font-size: 18px;
	line-height: 20px;
	font-weight: 800;
	cursor: default;
}
#survey.popup-container .popup .content .text-field .label::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 20px;
	margin-right: 8px;
	border-radius: 2.5px;
	background-color: #4391ff;
	vertical-align: top;
}
#survey.popup-container .popup .content .text-field .text {
	float: left;
	display: inline-block;
	width: calc(100% - 80px);
	font-size: 18px;
	line-height: 20px;
	font-weight: 400;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
#survey.popup-container .popup .content .notice-field {
	margin-top: 20px;
}
#survey.popup-container .popup .content .input-field input {
	border: 1px solid #4391ff;
}
#survey.popup-container .popup .content .tos {
	width: 100%;
	height: 85px;
	border: 1px solid #efefef;
	padding: 6px;
	text-align: left;
	color: #898989;
	font-size: 13px;
	overflow: scroll;
	resize: none;
}
#survey.popup-container .popup .content .check-field {
	display: inline-block;
	position: relative;
	width: 100%;
	padding: 0 10px;
	margin-top: 8px;
	font-size: 14px;
	line-height: 18px;
}
#survey.popup-container .popup .content .check-field input[type=checkbox] {
	position: absolute;
	z-index: -1000;
	top: 0;
	left: 0;
}
#survey.popup-container .popup .content .check-field label {
	display: inline-block;
	position: relative;
	cursor: pointer;
}
#survey.popup-container .popup .content .check-field label::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 6px;
	border: 2px solid #4391ff;
	vertical-align: text-bottom;
}
#survey.popup-container .popup .content .check-field label::after {
	content: '\2713';
	display: none;
	position: absolute;
	top: -6px;
	left: 2px;
	font-size: 20px;
}
#survey.popup-container .popup .content .check-field input[type=checkbox]:checked+label::before {
	background-color: #4391ff;
}
#survey.popup-container .popup .content .check-field input[type=checkbox]:checked+label::after {
	display: inline-block;
}
#survey.popup-container .popup .content .button-field {
	margin-top: 40px;
	text-align: right;
}


#survey2.popup-container .popup {
	background-color: #4391ff;
}
#survey2.popup-container .popup .content .input-field input {
	border: 1px solid #719dd1;
}
#survey2.popup-container .popup .content .button-field {
	margin: 20px 0 12px 0;
	text-align: center;
}