@charset "utf-8";
/* CSS Document */

.p-logo {
		padding-left: 15px;
	}
/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn{
	right: 5px;
    z-index: 50;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	opacity: 1.0;
	background-color:rgb(0,0,87);
	padding: 3px;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu-bio{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
/*  width: 100vw;*/
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
	padding-top: 150px;
/*	padding-left: 30px;*/
  /* background:rgb(0,0,87); */
	background: linear-gradient( rgb(0,0,87),rgb(10,152,182) );
	}

.menu__item {
  height: auto;
    padding: 20px 0;
    color: #fff;
    box-sizing: border-box;
}

.menu__item {
	
}
	.menu-bio .nav-link  {
		padding: 2px 15px;
	}
	.menu__item a {
		color: #ffffff!important;
		font-weight: bold;
		font-size: 140%;
		display: block;
		text-decoration: none;
	}
	.menu__item_sub a {
		color: #ffffff!important;
		font-size: 120%;
		display: block;
		font-weight: normal;
		margin-left: 15px;
	}
	.menu__item a:hover {
		text-decoration: underline;
	}
	
	button.menu-btn {
		border: none;
		/* background-color: #ffffff; */
		/* background-color: transparent; */
		background-color: rgb(0, 0, 87);
		padding: 5px;
		position: fixed;
	}

@media screen and (max-width:575.98px) {
	.menu-bio{
		width: 100vw;
	}
	.menu__item, .menu__item_sub {
		width: 100%;
/*		padding: 2px 0;*/
	}
	.menu__item a {
		font-size: 18px;
		color: #ffffff!important;
	}
	.menu__item_sub a{
		font-size: 14px;
		color: #fff!important;
	}
	
	.nav-link {
		padding: 5px 15px;
	}
}


.nav-link span {
	color: #aaa;
}
/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu , .menu-bio {
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active , .menu-bio.is-active {
  transform: translateX(0);
}