.head-notice {
	position: sticky;
	top: 0;
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 12px;
	text-align: center;
	background: #E5FFC0;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	z-index: 40;
}

.head-notice .icon {
	font-size: 20px;
	transform: rotate(-90deg);
}

.head-notice.show {
	display: flex;
}

.head-notice.show ~ .header {
	top: 48px;
}

@media (min-width: 576px) {
	.head-notice {
		font-size: 16px;
	}
}