#send {
	position: relative;
	height: 550px;
	background: #eee;
}

#send_float {
	position: absolute;
	top: -50px;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: calc( 100% + 50px );
	background: url('../images/send_BG.png') top center no-repeat;
	background-size: cover;
	z-index: 99999999;
}

.send_input {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.send_input input, .send_input select {
	width: 300px;
	height: 45px;
	line-height: 45px;
	margin: 10px;
	padding: 10px;
	font-size: 16px;
	border-radius: 5px;
	border: 0;
	background: #fff;
	box-shadow: 0 5px 10px rgba(0,0,0,0.25);
}






#notice {
	display: flex;
	align-items: center;
	margin-top: 25px;
	font-size: 16px;
}

#notice input {
	display: none;
}

#notice label {
	display: inline-block;
	width: 22px;
	height: 22px;
	border: #fff 3px solid;
	border-radius: 15px;
	background: #fff;
	margin-right: 5px;
}

#notice input[type="checkbox"]:checked + label {
	background: #ee781e;
}

#notice a {
	color: #ee781e;
}






#social_media {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 25px;
}

#social_media li {
	margin: 0 5px;
}

#social_media li img {
	width: 50px;
}





#button_area {
	height: 60px;
	margin-top: 25px;
}

.button {
	width: 280px;
	animation-name: pop;
	animation-iteration-count: infinite;
	animation-duration: 1S;
	animation-timing-function: ease-in-out;
}

@keyframes pop {
	0%{
		width: 280px;
		margin: 0;
	}

	50%{
		width: 300px;
		margin: -2px -10px;
	}

	100%{
		width: 280px;
		margin: 0;
	}
}




@media screen and (max-width: 1366px) {

}

@media screen and (max-width: 1024px) {

	#send {
		height: 700px;
	}

	.send_input {
		flex-direction: column;
	}

	.send_input input, .send_input select {
		width: 325px;
	}

	
}

@media screen and (max-width: 767px) {

}

@media screen and (max-width: 320px) {
	.send_input input, .send_input select {
		width: 270px;
	}
}

@media screen and (max-device-width: 480px) {
	
}







