@charset "utf-8";
/*------------------------------------------------------
　フォームメール
-------------------------------------------------------*/

input[type="text"], input[type="tel"], input[type="number"], input[type="email"]  {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 4px;
}
button {
    width: 250px;
    margin: 0 auto 30px auto;
    display: block;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 130%;
    cursor: pointer;
    cursor: hand;
	background: #ef9191;
	color:#fff;
}
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 4px;
}
input[type="submit"], input[type="reset"],input[type="button"] {
	width: 10em;
	padding: 0.5em 0 0.4em;
	border: solid 1px #CCCCCC;
	cursor: pointer;
	border-radius: 6px;
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 26%, #e5e5e5 100%);
	background: -webkit-linear-gradient(top, #ffffff 26%,#e5e5e5 100%);
	background: linear-gradient(to bottom, #ffffff 26%,#e5e5e5 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 );
}
input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
	background: #92CDB6;
}

@media screen and (max-width:648px){
input[type="text"], input[type="tel"], input[type="number"], input[type="email"] {
	width: 92%;
}
input.radio {
	display:inline-block;
	width:40%;
	height:2em;
	vertical-align:top;
}
label.radiolabel {
	display:inline-block;
	width:90%;
	height:2em;
	line-height:2em;
	background:#EEF;
	border:1px solid #CCC;
	padding-left: 1em;
	margin: 0 auto;
}
}

input[type="text"]{
	width:100%;
	padding:5px 0;
	border:1px solid #aaa;
	border-radius:4px;
}
textarea{
	width:100%;
	padding:5px 0;
	border:1px solid #aaa;
	border-radius:4px;
}

input.send{
	width:250px;
	margin:0 auto 30px auto;
	display:block;
	padding:10px;
	border:1px solid #aaa;
	border-radius:4px;
	font-size:130%;
	cursor: pointer;
	cursor: hand;
}
