@charset "utf-8";
/* CSS Document */

.p-logo {
  padding-left: 15px;
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn {
  /*position: fixed;
  right: 20px;
  z-index: 2;
  width: 35px;
  height: 35px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 40px;
  z-index: 50;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.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: rgba(0, 146, 245, 0.80);
}

.menu-bio {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 146, 245, 0.80);
}

.menu__item {
  width: 100%;
  height: auto;
  padding: .5em 2em;
  color: #fff;
  box-sizing: border-box;
}

.menu__item a {
  color: #ffffff;
  font-weight: bold;
  font-size: 120%;
  text-decoration: none;
}

.navi_item_sub a {
  color: #ffffff;
  font-size: 100%;
  font-weight: normal;
}

.menu__item a:hover {
  text-decoration: underline;
}

button.menu-btn {
  border: none;
  background-color: #ffffff;
  padding: 5px;
}

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

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

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