/* テキストボックス */
input[type="text"],
input[type="email"],
input[type="tel"]{
	width:100%;
	font-size:21px;
	height:90px;
	padding:0 10px;
	color:#000;
	background-color:#fff;
	border-radius:10px;
	outline:none;
}

@media screen and (max-width:768px){
	input[type="text"],
	input[type="email"],
	input[type="tel"]{
		font-size:16px;
		height:45px;
		border-radius:5px;
	}
}


/* ラジオボタン */
input[type="radio"] {
	opacity:0;
}
input[type="radio"]  + span{
	margin-left:-12px;
	padding-left:50px;
	display:inline-block;
	vertical-align:middle;
	position: relative;
}
input[type="radio"]  + span:before{
	content: "";
	display:inline-block;
	width:45px;
	height: 45px;
	margin-right:10px;
	background-color: #FFFFFF;
	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: 35px;
	height: 35px;
	background: #444;
	position: absolute;
	top: 50%;
	left: 5px;
	transform:translateY(-50%);
	border-radius: 50%;
}

@media screen and (max-width:768px){
	input[type="radio"]  + span{
		padding-left:30px;
	}
	input[type="radio"]  + span:before{
		width:22px;
		height: 22px;
	}
	input[type="radio"]:checked + span:after {
		width: 12px;
		height: 12px;
	}
}


/* テキストエリア */
textarea{
	width:100%;
	min-height: 288px;
	font-size:21px;
	padding:10px 10px;
	background-color:#fff;
	color:#000;
	border-radius:10px;
	vertical-align:bottom;
	outline:none;
}
@media screen and (max-width:768px){
	textarea{
		min-height: 120px;
		font-size:16px;
		border-radius:5px;
	}
}


/* ボタン */
button[type="submit"]{
	display:inline-block;
	width:458px;
	line-height:92px;
	margin:50px auto 0;
	font-size:28px;
	font-weight:bold;
	background-color:#ffe019;
	border-radius:10px;
	color:#000;
	cursor:pointer;
	transition : opacity 0.4s;
	-webkit-transition : opacity 0.4s;
}
button[type="submit"]:hover{
	opacity:0.7;
}


@media screen and (max-width:768px){
	button[type="submit"]{
		width:60%;
		max-width:360px;
		line-height:50px;
		margin:20px auto 0;
		font-size:16px;
		border-radius:5px;
	}
}