/* ラジオボタンのデザイン */
input[type="radio"] {
	position: relative;
	-webkit-appearance: button;
	appearance: button;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 18px;
	height: 18px;
	margin-right:10px;
	content: "";
	background-color: #FFFFFF;
	border: 1px solid #999999;
	-webkit-border-radius: 18px;
	border-radius: 18px;
	-webkit-box-shadow: inset 3px 3px 8px rgba(0,0,0,0.2);
	box-shadow: inset 3px 3px 8px rgba(0,0,0,0.2);
	vertical-align: middle;
	cursor: pointer;
	outline : none;
}
input[type="radio"]:checked:after {
	display: block;
	position: absolute;
	top: 3px;
	left: 3px;
	content: "";
	width: 10px;
	height: 10px;
	background: #333;
	-webkit-border-radius: 12px;
	border-radius: 12px;
}
/* セレクトメニューのデザイン */
select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size:16px;
	width:80%;
	height:28px;
	padding:0 30px 0 10px;
	color:#000;
	border:1px solid #aaa;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border:1px solid #aaa;
	background: url(images/select_arrow.png) right 50% no-repeat, -webkit-linear-gradient(#ffffff, #e3e3e3);
	background: url(images/select_arrow.png) right 50% no-repeat, linear-gradient(#ffffff, #e3e3e3);
	font-weight:normal;
}
select::-ms-expand {
    display: none;
}
select option,
select optgroup{
	background:#fff;
}
input[type="text"],
input[type="email"],
input[type="tel"]{
	width:80% !important;
	font-size:16px;
	height:40px;
	padding:0 5px;
	color:#000;
	border:1px solid #339900;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	font-weight:normal;
}
textarea{
	width:80% !important;
	min-height: 8em;
	font-size:16px;
	height:32px;
	padding:0 10px;
	color:#000;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border:1px solid #339900;
	font-weight:normal;
}
