@charset "utf-8";
/*--------------------------------------------------------------------------------

  共通スタイルシート
  
--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
ブラウザのデフォルトスタイルをリセット
--------------------------------------------------------------------------------*/
@import url("reset.css");

/*--------------------------------------------------------------------------------

--------------------------------------------------------------------------------*/

/*--------------------------------------------------------------------------------
ページ全体
--------------------------------------------------------------------------------*/
html,body {
	height: 100%;
	margin: 0;
}
body {
	background:#E4E3DC url(../imgs/bg_body.jpg) repeat-x;
	font-size:13px;
	font-family: "メイリオ", Meiryo, Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    *font-size:small;
    *font:x-small;
}

/*--------------------------------------------------------------------------------
アンカーリンク
--------------------------------------------------------------------------------*/
a:link {
	color: #3366CC;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #660033;
}
a:hover {
	text-decoration: underline;
	color: #09F;
}
a:active {
	text-decoration: none;
}

/*--------------------------------------------------------------------------------
フォントサイズ
--------------------------------------------------------------------------------*/
.txt77 { font-size:77%; }
.txt85 { font-size:85%; }
.txt93 { font-size:93%; }
.txt100 { font-size:100%; }
.txt108 { font-size:108%; }
.txt116 { font-size:116%; }
.txt123 { font-size:123.1%; }
.txt131 { font-size:131%; }
.txt138 { font-size:138.5%; }
.txt146 { font-size:146.5%; }
.txt153 { font-size:153.9%; }
.txt161 { font-size:161.6%; }
.txt167 { font-size:167%; }
.txt174 { font-size:174%; }
.txt182 { font-size:182%; }
.txt189 { font-size:189%; }
.txt197 { font-size:197%; }

/*--------------------------------------------------------------------------------
テーブル　データセル横幅
--------------------------------------------------------------------------------*/
.w10 {
	width: 10%;
}
.w20 {
	width: 20%;
}
.w30 {
	width: 30%;
}
.w40 {
	width: 40%;
}
.w50 {
	width: 50%;
}

/*--------------------------------------------------------------------------------
フロートクリア
--------------------------------------------------------------------------------*/
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

