@charset "utf-8";
/* CSS Document */

.p-logo {
		padding-left: 15px;
	}
/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn {
	/* right: 20px; */
    z-index: 550;
    width: 38px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
	/* top: 8px; */
	background-color: #fff;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu-bio{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 500;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	padding-top: 150px;
	background:#f5fbf6;
}

.menu__item {
	height: auto;
    padding: 20px 0;
    color: #333;
    box-sizing: border-box;
	font-family: Montserrat;
	font-weight: 400;
}

.menu-bio .nav-link  {
	padding: 2px 15px;
}

.menu__item a {
	color: #333!important;
	font-weight: bold;
	font-size: 140%;
	display: block;
	text-decoration: none;
}

.menu__item_sub a {
	color: #333!important;
	font-size: 120%;
	display: block;
	font-weight: normal;
	margin-left: 15px;
}

.menu__item a:active {
	font-weight: 700;
}
	
	button.menu-btn, .menu-btn-tel {
		border: none;
		/* background-color: #f5fbf6; */
		/* position: fixed; */
	}
button.menu-btn:hover {
	opacity: 0.5;
}
@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: #333!important;
	}
	.menu__item_sub a{
		font-size: 14px;
		color: #333!important;
	}
	
	.nav-link {
		padding: 5px 15px;
	}
}
/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu , .menu-bio {
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active , .menu-bio.is-active {
  transform: translateX(0);
}