/*design*/

*:focus{
  outline: none;
}

/* Menu Button 
.menu-btn {
  	width: 40px;
	height:43px;
	border: 0px;
	background:url("img/sp_menu.png") no-repeat 0 0;
	background-size: 36px;
	margin:20px 0 0 -30px;
	float: right;
}
@media (min-width: 320px) and (max-width: 479px) {
	.menu-btn {
  	width: 36px;
	height:40px;
	border: 0px;
	background:url("img/sp_menu.png") no-repeat 0 0;
	background-size: 36px;
	margin:10px 20px 0 -50px;
	float: right;
	}}
.menu-btn:hover {
  opacity: 0.7;
}*/




.menu_hr{
  border-top: 1px solid #8c8b8b;
  /*background:#777;*/
  margin:0 !important;
  height:0 !important;
}


.accbox {
    margin:0;
    padding: 0;
}

.accbox label {
    display: block;
    margin: 0;
    padding : 10px 0 10px 10px;
    color: #555;
    cursor :pointer;
    transition: all 0.5s;
    border-bottom:1px solid #fff;
}

.accbox label:after {
    content: '＋';
    font-family: 'FontAwesome';
    position:absolute;
    right:15px;
}

.accbox label:hover {
    /*background :#ffe9a9;*/
}

.accbox input {
    display: none;
}

.accbox .accshow {
    height: 0;
    max-height:0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition:
    opacity 1.5s ease-out,
    height 1.5s ease,
    max-height 2s ease-out;
}

.cssacc:checked + label + .accshow {
	height: auto;
	max-height:1000px;
	padding: 0 0 0 0px;
	opacity: 1;
	transition:
    opacity 1.5s ease-out,
    height 1.5s ease,
    max-height 2s ease-out;
}

.accbox .accshow p {
    margin:0 3px;
  }

.cssacc:checked + label:after {
    content: ' －';
}


ul {
  margin: 0;
  padding: 0;
}

.pushy ul.default_open:first-child{
  margin:0;
  padding:0;
}

.default_open li.default_open_li a{
  background:#000;
  color:#151515;
  border-bottom:1px solid #e5e5e5;
  font-size:16px;
}

.pushy ul.menu_li:first-child{
  margin:20px 0 0 0;
  padding:0 0 0 0;
}

.menu_li li.default_open_li a{
  background:#000;
  color:#fff;
  border-bottom:1px solid #8c8b8b;
  font-size:16px;
	font-family: 'Jost', sans-serif;
	letter-spacing: 0.2em;
	opacity:0.7;
text-align:right;
}
.menu_li li.default_open_li a:hover{
  background:#000;
  color:#fff;
  border-bottom:1px solid #8c8b8b;
  font-size:16px;
	font-family: 'Jost', sans-serif;
	letter-spacing: 0.2em;
	opacity:0.5;
text-align:right;
}



/* Header */
.site-header {
  position: fixed;
  background: #000;
  color: #FFF;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  z-index: 9998;
}
/* -------------------------------------------------------------------------------- */


/* Menu Appearance */
.pushy {
  position: fixed;
  width: 260px;
  height: 100%;
  margin:60px 0 0 0;
  padding:0;
  top: 0;
  z-index: 9999;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* enables momentum scrolling in iOS overflow elements */
}
.pushy a {
  display: block;
  color: #555;
  padding: 13px 18px;
  text-decoration: none;
  font-size:16px;
}
.pushy a:hover {
  color: #999;
}
.pushy ul:first-child {
  padding-top: 10px;
}
.pushy.pushy-left {
  left: 0;
}
.pushy.pushy-right {
  right: 0;
}

.pushy-content {
  visibility: hidden;
  text-align: left;
  position: relative;
  z-index:1;
}

.pushy-content ul{
  margin:0;
  padding:0;
}

/* Menu Movement */
.pushy-left {
  -webkit-transform: translate3d(-280px, 0, 0);
  -ms-transform: translate3d(-280px, 0, 0);
  transform: translate3d(-280px, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
  -webkit-transform: translate3d(280px, 0, 0);
  -ms-transform: translate3d(280px, 0, 0);
  transform: translate3d(280px, 0, 0);
}

.pushy-right {
  -webkit-transform: translate3d(270px, 0, 0);
  -ms-transform: translate3d(270px, 0, 0);
  transform: translate3d(270px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
  -webkit-transform: translate3d(-270px, 0, 0);
  -ms-transform: translate3d(-270px, 0, 0);
  transform: translate3d(-270px, 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);
}
.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
  visibility: visible;
}

/* Menu Transitions */
#container,
.pushy,
.push {
  transition: transform 0.7s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
  transition: visibility 0.7s 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(255, 255, 255, 0.5);

}

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