/*! Pushy - v0.9.2 - 2014-9-13
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */

/* Menu Appearance */

.pushy{
    position: fixed;
    width: 290px;
    height: 100%;
    top: 0;
    /*font-weight: bold;*/
    /*-webkit-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);
    -moz-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);
    box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);*/
	overflow-x: hidden;
	overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
	z-index:9999999;
	background: #FFF;
}

.pushy a{
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-decoration: none;
}

.pushy a:hover{
    background: none;
	opacity: 0.8;
}

/* Menu Movement */

.pushy-left{
    -webkit-transform: translate3d(-290px,0,0);
    -moz-transform: translate3d(-290px,0,0);
    -ms-transform: translate3d(-290px,0,0);
    -o-transform: translate3d(-290px,0,0);
    transform: translate3d(-290px,0,0);
}

.pushy-open{
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.container-push, .push-push{
    -webkit-transform: translate3d(290px,0,0);
    -moz-transform: translate3d(290px,0,0);
    -ms-transform: translate3d(290px,0,0);
    -o-transform: translate3d(290px,0,0);
    transform: translate3d(290px,0,0);
}

/* Menu Transitions */

.pushy, #container, .push{
    -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
    -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
    -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
    transition: transform .2s cubic-bezier(.16, .68, .43, .99);
}

/* Site Overlay */

.site-overlay{
    display: none;
}

.pushy-active .site-overlay{
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    background-color: rgba(0,0,0,0.5);
    -webkit-animation: fade 500ms; 
    -moz-animation: fade 500ms; 
    -o-animation: fade 500ms;
    animation: fade 500ms;
}

body.pushy-active {
	position: fixed;
	width: 100%;
	top: -1;
}

@keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@-moz-keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@-webkit-keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@-o-keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@media screen and (max-width: 768px){
    .pushy{
        font-size: 1.0em;
    }
}

/*サイドメニュー*/
.pushy p.title {
	color: #00A3D9;
	border-bottom:3px solid #00A3D9;
	font-size:16px;
	font-weight:bold;
	padding:10px 10px 2px;
}

dl.accordion {
	width:100%;
	margin:0 auto 0px;
	padding:0px;
	font-size:14px;
	}
dl.accordion .bannerBox {
	width:94%;
	margin:15px 3%;
	}
dl.accordion .bannerBox img {
	margin:0 0 15px;
}
dl.accordion dt {
    border-bottom:1px solid #999;
	text-indent:10px; color:#333;
	cursor:pointer;
	vertical-align:middle;
	height:60px;
	line-height:60px;
	}
dl.accordion dt.open {
	}
dl.accordion dd {
	background:#F3F3F3;
	display:none;
	}
dl.accordion dd li {
	font-size:14px;
	padding:5% 5% 5% 10%;
	line-height:1.5;
	display:block;
	color:#666;
	}

.bannerBox1 {
	width:94%;
	margin:15px 3%;
	}
.bannerBox1 img {
	margin:0 0 15px;
}
