/*! 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: 224px;
    height: 100%;
    top: 0;
    z-index: 9999;
    font-size: 0.9em;
    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: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
	background: url(/shared/site_spo-navi/images/sp/common/bg_gnavi.gif);
	background-size: 46px 46px;
}
/*IE制御用*/
.pushy {
	display: none\9;
}
.pushy:not(:target) {
	right: -224px\9;
	display: block\9;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.pushy:not(:target) {
		right: auto;
	}
}
.pushy li {
	width: 214px;
	margin: 0 auto;
	border-bottom: 2px solid #000;
}
.pushy #sp_sai,
.pushy #sp_moji,
.pushy #sp_read {
	font-size: 87.5%;
	background: #ffffff;
}
.pushy #sp_sai img {
	display: block;
	margin: 0 auto;
}
.pushy #sp_search {
	padding: 5px;
}
.pushy #sp_glist8 {
	margin-bottom: 20px;
	padding-top: 20px;
	border-bottom: none;
}
.pushy #sp_glist8 p a {
	display: block;
	height: auto;
	padding: 10px;
	text-align: center;
	border: solid 1px #000000;
}
.pushy a{
	display: block;
	width: 100%;
	padding: 15px;
	text-decoration: none;
	color: #000;
	font-weight: bold;
	font-size: 114.3%;
}
.pushy #sch_sm.keyword {
	width: 78%;
	padding: 2%;
	box-sizing: initial;
	display: inline-block;
	min-height: 26px;
}
.pushy #popterm {
    left: 41px;
}
.pushy .sch_btn {
	display: block;
	width: 100%;
	margin-top: 5px;
	font-weight: bold;
}
/* Menu Movement */

.pushy-left{
    -webkit-transform: translate3d(-224px,0,0);
    -moz-transform: translate3d(-224px,0,0);
    -ms-transform: translate3d(-224px,0,0);
    -o-transform: translate3d(-224px,0,0);
    transform: translate3d(-224px,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(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);
}

/* 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: 9998;
    background-color: rgba(0,0,0,0.5);
    -webkit-animation: fade 500ms;
    -moz-animation: fade 500ms;
    -o-animation: fade 500ms;
    animation: fade 500ms;
}

@keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}


/* Example Media Query */

@media screen and (max-width: 768px){
    .pushy{
        font-size: 1.0em;
    }
}
