﻿/* **************************************************

      		　ハンバーガーメニュー

************************************************** */

/* -----------------------------------------------------

　　　　3本線の設定（クリックされていない状態）

----------------------------------------------------- */
#menu {
	left:1rem;
}

/* メニュー表示中は画面スクロールできないようにする */
.scroll_off {
	overflow:hidden;
}
.menulist {
  /* clip-path: polygon(
      70% 0%, 
      65% calc(var(--header-height) + 0.5rem), 
      0% calc(var(--header-height) + 0.5rem), 
      0% 100%,
      100% 100%,
      100% 0%
    ); */
    max-width:100%;
}

/* -----------------------------------------------------

	　　　　　      メニューOPEN

----------------------------------------------------- */
.menulist_inner {
    height:100%;
}
.menulist_inner ul {
    justify-content:center;
    height:calc(100% -var(--header-height));
    margin:auto auto auto auto;
    width:90%;
    padding:0 1rem 0 0;
}

.menulist_inner ul li {
 /* margin-bottom: clamp(0px, 4rem,4rem); */
     margin-bottom:5vh;
     text-align:right;
}
