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

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

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

.scroll-top {
	overflow: auto;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu-bio {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 3;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	padding-top: 50px;
	background: rgb(34 140 193 / 100%);
}


.menu__item {
	/*  width: 80%;*/
	/*	margin-top: 15px;*/
	height: auto;
	padding: 10px 0 0 0;
	color: #fff;
	/* border-bottom: 0.5px solid #aaa; */
	box-sizing: border-box;
}

.menu__item ul {
	margin-bottom: 0;
}

.menu__item:first-child {
	/* border-top: 0.5px solid #aaa; */
}

.menu-bio .nav-link {
	padding: 2px 15px;
}

.menu__item a {
	color: #ffffff !important;
	font-weight: bold;
	font-size: 16px;
	display: block;
	text-decoration: none;
	text-align: left;
	margin: 0 20px;
}

.menu__item_sub a {
	color: #ffffff !important;
	font-size: 16px;
	display: block;
	font-weight: normal;
	margin-left: 15px;
}

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

button.menu-btn {
	border: none;
	background-color: #ffffff;
	padding: 5px;
	position: relative;
	z-index: 55;
}

button.menu-btn:hover {
	opacity: 0.5;
	z-index: 55;
}

@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: 16px;
		color: #ffffff !important;
		font-weight: 400;
		text-align: left;
		margin: 0 20px;
	}

	.menu__item_sub a {
		font-size: 14px;
		color: #fff !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);
}