/*全体のスタイル定義*/
*{
	margin: 0px;
	padding: 0px;

}
/*body:ページ全体の背景色，および改行スタイルを定義します。*/
body {
	background-color: #FFFFFF;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

/*部品ごとのスタイル定義*/
/*index_text:TOPページの文字表示スタイルを定義します。*/
.index_text {
	font-family: "MS UI Gothic", "ＭＳ Ｐゴシック",Arial, Verdana,  Osaka;
	font-size: 12px;
	padding-right: 20px;
	padding-left: 20px;
	letter-spacing: 1px;
}
/*テーブルなどの内部文字をセンタリングします。*/
.center {
	text-align: center;
}
/*段落(Pタグ)のスタイルを定義します。*/
P {
	font-size: 12px;
	word-break: break-all;
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 180%;
	clear: both;
}

/*リンク関係のスタイル定義*/
a:link {
	color: #056816;
	text-decoration: none;
	font-weight: normal;
	font-family: Verdana, Arial, Osaka, "MS UI Gothic";
}
a:visited {
	color: #8844BB;
	text-decoration: none;
	font-weight: normal;
	font-family: Verdana, Arial, Osaka, "MS UI Gothic";
}

a:hover {
	text-decoration: underline;
	font-weight: bold;
	font-family: Verdana, Arial, Osaka, "MS UI Gothic";
	color: #CC3366;
}
a:active {
	text-decoration: underline;
	font-weight: bold;
	font-family: Verdana, Arial, Osaka, "MS UI Gothic";
	color: #FF0000;
}