@charset "UTF-8";
/* CSS hamburger menu */


@media (min-width: 769px) {
nav.menu, ul.menu,ul#manu	{
	display:none;
}
}


/*↓ハンバーガーアイコン*/
nav.menu{
	width:40px;
	height:36px;
	top: 25px;
	right:20px;
	position:fixed;
	cursor:pointer;
	z-index:9999;
	
}
nav .menu1{
	width:40px;
	height:5px;
	background-color: #000;
	top:0px;
	position:absolute;
} 
nav .menu2{
	width:40px;
	height:5px;
	background-color:#000;
	top:15px;
	position:absolute;
} 
nav .menu3{
	width:40px;
	height:5px;
	background-color:#000;
	top:30px; 
	position:absolute; 
}

/* アニメーション */ 
nav .menu1,nav .menu2,nav .menu3{
	transition: all 0.5s ease-out; 
	-o-transition: all 0.5s ease-out; 
	/* Opera */ 
	-moz-transition: all 0.5s ease-out;
	/* Firefox */
	-webkit-transition: all 0.5s ease-out; 
	/* GoogleChrome, Safari */ 
	-ms-transition: all 0.5s ease-out; 
	/* IE */ 
}

nav .menuclick1	{
	top:8px;
	-o-transform: rotate(405deg);
	-moz-transform: rotate(405deg);
	-webkit-transform: rotate(405deg);
	-ms-transform: rotate(405deg); 
	transform: rotate(405deg); 
}
nav .menuclick2 { 
	background-color:rgba(255,255,255,0); 
}
nav .menuclick3	{ 
	top:8px; 
	-o-transform:
	rotate(-405deg); 
	-moz-transform: rotate(-405deg);
	-webkit-transform: rotate(-405deg);
	-ms-transform: rotate(-405deg);
	transform: rotate(-405deg);
}


/*サイトメニュー*/
#menu	{
	height:100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
display: none;
right: 0px;
top: 0px;
list-style-type: none;
background-color:#999;
 opacity: 0.9;
padding:10% 0 10% 0;
z-index:9000;
width:100%;
margin:0;
	text-align:left;
}

#menu li	{
	color:#fff;
	text-decoration:none;
	line-height:30px;
	text-align:left;
	font-size:16px;
	font-weight:bold;
	opacity: 0.9;
	margin-left:7%;
}

#menu li.sub	{
	color:#fff;
	text-decoration:none;
	line-height:30px;
	text-align:left;
	font-size:15px;
	font-weight:bold;
	opacity: 0.9;
	margin-left:13%;
}

#menu li a,#menu li.sub a	{
	color:#fff;
	text-decoration:none;
	line-height:30px;
	text-align:left;
	font-size:16px;
	font-weight:bold;
	padding:0;
}


ul#menu li.sub_s	{
	margin-left:18%;
}








.nolink	{
	padding-left:46px;
}
