﻿@charset "utf-8";
/* ------------------------------
   DESIGN/LAYOUT ELEMENTS
------------------------------ */


/* ------------------------------
   CHAPTER ELEMENTS
------------------------------ */
#globalMenu {
	width: 100%;
	height: 60px;
	
	background: #cc3365;
	border-top: #aaa px solid;
	border-bottom: #aaa px solid;
	position: absolute;
	z-index: 10;
	
}

#globalMenu ul {
	margin: 0 auto;
	width: 756px;
	height: 60px;
	text-align: left;
	list-style:none;
	font-size:11px;
}

#globalMenu ul li {
	width: 120px;
	height: 50px;
	float: left;
	border-left: #aaa px solid;
	box-sizing: border-box;
	
	
}

#globalMenu ul li:last-child {
	border-right: #aaa px solid;
	font-color:#ffffff;
}

#globalMenu ul li a {
	text-decoration:none;
	color:#ffffff;
	height: 50px;
	
	line-height: 20px;
	display: block;
	text-align: center;
	transition: all 0.2s linear;
	padding-top:8px;
	vertical-align:top;
	
}

#globalMenu ul li:hover > a {
	background: #dcdcdc;
	color:#ffffff;
	height: 52px;
}

#contents {
	margin: 0 auto;
	padding: 40px 0;
	width: 800px;
	text-align: left;
}

#contents p {
	padding-bottom: 2em;
	font-size: 0.9em;
	line-height: 1.8em;
}


#globalMenu ul li  img 	{width:20%;
	padding-top:0px;
	padding-bottom:0px;
	vertical-align:top;
		}

/* ------------------------------
   MEDIAQUERIES LAYOUT
------------------------------ */
@media only screen and (max-width: 800px) {
	#globalMenu ul {
		width: 100%;
	}

	#globalMenu ul li {
		width: 20%;
	}
}

/* ------------------------------
   MEDIAQUERIES[SP]LAYOUT
------------------------------ */
@media only screen and (max-width: 768px) {
	#globalMenu {
		display: none;
	}

	#menuOverlay {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.7);
		display: none;
		position: fixed;
		z-index: 97;
	}

	#switchBtnArea {
		
		width: 100%;
		height: 60px;
		background: rgba(250,250,250,0.9) url(img/neabandlogo02.png) no-repeat center center;
		box-shadow:0px 0.25px 8px gray;
		border-bottom: #aaa px solid;
		position: fixed;
	}


	#switchBtnArea #switchBtn {
		top: 10px;
		left: 20px;
		width: 40px;
		height: 40px;
		background: rgba(204,51,51,0.7) url(img/btnOpen.png) no-repeat center center;
		border-radius: 5px;
		position: fixed;
		z-index: 98;
	}

	#switchBtnArea #switchBtn.btnClose {
		background: transparent url(img/btnClose.png) no-repeat center center;
		
	}

	#rwdMenuWrap {
		top: 0;
		left: -180px;
		width: 180px;
		height: 100%;
		background: #cc3365;
		overflow: auto;
		position: fixed;
		z-index: 99;
	}

	#rwdMenuWrap ul {
		color:#ffffff;
		width: 90%;
		padding-left:5px;
		
	}

	#rwdMenuWrap ul li {
		color:#ffffff;
		width: 90%;
		border-bottom: #ffffff 1px solid;
		list-style:none;
		background-color:#ffffff;
		
		
		}
		
	#rwdMenuWrap ul li img {width:20%;
		}

	

	#rwdMenuWrap ul li a {color:#ffffff;
		font-size:10px;
		padding: 10px 20px;
		text-align: left;
		background: #cc3365 url(img/linkarw.png) no-repeat right center;
		display: block;
		text-align:cente;
	}

	#contents {
		width: 100%;
	}

	#contents p {
		padding: 0 20px 2em 20px;
	}
}

/* ------------------------------
   CLEARFIX ELEMENTS
------------------------------ */
#globalMenu > ul:before,
#globalMenu > ul:after {
	content: " ";
	display: table;
}
#globalMenu > ul:after {clear: both;}
#globalMenu > ul {*zoom: 1;}
