/* チェックボックスのデザイン */
input[type="checkbox"] {
	position: relative;
	-webkit-appearance: button;
	appearance: button;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	content: "";
	background-color: #FFFFFF;
	border: 1px solid #999999;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-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;
	margin-bottom: 10px;
}
input[type="checkbox"]:checked:after {
	display: block;
	width: 20px !important;
	height: 45px !important;
	position: absolute;
	top: -20px;
	left: 8px;
	content: "";
	border-right: 5px solid #f00 !important;
	border-bottom: 5px solid #f00 !important;
	content: '' !important;
	-webkit-transform: rotate(35deg) !important;
	-ms-transform: rotate(35deg) !important;
	transform: rotate(35deg) !important;
}

/* ラジオボタンのデザイン */
input[type="radio"] {
	position: relative;
	-webkit-appearance: button;
	appearance: button;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 36px;
	height: 36px;
	margin-right:10px;
	content: "";
	background-color: #FFFFFF;
	border: 1px solid #999999;
	-webkit-border-radius: 36px;
	border-radius: 36px;
	-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: 7px;
	left: 7px;
	content: "";
	width: 20px;
	height: 20px;
	background: #333;
	-webkit-border-radius: 24px;
	border-radius: 24px;
}
/* セレクトメニューのデザイン */
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:240px !important;
	font-size:16px;
	height:30px;
	padding:0 5px;
	color:#000;
	background-color:#fff;
	border:1px solid #bbb;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-weight:normal;
	box-shadow:2px 2px 2px 2px rgba(0,0,0,0.1) inset;
}
textarea{
	width:340px !important;
	min-height: 5em;
	font-size:18px;
	height:220px;
	padding:0 10px;
	color:#000;
	background-color:#fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border:1px solid #bbb;
	font-weight:normal;
	vertical-align:bottom;
	box-shadow:2px 2px 2px 2px rgba(0,0,0,0.1) inset;
}



address {
	font-style: normal;
	padding-top: 20px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CCC;
}
