/* Header */
header {
	display: flex;
	position: fixed;
	top: 0;
	width: 100%;
	justify-content: space-between;
	border-bottom: 1px solid #ddd;
	background-color: #f8f8f8;
	z-index: 99;
}
header a, header button {
	display: block;
	height: 5.5rem;
	padding: 1.5rem 2rem;
}
header img {
	height: 100%;
}


/* Content */
#wrap {
	width: 100%;
	background-color: #f8f8f8;
	min-height: calc(100vh - 5.5rem);
}
.main {
	margin-top: 5.5rem;
}
.main h1.title {
	font-size: 2.4rem;
	font-weight: 900;
	color: #000;
	letter-spacing: -.1rem;
	margin-bottom: 1.5rem;
	line-height: 1.4;
}

/* Side-Nav */
.side {
	position: fixed;
	top: 0;
	left: -100%;
	width: 75%;
	height: 100vh;
	background-color: #fff;
	z-index: 999;
	transition: all 0.5s;
}
.side .header {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #ddd;
}
.side .header button, .side .header a {
	display: block;
	height: 5.5rem;
	padding: 1.5rem 1.5rem 1.5rem 1.5rem;
}
.side .header button {
	padding: 1.9rem;
}
.side .header img {
	height: 100%;
}
.side .list_wrap h1 {
	font-size: 1.8rem;
	font-weight: 600;
	background-color: #00be59;
	color: #fff;
	text-align: center;
	padding: 2.5rem 0;
}
.side .list_wrap ul li a {
	font-size: 1.8rem;
	padding: 1.8rem 1rem;
	text-align: center;
	display: block;
	border-bottom: 1px solid #ddd;
	color: #000;
}
.background {
	display: none;
	width: 100%;
	height: 100%;
	background-color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	opacity: 0.7;
}