@charset "UTF-8";
/* ======================================================= *//* 
Style Name: font.css
Style URI: css/font.css
Description: フォントの基本設定（base.cssに読み込み）
Version: 1.0
Last Up Date: 070214
Suggested order:各要素の指定は以下の順に記述して下さい。
	1. 視覚整形モデル
		display
		list-style
		position
		float
		clear
	2. ボックスモデル
		width
		height
		margin
		padding
		border
	3. 背景と前景
		background
	4. フォントとテキスト
		color
		font
		text-decoration
		text-align
		vertical-align
		white-space
		other text
	5. 生成内容	
		content
Reference:
○基本フォント14px相当の場合の指定比率
/* 142.86%　/* 20px相当 */
/* 128.57%　/* 18px相当 */
/* 114.29%　/* 16px相当 */
/* 100.00%　/* 14px相当 */
/* 85.71%　/* 12px相当 */
/* 71.43%　/* 10px相当 */
/* 57.14%　/* 8px相当 */
/* 42.86%　/* 6px相当 */
/*
○全要素に共通の構成
<div id="page">表示域　※表示される要素は全てこのタグの中に
	<div id="header" class="block">ヘッダー</div>
	<div id="body" class="block">
		<div id="primary" class="column">メインカラム
			<div id="idname" class="group">コンテンツグループ
				<div id="idname" class="unit">コンテンツユニット</div>
			</div>
		</div>
		<div id="secondary" class="column">セカンドカラム</div>
		<div id="tertiary" class="column">サードカラム</div>
	</div>
	<div id="footer" class="block">フッター</div>
</div>
/* ======================================================= */


/* フォントの基本設定
 * ---------------------------------------- */
body {
    font-size:62.5%; /* 10px */
    font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS P Gothic", sans-serif;
    letter-spacing:normal;
	}
div#page {
	font-size:1.4em; /*14px相当*/
	}

textarea,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size:100%; /*14px相当*/
	}
	
