/* 文字サイズ（通常） */
.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%;
}
/* 文字サイズ（中）追加 */
.style2 {font-size: 80%}

<!--
.style3 {color: #FFFFFF}
-->

<!--
.style4 {color: #FF0000}
.style6 {color: #000000}
-->
	    .style13 {
	font-size: 150%;
	color: #FF0033;
}
/* ----------------------------------------------------------------- */
/* a:link　未訪問ページ（要素）へのスタイル指定                      */
/* a:visited　訪問済みページ（要素）へのスタイル指定                 */
/* a:hover　アンカー要素にマウスカーソルが重なったときのスタイル指定 */
/* a:active　アンカー要素をクリックした瞬間のスタイル指定            */
/* ----------------------------------------------------------------- */
a:link { color: #0033cc; text-decoration: underline }
a:visited { color: #660000; text-decoration: underline }
a:hover { color: #ff6600; text-decoration: underline }
a:active { color: #3698c5; text-decoration: underline }

/* 取り消し線 */
.delline { text-decoration:line-through; }

