
body, table, tr, td, th, input, buttom, select, option, textarea {
	/* フォント書体（スペースを含むフィント名は""で囲む） */
	font-family: メイリオ, Verdana, "Times New Roman", "ＭＳ Ｐゴシック", "MS UI Gothic";

	/* フォントサイズ[pt px] */
	font-size: 10.5pt;

	/* フォント色 */
	color: black;

	/* 文字飾り（通常[normal] 下線[underline] 上線[overline] 取消線[line-through] 点滅[blink]）*/
	/*text-decoration: normal;*/
}

body {
	/* bodyマージン設定（上 右 下 左） */
	/*margin : 0% 0% 0% 0%;*/

	/* 背景色 */
	background-color: white;

	/* 位置（左寄せ[left] 中央寄せ[center] 右寄せ[right]）*/
	text-align: center;

	/* 背景イメージ */
	/*background-image: url(./img/background01.jpg);*/

	/* 背景イメージの繰り返し（縦横[repeat] 横のみ[repeat-x] 縦のみ[repeat-y] なし[no-repeat]）*/
	/*background-repeat: repeat;*/

	/* 背景イメージのスクロール（する[scroll] しない[fixed]）*/
	/*background-attachment: fixed;*/

	/* スクロールバーカスタマイズ */
	scrollbar-3d-light-color: white;
	scrollbar-arrow-color: black;
	scrollbar-highlight-color: #dcdcdc;
	scrollbar-shadow-color: #babaaa;
	scrollbar-dark-shadow-color: black;
	scrollbar-base-color: #cbcbcb;
	scrollbar-face-color: white;
	scrollbar-track-color: #dcdccc;
}

hr {
	/* ボーダーライン色 */
	color: gray;

	/* ボーダーライン高さ */
	height: 1px;
}

div {
	/* div要素 行間隔（通常[100%] 1.5倍[150%]） */
	line-height: 160%;
}

:link {
	/* フォント色 */
	color: mediumblue;

	/* 文字飾り（通常[normal] 下線[underline] 上線[overline] 取消線[line-through] 点滅[blink]）*/
	text-decoration: none;
}

:visited {
	/* フォント色 */
	color: darkred;

	/* 文字飾り（通常[normal] 下線[underline] 上線[overline] 取消線[line-through] 点滅[blink]）*/
	text-decoration: none;
}

:hover, :focus, :active {
	/* フォント色 */
	color: darkgreen;

	/* 文字飾り（通常[normal] 下線[underline] 上線[overline] 取消線[line-through] 点滅[blink]）*/
	text-decoration: underline;
}


/* クラス設定・文字サイズ */
.small{ font-size: 8pt; }
.big{ font-size: 14pt; }
.bigest{ font-size: 24pt; }

.head{
	background: seagreen;
	font-size: 14px;
	font-weight: bold;
	color: white;
	/* none（線無し）dotted（点線）dashed（粗い点線）solid（実線）double（二重線）groove（谷線） */
	/* ridge（山線）inset（内線）outset（外線）inherit（継承） */
	border-style: ridge;
	border-width: 5px;
	text-align: center;
}

.menu{
	background: white;
	font-weight: normal;
	color: black;
	border-style: ridge;
	border-width: 3px;
	text-align: left;
}

.smenu{ font-size: 12px; }

.image{
	background: white;
	border-style: ridge;
	border-width: 2px;
}

