@charset "utf-8";

/* =Header
-------------------------------------------------------------- */
#header {
	position: fixed;
	top: 0;
	z-index: 9999;
	background: #fff;
	width: 100%;
	padding: 0 10px 0 20px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	gap: 50px;
	align-items: center;
}
#site-title {
	margin: 0;
	flex-grow: 1;
	font-size: 0;
}
#site-title .txt {
	line-height: 1;
	font-size: 2.6rem;
	font-weight: var(--weight-bold);
}

.hamburger {
	position: relative;
	right: 0;
}

@media screen and (min-width: 737px) {
	.hamburger {
		display: none;
	}
}

@media screen and (max-width: 736px) {
	#header {
		padding: 10px;
	}
	#site-title .txt {
		font-size: 2rem;
	}
}