  @charset "UTF-8";


/* ***
 *	form parts
 *		* input text
 *		* selectbox
 *		* checkbox radio
 *		* width size
 *		* textarea
 *		* button
 *	block
 * ***/


/* ***
 *	form parts
 * ***/
/* input text
-------------------------------------------------------*/
input[type="text"]{
	width:100%;
	margin:0 5px 5px 0;
	padding:4px;
	border:1px #ccc solid;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Meiryo','メイリオ','ＭＳ Ｐゴシック',sans-serif;
	font-size: 13px;
	font-size: 1.3rem;
	line-height:1.5;
}

/* select
-------------------------------------------------------*/
select{
	margin-bottom:5px;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Meiryo','メイリオ','ＭＳ Ｐゴシック',sans-serif;
	font-size: 13px;
	font-size: 1.3rem;
	line-height:1.5;
}

/* textarea 
-------------------------------------------------------*/
textarea{
	width:100%;
	height:15em;
	margin:0 5px 5px 0;
	padding:4px;
	border:1px #ccc solid;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Meiryo','メイリオ','ＭＳ Ｐゴシック',sans-serif;
	font-size: 13px;
	font-size: 1.3rem;
	line-height:1.5;
}

/* button 
-------------------------------------------------------*/
input[type="submit"] {
	width:100px;
	height:30px;
	background:#fff;
	border:1px #ccc solid;
	color:#000;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Meiryo','メイリオ','ＭＳ Ｐゴシック',sans-serif;
	font-size: 13px;
	font-size: 1.3rem;
	line-height:30px;
	letter-spacing:0.1em;

	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	-khtml-border-radius:3px;
}

	input[type="submit"]:hover{
		color:#fff;
		background:#666;
	}

p.buttonBox{
	padding:5px 15px 15px;
	background:#FFF;
}

/* ***
 *	block
 * ***/
/* check block
-------------------------------------------------------*/
div.formCheck{
	margin-bottom:25px;
	padding:15px;
	border:1px #963 solid;
	color:#fff;
	font-size:12px;
	font-size:1.2rem;
	line-height:1.5;
	background:#a37e39;
}

/* error block
-------------------------------------------------------*/
dl.formError{
	color:#ee0000;
}

/* error message
-------------------------------------------------------*/
dd > .err{
	padding: 10px;
	background: #f99;
	border-radius: 5px;
}

/* button block
-------------------------------------------------------*/
p.error{
	padding-top:2px;
	color:#ee0000;
	font-size:12px;
	font-size:1.2rem;
	line-height:1.4;
}

