
.send {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background-size: cover;
	padding: 75px 0;
	background: #f2f2f2;
}


.send .wrapper {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	background: url('../images/child.png') center left no-repeat;
	background-size: 275px auto;
}



.send_float {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc( 100% - 300px );
	background-size: cover;
}

.send_float .title {
	width: 100%;
	text-align: left;
	font-size: 30px;
	margin-bottom: 20px;
}

.send_float .title span {
	color: #fc796f;
}

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

.send_input input, .send_input select {
	width: calc( 100%/3 - 20px/3 );
	height: 40px;
	line-height: 40px;
	padding: 0 15px;
	margin-bottom: 10px;
	font-size: 16px;
	border: 0;
	background: #fff;
}

.send_input input + *, .send_input select + * {
	margin-left: 10px;
}

.send_input select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}



.send_bottom {
	display: flex;
	width: 100%;
	flex-direction: row;
	justify-content: space-between;
}




.notice {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #333;
}

.notice input {
	display: none;
}

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

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

.notice a {
	color: #333;
	text-decoration: underline !important;
}

.notice_front {
	display: flex;
	flex-direction: row;
	align-items: center;
}






.social_media {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: 15px;
}

.social_media li {
	margin: 0 5px;
}

.social_media li img {
	width: 30px;
}





.button_area {
	width: calc( 100%/3 - 20px/3 );
	height: 40px;
}

.button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 40px;
	font-size: 18px;
	text-align: center;
	color: #ffff19;
	background: #f99789;
}

.button img {
	height: 20px;
}


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

	.send {
		padding: 25px 0;
	}

	.send .wrapper {
		background: url('../images/child.png') center top no-repeat;
		background-size: auto 225px;
	}

	.send_float {
		padding: 250px 0 25px;
		width: 100%;
	}

	.send_float .title {
		font-size: 23px;
		text-align: center;
	}

	.send_input {
		flex-direction: column;
	}

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

	.notice, .send_bottom {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.notice_front {
		margin-bottom: 15px;
	}

	.social_media {
		margin: 0;
	}

	.send_input input + *, .send_input select + * {
		margin-left: 0px;
	}

	.button_area {
		width: 100%;
		margin-top: 25px;
	}
	
}




