@charset "utf-8";
/*==========================================
 スマホメニュー
===========================================*/
@media screen and (min-width: 0px) and (max-width:768px) {
/*===メニュー全体===*/
nav {
	position: fixed;
	width: 100%;
	top: 0;
	left:0;
	z-index:100;
}
/*メニューオープン時*/
nav.sp-open {
	height: 100%;
}
nav.sp-open ul {
 height: 90%;
 overflow: auto;
 -webkit-overflow-scrolling: touch;
}
nav.sp-open ul#demoMenu{
	padding-bottom: 100px;
}
.scroll-prevent {
  position: fixed;/*背景スクロール不可（固定）*/
  z-index: -1;
  width: 100%;
  height: 100%;
}

/*===メニューボタン===*/
.menu-btn_txt {
  color: #fff;
  font-size: 12px;
  margin-bottom:0;
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
}
.menu-trigger {
  position: relative;
  width: 30px;
  height: 20px;
}

/*モーション*/
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
}