div#content {
	width: 100%;
	margin: 60px auto;
	font-size: 21px;
	padding-bottom:134px;
}
@media screen and (min-width: 676px) {
	div#content {
		padding-bottom:85px;
	}
}
@media screen and (min-width:768px) {
	div#content {
		max-width:750px;
	}
}
section p#notice {
	font-size:16px;
	text-align: center;
	color: #D80000;
	margin-bottom: 15px;
}
@media screen and (min-width:768px) {
	section p#notice {
		text-align: right;
		margin-right:20px;
	}
}
section dl dt {
	margin: 7px 15px 15px;
	font-size:21px;
	font-weight:600;
}
section#form dl dt small {
	margin-left:5px;
	font-size: 21px;
	background: #D80000;
	color: #FFF;
	padding: 1px 5px;
	border-radius: 8px;
}
section dl dd {
	font-size:21px;
	margin: 5px 0 40px 40px;
}
section#form dl dd input,
section#form dl dd textarea{
	background: #FFF;
	border: solid 2px #CCC;
	font-size: 21px;
	padding: 10px 15px;
	transition: all 0.5s;
}
section#form dl dd input:focus,
section#form dl dd textarea:focus{
	border: solid 2px #1A3D89;
	outline: none;
}
section#form dl dd input {
	width: 96%;
	height: 60px;
}
section#form dl dd textarea {
	width: 96%;
	height: 145px;
	resize: none;
}
button {
	display: block;
	font-size:20px;
	font-weight: 600;
	margin: 60px auto;
	width: 280px;
	height:60px;
	background:#E4007F;
	color: #FFF;
	border: none;
	border-radius: 0;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.5s;
}

button:hover{
	opacity: 0.8;
}

div#button {
	text-align: center;
	margin: 60px auto;
}
button#send, button#back {
	display: inline-block;
	margin: 0 10px 0;
	width: 120px;
}
section#confirm, section#thanks, section#error {
	display: none;
}
section#confirm h2 {
	font-size: 24px;
	text-align: center;
	margin-bottom:50px;
}
section#thanks p, section#error p {
	margin: 100px 0 60px 0;
	text-align: center;
	line-height: 220%;
}

/* Loading */
.sending {
	display: none;
	width:200px;
	position: absolute;
	margin: auto;
	top: 70px;
	left: 0;
	right: 0;
}
.circle{
	width:200px;
	height:200px;
	border-radius:50%;
	border:25px solid #CCC;
	border-top-color:rgba(0,0,0,0.3);
	box-sizing: border-box;
	animation:circle 1s linear infinite;
	-webkit-animation:circle 1s linear infinite;
}
@keyframes circle{
	0%{transform:rotate(0deg)}
	100%{transform:rotate(360deg)}
}
@-webkit-keyframes circle{
	0%{-webkit-transform:rotate(0deg)}
	100%{-webkit-transform:rotate(360deg)}
}

footer{
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 100;
}
