@charset "UTF-8";


/* CSS3 Gradient Buttons http://www.webdesignerwall.com/tutorials/css3-gradient-buttons/
  
/* button
---------------------------------------------- */
input[type=button].form,
input[type=submit].form,
input[type=reset].form,
input[type=text].form,
input[type=password].form,
select.form,
textarea.form{
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: middle;
	margin: 2px 1px;
	padding: .2em 0.5em;
	height: 30px;
	text-decoration: none;
	font: 14px/100% Arial, Helvetica, sans-serif;
	outline: none;
	border: 1px #b7b7b7 solid;
	border-radius: 2px; 
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	/*behavior: url(/css/border-radius.htc);*/
}
	textarea.form{
		height: initial;
	}
input[type=button].form,
input[type=submit].form{
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
input[type=button].form:hover,
input[type=submit].form:hover,
input[type=reset].form:hover{
	cursor: pointer;
	text-decoration: none;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
}
input[type=button].form:active,
input[type=submit].form:active,
input[type=reset].form:active{
	position: relative;
	top: 1px;
}

input[type=button].form.large,
input[type=submit].form.large,
input[type=reset].form.large,
input[type=password].form.large,
select.form.large{
	height: 40px;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	border-radius: 2em;
}
input[type=button].form.medium,
input[type=submit].form.medium,
input[type=reset].form.medium,
input[type=password].form.medium,
select.form.medium{
	padding: .4em 1.5em .42em;
	height: 30px;
	font-size: 12px;
}
input[type=button].form.small,
input[type=submit].form.small,
input[type=reset].form.small,
input[type=password].form.small,
select.form.small{
	padding: .2em 1em .275em;
	height: 20px;
	font-size: 11px;
}


/* □checkbox ○radio 共通 */
label.form input[type=checkbox],
label.form input[type=radio]{
	display: none;
}
label.form input[type=checkbox] + span,
label.form input[type=radio] + span{
	padding: 2px 0 0 28px;
	position: relative;
	margin-right: 20px;
}
label.form input[type=checkbox] + span::before,
label.form input[type=radio] + span::before{
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 0;
	width: 18px;
	height: 18px;
	border: 2px solid #ccc;
	border-radius: 2px;
	margin-left: 3px;
	background: #fff;
}
label.form input[type=checkbox]:checked + span,
label.form input[type=radio]:checked + span{
	color: #533918;
}

label.form input[type=checkbox]:checked + span::before{
	border: 2px solid #0073c4;
	background: #42a5dc;
}

/* □checkbox */
label.form input[type=checkbox]:checked + span::after{
	content: "";
	display: block;
	position: absolute;
	top: 4px;
	left: 6px;
	width: 7px;
	height: 14px;
	transform: rotate(40deg);
	border-bottom: 3px solid #fff;
	border-right: 3px solid #fff;
	margin-left: 3px;
}


@media screen and (max-width:599px){
	label.form input[type=checkbox] + span{
		padding: 5px 0 0 28px;
	}
	label.form input[type=checkbox] + span::before{
		width: 15px;
		height: 15px;
	}
	label.form input[type=checkbox]:checked + span::after{
		top: 4px;
		left: 6px;
		width: 5px;
		height: 12px;
	}
}


/* サイズ（小） */
label.form.small input[type=checkbox] + span{
	padding: 3px 0 3px 22px;
	margin-right: 8px;
}
label.form.small input[type=checkbox] + span::before{
	top: 4px;
	left: 0;
	width: 12px;
	height: 12px;
}
label.form.small input[type=checkbox]:checked + span::after{
	top: 5px;
	left: 5px;
	width: 4px;
	height: 10px;
}


/* icon コンビニ */
label.form.small input[type=checkbox] + span#icon-s{
	background: url(../img/icon-s.png) 23px 1px no-repeat;
}
label.form.small input[type=checkbox] + span#icon-l{
	background: url(../img/icon-l.png) 23px 1px no-repeat;
}
label.form.small input[type=checkbox] + span#icon-f{
	background: url(../img/icon-f.png) 23px 1px no-repeat;
}
label.form.small input[type=checkbox] + span#icon-m{
	background: url(../img/icon-m.png) 23px 1px no-repeat;
}
label.form.small input[type=checkbox] + span#icon-s,
label.form.small input[type=checkbox] + span#icon-l,
label.form.small input[type=checkbox] + span#icon-f,
label.form.small input[type=checkbox] + span#icon-m{
	padding: 3px 0 3px 46px;
	background-size: 21px 21px;
}


