@charset "UTF-8";

/* ===============================================================
	- Font settings -
	Last Update: 2009/11/07 13:22
	Copyright (C) キッコーナ株式会社
=============================================================== */
/*
基本サイズ / 表示したいサイズ * 100 (小数点以下切り上げ)
表示したいサイズ	指定する値
10px				84%
11px				92%
12px				100%
13px				109%
14px				117%
15px				125%
16px				134%
17px				142%
18px				150%
19px				159%
20px				167%
21px				175%
22px				184%
23px				192%
---
フォント選出の基準
英数字：幅広のもの
日本語：等幅(但しmonospace指定はしない)
 */

body{
	font-size: 12px;
	font-family:
		"ヒラギノ角ゴ Pro W3",
		"Hiragino Kaku Gothic Pro",
		"Osaka",
		"ＭＳ Ｐゴシック",
		"MS P Gothic",
		Verdana,
		Arial,
		Helvetica,
		sans-serif;
}
/* for IE6 */
* html body{
	font-size: 75%;
}
/* for IE7 */
*:first-child+html body{
	font-size: 75%;
}
/* 10px */
.font-XS{
	font-size: 84%;
}
/* 11px */
.font-S{
	font-size: 92%;
}
/* 12px */
.font-M{
	font-size: 100%;
}
/* 13px */
.font-L{
	font-size: 109%;
}
/* 14px */
.font-XL{
	font-size: 117%;
}
/* グレー文字 */
.note{
	color: #696969;
}
/* 赤文字 */
.attention{
	color: #d00!important;
	font-weight: bold;
}
.alignLeft{
	text-align: left;
}
.alignCenter{
	text-align: center;
}
.alignRight{
	text-align: right;
}

