@charset "utf-8";
/* CSS Document */

/* ���[���t�H�[�� */
#mailform {
	margin: 2rem 0 4rem;
}
#mailform .formArea {
	width:100%;
	margin-bottom:1em;
}
#mailform .formArea label {
	width:100%;
	margin-bottom:0.5em;
}
#mailform .formArea span {
	font-size:1.2rem;
	color:#d63260;
}
#mailform .formArea input, #mailform .formArea textarea {
	width:100%;
	margin-bottom: 1rem;
	border-radius: 4px;
	border:1px solid #999;
	font-size: 1.8rem;
	color: #000;
	padding: 0.5rem;
}
#mailform .result-box {
	text-align: center;
	margin-bottom: 6rem;
}
#mailform .result-box a {
	color: #d63260;
	text-decoration: underline;
}
#mailform .result-box a:hover {
	color: #fff;
	text-decoration: none;
}
#mailform .submitBtn {
	width:100%;
	border: none;
	font-size: 2rem;
	text-align: center;
	padding: 2rem 0;
	margin-bottom: 1rem;
	border-radius: 4px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.6) inset,
	0 2px 10px rgba(255, 255, 255, 0.6) inset;
	background: #ff6702;
	color: #fff;
	font-weight: bold;
	text-shadow:-1px -1px 0 rgba(0, 0, 0, 0.6);
}
#mailform .submitBtn:hover {
	background: #999;
}

#mailform input::-webkit-input-placeholder{color:#aaa;}
#mailform input::-moz-placeholder{color:#aaa;}
#mailform input:-ms-input-placeholder{color:#aaa;}

#mailform textarea::-webkit-input-placeholder{color:#aaa;}
#mailform textarea::-moz-placeholder{color:#aaa;}
#mailform textarea:-ms-input-placeholder{color:#aaa;}


@media only screen and (min-width:981px) {
	#mailform .formArea input, #mailform .formArea textarea {
		font-size: 1.4rem;
	}
	#mailform .formArea {
		width: 80%;
		margin: 1rem auto;
	}
	#mailform .submitBtn {
		width: 80%;
		padding: 1.5rem 0;
	}
}