.nav-list {
	.interior-nav {
		display: flex;
		align-items: baseline;
		gap: 5px;
		padding: 0;
		margin: 0;
		list-style: none;
		font-family: var(--font-soft);
		font-weight: var(--font-weight-bold);
		font-size: var(--text-base);
		line-height: normal;
		color: var(--red);
	}

	a {
		font: inherit;
		color: inherit;
		text-decoration: none;
	}

	.item:last-child,
	span {
		font-weight: var(--font-weight-medium);
		color: var(--gray-mid);
	}

	.item:last-child span {
		display: none;
	}

	@media (hover: hover) {
		a:hover {
			text-decoration: none;
			color: inherit;
		}
	}
}