/*=============================================*/
/*               menubtm                       */
/*=============================================*/

nav {
	overflow: auto;
	position: fixed;
	top: 0px;
	right: -100%;
	width: 100%;
	height: calc(100% - 60px);
	opacity: 0;
	z-index: 1000;
	background-color: rgba(0,0,0,0.8);
	transition: all 0.5s;
	margin-top: 60px;

}

/* ナビゲーション：アクティブ時 */
.navOpen nav {
	opacity: 1;
	right: 0%;
	transition: all 0.5s;
	top: 0px;

}
nav ul {
	border-top: 1px solid rgba(255,255,255,0.3);
}
nav ul li {
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding-left: 0px;
	background: none;
}
nav ul li a {
	position: relative;
	display: block;
	padding:10px 10px;
	height:60px;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	letter-spacing: 1px;
	text-align: left;
	font-weight:bold;
}
nav ul li a span {
	display:inline-block;
	padding:0 0 0 20px;
	font-size:60%;
	font-weight:normal;
}
nav .demo-icon {
	font-size: 20px;
	position: relative;
	top: 2px;
	color: #fff;
}
nav a {
	color: #FFF;
}
nav a:hover {
	color: #FFF;
}
nav dl {
	text-align: center;
	padding: 10px;
}
nav dt {
	font-size: 16px;
	font-weight: bold;
}
nav dl a {
	font-size: 18px;
}
nav dl a::before {
	content: "t";
	font-family: "fontello";
	margin: 0 5px;
}
nav ul li a:hover {
	background: rgba(255,255,255,0.1);
}
nav ul li a:before {
	position: absolute;
	top: 50%;
	right: 10px;
	display: inline-block;
	content: "";
	width: 10px;
	height: 10px;
	margin-top: -5px;
	margin-right: -5px;
	vertical-align: middle;
	border-top: 1px solid rgba(255,255,255,0.5);
	border-right: 1px solid rgba(255,255,255,0.5);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	color: #FFF;
}
/* ナビゲーションアイコン */
.navBtn {
	display: block;
	width: 42px;
	height: 40px;
	position: fixed;
	z-index: 2000;
	top: 7px;
	right: 10px;
	cursor: pointer;
	text-align: center;
	margin: 0;
	box-sizing: border-box;
	line-height: 10px;
	padding: 5px;	
	
}



.navBtn span {
	display: block;
	height: 2px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	line-height: 2px;
	margin-top: 8px;
}

/* ナビゲーションアイコン：アクティブ */
.navOpen .navBtn span:nth-of-type(1) {
	-webkit-transform: translateY(10px) translateX(0) rotate(45deg);
	-ms-transform: translateY(10px) translateX(0) rotate(45deg);
	transform: translateY(10px) translateX(0) rotate(45deg);
}
.navOpen .navBtn span:nth-of-type(2) {
	margin-top: 5px;
	opacity: 0;
}
.navOpen .navBtn span:nth-of-type(3) {
	-webkit-transform: translateY(-5px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-5px) translateX(0) rotate(-45deg);
	transform: translateY(-5px) translateX(0) rotate(-45deg);
}
#close-btn {
	text-align: center;
	color: #FFF;
	font-size: 15px;
	background-color: #000;
	padding: 10px 0;
	margin: 0;
	cursor: pointer;
}
#close-btn span {
	padding-left: 10px;
	display: inline-block;
}




/* add class */


#hmenu {
	float: right;
	margin: 0;
	color: #FFF;
	font-size: 12px;
	text-align: center;
	box-sizing:border-box;
	height: 60px;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-right:63px;
}

#hmenu li {
	border-right: solid 1px rgba(255,255,255,1);
	border-left: solid 1px rgba(255,255,255,1);
	width: 55px;
	line-height: 10px;
	
}

#hmenu li:last-child {
	border-left:0;
	
	}

#hmenu a {
	display: block;
	width: 100%;
	height: 100%;
	color: #FFF;
	text-decoration:none;
}
#hmenu .demo-icon {
	font-size: 33px;
	color: #FFF;
	position: relative;
	left: 0px;
	top: 4px;
	display:block;
	margin: 0 0 8px;
}

.btn_menu {
	position:absolute;
	color:#fff;
	font-size:12px;
	bottom:-4px;
	left:0;

	
	}

.navBtn span.btn_menu {
	background:none;
	}








