#Header {
	display: flex;
	flex: 0 0 auto;
	height: var(--Header-Height);
	justify-content: center;
	position: relative;
	z-index: 10;
}

.HeaderNotice {
	display: flex;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 14px;
	width: 100%;
	z-index: 100;
}

.HeaderNoticeInner {
	background-color: var(--Colors-Error);
	border-radius: 10px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	line-height: 20px;
	min-width: 250px;
	padding-bottom: 1px;
	text-align: center;
}

.HeaderInner {
	display: flex;
	flex: 0 1 var(--Content-MaxWidth);
	justify-content: center;
	padding: 64px var(--Viewport-InlinePadding) 0;
}

.HeaderLogoArea {
	height: 36px;
}

.HeaderLogoArea a {
	display: block;
	height: 100%;
}

.HeaderLogoArea img {
	height: 100%;
	max-width: 100%;
}