/* --- ページ背景の指定 --- */
body {
background-image : url(images/bg26.jpg);
margin: 0;
padding: 0;
/* --- 本文の文字サイズ --- */
font-family:'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN',
'ヒラギノ角ゴ ProN W3',sans-serif;
font-size: 16px;
}
/* --- メニューバーについての設定 ---*/
a {
  text-decoration: none;
  color: #000000;
  display: block;
}

ul, li, dl, dt, dd {
margin: 0;
padding: 0;
}
/* --- リストの設定はしない --- */
li {
list-style: none;
}

/* --- メニューバーの設定 ---*/
div.nav ul{
/* --- メニューバーの幅　600px ---*/
width: 600px;
/* --- メニューの配置 ---*/
margin: 0 auto;
line-height: 1;
margin-bottom: 0px;
/* --- 要素の境界の外側の角を丸めます ---*/
border-radius:6px;
}
/* --- メニューバー項目の設定 ---*/
div.nav ul li {
float:left;
/* --- 各項目の幅---*/
width: 100px;
position:relative;
}
div.nav ul:after {
content: “”;
display: block;
clear: both;
}
div.nav ul li a {
/* --- メニューバーの背景色 ---*/
background-color: #f5f5f5;
/* --- メニューのフォントはボールド 12px ---*/
font-weight:bold;
font-size: 12px;
text-decoration: none;
text-align:center;
padding: 0.9em 0;
display:block;
/* --- メニューバーの上下枠線の色 ---*/
border-top:1px solid #aaaaaa;
border-bottom:1px solid #aaaaaa;
z-index: 300;
position:relative;
}
/* --- メニューポイント時に背景色の変化 ---*/
div.nav ul li a:hover {
background-color: #ffffff;
}
/* --- メニューバーの左右枠線の色 ---*/
div.nav ul li:first-child a {
border-left:1px solid #aaaaaa;
border-radius:6px 0 0 6px;
}
div.nav ul li:last-child a {
border-right:1px solid #aaaaaa;
border-radius: 0 6px 6px 0;
}
/* --- 子メニューリンク時の設定 ---*/
div.nav ul li:first-child a:hover {
border-left:1px solid #aaaaaa;
}
div.nav ul li:last-child a:hover {
border-right:1px solid #aaaaaa;
}
div.nav ul li ul.sub {
height: 0;
width: 0;
overflow:hidden;
position:absolute;
z-index: 10;
top: 5px;
font-size: 10px;
padding-top: 5px;
padding-bottom: 6px;
background: #f5f5f5;
opacity: 0;
border-radius:0 0 6px 6px;
transition: opacity 300ms linear, top 0.5s ease-in;
}
div.nav ul li:hover ul.sub {
height: inherit;
width: inherit;
opacity: 1;
top: 30px;
}
div.nav ul li ul.sub li {
float:none;
}
/* --- 子メニューポイント後の文字設定 ---*/
div.nav ul li ul.sub li a {
font-size: 12px;
text-align:left;
padding: 0.9em 10px;
font-weight: normal;
background-color: #ffffff;
border: none;
border-radius: 0;
}
/* --- 子メニューマウスオーバー時の設定 ---*/
div.nav ul li ul.sub li a:hover {
background-color: #f5f5f5;
border: none;
}

/* --- 訪問済み時の設定 --- */
div.nav ul.nl li a:visited{
text-decoration: none;
/* 訪問済みテキスト下線は表示しない */
}

/* --- clearfix --- */
.clearFix:after{
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearFix{
  min-height: 0px;
}