/* =====================================================
▼ CUSTOM
===================================================== */
li.drawer-dropdown > a:after {
	font: normal normal normal 14px/1 FontAwesome;
  font-size: 100%;
  line-height: 1em;
	margin-left: 10px;
	content: "\f0d7";
}
li.drawer-dropdown.open > a:after {
	font: normal normal normal 14px/1 FontAwesome;
  font-size: 100%;
  line-height: 1em;
	margin-left: 10px;
	content: "\f0d8";
}



@media screen and (min-width:736px){
	/* =====================================================
	▼ BASE
	===================================================== */
	.drawer-hamburger {
		display: none;
	}
	.drawer-nav {
		position: relative;
	  z-index: 100;
	}
	
	
	/* =====================================================
	▼ DROPDOWN
	===================================================== */
	.drawer-navbar .drawer-dropdown-menu {
	  position: absolute;
	  font-size: 90%;
		line-height: 1.5em;
	  background-color: #2E3135;
	}
	.drawer-navbar .drawer-dropdown-menu li {
		font-weight: normal;
		white-space: nowrap;
		text-align: left;
		border-bottom: solid 1px #0E0E0F;
	}
	.drawer-navbar .drawer-dropdown-menu li:last-child {
		border-bottom: none;
	}
	.drawer-navbar .drawer-dropdown-menu li a {
		display: block;
		color: #FFF;
		padding: 15px 20px;
		
		transition: 0.3s ease-in-out;
			-webkit-transition: 0.3s ease-in-out;
			-moz-transition: 0.3s ease-in-out;
			-o-transition: 0.3s ease-in-out;
	}
	.drawer-navbar .drawer-dropdown-menu li a:hover {
		text-decoration: none;
		background-color: #0E0E0F;
	}
	.drawer-dropdown-menu {
	  display: none;
	}
	.drawer-dropdown.open > .drawer-dropdown-menu {
	  display: block;
	}
}
	


@media screen and (max-width:736px){
	/* =====================================================
	▼ BASE
	===================================================== */
	.drawer-open {
	  overflow: hidden !important;
	}
	.drawer-nav {
	  position: fixed;
	  top: 0;
	  width: 16.25rem;
	  height: 100%;
	  background-color: #0E0E0F;
	  overflow: hidden;
	  z-index: 101;
	}
	
	/*! overlay */
	.drawer-overlay {
	  position: fixed;
	  z-index: 100;
	  top: 0;
	  left: 0;
	  display: none;
	  width: 100%;
	  height: 100%;
	  background-color: rgba(0, 0, 0, .5);
	}
	.drawer-open .drawer-overlay {
	  display: block;
	}
	
	
	/* =====================================================
	▼ NAVBAR
	===================================================== */
	div.drawer-navbar-header {
		position: fixed;
		top: 0;
	  width: 100%;
	  height: 60px;
	  background-color: #2E3135;
	  z-index: 102;
	}
	nav.drawer-nav {
	  padding-top: 60px;
	}
	ul.drawer-menu {
	  padding-bottom: 30px;
	}
	ul.drawer-menu > li {
	  border-bottom: solid 1px #2E3135;
	}
	ul.drawer-menu > li:last-child {
	  margin-bottom: 100px;
	}
	ul.drawer-menu a {
	  color: #FFF;
	}
	ul.drawer-menu a:hover {
	  text-decoration: none;
	}
	a.drawer-menu-item {
		display: block;
	  padding: 15px 20px;
	}
	a.drawer-dropdown-menu-item {
		display: block;
		padding: 15px 20px;
	}
	ul.drawer-dropdown-menu li {
		border-top: solid 1px #2E3135;
	}
	ul.drawer-dropdown-menu li a {
		padding-left: 25px;
	}
	ul.drawer-dropdown-menu li a:before {
		content: '-';
		margin-right: 5px;
	}
	
	
	/* =====================================================
	▼ RIGHT
	===================================================== */
	.drawer--right .drawer-nav {
	  right: -16.25rem;
	  -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;
	  overflow: auto; /* スマホ時スクロール不具合対応 */
		-webkit-overflow-scrolling: touch; /* スマホ時スクロール不具合対応 */
	}
	.drawer--right.drawer-open .drawer-hamburger {
	  right: 16.25rem;
	}
	
	
	/* =====================================================
	▼ ACCESSIBILITY
	===================================================== */
	.sr-only {
	  position: absolute;
	  overflow: hidden;
	  clip: rect(0, 0, 0, 0);
	  width: 1px;
	  height: 1px;
	  margin: -1px;
	  padding: 0;
	  border: 0;
	}
	.sr-only-focusable:active,
	.sr-only-focusable:focus {
	  position: static;
	  overflow: visible;
	  clip: auto;
	  width: auto;
	  height: auto;
	  margin: 0;
	}
	
	
	/* =====================================================
	▼ SIDEBAR
	===================================================== */
	.drawer--sidebar {
	  background-color: #FFF;
	}
	.drawer--sidebar .drawer-contents {
	  background-color: #FFF;
	}
	
	
	/* =====================================================
	▼ DROPDOWN
	===================================================== */
	ul.drawer-dropdown-menu {
	  display: none;
	}
	ul.drawer-menu li.drawer-dropdown.open > ul.drawer-dropdown-menu {
	  display: block;
	}
	
	
	/* =====================================================
	▼ HAMBURGER
	===================================================== */
	.drawer-hamburger {
	  position: fixed;
	  z-index: 104;
	  top: 0;
	  display: block;
	  box-sizing: content-box;
	  width: 2rem;
	  padding: 0;
	  padding-top: 18px;
	  padding-right: 15px;
	  padding-bottom: 30px;
	  -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;
	}
	.drawer-hamburger:hover {
	  cursor: pointer;
	  background-color: transparent;
	}
	.drawer-hamburger-icon {
	  position: relative;
	  display: block;
	  margin-top: 10px;
	}
	.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: #FFF;
	}
	.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;
	}
	.drawer-open .drawer-hamburger-icon:before {
	  -webkit-transform: rotate(45deg);
	          transform: rotate(45deg);
	}
	.drawer-open .drawer-hamburger-icon:after {
	  -webkit-transform: rotate(-45deg);
	          transform: rotate(-45deg);
	}
}







