@charset "utf-8";
/**
 * タグの書き換えと全ページに共通する基本クラスの定義
 */


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 レイアウト

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
html {
	background-color: #FFFFFF; 
}

body {
	padding: 0px;
	background-color: #FFFFFF;
	color: #505050;
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	line-height: 1.5;
	text-align: center;
	background-image: url(../img/background.gif);
	background-repeat: repeat-x;
	background-position: left top;
	padding-bottom:10px;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 リンク

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
a:link    { color: #0F669F; text-decoration: none;}
a:visited { color: #0F669F; text-decoration: none;}
a:hover   { color: #0E5CA7; text-decoration: underline;}
a:active  { color: #B12347; text-decoration: none;}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 見出し語

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
h1 {
	font-size:11px;
	display:inline;
}
h2 {
	font-size:11px;
	display:inline;
}
h3 {
	font-size:160%;
	font-weight:bold;
	margin-bottom:20px;
}
h4 {
	font-size:11pt;
	font-weight:bold;
	background-image: url(../img/h2.gif);
	background-repeat: no-repeat;
	background-position: left center;
	color:#333333;
	padding-left:16px;
	line-height:26px;
	margin:0px auto;
	margin-bottom:10px;
	border: 1px solid #CFCFCF;
}
h5 {
	font-size:100%;
	font-weight:bold;
	margin-bottom:20px;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 テーブル

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

td {
	vertical-align: top;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 Clearfix floatの解除処理

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0px;
	clear: both;
	visibility: hidden;
}
.clearfix {
	display: inline-block;
}

/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */
.clear {
	clear:both;
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

 共通クラス

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.float_left {
	float:left;
}
.float_right {
	float:right;
}
.text_center {
	text-align:center;
}
.text_left {
	text-align:left;
}
.text_right {
	text-align:right;
}
.small {
	font-size:80%;
}
.big {
	font-size:120%;
}
.bold {
 	font-weight:bold;
}
.markRequired {
	color: #CC0000;
}

