/* -----------------------------------
 * Slidebars
 * Version 0.10.3
 * http://plugins.adchsm.me/slidebars/
 *
 * Written by Adam Smith
 * http://www.adchsm.me/
 *
 * Released under MIT License
 * http://plugins.adchsm.me/slidebars/license.txt
 *
 * -------------------
 * Slidebars CSS Index
 *
 * 001 - Box Model, Html & Body
 * 002 - Site
 * 003 - Slidebars
 * 004 - Animation
 * 005 - Helper Classes
 *
 * ----------------------------
 * 001 - Box Model, Html & Body
 */

/*html, body, */#sb-site_style, .sb-site-container, .sb-slidebar {
	/* Set box model to prevent any user added margins or paddings from altering the widths or heights. */
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

#sb-site_style{margin-top:0!important;}/*headerfixしない場合のヘッダマージン調整*/
#sb-site_style.active{margin-top:67px!important;}/*headerfixした場合のヘッダマージン調整分*/

/*html, body {
	width: 100%;
	overflow-x: hidden; colorbox*/ /* Stops horizontal scrolling.
}

html {
	/*height: 100%;*/ /* Site is as tall as device. 
}

body {
	min-height: 100%;
	height: auto;
	position: relative; /* Required for static Slidebars to function properly.
} */

/* Site scroll locking - prevent site from scrolling when a Slidebar is open, except when static Slidebars are only available. */
html.sb-scroll-lock.sb-active:not(.sb-static) {
	overflow: hidden;
}

html.sb-scroll-lock.sb-active:not(.sb-static) #sb-site_style.js-close-any-slidebar{
position:fixed;!important
}

/* ----------
 * 002 - Site
 */

/*.js-close-any-slidebar[style]:before {
width: 100%;
height: 100%;
text-align: center;
position: fixed;
top: 0;
z-index: 100;
background: rgba(0,0,0,0.5);
content:"";
display:block
}
*/


#sb-site_style, .sb-site-container {
	/* You may now use class .sb-site-container instead of #sb-site_style and use your own id. However please make sure you don't set any of the following styles any differently on your id. */
	width: 100%;
	/*min-height:100%;*/
	position: relative;
	z-index: 1; /* Site sits above Slidebars */
	 background-color: #ffffff;/* Default background colour, overwrite this with your own css. I suggest moving your html or body background styling here. Making this transparent will allow the Slidebars beneath to be visible. */

}



/* Micro clearfix by Nicolas Gallagher, ensures the site container hits the top and bottom of the screen. */
#sb-site_style:before, #sb-site_style:after, .sb-site-container:before, .sb-site-container:after {
	content: ' ';
	display: table;
}

#sb-site_style:before, #sb-site_style:after, .sb-site-container:before, .sb-site-container:after {
    clear: both;
}

/* ---------------
 * 003 - Slidebars
 */

.sb-slidebar {
	height: 100%;
	overflow-y: auto; /* Enable vertical scrolling on Slidebars when needed. */
	position: fixed;
	top: 0;
	z-index: 0; /* Slidebars sit behind sb-site. */
	display: none; /* Initially hide the Slidebars. Changed from visibility to display to allow -webkit-overflow-scrolling. */
}

.sb-slidebar, .sb-slidebar * {
	-webkit-transform: translate( 0px ); /* Fixes issues with translated and z-indexed elements on iOS 7. */
}

/*.sb-left {
	left: 0; /* Set Slidebar to the left.
	width:70%;
	position:relative;	
}
*/

.sb-right {
	right: 0; /* Set Slidebar to the right. */
	width:70%;
}

html.sb-static .sb-slidebar,
.sb-slidebar.sb-static {
	position: absolute; /* Makes Slidebars scroll naturally with the site, and unfixes them for Android Browser < 3 and iOS < 5. */
}

.sb-slidebar.sb-active {
	display: block; /* Makes Slidebars visibile when open. Changed from visibility to display to allow -webkit-overflow-scrolling. */
}

.sb-style-overlay {
	z-index: 9999; /* Set z-index high to ensure it overlays any other site elements. */
}

.sb-momentum-scrolling {
	-webkit-overflow-scrolling: touch; /* Adds native momentum scrolling for iOS & Android devices. */
}

/* Slidebar widths for browsers/devices that don't support media queries. 
	.sb-slidebar {
		width: 30%;
	}
	
	.sb-width-thin {
		width: 15%;
	}
	
	.sb-width-wide {
		width: 45%;
	}

@media (max-width: 480px) { /* Slidebar widths on extra small screens. 
	.sb-slidebar {
		width: 70%;
	}
	
	.sb-width-thin {
		width: 55%;
	}
	
	.sb-width-wide {
		width: 85%;
	}
}

@media (min-width: 481px) { /* Slidebar widths on small screens. 
	.sb-slidebar {
		width: 55%;
	}
	
	.sb-width-thin {
		width: 40%;
	}
	
	.sb-width-wide {
		width: 70%;
	}
}

@media (min-width: 768px) { /* Slidebar widths on medium screens. 
	.sb-slidebar {
		width: 20%;
	}
	
	.sb-width-thin {
		width: 25%;
	}
	
	.sb-width-wide {
		width: 55%;
	}
}

@media (min-width: 992px) { /* Slidebar widths on large screens. 
	.sb-slidebar {
		width: 30%;
	}
	
	.sb-width-thin {
		width: 15%;
	}
	
	.sb-width-wide {
		width: 45%;
	}
}

@media (min-width: 1200px) { /* Slidebar widths on extra large screens. 
	.sb-slidebar {
		width: 20%;
	}
	
	.sb-width-thin {
		width: 5%;
	}
	
	.sb-width-wide {
		width: 35%;
	}
}
*/

/* ---------------
 * 004 - Animation
 */

.sb-slide, #sb-site_style, .sb-site-container, .sb-slidebar {
	/*-webkit-transform: translate( 0px );
	   -moz-transform: translate( 0px );
	     -o-transform: translate( 0px );
	        transform: translate( 0px );
	*/	
	-webkit-transition: -webkit-transform 200ms ease;
	   -moz-transition:    -moz-transform 200ms ease;
	     -o-transition:      -o-transform 200ms ease;
	        transition:         transform 200ms ease;
	
	-webkit-transition-property: -webkit-transform, left, right; /* Add left/right for Android < 4.4. */
	-webkit-backface-visibility: hidden; /* Prevents flickering. This is non essential, and you may remove it if your having problems with fixed background images in Chrome. */
}

/* --------------------
 * 005 - Helper Classes
 */
 
.sb-hide { 
	display: none; /* Optionally applied to control classes when Slidebars is disabled over a certain width. */
}






/*CUST*/
.sb-toggle-left {
  position: absolute;
  top: 5px;
  left: 5px;
}

.sb-toggle-right {
  position: absolute;
  top: 5px;
  right: 5px;
  overflow: hidden;
}

.main-visual {
  display: block;
  width: 100%;
  height: 100px;
}

.content,.content_top{
  display: block;
  width: 100%;
  margin: 0 auto;
}

.content {
  margin: 44px auto 0;
}

.sb-slidebar {
  color: #333;
  padding:0; /*CSTM*/
}

.sb-slidebar ul {
  padding: 0;
}

.sb-slidebar li {
  list-style: none;
  margin: 0;
}
.sb-slidebar li a{
	font-size: 14px;
    color: #333;
    text-decoration: none;
    font-weight: normal;
}


/* sidebar scrolling smoother */
.sb-slidebar.sb-left,.sb-slidebar.sb-right,#sb-site_style {
  -webkit-overflow-scrolling: touch;
}


/*#sb-site_style[style*="transform"]:before {
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  content: "";
  display: block;
 }
*/


.sb-active .header>nav:after,.sb-active header:after,.sb-active #sb-site_style:after{ /*actice釈のメイン側*/
    display: block;
    content: "";
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    visibility: visible;
    -moz-opacity: 0.5;
    opacity: 0.5;
    z-index: 10;
}




/*   #slideLeft_Style  */
.sb-slidebar ul{ margin:0;	}

.leftclose{display:none;}
/*
.leftclose.active{
	display: block;
	position: fixed;
    color: #FFF;
    z-index: 10000;
    top: 1%!important;
    left: 85%!important;
    width: 30px;
    height: 30px;
    border: 1px solid #FFF;
    padding: 0;
    font-size: 10px;
    background: #b51313;
    letter-spacing: 0.1em;
    background: #F00;
    background-size: 94%;
	text-indent:-9987px;
	}
*/

.leftclose.active {
    display: block;
    position: fixed;
    color: #FFF;
    /* z-index: 10000; */
    top: 1%!important;
    left: 85%!important;
    /* width: 30px; */
    /* height: 30px; */
    border: 1px solid #FFF;
    padding: 0px 5px 5px;
    font-size: 10px;
    background: #b51313;
    /* letter-spacing: 0.1em; */
    background: #4c4c4c;
    /* background-size: 94%; */
    /* text-indent: -9987px; */
    z-index: 9699;
    font-size: 28px;
    /* text-align: right; */
    line-height: 100%;
    margin: 0;
}

#slideLeft_style,#slideRight_style{ background:#FFFFFF;}


.sb-slidebar h2.guestname{
	font-size:14px;
	background:#219D00;
	color: #FFF;
	font-weight:bold;
	text-align:left;
	padding:0;
	margin:0;
	height:45px;
	margin-bottom:3px;
	
}

.sb-slidebar h2.guestname span.icon-user{
	font-size: 18px;
    position: relative;
    top: 2px;
}

.sb-slidebar h2.guestname span{
	font-size:12px;
	color: #FFF;
	margin-left:10px;
	font-weight:normal;
}

.sb-slidebar h2.guestname #namebox_style{
	font-size:16px;
	margin-left:10px;


}

.sb-slidebar h2.title{
	font-size: 14px;
    background: #DEDEDE;
    color: #111;
    font-weight: bold;
    text-align: left;
    padding: 8px 12px 8px 7px;
    margin: 0;
    line-height: 220%;
    width: 100%;
}

.sb-slidebar h2.title span{
padding: 2px 0 3px 9px;
    border-left: 6px #ec5117 solid;
}
	

.sidemenu_Login li,.sidemenu_Information li,.sidemenu_Members li,.sidemenu_Information li,.sidemenu_Logout li
{
/*	background: url(../images_smt/icon_sidemenu_arrow.png) no-repeat right 15px;*/
	
}


/*sidemenu_Login
.sidemenu_Login ul{
	margin: 5px 0;
    padding: 0;
	}
.sidemenu_Login li{
    list-style: none;
    border: none;
    display: block;
    margin: 0;
    padding: 0;
    float: left;
    width: 30%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    height: 42px;
}

.sidemenu_Login li.loginlink{background:#333;}
.sidemenu_Login li.newmember{background:#333;}

.sidemenu_Login li a{
	font-size:12px;
	text-decoration: none;
	color: #fff;
	margin: 0;
	padding:16px 0;
	display:block;
	background: url(../images_smt/icon_sidemenu_arrow.png) no-repeat 95% -56px;
	background-size: 12px;
	text-decoration: none;
	text-align:center;
}

 */

/*sidemenu_Point */

.sidemenu_Point{
	font-size:12px;
	margin-bottom:10px;
	background:#EDEDED;
	color:#333;
}

.sidemenu_Point ul{
	margin:0;
	padding:10px;
	
}

.sidemenu_Point li.getpoint{
		padding:0;
		border:none;
		font-weight:bold;
		font-size:13x;
	}
	
	.sidemenu_Point li.getpoint span{
		color:#FF0000;
		font-size:15px;
		padding:0 8px;	
	}
	
.sidemenu_Point li.pointdetail{
		font-size:13px;
		padding: 0;
		margin:10px 0 0 0;
		line-height: 129%;
		border:none;
	}

	.sidemenu_Point li.pointdetail p{
		margin:0; padding:0;
	}
	
	.sidemenu_Point li.pointdetail a{
		display: block;
		width: 91%;
		background: #ffc234;
		padding: 7px;
		font-size: 11px;
		text-align: center;
		margin: 5px 3px;
		border-radius: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		background: url(../images_smt/icon_sidemenu_arrow.png) no-repeat 97% 10px #ffffff;
		background-size: 13px;
			box-shadow: 1px 1px 3px #CCC;

	}
	
	
	



	
/*sidemenu_Information */
.sidemenu_Information{
	background:#EDEDED;
	padding:5px;
  }
  
  .sidemenu_Information ul{
	  background:#FFF;
  }
  
.sidemenu_Information li{
  list-style: none;
  margin: 0;
  border-bottom:1px #DEDEDE solid;
  width:100%;

}

.sidemenu_Information li a,
.sidemenu_Members li a{
  margin: 0;
  padding:10px 15px;
  display:block;
}


.sidemenu_Information li a,
.sidemenu_Members li a{
  background: url(../images_smt/icon_sidemenu_arrow.png) no-repeat 97% 15px;
  background-size: 12px;
}



/*sidemenu_Members */
.sidemenu_Members li{
  list-style: none;
  margin: 0;
  border-bottom:1px #DEDEDE solid;
  width:100%;
}


/*sidemenu_Information */
.sidemenu_Information li{
  list-style: none;
  margin: 0;
  border-bottom:1px #DEDEDE solid;
  width:100%;
}


/*sidemenu_Logout */
.sidemenu_Logout li{
	list-style: none;
	margin: 9px 0;
	background: #333;
	padding: 11px 12px;
	width: 100%;
}

.sidemenu_Logout li a{
	color:#FFF;
	font-size:14px;
	padding:0 0 0 25px;
	background: URL('../images/common/closebg.png') no-repeat 0 5px;
	background-size: 16px;

	}


	
	
/*   #slideRight  */
.sb-right-inner {
  border: none;
  width: 100%;
  height: 100%;
}



.sb-slidebar h2.right_title{
	font-size:14px;
	background:#FFFFFF;
	color: #333;
	font-weight:bold;
	text-align:left;
	padding:0 0 0 10px;
	margin:10px 0 0 0;
	height:35px;
	
	}

/*sidemenu_category */
.sidemenu_category dt{
  list-style: none;
  margin: 0;
  border-bottom:1px #FFF solid;
  background:#DFDFDF;
  padding:8px 0;  
  font-size:14px;
  font-weight:normal;
  color:#333;
}

.sidemenu_category dd{
	list-style: none;
	margin: 0;
	border-bottom: 1px #DEDEDE solid;
	padding: 14px 17px;
}

.sidemenu_category dd a{
  color: #333333;
  text-decoration:none;
  font-size:14px;
}



/*!
 * Slidebars - A jQuery Framework for Off-Canvas Menus and Sidebars
 * Version: 2 Development
 * Url: http://www.adchsm.com/slidebars/
 * Author: Adam Charles Smith
 * Author url: http://www.adchsm.com/
 * License: MIT
 * License url: http://www.adchsm.com/slidebars/license/
 */





/**
 * Canvas
 */

[canvas] {
	z-index: 1;
}

[canvas=container] {
	width: 100%;
	height: 100%;
	/*overflow-y: auto;*/
	position: relative;
	background-color: white; /* Basic background color, overwrite this in your own css. */
	-webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */
}

[canvas=container]:before, [canvas=container]:after {
	clear: both;
	content: '';
	display: table;
}

/**
 * Off-Canavs
 */

[off-canvas] {
	display: none;
	position: fixed;
	overflow: hidden;
	overflow-y: auto;
	background-color: black; /* Basic background color, overwrite this in your own css. */
	color: white; /* Basic colors, overwrite this in your own css. */
	-webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS devices, may be removed by setting to 'auto' in your own CSS. */
}

[off-canvas*=top] {
	width: 100%;
	height: 255px;
	top: 0;
}

[off-canvas*=right] {
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
}

[off-canvas*=right2] {
	width: 85%;
	height: 100%;
	top: 0;
	right: 0;
}

[off-canvas*=bottom] {
	width: 100%;
	height: 255px;
	bottom: 0;
}

[off-canvas*=left] {
	width:80%;
	height: 100%;
	top: 0;
	left: 0;
}

[off-canvas*=reveal] {
	z-index: 0;
}

[off-canvas*=push] {
	z-index: 1;
}

[off-canvas*=overlay] {
	z-index: 9999;
}

[off-canvas*=shift] {
	z-index: 0;
}

/**
 * Animation
 */

[canvas], [off-canvas] {
	-webkit-transform: translate( 0px, 0px );
	    -ms-transform: translate( 0px, 0px );
	        transform: translate( 0px, 0px );
	-webkit-transition: -webkit-transform 300ms;
	        transition:         transform 300ms;
	-webkit-backface-visibility: hidden; /* Prevents flickering, may be removed if experiencing problems with fixed background images in Chrome. */
}

[off-canvas*=shift][off-canvas*=top] {
	-webkit-transform: translate( 0px, 50% );
	        transform: translate( 0px, 50% );
}

[off-canvas*=shift][off-canvas*=right] {
	-webkit-transform: translate( -50%, 0px );
	        transform: translate( -50%, 0px );
}

[off-canvas*=shift][off-canvas*=bottom] {
	-webkit-transform: translate( 0px, -50% );
	        transform: translate( 0px, -50% );
}

[off-canvas*=shift][off-canvas*=left] {
	-webkit-transform: translate( 50%, 0px );
	        transform: translate( 50%, 0px );
}

/**
 * Print
 */

@media print {
	[canvas] {
		-webkit-transform: translate( 0px, 0px ) !important;
		    -ms-transform: translate( 0px, 0px ) !important;
		        transform: translate( 0px, 0px ) !important;
	}

	[off-canvas] {
		display: none !important;
	}
}
