@charset "UTF-8";

/****メニュー全体****/
#menu{
	/*配置*/
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}

/****メニュー開閉ボタン****/
#menu div{
	/*デザイン*/
	width: 50px;
	height: 50px;
	/*配置*/
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

#menu .menuopen{
	/*デザイン*/
	color: rgba(255,255,255,1);
	font-size: 20px;
	/*配置*/
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: auto;
}

#menu .menuclose{
	/*デザイン*/
	color: rgba(255,255,255,1);
	font-size: 20px;
	/*配置*/
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: auto;
}

/****メニュー一覧****/
#menu ul{
	/*アニメーション*/
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	/*デザイン*/
	background: rgba(0,0,0,0.5);
	width: 35%;
	/*配置*/
	position: absolute;
	top: 50px;/*#menu divの高さ*/
	left: -35%;/*#menu ul(メニュー一覧)の幅*/
	z-index: 5;
}

#menu li{
	/*デザイン*/
	padding: 10px;
	padding-left:15px;
	/*配置*/
	pointer-events: auto;
}


/****メニューオープン時****/
#menu:target .menuopen{
	/*配置*/
	display: none;
}

#menu:target .menuclose{
	/*配置*/
	display: block;
}

#menu:target ul{
	/*配置*/
	left: 0;
}

clearfix
---------------------*/
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}
.clearfix {
	display: inline-block;
} /* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
} /* End hide from IE-mac */
.grobalnav .clear {
	clear: both;
}
.grobalnav {
	margin-right: auto;
	margin-left: auto;
}


.page-top
{
	margin: 0 ;
	padding: 0 ;
}
 
.page-top p
{
	margin: 0 ;
	padding: 0 ;

	position: fixed ;
	right: 5% ;
	bottom: 70% ;
}
 
.move-page-top
{
	display: block;
	width: 50px;
	height: 50px;
	color: #fff;
	line-height: 50px;
	text-decoration: none;
	text-align: center;
	-webkit-transition:all 0.3s;
	-moz-transition:all 0.3s;
	transition:all 0.3s;
}

.move-page-top:hover
{
	opacity: 0.85 ;
}
