/*----------------*/
/* リンクの文字色 */
/*----------------*/
/* カーソルが上に乗ったとき */
a:hover{
 color : deeppink;
}
/* 通常 */
a{
 color : #993399;
 text-decoration : none
}

/*--------------------*/
/* ページ全体について */
/*--------------------*/
div#main{
 width : 880px;
 margin :0  auto;
 background-image : url("../image/bg.gif");
 background-repeat : repeat-y;
 color : dimgray;
 background-color : lavenderblush;
 font-size : small
}

/*--------*/
/* ヘッダ */
/*--------*/
div#header{
 width : 855px;
 height : 60px;
 padding : 10px
}

/*--------------------------*/
/* ヘッダとフッタとの境界線 */
/*--------------------------*/
.line{
 width : 855px;
 height : 30px;
 clear : both;
 background-repeat : repeat-x;
 background-image : url("../image/line.gif");
}

/*--------------------*/
/* メニュー欄について */
/*--------------------*/
/* ページ全体の配置 */
div#nav{
 width : 200px;
 float : left;
 padding : 10px
}
/* 「contents」画像の配置 */
#contents{
 margin-left : 34px
}
/* メニューのリストスタイルと配置 */
ul{
 list-style-type : none;
 margin-left : 10px;
 padding : 0;
}

/*------*/
/* 本文 */
/*------*/
/* 全体の配置 */
div#section{
 width : 500px;
 float : left;
 padding : 10px
}
/* 画像の配置 */
#img{
 float : left;
 display : inline;
 margin-right : 10px;
}

/* bool_place.html・link.htmlで利用 */
/* リスト表示時の行の高さ */
dl{
 line-height : 150%
}
/* リスト表示時の文字を太くする */
dt{
 font-weight : bold
}

/* テーブル */
/* 枠線 */
table.border{
 border-collapse: collapse;
 border : solid 1px
}
/* 見出しセル */
th{
 background-color : #ff99ff;
 border : solid 1px;
 text-align : left;
 vertical-align : top;
}
/* データセル */
td{
 border : solid 1px
}
/* 枠線を表示しないセル */
td.borderless{
 border : none;
 text-align : left;
 vertical-align : top;
}


/* インラインフレーム（新着情報やGoogleマップ表示時など）について */
/* 枠線 */
iframe{
 border : dashed 2px #ff99ff;
}
/* スクロールバーの色 */
body{
 scrollbar-base-color: mistyrose
}

/* 新着情報（news.html）について */
/* 新着情報各項目について */
div#news{
 background-color : white;
 color : dimgray;
 font-size : 10pt
}
/* 新着情報のリスト表示 */
ul#news{
 list-style-type : none;
 margin : 0px;
}
/* 新着情報各項目の枠線 */
li#news{
 margin-top : 10px;
 border-bottom : dotted 2px fuchsia;
 border-right : dotted 2px fuchsia;
}

/*------------*/
/* 右側広告欄 */
/*------------*/
div#aside{
 width : 110px;
 float : right;
 font-size : 10pt;
 padding : 10px;
}

/*--------*/
/* フッタ */
/*--------*/
/* 全体の配置 */
div#footer{
 width : 855px;
 clear : both;
 font-size : 10pt;
 padding : 10px;
 text-align : center
}
/* お問合せ先の表示 */
address{
 text-align : right
}
