
/* 基本CSS */

/* サイズ可変 */
.font60{font-size:68.75%;} /* 11px相当 */
.font75{font-size:75%;} /* デフォルトサイズ　12px相当 */
.font90{font-size:87.5%;} /* 14px相当 */
.font100{font-size:100%;} /* 16px相当 */
.text60{font-size:68.75%;line-height:150%;} /* 11px相当 */
.text75{font-size:75%;line-height:150%;} /* 12px相当  */
.text90{font-size:87.5%;line-height:150%;} /* 14px相当 */
.text100{font-size:100%;line-height:150%;} /* 16px相当 */

/* サイズ固定 */
.font6{font-size:6px;}
.font10{font-size:10px;}
.font12{font-size:12px;}
.font14{font-size:14px;}
.font16{font-size:16px;}
.text10{font-size:10px;line-height:150%;}
.text12{font-size:12px;line-height:150%;}
.text14{font-size:14px;line-height:150%;}

/* リンクカラー */
A:link   { color: black } /* 普通のリンク色 */
A:visited   { color: black } /* すでに見たリンク色 */
A:active { color: #FF3300} /* クリックした時のリンク色 */
A:hover { color: #FF3300 } /* カーソルが乗った時のリンク色 */
A:link, A:visited, A:active, A:hover { text-decoration: none }

A.aa:link { color: #333333 } /* 普通のリンク色 */
A.aa:visited { color: #333333 } /* すでに見たリンク色 */
A.aa:active { color: #333333} /* クリックした時のリンク色 */
A.aa:hover { color: #3366CC } /* カーソルが乗った時のリンク色 */
A.aa:link, A.aa:visited, A.aa:active, A.aa:hover { text-decoration: none }

A.bb:link { color: #333333 } /* 普通のリンク色 */
A.bb:visited { color: #333333 } /* すでに見たリンク色 */
A.bb:active { color: #333333} /* クリックした時のリンク色 */
A.bb:hover { color: #FF6600 } /* カーソルが乗った時のリンク色 */
A.bb:link, A.bb:visited, A.bb:active, A.bb:hover { text-decoration: none }

A.cc:link { color: #0066CC} /* 普通のリンク色 */
A.cc:visited { color: #0066CC } /* すでに見たリンク色 */
A.cc:active { color: #0066CC} /* クリックした時のリンク色 */
A.cc:hover { color: #3399FF } /* カーソルが乗った時のリンク色 */
A.cc:link, A.cc:visited, A.cc:active, A.cc:hover { text-decoration: none }
