
#main {
	position: relative;
	z-index: 2;
	left: 0;
	padding-bottom: 100px;
	overflow: hidden;

	background: #fff;
	-webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	   -moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	     -o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	        transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);

	-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	   -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	     -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
}
#main .fixable {
	left: 0;

	-webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	   -moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	     -o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	        transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */

	-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	   -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	     -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
}
#drawer_navi {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	top: 0;
	right: -240px;
	width: 240px;
	height: 100%;
	background: #fff;
	z-index: 1;
	-webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	   -moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	     -o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	        transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);

	-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	   -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	     -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
}
#drawer_navi .title {
	padding: 0 10px;
	height: 40px;
	line-height: 40px;
	background-color: #F4A636;
	font-weight: bold;
	color: #fff;
}
#drawer_navi .item,
#drawer_navi .disabled,
#drawer_navi a {
	display: block;
	padding: 15px 10px;
	border-bottom: solid 1px #ddd;
	padding-right: 30px;
}
#drawer_navi a {
	text-decoration: none;
	background: url(../../img/sma/icon/arrow1.png) no-repeat 100% 50%;
	-webkit-background-size: 15px 15px;
	background-size: 10px 15px;
	background-position: calc(100% - 10px) 50%;
}
#drawer_navi a.tel {
	background: none;
}
#drawer_navi .disabled {
	color: #ccc;
}
#drawer_navi .note {
	color: #999;
	margin-left: 5px;
	font-size: 12px;
}
#drawer_navi .note:before {
	content: "（";
}
#drawer_navi .note:after {
	content: "）";
}

#drawer_navi_trigger {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 3;
	width: 45px;
	height: 45px;
	padding: 11px 12px 10px 12px;
	cursor: pointer;
	box-sizing: border-box;
}
#drawer_navi_trigger .icon_bar {
	height: 2px;
	background: #333;
	display: block;
	margin-bottom: 5px;
}
#drawer_navi_trigger_placeholder {
	position: absolute;
	display: block;
	right: 0;
	top: 0;
	width: 45px;
}
#drawer_navi_trigger_placeholder .text {
	position: absolute;
	font-size: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	display: block;
	width: 100%;
	z-index: 10;
}

 #drawer_navi_overlay {
	z-index:-1;
	opacity: 0;
	background: #000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: fixed;
	-webkit-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	   -moz-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	     -o-transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	        transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */

	-webkit-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	   -moz-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	     -o-transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000);
	        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
}
body.drawer_navi_opened #main {
	left: -240px;
}
body.drawer_navi_opened #drawer_navi {
	right: 0;
}
body.drawer_navi_opened #drawer_navi_overlay {
	z-index: 3;
	opacity: 0.3;
	left: -240px;
}
body.drawer_navi_opened #main .fixable.fixed {
	left: -240px;
}