.yss_content{
  position:fixed;
  width:100%;
  top:0;
  right:-100%;
  z-index:999;
  overflow:scroll;
  -webkit-overflow-scrolling: touch;
}
.yss_content.yss_left{
  right:auto;
  left:-100%;
}

.yss_open{
  width:180px;
  margin:0 0 10px;
  padding:10px;
  color:#fff;
  line-height:1;
  /*background:#000;*/
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor:pointer;
}

/*.yss_close{
  width:180px;
  margin:0 0 10px;
  padding:10px;
  color:#fff;
  line-height:1;
  background:#000;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor:pointer;
}*/

.yss_content{
  padding:0;
  background:#0071BC;
}

.yss_content[data-yss="number4"]{
  width:70%;
}

/* ハンバーガーエフェクト */
.yss_hamburger{
  margin:0;
  width: 54px;
  height: 44px;
  padding:12px 10px;
  /*background:#ccc;*/
  position:fixed;
  top:2px;
  right:2px;
  z-index:9999;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor:pointer;
}
.yss_hamburger.yss_active{
  height: 47px;
}
.yss_hamburger div,
.yss_hamburger div span {
  display: inline-block;
  transition: all .25s;
  box-sizing: border-box;
}
.yss_hamburger div{
  width:100%;
  height:100%;
  display:block;
  position: relative;
}
.yss_hamburger span {
  margin:auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  border-radius: 1px;
}
.yss_hamburger span:nth-of-type(1) {
  top: 0;
}
.yss_hamburger span:nth-of-type(2) {
  top:0;
  bottom:0;
}
.yss_hamburger span:nth-of-type(3) {
  bottom: 0;
}
.yss_hamburger.yss_active span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
  background-color: #FFF;
}
.yss_hamburger.yss_active span:nth-of-type(2) {
  opacity: 0;
}
.yss_hamburger.yss_active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
  background-color: #FFF;
}

