<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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(73,121,219,.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: 120%;
		text-decoration: none;
	}
	.navi_item_sub a{
		color: #ffffff;font-size: 100%;
		font-weight: normal;
	}
	.menu__item a:hover {
		text-decoration: underline;
	}
	
	button.menu-btn {
		border: none;
		background-color: #ffffff;
		padding: 5px;
	}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu , .menu-bio {
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active , .menu-bio.is-active {
  transform: translateX(0);
}</pre></body></html>