@charset "utf-8";
/* CSS Document */
/* 共通 */

header {
	width: 100%;
	}
/* //共通 */
.header_img{
 width: 100%;
}

/****メニュー全体****/
#menu{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 100;
}

/****メニュー開閉ボタン****/
#menu div{
	width: 50px;
	height: 50px;
	background-color: #799755;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
}
#menu .menuopen{
	color: rgba(255,255,255,1);
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: auto;
}

#menu .menuclose{
	color: rgba(255,255,255,1);
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: auto;
}

/****メニュー一覧****/
#menu ul{
	width: 60%;
	overflow: hidden;
	position: absolute;
	top: 50px;
	right: 0;
}

#menu li{
	background-color: #799755;
	color: #fff;
	border-bottom: 1px rgba(255,255,255,1) solid;
	pointer-events: auto;
	position: relative;
	right: -100%;
}

#menu li a{
	color: #fff;
 display: block;
	padding: 10px;
}

/****#menu liの数だけずれたタイミングでアニメーション開始****/
#menu li:nth-child(1){
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

#menu li:nth-child(2){
	-webkit-transition: all 0.3s ease 0.05s;
	transition: all 0.3s ease 0.05s;
}

#menu li:nth-child(3){
	-webkit-transition: all 0.3s ease 0.1s;
	transition: all 0.3s ease 0.1s;
}

#menu li:nth-child(4){
	-webkit-transition: all 0.3s ease 0.15s;
	transition: all 0.3s ease 0.15s;
}

#menu li:nth-child(5){
	-webkit-transition: all 0.3s ease 0.2s;
	transition: all 0.3s ease 0.2s;
}

#menu li:nth-child(6){
	-webkit-transition: all 0.3s ease 0.25s;
	transition: all 0.3s ease 0.25s;
}

#menu li:nth-child(7){
	-webkit-transition: all 0.3s ease 0.3s;
	transition: all 0.3s ease 0.3s;
}

/****メニューオープン時****/
#menu:target .menuopen{
	display: none;
}

#menu:target .menuclose{
	display: block;
}

#menu:target li{
	right: 0;
}

/*** メインエフェクト ***/
#main{
	/*デザイン*/
	background: #fff;/*ページ背景色・背景画像はここで設定*/
	/*アニメーション*/
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-perspective:200px;
	perspective:200px;
}

#main > *{
	/*アニメーション*//*中身全てにアニメーション設定してしまうので注意*/
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

#menu:target ~ #main{
	-webkit-filter:brightness(70%);
	-moz-filter:brightness(70%);
	-ms-filter:brightness(70%);
	filter:brightness(70%);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,1) inset;
}

#menu:target ~ #main > *{
	-webkit-filter:blur(1px);
	-moz-filter:blur(1px);
	-ms-filter:blur(1px);
	filter:blur(1px);
	-webkit-transform: translateZ(-10px);
	-moz-transform: translateZ(-10px);
	transform: translateZ(-10px);
}