@charset "UTF-8";
/* ==================== #toggle ==================== */
#toggle {
    cursor: pointer;
    display: none;
    height: 39px;
    position: fixed;
    right: 6%;
    top: 6%;
    width: 40px;
    z-index: 4;
    background-color: rgba(249, 249, 249, 0.8);
    padding: 10px;
}
#toggle div {
	position: relative;
}
#toggle div span {
	background: #333;
	border-radius: 1px;
	display: block;
	height: 3px;
	left: 0;
	position: absolute;
	transition: .35s ease-in-out;
	width: 100%;
}
#toggle div span:nth-child(1) {
	top: 0;
}
#toggle div span:nth-child(2) {
	top: 8px;
}
#toggle div span:nth-child(3) {
	top: 16px;
}
@media screen and (max-width: 767px) {
#toggle {
	display: block; /* reset */
}
}
/* ==================== header.open ==================== */
@media screen and (max-width: 767px) {
header.open #toggle div span:nth-child(1) {
	transform: translateY(8px) rotate(-45deg);
}
header.open #toggle div span:nth-child(2) {
	left: 50%;
	opacity: 0;
	animation: .8s forwards;
}
header.open #toggle div span:nth-child(3) {
	transform: translateY(-8px) rotate(45deg);
}
header.open nav {
	opacity: 1;
	z-index: 3;
}
}