header .toggle {
	background: url(./images/menu.svg) no-repeat;
	background-size: contain;
	width: 30px;
	height: 20px;
	z-index: 2;
	position: fixed;
	right: 20px;
	top: 20px; }

.close {
	background: url(./images/menu_close.svg) no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
	z-index: 2;
	position: fixed;
	right: 25px;
	top: 20px; }

.menu {
  position: fixed;
  top: 0;
  right: -300px;
  z-index: 1;
  width: 300px;
  height: 100%;
  background-color: #ffffff;
	border-left: solid 1px #ddd;
  transition: opacity .3s;
}

.menu .menu-box {
	width: 100%;
	height: 100%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

ul{
	list-style-type: none;
}

ul.lang{
	font-size: 12px;
	display:flex;
}

ul li a{
	color:#000;
	text-decoration: none;
	display: inline-block;
	margin: 20px;
	line-height: 1;
	padding-bottom: 4px;
	border-bottom: solid 1px #fff;
	
}

ul li a.act,
ul li a:hover{
	border-bottom: solid 1px #000;
}


h1 + ul{
	position: fixed;
	right: 80px;
	top: 0; 	
}



/*
***************************************************************/
@media screen and (max-width: 640px) {



.menu {
	width:100%;
	right: -100%;
	background-color:transparent;
}

.menu-box{
	margin-top:65px; 
	background-color: #ffffff;
}


.sp{display:block;}
.pc{display:none !important;}



}


