/* 文字サイズ（通常） */
.font {
	font-size:95%;
	line-height:120%;
}
/* 文字サイズ（小） */
.fontS {
	font-size: 70%;
	line-height:120%;
}
/* 文字サイズ（中） */
.fontM {
	font-size:80%;
	line-height:120%;
}
/* 文字サイズ（大） */
.fontL {
	font-size:120%;
	line-height:140%;
}

/* ----------------------------------------------------------------- */
/* a:link　未訪問ページ（要素）へのスタイル指定                      */
/* a:visited　訪問済みページ（要素）へのスタイル指定                 */
/* a:hover　アンカー要素にマウスカーソルが重なったときのスタイル指定 */
/* a:active　アンカー要素をクリックした瞬間のスタイル指定            */
/* ----------------------------------------------------------------- */
a:link { color: #336699; text-decoration: underline }
a:visited { color: #336699; text-decoration: underline }
a:hover { color: #F9C700; text-decoration: underline }
a:active { color: #EA7500; text-decoration: underline }


