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


#toggle {
  display: none;
}
	
.nav-wrapper > ul > li {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
}


@media screen and (min-width: 769px) {
	.nav-wrapper > ul {
		display: flex;
		gap: 30px;
		color: #009CF7;
		font-weight: bold;
	}
}


@media screen and (max-width: 768px) {
	/**
	  Hamburger
	**/
	.hamburger {
	  width: 35px;
	  height: 30px;
	  z-index: 5;
	  top: -20px;
	  position: absolute;
	}

	.hamburger div {
	  position: relative;
	  width: 100%;
	  height: 2px;
	  background-color: #009CF7;
	  margin-top: 8px;
	  transition: all 0.3s ease-in-out;
	}

	/**
	Nav Styles
	**/
	.nav {
	  position: fixed;
	  width: 100%;
	  height: 100vh;
	  background-color: #D3ECF9;
	  top: -100%; left: 0; right: 0; bottom: 0;
	  overflow: hidden;
	  transition: all 0.3s ease-in-out;
	  transform: scale(0);
	}
	.nav-wrapper {
	  position: relative;
	  overflow: hidden;
	  overflow-y: auto;
	  height: 100%;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	}
	
	.nav-wrapper > ul > li {
		font-size: 16px;
		text-align: center;
	}
	
	.nav-wrapper > ul > li a {
		justify-content: center;
		padding: 10px 0px;
	}

	/**
	Animations
	**/
	#toggle:checked + .hamburger .top-bun {
	  transform: rotate(-45deg);
	  margin-top: 25px;
	}
	#toggle:checked + .hamburger .bottom-bun {
	  opacity: 0;
	  transform: rotate(45deg);
	}
	#toggle:checked + .hamburger .meat {
	  transform: rotate(45deg);
	  margin-top: -2px;
	}

	#toggle:checked + .hamburger + .nav {
	  top: 0;
	  transform: scale(1);
	}
}