/*
「くずし字表示」「文字拡大鏡」で新たなフォントを追加するためには以下が必要。
・フォントファイルを「fonts」フォルダに配置
・「fonts.css」での「@font-face」の定義
・「fonts.js」での「fonts」オブジェクトへの登録
・「cursive_writing.js」「char_zoom.js」の「fontList」への追加
*/

@font-face {
	font-family: "衡山毛筆草書";
	src: url(../fonts/kouzan_sousho.ttf);
}
@font-face {
	font-family: "白舟草書教漢";
	src: url(../fonts/hakusyu-sousyo-kyoukan.ttf);
}
@font-face {
	font-family: "白舟印相体教漢";
	src: url(../fonts/hakusyu-insoutai-kyoukan.ttf);
}
@font-face {
	font-family: "があた草書";
	src: url(../fonts/gatasosyo.ttf);
}
@font-face {
	font-family: "があた草書通常かな";
	src: url(../fonts/gatasosyoTujokana.ttf);
}
@font-face {
	font-family: "よくみる？変体仮名";
	src: url(../fonts/hentaiganaGSGothic.ttf);
}

@font-face {
	font-family: "機械彫刻書体";
	src: url(../fonts/KikaiChokokuJIS-Md.otf);
}
@font-face {
	font-family: "切絵字";
	src: url(../fonts/kirieji.ttf);
}
@font-face {
	font-family: "美咲フォント";
	src: url(../fonts/misaki_gothic.ttf);
}
@font-face {
	font-family: HentaiKana;
	src: url(../fonts/UniHentaiKana-Regular.woff) format("woff");
}

/* OSにフォントがない場合用 */
@font-face {
	font-family: "メイリオ_";
	src: url(../fonts/meiryo.ttf);
}
@font-face {
	font-family: "MS_明朝";
	src: url(../fonts/ms-mincho.ttf);
}
@font-face {
	font-family: "MS_P明朝";
	src: url(../fonts/ms-p-mincho.ttf);
}
@font-face {
	font-family: "MS_ゴシック";
	src: url(../fonts/ms-gothic.ttf);
}
@font-face {
	font-family: "MS_Pゴシック";
	src: url(../fonts/ms-p-gothic.ttf);
}
@font-face {
	font-family: "游明朝_";
	src: url(../fonts/yumin.ttf);
}
@font-face {
	font-family: "花園明朝A";
	src: url(../fonts/HanaMinA.ttf);
}
@font-face {
	font-family: "花園明朝B";
	src: url(../fonts/HanaMinB.ttf);
}
@font-face {
	font-family: "Unifont";
	src: url(../fonts/unifont-10.0.07.ttf);
}
@font-face {
	font-family: "Blank";
	src: url(../fonts/AdobeBlank.ttf);
}
@font-face {
	font-family: "書き順";
	src: url(../fonts/KanjiStrokeOrders_v4.004.ttf);
}
@font-face {
	font-family: "Jigmo";
	src: url(../fonts/Jigmo.ttf);
}
@font-face {
	font-family: "Jigmo2";
	src: url(../fonts/Jigmo2.ttf);
}
@font-face {
	font-family: "Jigmo3";
	src: url(../fonts/Jigmo3.ttf);
}

#samples {
	font-family: メイリオ, 機械彫刻書体, HentaiKana;
}
