@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);*/

	/* デフォルトで M サイズにしている */
	padding: .2em .5em;
	height: 25px;
	font-size: 12px;

}
	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 class="form"><input type="checkbox" name="xxx[]" value="1"><span>テキスト</span></label>
	<label class="form"><input type="radio" name="xxx" value="1"><span>テキスト</span></label>
*/

/* □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-left: 23px;
	position: relative;
	margin-right: 20px;
	color: #aaa;
}
label.form input[type=checkbox] + span::before,
label.form input[type=radio] + span::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #999;
	border-radius: 2px;
	margin-left: 3px;
	background: #fff;
}
label.form input[type=checkbox]:checked + span,
label.form input[type=radio]:checked + span{
	color: #fff;
}

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

/* ○radio */
label.form input[type=radio] + span::before{
	border-radius: 8px;
}
label.form input[type=radio]:checked + span::after{
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	left: 3px;
	width: 11px;
	height: 11px;
	background: #e6177e;
	border-radius: 50%;
	margin-left: 3px;
}

/* □checkbox ○radio 共通 カラー */

/* black */
label.form input[type=checkbox].black + span::before,
label.form input[type=radio].black + span::before{
	border: 1px solid #666;
	background: #eee;
}

/* gray */
label.form input[type=checkbox].gray + span::before,
label.form input[type=radio].gray + span::before{
	border: 1px solid #888;
	background: #eee;
}

/* white */
label.form input[type=checkbox].white + span::before,
label.form input[type=radio].white + span::before{
	border: 1px solid #fff;
	background: #eee;
}

/* orange */
label.form input[type=checkbox].orange + span::before,
label.form input[type=radio].orange + span::before{
	border: 1px solid #faa51a;
	background: #faf0e1;
}

/* red */
label.form input[type=checkbox].red + span::before,
label.form input[type=radio].red + span::before{
	border: 1px solid #ed1c24;
	background: #edd5d6;
}

/* blue */
label.form input[type=checkbox].blue + span::before,
label.form input[type=radio].blue + span::before{
	border: 1px solid #00adee;
	background: #d5e7ed;
}
  
/* rosy */
label.form input[type=checkbox].rosy + span::before,
label.form input[type=radio].rosy + span::before{
	border: 1px solid #f16c7c;
	background: #f2dadd;
}

/* green */
label.form input[type=checkbox].green + span::before,
label.form input[type=radio].green + span::before{
	border: 1px solid #7db72f;
	background: #afb7a5;
}

/* pink */
label.form input[type=checkbox].pink + span::before,
label.form input[type=radio].pink + span::before{
	border: 1px solid #feb1d3;
	background: #fce3ee;
}




/* color styles
---------------------------------------------- */
  
/* black */
select.black,
input[type=button].black,
input[type=submit].black{
	color: #d7d7d7;
	border: solid 1px #333;
	background: #333;
	background: -webkit-gradient(linear, left top, left bottom, from(#666), to(#000));
	background: -moz-linear-gradient(top, #666, #000);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#666666', endColorstr='#000000');
}
select.black:hover,
input[type=button].black:hover,
input[type=submit].black:hover{
	background: #000;
	background: -webkit-gradient(linear, left top, left bottom, from(#444), to(#000));
	background: -moz-linear-gradient(top, #444, #000);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#444444', endColorstr='#000000');
}
select.black:active,
input[type=button].black:active,
input[type=submit].black:active{
	color: #666;
	background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#444));
	background: -moz-linear-gradient(top, #000, #444);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#666666');
}
  
/* gray */
select.gray,
input[type=button].gray,
input[type=submit].gray{
	color: #e9e9e9;
	border: solid 1px #555;
	background: #6e6e6e;
	background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#575757));
	background: -moz-linear-gradient(top, #888, #575757);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}
select.gray:hover,
input[type=button].gray:hover,
input[type=submit].gray:hover{
	background: #616161;
	background: -webkit-gradient(linear, left top, left bottom, from(#757575), to(#4b4b4b));
	background: -moz-linear-gradient(top, #757575, #4b4b4b);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#757575', endColorstr='#4b4b4b');
}
select.gray:active,
input[type=button].gray:active,
input[type=submit].gray:active{
	color: #afafaf;
	background: -webkit-gradient(linear, left top, left bottom, from(#575757), to(#888));
	background: -moz-linear-gradient(top, #575757, #888);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#575757', endColorstr='#888888');
}
  
/* white */
select.white,
input[type=button].white,
input[type=submit].white,
input[type=reset].white{
	color: #606060;
	border: solid 1px #b7b7b7;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
	background: -moz-linear-gradient(top, #fff, #ededed);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}
select.white:hover,
input[type=button].white:hover,
input[type=submit].white:hover,
input[type=reset].white:hover{
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
	background: -moz-linear-gradient(top, #fff, #dcdcdc);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
}
select.white:active,
input[type=button].white:active,
input[type=submit].white:active,
input[type=reset].white:active{
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top, #ededed, #fff);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}
  
/* orange */
select.orange,
input[type=button].orange,
input[type=submit].orange{
	color: #fef4e9;
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top, #faa51a, #f47a20);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}
select.orange:hover,
input[type=button].orange:hover,
input[type=submit].orange:hover{
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top, #f88e11, #f06015);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}
select.orange:active,
input[type=button].orange:active,
input[type=submit].orange:active{
	color: #fcd3a5;
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top, #f47a20, #faa51a);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f47a20', endColorstr='#faa51a');
}
  
/* red */
select.red,
input[type=button].red,
input[type=submit].red{
	color: #faddde;
	border: solid 1px #980c10;
	background: #d81b21;
	background: -webkit-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
	background: -moz-linear-gradient(top, #ed1c24, #aa1317);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ed1c24', endColorstr='#aa1317');
}
select.red:hover,
input[type=button].red:hover,
input[type=submit].red:hover{
	background: #b61318;
	background: -webkit-gradient(linear, left top, left bottom, from(#c9151b), to(#a11115));
	background: -moz-linear-gradient(top, #c9151b, #a11115);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c9151b', endColorstr='#a11115');
}
select.red:active,
input[type=button].red:active,
input[type=submit].red:active{
	color: #de898c;
	background: -webkit-gradient(linear, left top, left bottom, from(#aa1317), to(#ed1c24));
	background: -moz-linear-gradient(top, #aa1317, #ed1c24);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#aa1317', endColorstr='#ed1c24');
}
  
/* blue */
select.blue,
input[type=button].blue,
input[type=submit].blue{
	color: #d9eef7;
	border: solid 1px #0076a3;
	background: #0095cd;
	background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
	background: -moz-linear-gradient(top, #00adee, #0078a5);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}
select.blue:hover,
input[type=button].blue:hover,
input[type=submit].blue:hover{
	background: #007ead;
	background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
	background: -moz-linear-gradient(top, #0095cc, #00678e);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
}
select.blue:actives,
input[type=button].blue:active,
input[type=submit].blue:active{
	color: #80bed6;
	background: -webkit-gradient(linear, left top, left bottom, from(#0078a5), to(#00adee));
	background: -moz-linear-gradient(top, #0078a5, #00adee);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0078a5', endColorstr='#00adee');
}
  
/* rosy */
select.rosy,
input[type=button].rosy,
input[type=submit].rosy{
	color: #fae7e9;
	border: solid 1px #b73948;
	background: #da5867;
	background: -webkit-gradient(linear, left top, left bottom, from(#f16c7c), to(#bf404f));
	background: -moz-linear-gradient(top, #f16c7c, #bf404f);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f16c7c', endColorstr='#bf404f');
}
select.rosy:hover,
input[type=button].rosy:hover,
input[type=submit].rosy:hover{
	background: #ba4b58;
	background: -webkit-gradient(linear, left top, left bottom, from(#cf5d6a), to(#a53845));
	background: -moz-linear-gradient(top, #cf5d6a, #a53845);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cf5d6a', endColorstr='#a53845');
}
select.rosy:active,
input[type=button].rosy:active,
input[type=submit].rosy:active{
	color: #dca4ab;
	background: -webkit-gradient(linear, left top, left bottom, from(#bf404f), to(#f16c7c));
	background: -moz-linear-gradient(top, #bf404f, #f16c7c);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bf404f', endColorstr='#f16c7c');
}
  
/* green */
select.green,
input[type=button].green,
input[type=submit].green{
	color: #e8f0de;
	border: solid 1px #538312;
	background: #64991e;
	background: -webkit-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
	background: -moz-linear-gradient(top, #7db72f, #4e7d0e);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
}
select.green:hover,
input[type=button].green:hover,
input[type=submit].green:hover{
	background: #538018;
	background: -webkit-gradient(linear, left top, left bottom, from(#6b9d28), to(#436b0c));
	background: -moz-linear-gradient(top, #6b9d28, #436b0c);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b9d28', endColorstr='#436b0c');
}
select.green:active,
input[type=button].green:active,
input[type=submit].green:active{
	color: #a9c08c;
	background: -webkit-gradient(linear, left top, left bottom, from(#4e7d0e), to(#7db72f));
	background: -moz-linear-gradient(top, #4e7d0e, #7db72f);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7d0e', endColorstr='#7db72f');
}
  
/* pink */
select.pink,
input[type=button].pink,
input[type=submit].pink{
	color: #feeef5;
	border: solid 1px #d2729e;
	background: #f895c2;
	background: -webkit-gradient(linear, left top, left bottom, from(#feb1d3), to(#f171ab));
	background: -moz-linear-gradient(top, #feb1d3, #f171ab);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#feb1d3', endColorstr='#f171ab');
}
select.pink:hover,
input[type=button].pink:hover,
input[type=submit].pink:hover{
	background: #d57ea5;
	background: -webkit-gradient(linear, left top, left bottom, from(#f4aacb), to(#e86ca4));
	background: -moz-linear-gradient(top, #f4aacb, #e86ca4);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4aacb', endColorstr='#e86ca4');
}
select.pink:active,
input[type=button].pink:active,
input[type=submit].pink:active{
	color: #f3c3d9;
	background: -webkit-gradient(linear, left top, left bottom, from(#f171ab), to(#feb1d3));
	background: -moz-linear-gradient(top, #f171ab, #feb1d3);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f171ab', endColorstr='#feb1d3');
}





/* size
---------------------------------------------- */

/* widt */
input.w100p,select.w100p,textarea.w100p{ width: 100%; }
input.w30,select.w30,textarea.w30{ width: 100%; max-width: 30px; }
input.w40,select.w40,textarea.w40{ width: 100%; max-width: 40px; }
input.w50,select.w50,textarea.w50{ width: 100%; max-width: 50px; }
input.w60,select.w60,textarea.w60{ width: 100%; max-width: 60px; }
input.w70,select.w70,textarea.w70{ width: 100%; max-width: 70px; }
input.w80,select.w80,textarea.w80{ width: 100%; max-width: 80px; }
input.w90,select.w90,textarea.w90{ width: 100%; max-width: 90px; }
input.w100,select.w100,textarea.w100{ width: 100%; max-width: 100px; }
input.w150,select.w150,textarea.w150{ width: 100%; max-width: 150px; }
input.w200,select.w200,textarea.w200{ width: 100%; max-width: 200px; }
input.w250,select.w250,textarea.w250{ width: 100%; max-width: 250px; }
input.w300,select.w300,textarea.w300{ width: 100%; max-width: 300px; }
input.w350,select.w350,textarea.w350{ width: 100%; max-width: 350px; }
input.w400,select.w400,textarea.w400{ width: 100%; max-width: 400px; }
input.w450,select.w450,textarea.w450{ width: 100%; max-width: 450px; }
input.w500,select.w500,textarea.w500{ width: 100%; max-width: 500px; }
input.w550,select.w550,textarea.w550{ width: 100%; max-width: 550px; }
input.w600,select.w600,textarea.w600{ width: 100%; max-width: 600px; }

/* heaght */
input.h50,select.h50,textarea.h50{ height: 50px; }
input.h60,select.h60,textarea.h60{ height: 60px; }
input.h70,select.h70,textarea.h70{ height: 70px; }
input.h80,select.h80,textarea.h80{ height: 80px; }
input.h90,select.h90,textarea.h90{ height: 90px; }
input.h100,select.h100,textarea.h100{ height: 100px; }
input.h150,select.h150,textarea.h150{ height: 150px; }
input.h200,select.h200,textarea.h200{ height: 200px; }
input.h250,select.h250,textarea.h250{ height: 250px; }
input.h300,select.h300,textarea.h300{ height: 300px; }

/* checkbox,radio > label */
.w100p label{ width: 100%; }
.w100 label{ width: 100%; max-width: 100px; }
.w110 label{ width: 100%; max-width: 110px; }
.w120 label{ width: 100%; max-width: 120px; }
.w130 label{ width: 100%; max-width: 130px; }
.w140 label{ width: 100%; max-width: 140px; }
.w150 label{ width: 100%; max-width: 150px; }
.w200 label{ width: 100%; max-width: 200px; }
.w250 label{ width: 100%; max-width: 250px; }
.w300 label{ width: 100%; max-width: 300px; }
.w350 label{ width: 100%; max-width: 350px; }
.w400 label{ width: 100%; max-width: 400px; }
.w450 label{ width: 100%; max-width: 450px; }
.w500 label{ width: 100%; max-width: 500px; }
.w550 label{ width: 100%; max-width: 550px; }
.w600 label{ width: 100%; max-width: 600px; }

