/* 背景の色 */ 
body { background-color: #69c }
/* HPの名前 */
.title { color: #69c; font-weight: bold; font-size: 12pt }
/* HPの名前の部分・見出しの背景色 */
.obi  { background-color: white }
/* コメントの部分等の文字 */
.text  { color: navy; font-size: 10pt }
/* コメントの部分等の背景色 */
.contbg{
    background-color: #FFFFFF;
}
/* 小見出しの文字 */
.sub{
    color: #000000;
    font-weight: bold;
    font-size: 10pt;}
/* 小見出しの背景色 */
.subbg{
    background-color: #CCCCCC;
}
/* カテゴリの部分の文字 */
.cate{
    color: #000000;
    font-size: 10pt;
    font-weight: bold;
}
/* リンク（通常） */
a:link{
    color: #000000;
    text-decoration: underline;
    font-size: 10pt;
    font-weight: bold;
}
/* リンク（訪問済） */
a:visited{
    color: #000000;
    text-decoration: underline;
    font-size: 10pt;
    font-weight: bold;
}
/* リンク（マウスが重なったとき） */
a:hover{
    color: #FF0000;
    text-decoration: underline;
    font-size: 10pt;
    font-weight: bold;
}
/* フォーム関係の設定 */
textarea,input,select
 { color: #69c; background-color: #eeeeee; border: solid 1px #000000 }
