@charset "UTF-8";
/* CSS Document */

@media only screen and (max-width: 850px){

/*ハンバーガーメニュー*/
.navToggle {
    display: block;
    position: fixed;
    right: 13px;
    top: 6px;
    width: 42px;
    height: 51px;
    cursor: pointer;
    z-index: 40;
    text-align: center;
	}
 
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 35px;
    border-bottom: solid 5px #231815;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
	left: 6px;
	}
 
.navToggle span:nth-child(1) {
	top: 5px;
	}
 
.navToggle span:nth-child(2) {
	top: 17px;
	}
 
.navToggle span:nth-child(3) {
	top: 29px;
	}
 
.navToggle span:nth-child(4) {
	border: none;
	color: #eee;
	top: 34px;
	}

/*タップした後*/
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
	border-bottom: solid 5px #4c4948;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
	}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
	border-bottom: solid 5px #4c4948;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
	
.site-topheader{
	display: none;
	}
}

/*メニュー押した後のアニメーション*/
.overlay {
	position: fixed;
	background-color: rgba(239,239,239,0.95);
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
	z-index: 30;
	}

.overlay.open {
	opacity: 1.0;
	visibility: visible;
	height: 100%;
	}

.overlay.open li {
  -webkit-animation: fadeInUp .5s ease forwards;
          animation: fadeInUp .5s ease forwards;
  -webkit-animation-delay: .35s;
          animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
          animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
          animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
          animation-delay: .50s;
}
.overlay.open li:nth-of-type(5) {
  -webkit-animation-delay: .55s;
          animation-delay: .55s;
}
.overlay.open li:nth-of-type(6) {
  -webkit-animation-delay: .60s;
          animation-delay: .60s;
}
.overlay.open li:nth-of-type(7) {
  -webkit-animation-delay: .65s;
          animation-delay: .65s;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

/*メニュー押した後のナビゲーション*/
.overlay nav {
	position: relative;
	height: 20%;
	top: 35%;
	-webkit-transform: translateY(-100%);
          transform: translateY(-100%);
	text-align: center;
	font-size: 1.2em;
	font-family: "Ryumin Regular KL";
	}

.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	height: 100%;
	}

.overlay ul li {
	display: block;
	height: 0%;
	height: calc(100% / 4);
	min-height: 70px;
	position: relative;
	opacity: 0;
	}

.overlay ul li a {
	display: block;
	position: relative;
	color: #4c4948;
	text-decoration: none;
	overflow: hidden;
	}

.Logo-nav-top img{
	width: 200px;
	height: auto;
	margin-bottom: 25px;
	}

.store-btn{
	margin-bottom:15px;
	}

.store-btn img{
	width: 100px;
	height: auto;
	margin: 20px auto 0px;
	}

.mo-navicon{
	width: 120px;
	margin: 0 auto;
	}

.mo-navicon img{
	width: 30px;
	height: auto;
	}

.leftLOGO{
    float: left;
	}

.centerLogo{
	float: right;
	margin-left: 15px;
	}

.rightLOGO{
	float: right;
	}


