
/*---------- #menu ----------*/
#menu {
  width: 380px;
  height: 100%;
  background-color: #573;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translateX(380px); /* right0から380px移動した位置 */
  transition: all .5s; /* 移動する速さ */
}
#menu.open {
  transform: translateX(0); /* right0まで-380px移動 */
}
#menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#menu li {
  padding: 15px;
  color: #fff;
  border-bottom: 1px solid #9B7;
}
#menu_btn {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  /*border-radius: 5px;*/
  width: 46px;
  height: 46px;
  padding: 0px;
  background-image: url(../img/hb-menu.png);
  background-repeat: no-repeat;
  cursor: pointer;
}
/* --- .menu-background --- */
.menu-background {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0; /* 透明度を0にすることで隠す */
  transition: opacity 0.5s; /* 透明度の0→1になる速度 */
}
.menu-background.open {
  width: 100%;
  height: 100%;
  opacity: 1; /* メニューが表示されているときには背景が表示 */
}
