/*! Pushy - v1.0.0 - 2016-3-1
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */

.sp-head {
    display: block;
    background-color: #fff;
    width: 90%;
    margin: 20px auto;
    overflow: hidden;
}
.menu-logo { float:left; background-color: #fff;}
.menu-logo a {
    background: #fff !important;
    padding: 0 !important;
    border: none !important;
    display: inline-block !important;
}
.menu-logo img{ width:200px;}
.menu-close{ float:right; position:relative; cursor: pointer;}
.menu-close:before {
    position: absolute;
    font-size: 34px !important;
    right: 0;
    top: 12px;
    line-height: 1;
    transform: translate(0, -50%);
    font-family: 'Material Icons';
    content: 'close';
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    color: #000;
    z-index: 10;
}

.pushy {
	position: fixed;
	width: 400px;
	height: 100%;
	margin:0 !important;
	padding: 0 !important;
	top: 0px;
	z-index: 9999;
	overflow: auto;
	visibility: hidden;
	-webkit-overflow-scrolling: touch;
	-webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
	background-color: #fff;
}
.pushy-cont{
	padding: 0;
	}
.pushy ul.pushyLink1{ /*background-color:#eee;*/}
.pushy ul.pushyLink1 li{ /*border-bottom: solid 1px #ddd;*/ }
.pushy ul.pushyLink1 li a{
    font-size: 15px;
    font-weight: bold;
    display: block;
    color: #000;
	width:90%;
	margin:0 auto;
	padding:16px 0 14px;
	border-bottom: solid 1px #ccc;
    text-decoration: none;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
	position:relative;
}
.pushy ul.pushyLink1 li:last-child a{ border:none;}
.pushy ul.pushyLink1 a:after{
	position:absolute;
	content:'';}
ul.pushyLink2{ width:90%; margin:0 auto;}	
ul.pushyLink2 li { margin-top:20px; }
ul.pushyLink2 li a{
    font-size: 15px;
    font-weight: bold;
    display: block;
    color: #000;
    padding: 16px 20px;
    text-decoration: none;
    background-color: #fff;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
}
ul.pushyLink2 li:nth-of-type(1) a{ background-color:#ccc;}
ul.pushyLink2 li:nth-of-type(2) a{ border:solid 1px #ccc;}

/*
.pushy-link-cont{ color:#fff; padding: 25px; background-color: #000;}
.pushy-link-cont-title { font-size: 16px; font-weight: 600; margin: 0 auto 16px;}
.pushy-link-cont-title a { background: none; color: #fff; padding: 0; border: none;}
.pushy-link-cont-list{ margin: 0 auto 16px !important; padding: 16px 0 0 0; border-top: solid 1px rgb(255 255 255 / 0.2);}
.pushy-link-cont-list:last-child{ margin:0 auto 0px !important;}
.pushy-link-cont-list li{ margin:0 0 10px 0;}
.pushy-link-cont-list li a{
	position:relative;
    border: none;
    color: #fff;
    background-color: #000;
    padding: 0 0 0 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
	display:inline-block;
}
.pushy-link-cont-list li a:before{
	position: absolute;
    display: inline-block;
    content: '-';
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 10;
}
.pushy-link-cont-list2{}
.pushy-link-cont-list2 p{ margin:0 auto 10px;}
.pushy-link-cont-list2 p a {
    display: inline-block;
    width: 200px;
    border: solid 1px #fff;
    padding: 15px;
    background: none;
    color: #fff;
    font-size: 14px;
    line-height: 1;
}
.pushy-link a{ position:relative;}

.pushy ul {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;}
.pushy ul li{ margin:0 auto 0px;}
.pushy ul li:last-child{ margin:0 auto 0px;}*/
.pushy.pushy-left{ left: 0;}
.pushy.pushy-right{ right: 0;}

/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-400px, 0, 0);
  -ms-transform: translate3d(-400px, 0, 0);
  transform: translate3d(-400px, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(400px, 0, 0);
  -ms-transform: translate3d(400px, 0, 0);
  transform: translate3d(400px, 0, 0);
}

.pushy-right {
  -webkit-transform: translate3d(400px, 0, 0);
  -ms-transform: translate3d(400px, 0, 0);
  transform: translate3d(400px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-400px, 0, 0);
  -ms-transform: translate3d(-400px, 0, 0);
  transform: translate3d(-400px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Menu Transitions */
#container,
.pushy,
.push {
  transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay { display: none; }

.pushy-open-left .site-overlay,
.pushy-open-right .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;
  animation: fade 500ms;
}

.submenu-down-bg{ background-color: #5e5e5e;}
.submenu-down-bg a{ font-size:1.5rem; color:#fff; border-bottom-color: #505050; }
.pushy-submenu-down:before {
    position: absolute;
    font-size: 20px !important;
	/*top: 16px;
    right: 12px;*/
	right:0;
    font-family: 'Material Icons';
    content: 'add';
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    color: #000;
    top: 50%;
    transform: translate(-15px, -50%);
}
/*.pushy-submenu-down:hover:before{ content: 'remove';}
.pushy-submenu-down:active:before{ content: 'remove';}
.pushy-submenu-down:visited:before{ content: 'remove';}
.pushy-submenu-open ul li a{ background-color: #ffffff;
    color: #000;
    margin: 0 auto 2px;
    padding: 10px;
    border: none; font-weight: 400;}
.pushy-submenu-open ul li a:hover {
    background-color: #00b0ff;
}*/

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Submenu Appearance */
.pushy-submenu {
  /* Submenu Icon */
}
.pushy-submenu ul {
  /*padding-left: 15px;*/
  transition: max-height 0.2s ease-in-out;
}
.pushy-submenu ul .pushy-link {
  transition: opacity 0.2s ease-in-out;
}
.pushy-submenu > a {
    position: relative;
    background-color: #ffffff;
    padding: 17px 15px;
    border: none;
    margin-top: 25px;
    -webkit-box-shadow: 0px 2px 0px 0px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0px 2px 0px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 0px 0px rgb(0 0 0 / 30%);
}
.pushy-submenu > a:hover{ }
/*.pushy-submenu > a:hover{ background-color:#000; }*/
/*.pushy-submenu > a::after {
  content: '';
  display: block;
  height: 11px;
  width: 8px;
  position: absolute;
  top: 50%;
  right: 15px;
  background: url("../../img/arrow.svg") no-repeat;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: transform 0.2s;
}*/

/* Submenu Movement */
.pushy-submenu-closed ul { max-height: 0; overflow: hidden; }
.pushy-submenu-closed .pushy-link { opacity: 0; }

.pushy-submenu-open {
  /* Submenu Icon */
}
.pushy-submenu-open ul { max-height: 1000px; }
.pushy-submenu-open .pushy-link { opacity: 1; }
.pushy-submenu-open a::after { -webkit-transform: translateY(-50%) rotate(90deg); -ms-transform: translateY(-50%) rotate(90deg); transform: translateY(-50%) rotate(90deg);}
.no-csstransforms3d .pushy-submenu-closed ul { max-height: none; display: none;}

.ic-pushy-basic{ position:relative;}
.ic-pushy-basic:before{
    position: absolute;
    font-size: 22px !important;
	top: 16px;
    right: 0px;
    font-family: 'Material Icons';
    content: 'keyboard_arrow_right';
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    color: #fff;
	font-weight:100;
	}
.ic-pushy-basic:hover:before{ color: #fff !important;}
.ic-pushy-home{ position:relative;}
.ic-pushy-home:before{
    position: absolute;
    font-size: 22px !important;
	top: 16px;
    right: 0px;
    font-family: 'Material Icons';
    content: 'adjust';
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    color: #333;
	}
.ic-pushy-home:hover:before{ color: #fff !important; }
.ic-pushy-mail{ position:relative;}
.ic-pushy-mail:before{
    position: absolute;
    font-size: 22px !important;
	top: 9px;
    right: 20px;
    font-family: 'Material Icons';
    content: 'mail_outline';
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'liga';
    color: #333;
	}
.ic-pushy-mail:hover:before{ color: #fff !important; }
/*# sourceMappingURL=pushy.css.map */

/*.pushy-logo{ text-align:center; width:60px; margin:0 auto; padding:15px 0;}*/
.pushy-logo a {
	padding:15px 15px;
	width:100px; margin:0 auto;
    text-decoration: none;
    border-bottom: none;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
    background-color: #fff !important;
}

.pushy-dropdown{}
.pushy-dropdown ul{ border:none;}
.pushy-dropdown ul li a{
    background-color: #fbbd00;
    color: #855300;
	position:relative;
	padding:20px 15px 20px 30px;}
.pushy-dropdown ul li a:after{
	background-image: url(../../img/common/ic-yaji.png);
    position: absolute;
    display: inline-block;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    left: 0;
    top: 50%;
    transform: translate(15px, -50%);
    width: 5px;
    height: 6px;
    z-index: 10;}

.pushy-contactmenu {
    margin: 0;
    padding: 0;
}
.pushy-contactmenu ul{ padding:0; margin:0 auto; border:none;}
.pushy-contactmenu ul {
    padding: 10px 0 0 0;
    margin: 0 auto;
    border: none;
    border-top: solid 1px #ccc;
}
.pushy-contactmenu ul li.contactmenu-btn1 a{
	font-size:15px;
	padding:17px 15px 15px 46px;
	background-color: #000;
	color:#fff; border:none;
	position:relative;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;}
.pushy-contactmenu ul li.contactmenu-btn1 a:after{
	background-image: url(../../img/common/ic-mail-sp.png);
    position: absolute;
    display: inline-block;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
	left: -2px;
    top: 50%;
    transform: translate(15px, -50%);
    width: 20px;
    height: 16px;
    z-index: 10;}
.pushy-contactmenu ul li.contactmenu-btn2 a{
	font-size:15px;
	padding:17px 15px 15px 56px;
	background-color: #000;
	color:#fff; border:none;
	position:relative;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;}
.pushy-contactmenu ul li.contactmenu-btn2 a:after{
	background-image: url(../../img/common/ic-hp-sp.png);
    position: absolute;
    display: inline-block;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    left: 0;
    top: 50%;
    transform: translate(15px, -50%);
    width: 30px;
    height: 25px;
    z-index: 10;}
.pushy-contactmenu ul li.contactmenu-btn3 a{ font-size:16px; padding:17px 15px 15px 40px; border:solid 1px #ccc; background-color:#fff; font-family: 'Open Sans';
	position:relative;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;}
.pushy-contactmenu ul li.contactmenu-btn3 a:after{
	background-image: url(../../img/common/ic-tel-sp.png);
    position: absolute;
    display: inline-block;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    left: 0;
    top: 50%;
    transform: translate(15px, -50%);
    width: 17px;
    height: 14px;
    z-index: 10;}

@media only screen and (max-width: 600px) {

.pushy { width: 100%;}

.pushy-left {
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.pushy-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

}

@media only screen and (max-width: 480px) {


}