@charset "utf-8";
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dd,dl,dt,li,ol,ul,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;font-weight:normal;font-style:normal;text-align:left;font-family:inherit;}table{border-collapse:collapse;border-spacing:0;}ol,ul{list-style:none;}q:before,q:after,blockquote:before,blockquote:after{content:"";}

/*---------------------------
 サイト全体のスタイル定義
 ----------------------------*/
 
/* 背景 */
html{
	height : 100%;
}
body{
	height : 100%;
	font-size : 95%;
}

/* 文字 */
body *{
	color : #2E2E2E;
	font-family : "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	line-height : 130%;
}

/* リンク */
a:link{
	text-decoration : underline;
	color : #0033E0;
}
a:visited{
	text-decoration : underline;
	color : #963090;
}


/* テーブル */
table td,th{
	padding : 2px;
	border : 1px solid gray;
	vertical-align : middle;
}

table th{
	font-weight : bold;
	color : #404040;
}

/* 入力フォーム */
input, select{
	height : 20px;
	line-height : 20px;
	padding : 0px 1px;
	border : 1px solid #9F9F9F;
	font-size : 100%;
	vertical-align : middle;
	margin : 1px 0px;
}

textarea{
	border : 1px solid #9F9F9F;
	font-size : 100%;
	padding : 0px 1px;
}


table td input, table td textarea, table td select{
	width : 95%; /* 95%を超えると、borderにかかる場合がある */
}

button:disabled {
    color: #909090;
}