/*! 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: 220px;
    height: 100%;
    top: 0;
    z-index: 9999;
    background-color: rgba(0,0,0,0.9);
    font-size: 1em;
    overflow: auto;
		opacity:0.5;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

.pushy a{
    display: block;
    color: #fff;
    padding: 1em 1.5em;
    border-bottom: 1px solid #333;
    text-decoration: none;
	font-size:1.2em;
	line-height:1.2em;
	transition: background-color 300ms ease-out 0s;
}

.pushy a:hover{
    background: #e9e8df;
    color: #000;
}
.pushy .ja {
	display:block;
	font-size:0.6em;
}

/* Menu Movement */

.pushy-left{
    -webkit-transform: translate3d(-220px,0,0);
    -moz-transform: translate3d(-220px,0,0);
    -ms-transform: translate3d(-220px,0,0);
    -o-transform: translate3d(-220px,0,0);
    transform: translate3d(-220px,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(200px,0,0);
    -moz-transform: translate3d(200px,0,0);
    -ms-transform: translate3d(200px,0,0);
    -o-transform: translate3d(200px,0,0);
    transform: translate3d(200px,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: none;
}


/* Example Media Query */
@media screen and (max-width: 768px) {
}

