@charset "shift-jis";

/* ラジオボタンのデザイン */
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%;
	max-width:575px;
	height:50px;
	line-height:48px;
	padding:0 35px 0 10px;
	background-color:#f8f8f8;
	color:#000;
	border:1px solid #aaa;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	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);*/
	background:#f5f5f5 url(../images/select_arrow.png)no-repeat right 50%;
	background-size:30px auto;
	font-weight:normal;
}
select.short{
	width:135px;
}
select.middle{
	width:280px;
}
select::-ms-expand {
    display: none;
}
select option,
select optgroup{
	background:#fff;
}
input[type="text"],
input[type="email"],
input[type="tel"]{
	width:90%;
	font-size:16px;
	height:50px;
	line-height:50px;
	padding:0 15px;
	color:#000;
	border:1px solid #aaa;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-weight:normal;
	background-color:#f5f5f5;
}
input[type="text"].s_short{
	width:104px;
}
input[type="text"].short{
	width:192px;
}
input[type="text"].middle{
	width:560px;
}

textarea{
	width:90%;
	min-height: 16em;
	font-size:16px;
	padding:0 10px;
	color:#000;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border:1px solid #aaa;
	background-color:#f5f5f5;
	font-weight:normal;
	line-height: initial;
}



@media screen and (max-width:768px){

select{
	width:100%;
}
select.short{
	width:140px;
}
select.middle{
	width:100%;
}
input[type="text"],
input[type="email"],
input[type="tel"]{
	width:100%;
	padding:0 5px;
}
input[type="text"].s_short{
	width:72px;
}
input[type="text"].short{
	width:90px;
}
input[type="text"].middle{
	width:100%;
}
textarea{
	width:100%;
	min-height: 10em;
}

}
