.l-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 88px;
	background-color: #f8ecd9;
	border-bottom: 4px solid #5b311b;
	z-index: 10000;
}

.l-header__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
}

.l-header__nav__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.l-header__nav__list {
	display: flex;
	justify-content: center;
}

.l-header__nav__item {
	min-width: 120px;
	padding: 4px 24px;
	border-right: 1px solid #c8a878;
	text-align: center;
}

.l-header__nav__item:last-child {
	border-right: none;
}

.l-header__nav__icon {
	display: block;
	margin-bottom: 4px;
	font-size: 24px;
	color: #5b311b;
}

.l-header__nav__en {
	font-weight: 700;
	color: #3a1e0b;
}

.l-header__nav__jp {
	font-size: 0.8rem;
	color: #7c5b3e;
}

.l-header__button {
	display: none;
}

@media screen and (max-width: 768px) {
	.l-header {
		height: 60px;
		padding: 10px 20px;
		background-color: transparent;
		border-bottom: none;
	}

	.l-header__button {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: fit-content;
		margin-left: auto;
		padding: 12px 24px;
		background-color: rgb(48 17 2 / 60%);
		border-radius: 30px;
		backdrop-filter: blur(12px);
		font-weight: 700;
		line-height: 1;
		color: #fff;
		cursor: pointer;
		z-index: 2;
	}

	.l-header__nav {
		-webkit-overflow-scrolling: touch;
		overflow: hidden;
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 0;
		height: 0;
		padding: 0;
		background-color: #f8ecd9;
		visibility: hidden;
		opacity: 0;
		transition: opacity 0.3s;
		z-index: 1;
	}

	.l-header__nav__inner {
		padding: 80px 0 100px;
	}

	.l-header__nav__list {
		flex-direction: column;
	}

	.l-header__nav__item {
		width: 100%;
		padding: 8px 20px;
		border-right: none;
		border-bottom: 1px solid #c8a878;
	}
}