/* テキストボックス */
input[type="text"],
input[type="email"],
input[type="tel"]{
	width:450px;
	font-size:24px;
	height:45px;
	padding:0 10px;
	background-color:#fff;
	border:1px solid;
}
@media screen and (max-width:768px){
input[type="text"],
input[type="email"],
input[type="tel"]{
	width:100%;
	font-size:16px;
}
}

/* セレクトボックス */
select{
	width:200px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height:34px;
	padding:0 30px 0 20px;
	border:1px solid #565656;
	color:#000;
	background:#fff url(select_arrow.png)no-repeat right 5px center;
	background-size:14px auto;
	font-size:20px;
}
select::-ms-expand {
    display: none;
}
select option,
select optgroup{
	background:#fff;
}


/* ラジオボタン */
input[type="radio"] {
	opacity:0;
}
input[type="radio"]  + span{
	margin-left:-15px;
	padding-left:30px;
	display:inline-block;
	vertical-align:middle;
	position: relative;
}
input[type="radio"]  + span:before{
	content: "";
	display:inline-block;
	width:22px;
	height: 22px;
	margin-right:10px;
	background-color: #FFFFFF;
	border: 1px solid #d2d2d2;
	border-radius:  50%;
	-webkit-box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	cursor: pointer;
	outline : none;
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
}
input[type="radio"]:checked + span:after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: #309696;
	position: absolute;
	top: 50%;
	left: 5px;
	transform:translateY(-50%);
	border-radius: 50%;
}


/* チェックボックス */
input[type="checkbox"] {
	opacity:0;
}
input[type="checkbox"] + span{
	display:inline-block;
	vertical-align:middle;
	position: relative;
	font-weight:bold;
	margin-left:-15px;
}
input[type="checkbox"] + span:before{
	content:'';
	display:inline-block;
	width: 20px;
	height: 20px;
	margin-left:-25px;
	margin-right:10px;
	background-color: #FFFFFF;
	border: 1px solid #d2d2d2;
	-webkit-box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	box-shadow: inset 3px 3px 8px rgba(0,0,0,0.1);
	vertical-align: middle;
	border-radius:2px;
	cursor: pointer;
	outline : none;
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);
}
input[type="checkbox"]:checked + span:after {
	content:'';
	display: block;
	width: 12px;
	height: 12px;
	position: absolute;
	top: 50%;
	left: -21px;
	transform:translateY(-50%);
	content: '' !impotant;
	background-color:#f00;
}


/* テキストエリア */
textarea{
	width:100%;
	min-height: 280px;
	font-size:24px;
	padding:10px 10px;
	color:#000;
	background-color:#fff;
	vertical-align:bottom;
	border:1px solid;
}
@media screen and (max-width:768px){
textarea{
	min-height: 180px;
	font-size:16px;
}
}


/* ボタン */
#contact input[type="submit"]{
	display:block;
	width:300px;
	line-height:70px;
	margin:60px auto 0;
	font-size:27px;
	font-weight:bold;
	background-color:#f7931e;
	color:#fff;
	transition : none;
	-webkit-transition : none;
	cursor:pointer;
}
#contact button[type="submit"]{
	display:inkline-block;
	width:150px;
	margin:30px 10px 0;
	line-height:70px;
	font-size:22px;
	font-weight:bold;
	background-color:#f7931e;
	color:#fff;
	cursor:pointer;
}
#contact button[type="button"]{
	display:inkline-block;
	width:150px;
	margin:30px 10px 0;
	line-height:70px;
	font-size:22px;
	font-weight:bold;
	background-color:#999;
	color:#fff;
	cursor:pointer;
}


input[type="submit"]:hover,
button[type="submit"]:hover,
button[type="button"]:hover{
	opacity:0.7;
}




@media screen and (max-width:768px){
#contact input[type="submit"]{
	width:100%;
	max-width:280px;
	line-height:50px;
	margin:30px auto 0;
	font-size:16px;
}
#contact button[type="submit"]{
	width:110px;
	margin:0 5px 0;
	line-height:40px;
	font-size:16px;
}
#contact button[type="button"]{
	width:110px;
	margin:0 5px 0;
	line-height:40px;
	font-size:16px;
}


}



/* プレイスホルダー */
input::placeholder,
textarea::placeholder{
  color:#9b9898;
}
input:-ms-input-placeholder,
textarea::placeholder{
  color:#9b9898;
}
input::-ms-input-placeholder,
textarea::placeholder{
  color:#9b9898;
}


/* エラー */
form label.error {
	margin-top:7px;
	color: red;
	display:block;
	text-align:left;
	font-size:18px;
}

