/* ========================================
   AtWell Header
======================================== */

/* ヘッダー上段 */
.site-header > .inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 7px 20px;
	display: flex;
	align-items: center;
	gap: 24px;
}

/* サイト説明は非表示 */
.site-description {
	display: none;
}

/* ロゴ */
.site-title {
	margin: 0;
	flex-shrink: 0;
}

.site-title a {
	display: block;
}

.site-title img {
	display: block;
	width: auto;
	height: 64px;
}

/* 検索・会員・カート */
.snav {
	margin-left: auto;
}

/* ナビゲーション */
.main-navigation {
	background: #181818;
	border: 0;
}

.main-navigation .nav-menu-open {
	max-width: none;
	margin: 0;
	padding: 0;
}

.header-nav-container {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-nav-container > li {
	margin: 0;
	border-right: 1px solid #444;
}

.header-nav-container > li:first-child {
	border-left: 1px solid #444;
}

.header-nav-container > li > a {
	display: block;
	padding: 11px 24px;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
}

.header-nav-container > li > a:hover,
.header-nav-container > li.current-menu-item > a {
	color: #fff;
	background: #555;
}

/* ========================================
   Smartphone
======================================== */

@media screen and (max-width: 768px) {

	/* ハンバーガーアイコン */
	#site-navigation label span::before {
		color: #333;
	}

	.site-header > .inner {
		padding: 10px 16px;
		gap: 10px;
	}

	.site-title {
		flex: 1;
		min-width: 0;
	}

	.site-title img {
		height: 46px;
		max-width: 100%;
	}

	/*
	 * .snav の中身は親テーマのスマホ表示を維持する
	 * 検索・会員・カートを非表示にはしない
	 */
	.snav {
		margin-left: auto;
		flex-shrink: 0;
	}

	/* スマホ用ナビゲーション */
	.main-navigation {
		background: #fff;
		border-top: 1px solid #e5e5e5;
		border-bottom: 2px solid #1f77b4;
	}

	/* スマホではメニューを縦並びにする */
	.header-nav-container {
		display: block;
	}

	.header-nav-container > li {
		display: block;
		width: 100%;
	}

	#site-navigation .header-nav-container > li > a {
		display: block;
		width: 100%;
		margin-bottom: 1.07143em;
		padding: 0 0 .357143em;
		color: #333;
		font-size: inherit;
		font-weight: inherit;
		border-bottom: 1px solid #e0e0e0;
	}

	.header-nav-container > li,
	.header-nav-container > li:first-child {
		border: 0;
	}

}