@charset "utf-8";

/* *********************************** */
/* formのリセット ここから ******************** */
/* *********************************** */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="range"],
input[type="color"],
input[type="radio"],
input[type="checkbox"],
input[type="submit"],
input[type="button"],
input[type="image"],
select,
button,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	font-family: "メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}
/* *********************************** */
/* formのリセット ここまで ******************** */
/* *********************************** */

/* *********************************** */
/* formのカスタマイズ ここから ******************** */
/* *********************************** */
/* 入力欄 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="range"]{
	padding: 0.3em 0.5em;
	color: #333;
	border: 1px solid #ccc;
}

/* 入力欄 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="password"],
textarea{
	font-size: 16px;
}
/* 日付 */
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"]{
	font-size: 14px;
}
/* 数値 */
input[type="number"]{
	
}
/* レンジ */
input[type="range"]{
	
}
/* カラーピッカー */
input[type="color"]{
	
}

select{
	padding: 0.3em 0.5em;
	border: 1px solid #ccc;
}
textarea{
	overflow: hidden;	/* ieでスクロールバー非表示 */
	padding: 0.3em 0.5em;
	width: 90%;
	height: 10em;
	border: 1px solid #ccc;
}

input[type="submit"],
input[type="button"],
button{
	cursor: pointer;
}

/* radio カスタマイズ 
input[type="radio"] {
	display: none;
}
.radio {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 20px;
	cursor: pointer;
}
.radio::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -9px;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 100%;
}
input[type="radio"]:checked + .radio::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 4px;
	width: 8px;
	height: 8px;
	margin-top: -5px;
	background: #3498db;
	border-radius: 100%;
}
 radio カスタマイズ */

/* checkbox カスタマイズ 
input[type="checkbox"] {
	display: none;
}
.check {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 22px;
	cursor: pointer;
}
.check::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 14px;
	height: 14px;
	margin-top: -8px;
	background: #fff;
	border: 1px solid #ccc;
}
input[type="checkbox"]:checked + .check::after {
	position: absolute;
	content: '';
	top: 5px;
	left: 3px;
	width: 13px;
	height: 5px;
	border-left: 2px solid #3498db;
	border-bottom: 2px solid #3498db;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

 checkbox カスタマイズ */


/* *********************************** */
/* formのカスタマイズ ここまで ******************** */
/* *********************************** */