/* CSS Document */

@charset "Shift_JIS";

/* --- ナビゲーションバー --- */
.nav {
width: 100%; /* ナビゲーションの幅 */
height:25px;
background-color: #f9f9f9; /* ナビゲーションの背景色 */
border-top: 1px #cccccc solid; /* 上枠線 */
border-bottom: 1px #cccccc solid; /* 下枠線 */
font-size: 11px;
}

/* --- メニューエリア --- */
.nav .nl {
width: 780px; /* メニューの幅 */
margin: 0 auto; /* センターに配置 */
padding: 0;
background-color: #ffffff; /* メニューの背景色 */
list-style-type: none;
text-align: center;
}

/* --- メニュー項目 --- */
.nav .nl li {
width: 14%; /* 項目の幅 */
float: left;
}

/* --- リンク --- */
.nav .nl li a {
display: block;
position: relative; /* IE6用 */
padding: 8px 4px; /* リンクエリアのパディング（上下、左右） */
border-left: 1px #cccccc solid; /* リンクエリアの左枠線 */
text-decoration: none; /* テキストの下線（なし） */
height:25px;
}
/* --- ポイント時の設定 --- */
.nav .nl li a:hover {
background-color: #99CC99; /* ポイント時の背景色 */
text-decoration: underline; /* テキストの下線（あり） */
}

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

/* --- コンテナ --- */
#store_container {
width: 780px; /* ページの幅 */
margin: 0 auto; /* センタリング */
background-color: #ffffff; /* メインカラムの背景色 */
border-left: 1px #c0c0c0 solid; /* 左枠線 */
border-right: 1px #c0c0c0 solid; /* 右枠線 */
}

#DirLink {
padding: 0px 0px 5px 10px;
font-size: 80%;
}
/* --- リストエリア --- */
.topicPath {
margin: 0;
padding: 0;
list-style-type: none;
font-size: 10px;
margin-left:6px;
}

/* --- リスト項目 --- */
.topicPath li {
display: inline;
}

/* --- リンク --- */
.topicPath li a {
margin-right: 6px; /* リンクエリアの右マージン */
}