@charset "utf-8";
/* CSS Document */

/* ★ファイルの文字コードを上記でutf-8を指定していて実際のファイル保存がShift_JISになっていたためIEで表示が崩れました。 */

/*
============================================================
 共通スタイルシート
 ----------------------------------------------------------
 概要：全ページで共通して使用するスタイルを記述する
============================================================
*/
/*
================= 目次 =================

// 初期設定
// IE5.5以下用センタリング設定
// 余白設定用クラス
// ページ構造
// レイアウト
// トップページ
// text
// CSSハック

========================================
*/


/*-------------------------------------
// 初期設定
-------------------------------------*/
/* CSS for pulldown menu v1.3 */
/* Copyright(C) ASH (http://ash.jp/) */

ul.navi_menu {
	position: relative;
	display: inline-block;
	list-style: none;
	font-size: 14px;
	width: 100%;
	color: #000000;
	border: #aaaaaa 1px solid;
	margin: 0;
	padding: 0;
}
ul.navi_menu li {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 25px;
	white-space: nowrap;
	float: left;
	color: #000000;
	background: #eeeeee;
	border: none;
	margin: 0;
	padding: 0;
}
ul.navi_menu a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-size: 14px;
	line-height: 25px;
	color: #000000;
	background: #eeeeee;
	margin: 0;
	padding: 0px 10px;
}
ul.navi_menu a:visited {
	color: #000000;
	background: #eeeeee;
}

ul.navi_menu ul {
	position: relative;
	display: none;
	list-style: none;
	height: 25px;
	color: #000000;
	background: #eeeeee;
	border-top: #aaaaaa 1px solid;
	margin: 0;
	padding: 0;
}

ul.navi_menu > li {
	border-right: #aaaaaa 1px solid;
}
ul.navi_menu > li li {
	clear: left;
	border: #aaaaaa 1px solid;
	border-top: none;
}
ul.navi_menu > li li a {
	background: #eeeeee;
	padding: 0px 10px;
}

ul.navi_menu li:hover > a {
	color: #000000;
	background: #cccccc;
}
ul.navi_menu li:hover > ul {
	display: inline-block;
	position: absolute;
	top: 100%;
	left: 5px;
}
ul.navi_menu li a:hover {
	color: #ffffff;
	background: #333366;
}
ul.navi_menu li li:hover ul {
	top: 0px;
	left: 100%;
}
