
html, form, ul, li {
	margin: 0;
	padding: 0;
	font-size: 100%;
}
html{
	height:100%;
}
body{
	font-family: "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
	font-size:10pt;
	margin:0px auto;
	padding:0px;
	text-align:left;
	height:100%;
	/*overflow:hidden;*/
}
img { border: 0; }
table { border-spacing: 0; empty-cells: show; }
ul{ list-style-type:none; }


/* clearfix */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
/* メインリンク調整 */
a:link{color:#00f ;text-decoration:none;}
a:visited{color:#00f; text-decoration:none;}
a:hover{color:#aaf; text-decoration:underline;}
a:active{color:#00f;}

/* 基本構造 */
/* 全体 */
#container{
	width: 100%;
	margin:0px auto;
	position:relative;
	min-height: 100%;
}
body > #container {
	height: auto;
}

/* ヘッダー */
#header{
	background-color:#ddd;
	width: 100%;
}
#header #sub{
	float:left;
	font-weight:bold;
}
#header #menu{
	float:right;
	margin-right:10px;
}
/* コンテンツ */
#contents{
	width:980px;
	padding:10px;
	margin:0px auto;
	font-size:10pt;
}
/* フッター */
#footer{
	background-color:#ddd;
	text-align:center;
	position:absolute;
	bottom:0px;
	height:30px;
	width:100%;
}
#footer .copy{
	margin: 5px 0 0 0;
}


/* 入力系 */
/* 全角 */
input.zenkaku{
	ime-mode:active;
	text-align:left;
}
/* 半角英数字 */
input.hankaku{
	ime-mode:disabled;
	text-align:left;
}
/* 数値 */
input.digit{
	ime-mode:disabled;
	text-align:right;
}
/* エラー */
.err{
	font-weight:bold;
	color:#f00;
}

/* タイトル */
h2{
	margin:11px auto;
	padding:0;
	font-size:10pt;
	font-weight:bold;
}


/* テーブル */
/* 入力フォーム */
table.form{
	border: 2px solid #aaa;
}
table.form th{
	text-align:right;
	padding-right:10px;
}
table.form th, table.form td{
	border-bottom: 1px solid #aaa;
}
/* 一覧 */
table.list{
	border: 0;
}
table.list th{
	text-align:center;
}
table.list th, table.form td{
	border-bottom: 1px solid #aaa;
}
