﻿@charset "utf-8";

/* =======================================

	CommonElements

======================================= */
/*body {
	width: 100%;
	font-size: 100%;
	line-height: 140%;
	font-family: Arial,Helvetica,sans-serif;
	color: #000;
	text-align: center;
}

a:link { text-decoration:none; color: #000;}
a:visited { text-decoration:none; color: #000;}
a:active { text-decoration:none; color: #000;}
a:hover { text-decoration:none; color: #000;}

h1 {
	padding: 15px 0;
	background: #000;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}
h2 {
	padding: 30px 0;
	width: 100%;
	font-size: 12px;
}*/

#container {
	margin: 0 auto;
	width: 100%;
	text-align: center;
}

/* ------------------------------
   #menuList
------------------------------ */
#menuList {
	width: 100%;
	height: 70px;
	border-top: #aaa 1px solid;
	border-bottom: #aaa 1px solid;
	position: relative;
	z-index: 10;
	background: #FFF;
}

#menuList ul {
	margin: 0 auto;
	width: 900px;
	height: 70px;
	text-align: left;
	padding-top: 5px;
}

#menuList ul li {
	width: 140px;
	height: 60px;
	float: left;
	border-left: #C4C4C4 1px solid;
	box-sizing: border-box;

}

#menuList ul li:first-child {
	border-left: none;
}
/*#menuList ul li:last-child {
	border-right: #aaa 1px solid;
}*/

#menuList ul li a {
	height: 70px;
	color: #1F1F1F;
	font-weight: normal;
	font-size: 0.9rem;
	line-height: 1.6;
	text-align: center;
	text-decoration: none;
	padding-top: 0.75em;
	display: block;
	transition: all 0.1s linear;
}
#menuList ul li a span {
	font-size: 0.75rem;
	color: #00b6ec;
}

#menuList ul li:hover a {
	background-color: #F1F1F1;
	height: 50px;
	border-top: 4px solid #DE4000;
}

/*#contents {
	margin: 0 auto;
	padding: 40px 0;
	width: 900px;
	text-align: left;
}

#contents p {
	padding-bottom: 2em;
	font-size: 1em;
	line-height: 2em;
}*/

/* ------------------------------
   MEDIAQUERIES LAYOUT
------------------------------ */
@media only screen and (max-width: 800px) {
	#menuList ul {
		width: 100%;
	}

	#menuList ul li {
		width: 20%;
	}
}

/* ------------------------------
   MEDIAQUERIES[SP]LAYOUT
------------------------------ */
@media only screen and (max-width: 768px) {
	#menuList {
		display: none;
	}

	#menuOverlay {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.6);
		display: none;
		position: fixed;
		z-index: 9997;
	}

	#switchBtnArea {
		width: 100%;
		height: 52px;
		background: #717070;
		border-bottom: #aaa 1px solid;
		position: relative;
	}

	#switchBtnArea #switchBtn {
		top: 8px;
		left: 10px;
		width: 35px;
		height: 35px;
		display: block;
		background: #B8B8B8;
		position: absolute;
		border-radius: 5px;
		z-index: 9998;
	}
	#switchBtnArea #switchBtn span {
		left: 20%;
		width: 60%;
		height: 3px;
		display: block;
		position: absolute;
		background-color: #fff;
		border-radius: 5px;
		transition: all 0.2s linear;
	}
	#switchBtnArea #switchBtn span:nth-of-type(1) {
		top: 9px;
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	#switchBtnArea #switchBtn span:nth-of-type(2) {
		top: 17px;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	#switchBtnArea #switchBtn span:nth-of-type(3) {
		bottom: 7px;
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	#switchBtnArea #switchBtn.btnClose {
		background: transparent;
	}
	#switchBtnArea #switchBtn.btnClose span:nth-of-type(1) {
		top: 18px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#switchBtnArea #switchBtn.btnClose span:nth-of-type(2) {
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	#switchBtnArea #switchBtn.btnClose span:nth-of-type(3) {
		bottom: 14px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	#rwdMenuWrap {
		top: 0;
		right: -80%;
		width: 80%;
		height: 100%;
		background: #3c3c3c;
		overflow: auto;
		position: fixed;
		z-index: 9999;
	}

	#rwdMenuWrap ul {
		width: 100%;
	}

	#rwdMenuWrap ul li {
		width: 100%;
		border-bottom: #aaa 1px solid;
	}

	#rwdMenuWrap ul li a {
		padding: 15px 20px;
		text-align: left;
		display: block;
		background: #ebebeb;
		position: relative;
		color:#000;
		font-size: 1rem;
		letter-spacing: 0.1em;
		text-decoration: none;
	}
	#rwdMenuWrap ul li a span{
		display: none;
	}
	#rwdMenuWrap ul li a:hover {
		color: #FFF;
		background-color:#A2A2A2;
	}

	#rwdMenuWrap ul li a:after {
		content: '';
		margin-top: -4px;
		top: 50%;
		right: 15px;
		width: 8px;
		height: 8px;
		color: #888;
		font-size: 1em;
		font-weight: bold;
		line-height: 1.2em;
		display: block;
		position: absolute;
		border-top: 2px solid #b0b0b0;
		border-right: 2px solid #b0b0b0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	#contents {
		width: 100%;
	}

	#contents p {
		padding: 0 20px 2em 20px;
	}
}

/* ------------------------------
   CLEARFIX ELEMENTS
------------------------------ */
#menuList > ul:before,
#menuList > ul:after {
	content: " ";
	display: table;
}
#menuList > ul:after {clear: both;}
#menuList > ul {*zoom: 1;}
