@charset "UTF-8";

/* 画像の枠線を表示しない */
img { border: 0; }


/* ページの基本的な設定 */
body { 
	overflow: auto;			/* スクロールバーの設定 */
	color: #000000;			/* 文字色 */
	line-height : 1.6;		/* 行間 */
	font-size : 12px;		/* 文字の大きさ */
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', sans-serif;
	background-color: #ffffff;	/* 背景色 */
	background-image:url("back.png");
}



/* リンクの設定 */
a {
	color : #777; 		/* リンクの文字色 */
	text-decoration: none;		/* リンクの下線消し */
}


/* リンクに触れた時の設定 */
a:hover {
	color : #000; 		/* リンクに触れた時の文字色 */
}

/* 入力エリア、ボタン等の設定 */
input, textarea, select, button, submit {
	line-height : 1.2;		/* 行間 */
	color: #000;			/* 文字色 */
	font-size : 12px;		/* 文字の大きさ */
	padding: 0.5em;		/* 余白 */
	background-color: #fff;		/* 背景透過 */
	border: 1px dashed #777;	/* 枠線の設定 */
}


/* テーブルの設定 */
table, tr, td {
	line-height : 1.6;		/* 行間 */
	font-size : 12px;		/* 文字の大きさ */
	border: 1px solid #777;	/* 枠線の設定 */
}

/* センタリング用 */
.center { text-align: center; }

