@charset "UTF-8";


#hamburger .btn-gNav{
  position: fixed;
  top: 25px;
  left: 25px;
  width: 30px;
  height: 24px;
  z-index: 3;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

#hamburger .btn-gNav span{
  position: absolute;
  width: 100%;
  height: 1px;
  background: #9f9fa0;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
#hamburger .btn-gNav span:nth-child(1) {
  top:0;
}
#hamburger .btn-gNav span:nth-child(2) {
  top:10px;
}
#hamburger .btn-gNav span:nth-child(3) {
  top:20px;
}
#hamburger .btn-gNav.open span:nth-child(1){
  background: #9f9fa0;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}
#hamburger .btn-gNav.open span:nth-child(2),#hamburger .btn-gNav.open span:nth-child(3){
  top: 6px;
  background :#9f9fa0;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}
#gNav{
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;/*300px*/
  height: 100%;
  background: #fff;
  font-size: 16px;
  box-sizing: border-box;
  z-index: 2;
  padding-top: 50px;
  transition: .3s;
}
#gNav.open{
  left: 0px;
}
#gNav .gNav-menu{

  width: 100%:
  height:100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  /*justify-content: center;*/
}

#gNav .gNav-menu {
height: 100%;
 overflow: auto;
 -webkit-overflow-scrolling: touch;
margin-top: -30px;
}

#gNav .gNav-menu li{
  display: block;
  padding : 12px 30px;
}
#gNav .gNav-menu li a{
  color: #9f9fa0;
  text-decoration: none;
}




#gNav ul li {
	border-bottom: 1px solid #9f9fa0;
/*	background-position: center;
	background-size: 25px;*/
vertical-align: middle;
	font-size: 16px;
}
#gNav ul li a {
	font-weight: bolder;
	font-size: 0.85em;
	color:#888889;
	letter-spacing: 4px;
	overflow: hidden;
}

#gNav ul li a img {
	width:30px;
	display: inline-block;
	margin-right: 15px;
vertical-align: middle;}
/*
#gNav ul li:nth-child(2) { background-image: url("../img/icon_home.svg");}
#gNav ul li:nth-child(3) { background-image: url("../img/icon_shop.svg");}
#gNav ul li:nth-child(4) { background-image: url("../img/icon_company.svg");}
#gNav ul li:nth-child(5) { background-image: url("../img/icon_philosophy.svg");}
#gNav ul li:nth-child(6) { background-image: url("../img/icon_recruit.svg");}
#gNav ul li:nth-child(7) { background-image: url("../img/icon_contact.svg");}
*/

#gNav ul li span {
	font-size: 0.6em;
	display: block;
	line-height: 1.1;
	margin-top: 10px;
}

#gNav ul li.shimashima {
padding: 25px 0 0;
border-bottom: 0;
}
#gNav ul li.shimashima a {
	padding-left:0;
}

#gNav ul li.shimashima a img {
	width:150px;
	margin-right:0;
}






/* 幅768px以下の表示 iPad
-------------------------------------*/
@media screen and (max-width: 768px){
}

/* 幅480px以下の表示 sp
-------------------------------------*/
@media screen and (max-width: 480px) {


#hamburger .btn-gNav {
    top: 18px;
    left: 18px;
    width: 25px;
}





}