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


/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open  {
  content: '';
  background: url("img/common/menu_open.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 70%;
  height: 70%;
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open {
  background: url("img/common/menu_close.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 70%;
  height: 70%;
}

  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #00253E;
  transition: .5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}

.nav_list li {
	font-size: clamp(2rem,6vw,6rem);
	font-weight: 600;
	color: #FFF;
	text-align: center;
}

.nav_list li a {
	padding: 10px 0px;
}


/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}