/*!
 * jquery-drawer v3.2.0
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * https://weekend-lab.com/
 * Author : Weekend-Lab.
 */

/*!------------------------------------*\
    Base
\*!------------------------------------*/
/* option */
.fixed {
  overflow: auto;
  height: 100%;
}
/* Base */
.drawer-nav {
  position: fixed;
  z-index: 888;
  top: 0;
  overflow: hidden;
  /*width: 230px;*/
	width: 270px;
  height: 100%;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.95);
  /*iOS-scroll対策
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;*/
}
@media screen and (max-width: 840px) {
.drawer-nav {
	/*width: 230px;*/
}
}

.drawer-nav .inside {
	width: 80%;
	max-width: 230px;
	margin: 0 auto;
	padding: 60px 0;
}

/* drawer-menu
===============================*/

.drawer-menu {
  list-style: none;
}

.drawer-menu li{
	font-family: "Roboto Condensed", 'Roboto', "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	margin-bottom: 10px;
}
/*
.drawer-menu li a{
	width: 100%;
	display: inline-block;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 400;
	color: #716864;
	text-decoration: none;
    transition: all 0.3s linear;
}

.drawer-menu li a:hover{
    opacity: 0.6;
    text-decoration: underline;
}
*/
/* soon */
.drawer-menu li a.soon {
	opacity: 0.5;
    pointer-events: none;
	cursor: default;
}

/* overlay */

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* ← 黒50% */
  z-index: 777;   /* ナビより下、コンテンツより上に */
  display: none;  /* 初期は非表示 */
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
	right: -230px;
	-webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}
@media screen and (max-width: 888px) {
 .drawer--right .drawer-nav {
	 right: -230px;
}
}
.drawer--right.drawer-open .drawer-nav, .drawer--right .drawer-hamburger, .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}
.drawer--right .drawer-hamburger {
  right: 0;
}
.drawer--right.drawer-open .drawer-hamburger {
  right: 0;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: fixed; /*スクロール対応 - absolute -*/
  z-index: 999;
  top: 2px;
  display: block;
  width: 86px;
  height: 86px;
  padding: 26px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: transparent;
}
@media screen and (max-width: 888px) {
.drawer-hamburger {
  width: 60px;
  height: 60px;
  padding: 20px 16px 16px;
}
}
.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}
.drawer-open .drawer-hamburger {
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
}
.drawer-hamburger-icon, .drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  background-color: #E86E58; /*icon*/
}
.drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: ' ';
}
.drawer-hamburger-icon:after {
  top: 10px;
}
@media screen and (max-width: 888px) {
.drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
  top: -8px;
}
.drawer-hamburger-icon:after {
  top: 8px;
}
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer-open .drawer-hamburger-icon:before, .drawer-open .drawer-hamburger-icon:after {
  top: 0;
  background-color: #E86E58; /*icon*/
}
.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* MENU 
.menu-label {
  display: block;
  text-align: center;
  font-family: 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #231815;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 120;
  pointer-events: none;
}
.drawer-open .menu-label {
  display: none;
}
@media screen and (max-width: 768px) {
.menu-label {
  font-size: 1.0rem;
  top: 3px;
}
}*/

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}