/*!
 * jquery-drawer v3.2.0
 * Flexible drawer menu using jQuery, iScroll and CSS.
 * http://git.blivesta.com/drawer
 * License : MIT
 * Author : blivesta <design@blivesta.com> (http://blivesta.com/)
 */
/*!------------------------------------*\
    Base
\*!------------------------------------*/
/* option */
.fixed {
  overflow: auto;
  height: 100%;
}
/* Base */
.drawer-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  overflow: hidden;
 
  /*width: 350px;*/
	width: 400px;
  height: 100%;
  color: #333333;
  /*MENUカラー*/
  background-color: rgba(255, 255, 255, 0.85);
  /*iOS-scroll対策
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;*/
}
@media screen and (max-width: 480px) {
.drawer-nav {
	width: 100%;
	max-width: 400px;
}
}

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

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

.drawer-menu-item {
	display: block;
	text-align: left;
	transition: all 0.3s linear;
	font-size: 1.6rem;
	font-weight: 700;
	color: #716864;
	text-decoration: none;
	padding-top: 10px;
	padding-bottom: 20px;
	border-bottom: 1px solid #C8C0BC;
}

.drawer-menu-sub {
    list-style: none;
    margin-top: 40px;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between; 
}

.drawer-menu-sub li{
    width: 48%;
	max-width: 160px;
}

.drawer-menu-btn {
    margin-top: 20px;
}

.drawer-menu-btn li{
    width: 100%;
	max-width: 340px;
	margin-bottom: 10px;
}

.drawer-menu-off {
  display: inline-block;
  text-align: left;
  transition: all 0.3s linear;
  font-size: 1.6rem;
  font-weight: 700;
  color: #716864;
  text-decoration: none;
  margin-bottom: 20px;
}

/* hover */
.drawer-nav li a:hover {
  opacity: 0.6;
  text-decoration: none;
}

/* OFF */
.drawer-nav li a.off{
    opacity: 0.5;
    pointer-events: none;
}
/*.drawer-menu li a.off{
    opacity: 1.0;
	 pointer-events: none;
}*/

/*
ul.drawer-menu ul{
    padding: 8px 0;
    border-bottom: 1px solid #AAAAAA;
}

ul.drawer-menu ul li a{
    font-size: 1.3rem;
    display: block;
    color: #333333;
    text-align: left;
    padding-top: 8px;
    padding-bottom: 8px;
    -webkit-transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -ms-transition: opacity 0.5s ease-out;
}

ul.drawer-menu ul li a:hover {
	color: #999999;
	background-color: transparent;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

ul.drawer-menu ul li a span{
    color: #A81113;
    margin-right: 10px;
}
*/

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.drawer-open .drawer-overlay {
  display: block;
}
/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  /*right: -16.25rem;*/
  right: -350px;
  -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);
}
.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: 10px;
}
.drawer--right.drawer-open .drawer-hamburger {
  right: 10px;
}


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

.drawer--right .drawer-hamburger {
    top: 0px;
    right: 0px;
}
.drawer--right.drawer-open .drawer-hamburger {
  right: 0px;
}

}


/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: fixed; /*スクロール対応 - absolute -*/
  z-index: 110;
  top: 16px;
  display: block;
  width: 64px;
  height: 64px;
  padding: 16px;
  -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;
  /*circle
  background-image: url(../images/circle.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;*/
}
@media screen and (max-width: 768px) {
/*.drawer-hamburger {
  top: 3px;
}*/
}

.drawer-hamburger:hover {
  cursor: pointer;
  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: #716864; /*icon*/
}
.drawer-hamburger-icon:before, .drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: ' ';
}
.drawer-hamburger-icon:after {
  top: 10px;
}
.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer-open .drawer-hamburger-icon:before, .drawer-open .drawer-hamburger-icon:after {
  top: 0;
  background-color: #716864; /*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);
}
/*!------------------------------------*\
    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;
}