@charset "UTF-8";
/*---------------------------グローバルメニュー背景---------------------------*/


.navbar {
 *position: relative;
 *z-index: 2;
	margin: 0px;
	overflow: visible;
}
.navbar-inner {
	position: relative;
	width: 960px;
	margin: 0 auto;
	padding: 0px;
 *zoom: 1;
	text-align: center;
}
.navbar-inner:before, .navbar-inner:after {
	display: table;
	line-height: 0;
	content: "";
}
.navbar-inner:after {
	clear: both;
}
.nav-collapse.collapse {
	height: auto;
	overflow: visible;
}


/*---------------------------グローバルメニュー---------------------------*/




.navbar .nav {
	position:relative;
	right: 0;
	padding: 0;
	display: block;
	margin: 0 auto;
	list-style: none;
	text-align: center;
	zoom: 1;
	width:100%;
}
.navbar .nav li {
	display:table-cell;
	padding: 0;
	margin: 0;
	border-left: rgba(129,50,20,0.2) solid 1px;
	float: left;
}
.navbar .nav > li:last-child {
	border-right: rgba(129,50,20,0.2) solid 1px;
}
.navbar .nav > li > a {
	display: block;
	position: relative;
	padding: 10px 22px 10px 22px;
	margin: 0 0 0 0;
	float: none;
	color: #7E3114;

	text-decoration: none;
	text-align: center;
	font-size: 12px;
	line-height: 1;
}
.navbar .nav > li:last-child a {
	padding: 10px 21px 10px 22px;
}

.navbar .nav > li span {
}



.navbar .nav > li > a:hover,
.navbar .nav > li > a:active {
	background-color: rgba(255,255,255,0.5) ;
}
.navbar .nav > li.active > a {
	color: #7E3114;
}
.navbar .nav > li.active > a:after {
	position: absolute;
	bottom: 0px;
	left: 50%;
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: -6px;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #7E3114;
	border-left: 6px solid transparent;
	content: "";
}

/*---------------------------メニューオープンボタン---------------------------*/



.navbar .btn-navbar {
	display: none;
	float: right;
	padding: 7px 10px;
	margin: 10px 10px 20px 0px;
	color: #ffffff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	background-color: #EFECE4;
	border: rgba(129,50,20,0.2) solid 1px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.navbar .btn-navbar:hover, .navbar .btn-navbar:active, .navbar .btn-navbar:active, .navbar .btn-navbar.active, .navbar .btn-navbar.disabled, .navbar .btn-navbar[disabled] {
	border: rgba(129,50,20,0.5) solid 1px;
}
.navbar .btn-navbar .icon-bar {
	display: block;
	width: 18px;
	height: 2px;
	background-color: #7E3114;
}
.btn-navbar .icon-bar + .icon-bar {
	margin-top: 3px;
}
/*---------------------------スライドパネル---------------------------*/



.collapse {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition: height 0.35s ease;
	-moz-transition: height 0.35s ease;
	-o-transition: height 0.35s ease;
	transition: height 0.35s ease;
}
.collapse.in {
	height: auto;
}
