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

.p-logo {
		padding-left: 15px;
	}
/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn {
	right: 20px;
    z-index: 50;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	top: 13px;
}
.menu-btn-tel {
	right: 80px;
    z-index: 50;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	top: 13px;
	padding: 3px!important;
}

.scroll-top {
    overflow: auto;
}
/*----------------------------
* メニュー本体
*----------------------------*/
.menu-bio{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
	padding: 150px 0;
    font-family: 'Noto Sans JP';
    background: rgba(245, 245, 245, 0.85);
}

.menu__item {
/*  width: 80%;*/
/*	margin-top: 15px;*/
  height: auto;
    padding: 12px 0;
    color: #fff;
    box-sizing: border-box;
}
.menu__item:first-child {
}
.menu__item {
	
}
	.menu-bio .nav-link  {
		padding: 2px 15px;
	}
	.menu__item a {
        color: #5b5b5b !important;
        font-weight: 200;
        font-size: 120%;
        display: block;
        text-decoration: none;
        text-align: left;
        margin-left: 10%;
    }
	.menu__item_sub a {
		color: #5b5b5b!important;
		font-size: 120%;
		display: block;
		font-weight: normal;
		margin-left: 15px;
	}
	.menu__item a:hover {
		text-decoration: underline;
	}
	
	button.menu-btn, .menu-btn-tel {
		border: none;
/*		background-color: transparent;*/
		padding: 7px;
		position: fixed;
		background-color: black;
	}
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: #5b5b5b!important;
	}
	.menu__item_sub a{
		font-size: 14px;
		color: #5b5b5b!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);
}