@charset "utf-8";

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

/* コンテンツが短い場合、オーバーレイが途中で切れるのを防止 */
html, body #container {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: 100%;
}

/* メインコンテンツ部分 */
#container {
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 2;
  background: #fff;
  position: relative;
}

#container.open {
  -webkit-transform: translate3d(280px, 0, 0);
  transform: translate3d(280px, 0, 0);
  overflow: hidden;
}

/* ドロワーが開いたとき、コンテンツ部分にかけるオーバーレイ */
#overlay {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 9999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
}

/* 開ボタン */
#button img{
	width: 50px;
	height: 47px;
	}

/* 開閉ボタン */
.drawer-button { cursor: pointer; }
.close img {
	width: 32px;
	height: 32px;
	float: right;
	padding: 6px 0;
	}

/* ドロワーメニュー部分 */
#side_wrapper {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  width: 280px;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  background-color: #3e403d;
  position: fixed;
}

#side_wrapper a{
	color: #fff;
	}
#side_wrapper li{
	float: none;
	}
#side_wrapper #slide_menu{
	padding: 0 15px;
	}
#side_wrapper #slide_menu li a{
	display: block;
	background: url(../../img/common/arrow_sp05.gif) 10px 12px no-repeat;
	border-top: solid 1px #5b5d5a;
	padding: 15px 0 15px 30px;
	}
#side_wrapper #slide_menu .innav a{
	background: url(../../img/common/arrow_sp04.gif) 0px 10px no-repeat;
	padding: 12px 0 12px 20px;
	margin: 0 0 0 20px;
	border: none;
	}

/* メニューのデザイン */
#sidenavi {
  color: #fff;
  border-left: solid 1px #e8346f;
}

#sidenavi p {
  box-sizing: border-box;
  text-align: center;
  padding: 10px 0;
  background-size: 5px 30px;
}

#sidenavi a {
  color: #fff;
  text-decoration: none;
  display: block;
}

#sidenavi > ul > li {
  border-bottom: solid 1px #ff7a9f;
  position: relative;
}

#sidenavi > ul > li > a { padding: 10px 0 10px 5px; }
#sidenavi > ul > li > a.over i { color: #b32654; }

#sidenavi > ul > li > a > i {
  font-size: 86%;
  text-align: center;
  width: 25px;
  display: inline-block;
}

#sidenavi > ul > li > ul {
  padding: 10px 0;
  display: none;
  background: #e8346f;
}

#sidenavi > ul > li > ul > li > a {
  padding: 5px 0 5px 55px;
  display: block;
  position: relative;
}

#sidenavi > ul > li > ul > li > a:before {
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  font-size: 50%;
  margin: auto;
  width: 10px;
  top: 10px;
  left: 40px;
  display: block;
  content: "\f054";
  position: absolute;
}

}