/*!
 * 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: 9999;
  top: 0;
  overflow: hidden;
  width: 100%;
	max-width: 390px;
  height: 100%;
  color: #333333;
  /*MENUカラー*/
  background-color: rgba(255, 255, 255, 0.93);
  /*iOS-scroll対策
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;*/
}
@media screen and (max-width: 768px) {
.drawer-nav {
  width: 100vw;
}
}

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

.drawer-nav p.menu{
    max-width: 248px;
}

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

.drawer-menu-wrap {
	max-width: 300px;
	margin: 80px auto 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.drawer-menu {
	width: 100%;
	list-style: none;
}

.drawer-menu li{
	margin-bottom: 10px;
	border-bottom: 1px solid #00b4b4;
}

.drawer-menu li a{
	width: 100%;
	display: inline-block;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 400;
	text-decoration: none;
	padding-bottom: 10px;
    transition: all 0.3s linear;
	color: #231815;
}

.drawer-menu li span{
	font-family: "gotham", 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	display: block;
	font-size: 1.8rem;
	letter-spacing: 0.01em;
	color: #00b4b4;
}

.drawer-menu li a:hover{
    opacity: 0.6;
    
}

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

/* action-menu
===============================*/
.action-menu {
	width: 100%;
    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.action-menu li {
    width: 100%;
    margin-bottom: 40px;
	text-align: center;
}

.action-menu li:nth-child(even) {
    /*border-right: 1px solid #B5B5B6;*/
	margin-bottom: 0px;
}

.action-menu li.box {
    border-left: none;
    border-right: none;
}

.action-menu li.btm {
    width: 100%;
}

.action-menu li a {
  /*font-size: 1.3rem;
  width: 100%;
  height: 30px;
  line-height: 1.5;
  color: #000000;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;*/
  transition: all 0.3s linear;
}

.action-menu li a:hover {
  opacity: 0.6;
}

.action-menu li span {
  display: block;
	text-align: center;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

/* soon */
.action-menu li a.soon {
  pointer-events: none;
  cursor: default;
}

/* tel */
@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*! 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: -640px;
  -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: 768px) {
 .drawer--right .drawer-nav {
  right: -100vw;
}
}
.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;
}
/*
@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: 10000;
  top: 0;
  display: block;
  width: 80px;
  height: 80px;
  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: #D6CCB4;*/
	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 {
  width: 60px;
  height: 60px;
  padding: 20px 16px 16px;
}
}
.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
    /*background-color: rgba(214,204,180,0.60);*/
}
.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: #426932; /*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: 768px) {
.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: #426932; /*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.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #231815;
  position: absolute;
  top: 15px;
  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;
}