html {
  overflow: auto;
  height: 100%;
}

body {
  height: 100%;
}

.menuBtn {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: none;
  padding: 0;
  border: none;
}

.menuBtn.clsBtn {
  width: 50px;
  height: 50px;
  background: #444;
  position: absolute;
  top: 0;
  right: 280px;
}

.menuBtn.clsBtn .icon {
  width: 30px;
  height: 19px;
  margin: 0 auto;
  position: relative;
}

.menuBtn.clsBtn .icon .bar {
  width: 30px;
  height: 3px;
  background: #FFF;
  border-radius: 1px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.4s cubic-bazier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bazier(0.19, 1, 0.22, 1);
}

.menuBtn.clsBtn .icon .bar.top {
  top: 0;
}

.menuBtn.clsBtn .icon .bar.mdl {
  top: 0;
  bottom: 0;
}

.menuBtn.clsBtn .icon .bar.btm {
  bottom: 0;
}

.menuBtn.clsBtn.open .icon {
  height: 30px;
}

.menuBtn.clsBtn.open .icon .bar.top {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menuBtn.clsBtn.open .icon .bar.mdl {
  width: 0;
}

.menuBtn.clsBtn.open .icon .bar.btm {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

#drawrPanel {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 105%;
  z-index: 10000;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

#drawrPanel #menuCover {
  content: "";
  display: none;
  width: 100%;
  height: 150%;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

#drawrPanel .navigationWrapper {
  width: 280px;
  height: 115%;
  background: #f0ead8;
  position: absolute;
  top: 0;
  right: 0;
  overflow-y: scroll;
}

#drawrPanel .navigationWrapper nav {
  margin-bottom: 150px;
}

#drawrPanel .navigationWrapper nav div {
  color: #FFF;
  font-size: 16px;
	background-color: #55941E;
/*  background-image: -webkit-gradient(linear, left top, left bottom, from(#05386b), to(#074b92));
  background-image: -webkit-linear-gradient(#05386b 0%, #074b92 100%);
  background-image: linear-gradient(#05386b 0%, #074b92 100%);*/
  padding: 11px 15px;
 text-align:center;
}

#drawrPanel .navigationWrapper nav ul li {
  color: #333;
  font-size: 15px;
  line-height: 1.0;
    border-bottom: #c6c2bb solid 1px;
    border-top: #fff solid 1px;
}

#drawrPanel .navigationWrapper nav ul li:last-child {
  color: #333;
  font-size: 15px;
  line-height: 1.0;
border-bottom:none;
  border-top: #fff solid 1px;
}

#drawrPanel .navigationWrapper nav ul li span,
#drawrPanel .navigationWrapper nav ul li a {
  display: block;
  color: #555;
  text-align: left;
  padding: 15px 19px;
  text-decoration: none;
}

#drawrPanel .navigationWrapper nav ul li span:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: middle;
  margin-left: 5px;
  border-top: 5px solid;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  margin-bottom: 4px;
  -webkit-transition: opacity .2s ease,-webkit-transform .2s ease;
  transition: opacity .2s ease,-webkit-transform .2s ease;
  transition: transform .2s ease,opacity .2s ease;
  transition: transform .2s ease,opacity .2s ease,-webkit-transform .2s ease;
}

#drawrPanel .navigationWrapper nav ul li.open span:after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

#drawrPanel .navigationWrapper nav ul li ul {
  display: none;
}

#drawrPanel .navigationWrapper nav ul li ul li {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: -webkit-linear-gradient(#fff 0%, #fff 100%);
    background-image: linear-gradient(#fff 0%, #fff 100%);
}

#drawrPanel .navigationWrapper nav ul li ul li a {
  line-height: 1.3;
  padding: 15px 15px 15px 18px;
}

#drawrPanel.open {
  left: 0;
}

#drawrPanel.open #menuCover {
  display: block;
  opacity: 1;
}

#drawrPanel .navigationWrapper nav ul li ul li ul li {
  border-top: #c6c2bb solid 1px;
}
#drawrPanel .navigationWrapper nav ul li ul li ul li a:before {
  content: '・';
}

#spMenuBtn {
  width: 48px;
  height: 48px;
  border: #999 solid 1px;
  border-radius: 4px;
  position: fixed;
  top: 9px;
  right: 4px;
}

#spMenuBtn .menuBtn {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 7px 18px 20px 0px;
}

#spMenuBtn .menuBtn .icon {
  height: 19px;
  margin-bottom: 5px;
  position: relative;
}

#spMenuBtn .menuBtn .icon .bar {
  width: 30px;
  height: 3px;
  background: #333;
  border-radius: 1px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.4s cubic-bazier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bazier(0.19, 1, 0.22, 1);
}

#spMenuBtn .menuBtn .icon .bar.top {
  top: 0;
}

#spMenuBtn .menuBtn .icon .bar.mdl {
  top: 0;
  bottom: 0;
}

#spMenuBtn .menuBtn .icon .bar.btm {
  bottom: 0;
}

.navigationWrapper ul#navBox{
border-bottom: #c6c2bb solid 1px;
}