@charset "utf-8";

/* #############################################################

#THIS_CSS {
	--------------------------------------------
	filename: init-font.css;
	--------------------------------------------
}

#CONTENT {
	[+000]
	ブラウザごとのフォント周りの差異を(極力)無くす
	+
	要素ごとにフォントの初期設定を行なう
	--------------------------------------------
	+ 0: Font Style Reset;
	+ 1: Font Style Set;
	+ 2: Font Size Set {13px};
	+ 3: Font Type Set;
	+ 4: Font Color Set;
	+ 5: Font Link Color Set;
	--------------------------------------------
}

#KEY {
	ファイル内管理
	--------------------------------------------
	Search key "+" + "n"
	--------------------------------------------
}

#COPYRIGHT {
	--------------------------------------------
	COPYRIGHT(C) xxxxxx All RIGHTS RESERVED.
	--------------------------------------------
}	
############################################################ */





/* ==============================================================

	[+0] Font Style Reset
	ブラウザごとのフォントの差異を(極力)無くす

============================================================== */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size:100.01%;
}

table {
	font-size: inherit;
	font: 100%;
}

h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal;
}

select,
input,
textarea {
	font-family: Osaka, "MS P Gothic", Arial, sans-serif;
	font-size: 99%;
}

address,
caption,
cite,
code,
dfn,
em,strong,
th,
var {
	font-style:normal;
	font-weight:normal;
}

pre, code {
	font: 100% monospace;
}





/* ==============================================================

	[+1] Font Style Set
	文字のボールド指定や斜体指定などを設定します。
	
============================================================== */
em 
{ font-weight: bold; }

q, cite
{ font-style: italic; }

p
{ font-weight: normal; }

address 
{ font-style: normal; }





/* ==============================================================

	[+2] Font Size Set {13px}
	フォントのサイズを設定します。
	----------------------------------------------------------
	Yahoo UI Library Fonts CSS
	*Copyright (c) 2006, Yahoo! Inc. All rights reserved.
	*http://developer.yahoo.com/yui/license.txt
	
	Font-size Adjustment
	
	83%  = 10px	|	133% = 16px	|	183% = 22px	
	92%  = 11px	|	142% = 17px	|	192% = 23px
	100% = 12px |	150% = 18px	|	200% = 24px
	108% = 13px	|	158% = 19px	|	208% = 25px
	117% = 14px	|	167% = 20px	|	217% = 26px
	125% = 15px	|	175% = 21px	|
	----------------------------------------------------------
	
============================================================== */
body
{ font-size: 12px;	}
/* for WinIE6,7(13px) */
*+html body
{ font-size: 75%; }
* html body
{ font-size: 75%; }


/* 10px
{ font-size: 83%; } */

/* 11px
{ font-size: 92%; } */

/* 12px
{ font-size: 100%; } */

/* 13px
{ font-size: 108%; } */

/* 14px */
h5,
h6
{ font-size: 117%; }
 
/* 15px
{ font-size: 125%; } */

/* 16px */
h4
{ font-size: 133%; }

/* 17px
{ font-size: 142%; } */

/* 18px
{ font-size: 150%; } */
 
/* 19px */
h3
{ font-size: 158%; }

/* 20px
{ font-size: 167%; } */

/* 21px */
h2
{ font-size: 175%; }

/* 22px
{ font-size: 183%; } */
 
/* 23px
{ font-size: 192%; } */

/* 24px
{ font-size: 200%; } */

/* 25px */
h1
{ font-size: 208%; }

/* 26px
{ font-size: 217%; } */





/* ==============================================================

	[+3] Font Type Set
	フォントの種類を指定します。
	
============================================================== */
/*
{ font-family:"Lucida Sans","Times New Roman",Times,serif; }
*/

input,
textarea 
{ font-family: Arial, Helvetica, "ヒラギノ角ゴ Pro W3",  sans-serif; }

code,
pre.
kbd
{ font-family: "Osaka－等幅", monospace; }





/* ==============================================================

	[+4] Font Color Set
	文字色を指定します。
	
============================================================== */
/* black */
body,
cite
{ color: #555; }

blockquote *
{ color: #666; }

del
{ color: #999; }

/* Red */
strong
{ color: #ff4500; }

/* White
{ color: #fff; } */





/* ==============================================================

	[+5] Font Link Color Set
	リンク時の文字色を指定します。
	
============================================================== */
a:link		{ color: #0099cc; }
a:visited	{ color: #0099cc; }
a:hover		{ color: #80af00; }
a:active	{ color: #ff6600; }

a:link,
a:visited {
	text-decoration:none;
}
a:hover,
a:active {
	text-decoration:none;
}






