@charset "utf-8";
/* CSS Document */

.p-logo {
		padding-left: 15px;
	}
/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn{
	right: 20px;
    z-index: 50;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.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,177,236,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,177,236,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: 140%;
		text-decoration: none;
	}
	.navi_item_sub a{
		color: #ffffff;font-size: 100%;
		font-weight: normal;
	}
	.menu__item a:hover {
		text-decoration: none;
	}
	
	button.menu-btn {
		border: none;
/*		background-color: #ffffff;*/
		padding: 5px;
	}

/** ボタン **/
button.menu-btn {
    border: none;
    background-color: #F9F9F2;
    padding: 5px;
}

.menu-btn {
    right: 20px;
    z-index: 50;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	font-size: 35px;
}

.menu, .menu-bio {
    transform: translateX(100vw);
    transition: all .3s linear;
}
.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;
    padding-left: 20px;
    background: rgb(255, 144, 188,0.80);
	
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.fa-bars {
    color: #FF90BC;
}

button.menu-btn {
    border: none;
    padding: 5px;
    background-color: #F9F5F6;
}

.menu-btn{
	right: 20px;
    z-index: 50;
    width: 40px;
    height: 40px;
    padding: 5px;
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

@media (max-width: 767.98px) {

}



/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu , .menu-bio {
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active , .menu-bio.is-active {
  transform: translateX(0);
}