/* 文字サイズ（通常） */
.font {
	font-size:95%;
	line-height:120%;
}
/* 文字サイズ（小） */
.fontS {
	font-size: 70%;
	line-height:120%;
}
/* 文字サイズ（中小） */
.fontMS {
	font-size:75%;
	line-height:120%;
}
/* 文字サイズ（中） */
.fontM {
	font-size:80%;
	line-height:120%;
}
/* 文字サイズ（中大） */
.fontML {
	font-size:85%;
	line-height:120%;
}
/* 文字サイズ（中超大） */
.fontMLL {
	font-size:90%;
	line-height:120%;
}
/* 文字サイズ（大中） */
.fontLM {
	font-size:100%;
	line-height:120%;
}
/* 文字サイズ（大２） */
.fontLL {
	font-size:100%;
	line-height:160%;
}

/* 文字サイズ（大） */
.fontL {
	font-size:120%;
	line-height:140%;
}

/* 文字サイズ（とても大） */
.fontLLL {
	font-size:140%;
	line-height:160%;
}


/* ページ全体 */
body {
	font-family: 'メイリオ',sans-serif;
}


/* リンク画像の枠線を消す */

.no_border {
    border-style:none;
}


/* ----------------------------------------------------------------- */
/* 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 }

