@CHARSET "UTF-8";

/* 基本設定 */
* {
	margin: 0;
	padding: 0;
}

body {
	font-size: 80%;
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif;
	color: #333;
}

html {
	overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
	padding: 3px 10px;
	margin-bottom: 10px;
}

h1 {
	font-size: 2.0em;
}

ul, ol {
	list-style-type: none;
}

table {
	border: 1px solid #aaa;
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 10px;
}
table th {
	border: 1px solid #aaa;
	padding: 3px;
	background-color: #eee;
	white-space: nowrap;
}
table td {
	border: 1px solid #aaa;
	padding: 3px;
	vertical-align: top;
}
table td.center {
	text-align: center;
}
table td.right {
	text-align: right;
}

a img {
	border-style: none;
}

input[type=submit]
, input[type=button] {
	padding: 3px 5px;
}

.clear {
	clear: both;
}

/* ヘッダー関連 */
#header-wrap {
	border-bottom: 1px solid #000;
	padding-bottom: 3px;
}
#header-wrap h1 {
	height: 52px;
	margin: 0;
	padding: 0;
}

/* ヘッダーメニュー関連 */
#header-menu {
	text-align: right;
	padding: 0px 10px;
}

/* メッセージ関連 */
.msg, .err-msg {
	font-weight: bold;
	/*font-size: 1.2em;*/
	margin: 10px 0;
}
.msg {
	color: blue;
}
.err-msg {
	color: red;
}

.center {
	text-align: center;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}