@charset "utf-8";
/* CSS Document */
.button_container {
  position: fixed;
	top: 25px;
	right: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  z-index: 999;
  -webkit-transition: opacity .25s ease;
  transition: opacity .25s ease;
}
@media screen and (max-width : 700px ){
.button_container {
	top: 24px;
	}
}
.button_container:hover {
  opacity: .7;
}
.button_container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}
.button_container.active .middle {
  opacity: 0;
  background: #FFF;
}
.button_container.active .bottom {
  -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
          transform: translateY(-7px) translateX(0) rotate(-45deg);
  background: #FFF;
}
.button_container span {
  background: #fff;
  border: none;
  height: 2px;
  width: 30px;
  position: absolute;
  top: 15px;
  left: 10px;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
}
.button_container span:nth-of-type(2) {
  top: 24px;
}
.button_container span:nth-of-type(3) {
  top: 33px;
}

.overlay-menu{margin-top: 50px;border-top: 1px solid #3e3e3e; position: relative; height: 100vh;}
.overlay {
  position: fixed;
  background: #131517;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
	z-index: 998;
}
.overlay.open {
  opacity: .95;
  visibility: visible;
  height: 100%;
}
.overlay ul{border-top: 1px solid #3e3e3e;}
.overlay ul li{
	border-bottom: 1px solid #3e3e3e;
}
.overlay ul li:nth-of-type(odd){
	border-right: 1px solid #3e3e3e;
}
.sb_nav{border-bottom: 1px solid #3e3e3e;}
.sb_nav p::before{
content: '■';
font-size: 5px;
vertical-align: middle;
padding-right: 10px;
	color: #AD9842;
}

.nav_entry{

}
.nav_entry a{
		position: absolute;
bottom: 0;
	left: 0;
	right: 0;
	color: #fff;
	padding: 40px 0px;
	width: 100%;
	text-align: center;
	display: block;
margin-bottom: 40px;
}

/*====================================
  	カタマイズ
====================================*/
.button_container{
	top:0px;
	background: #131517;
}