/* Initialize */
body, header, h1, h2, h3, p, a, ul, li {
	margin: 0;
	padding: 0;
}
ul {
	list-style: none;
}
a {
	text-decoration: none;
	color: #000;
}
span {
	color: #000;
}
header {
	position: sticky;
	top: 0;
	z-index: 99;
	display: flex;
	width: 100%;
	height: 57px;
	justify-content: space-between;
	background: rgba(76,46,48,1);
}
header span {
	color: #fff;
}
body {
	font-size: 1rem;
	line-height: 1.5;
	color: rgba(76,46,48,1);
}
section {
	display: block;
}
label {
	cursor: pointer;
	position: fixed;
}
footer {
    width: 100%;
    background-color: rgba(76,46,48,1);
    padding: 4% 0;
    padding-bottom: 0;
}
@media screen and (min-width: 521px) {
	footer {
		padding-top: 2%;
		padding-bottom: 2%;
	}
}
@media screen and (min-width: 961px) {
	footer {
		padding-top: 1.3%;
		padding-bottom: 1.3%;
	}
}
/* footer */
.go_top {
	margin-left: 2%;
	color: #fff
}

/* Implementation */
/* Implement header */
/* Implement for mobile and tablet*/
/* drawer menu btn layout */
#drawer {
	display: none;
}
.compressed_nav_open {
	z-index: 2;
	width: 52px;
	height: 42px;
	border-radius: 42px;
	margin-left: 7px;
	margin-top: 7px;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.compressed_nav_open::before,
.compressed_nav_open::after {
	content: '';
}
.compressed_nav_open span,
.compressed_nav_open::before,
.compressed_nav_open::after {
	content: '';
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid #fff;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.compressed_nav_open::before {
	transform: translateY(-8px);
}
.compressed_nav_open::after {
	transform: translateY(8px);
}
.compressed_nav_close {
	z-index: 1;
	inset: 0;
	pointer-events: none;
	transition: background .6s;
}

/* drawer menu btn anim */
#drawer:checked + .compressed_nav_open span {
	transform: scaleX(0);
}
#drawer:checked + .compressed_nav_open::before {
	transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .compressed_nav_open::after {
	transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .compressed_nav_close {
	pointer-events: auto;
}

/* compressed nav menu layout */
.compressed_nav {
	z-index: 1;
	position: fixed;
	overflow: auto;
	left: 0;
	height: 100%;
	margin: 0;
	padding: 20px;
	padding-top: 0;
	box-sizing: border-box;
	transform: translateX(-100%);
	background: rgba(76,46,48,0.8);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.compressed_nav_title {
	text-align: center;
	padding-top: 10px;
	background: rgba(76,46,48,1);
	color: #fff;
}
.compressed_nav_menu li {
	border-bottom: 1px solid rgba(255,255,255,0.8);
}
.compressed_nav_menu .menu_link {
	display: block;
	padding: 16px 20px;
}
.compressed_nav_menu .menu_link:hover {
	background: #000;
    transition: 0.5s;
}

/* compressed nav menu anim */
#drawer:checked ~ .compressed_nav {
	transform: none;
}

/* logo */
.header_logo {
	height: 60%;
	padding-left: 5px;
	padding-right: 10px;
}
.header_logo:hover {
	position: absolute;
	top: calc(57px * 0.4 / 2);
	height: 240%;
}

/* top nav. expanded nav layout */
.expanded_nav {
	display: none;
}

.top_nav, .expanded_nav_menu {
	height: 100%;
	display: flex;
	align-items: center;
}

.top_nav {
	margin-left: 60px;
}

.expanded_nav_menu li{
	height: 100%;
}
.expanded_nav_menu .menu_link {
	display: flex;
	align-items: center;
	text-align: center;
	color: #fff;
	height: 100%;
	padding: 0 15px;

}
.expanded_nav_menu .menu_link:hover {
	background-color: #000;
	transition: 0.5s;
}

/* Implement expanded nav for PC (961 + 22) */
@media screen and (min-width: 983px) {
	.expanded_nav {
		display: block;
	}
}

/* TopSection */
#TopSection {
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: lightskyblue;
}
/* Implement TopSection for tablet */
@media screen and (min-width: 521px) {
	#TopSection {
		height: 230px;
		font-size: 1.2rem;
	}
}
/* Implement TopSection for PC */
@media screen and (min-width: 961px) {
	#TopSection {
		height: 280px;
		font-size: 1.4rem;
	}
}
.hp_main_h1 {
	color: rgba(76,46,48,1);
}