/* フォントの種類・色・文字間 */
body {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 12px;
	color: #5d6970;
	letter-spacing: 0.03em;
}

/* テキストを表示させたくない場合 */
.none { display: none; }

/* フォントサイズ設定　Hタグ */
h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
}

/* テキストを強調 */
.text_red {
	color: #f00;
}

.text_blue {
	color: #536db8;
}

s {
	color: #f00;
}

/* インデント１文字分 */
/* ------------------------------------------------------------ */
.indent {
	text-indent: -1em;
	margin-left: 1em;
}

/* フォントサイズ設定　1行で収まる文になる場合 */
.title9 { font-size:9px; }
.title10 { font-size:10px; }
.title12 { font-size:12px; }
.title14 { font-size:14px; }
.title18 { font-size:18px; }
.title24 { font-size:24px; }
.title28 { font-size:28px; }

/* フォントサイズ設定　2行以上の文になる場合 */
.text9 { font-size:9px; line-height:1.5; }
.text10 { font-size:10px; line-height:1.5; }
.text12 { font-size:12px; line-height:1.5; }
.text14 { font-size:14px; line-height:1.5; }
.text18 { font-size:18px; line-height:1.5; }
.text24 { font-size:24px; line-height:1.5; }
.text28 { font-size:28px; line-height:1.5; }

/* リンク設定 */
a:link { text-decoration:none; color:#536db8; }
a:visited { text-decoration:none; color:#536db8; }
a:active { text-decoration:none; color:#536db8; }
a:hover { text-decoration:none; color:#536db8; }