
/* メニュー開閉ボタン */
.menu_btn {
  position: fixed;/*absolute;*/
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
  font-family: FontAwesome;
  content: "\f0c9";
  font-size: 16pt;
}

/* メニュー本体 */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #555555;
  opacity: 0.9;
}

.menu_item {
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
}

.menu_item a {
  color: #ffffff;
}

/* PC向けおよび大型タブレット向けのレイアウトの指定 */
@media only screen and (min-width: 769px) {
  .menu_btn {
    display: none;
  }
  
  .menu {
    display: none;
  }
}

/* アニメーション部分 */

/* アニメーション前のメニューの状態 */
.menu {
  transform: translateX(100vw);
  transition: all 0.3s linear;
}

/* アニメーション後のメニューの状態 */
.menu.is_active {
  transform: translateX(0);
}

