@charset "utf-8";


@media screen and (min-width:901px){
.hamburger_menu , #drawer_input , .nav_content {
    display: none;	
}
}

@media screen and (max-width:900px){

/* CSSコード */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: #fff;
}

.logo {
  font-size: 24px;
}

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

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
    margin-left: auto; /* ハンバーガーメニューを右寄せに*/
    margin-top: 10px;
    margin-bottom: 5px;
    margin-right: 5px;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 28px;
	border-radius: 3px;
	background: #333;
	transition: 0.5s;
	position: absolute;
}

.drawer_open span:after {
	content: 'menu';
	font-size: 6px; /*menu 三本線の下に出す　やったぜ！　ゆうちゃん！！★JUNの宿題★　*/
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
	content: ''; /*menu を回転後に消す　やったぜ！　ゆうちゃん！！*/
	
}
  
/* メニューのデザイン*/
.nav_content {
    width: 80%;
    height: auto;
    position: fixed;
    top: 0;
    left: 100%; /* メニューを画面の外に飛ばす */
    z-index: 99;
    background-color: rgba(167,138,165,0.61);/*メニューをクリックした直後のメニューの色*/
    transition: .5s;
}

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

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}
	
.slide-over-overlay {
    background-color: rgba(0,36,251,0.00);	
}
}
