.inner {
	width:100%;
	max-width: 1300px;
	margin: 0 auto;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== 告知バー ===== */
.info-bar {
  background: #c8b89a;
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 5px 16px;
}

/* ===== ヘッダー ===== */
#site-header {
  border-bottom: 1px solid #e0d9cf;
  background: #fff;
  padding:10px;
}

/* ① ロゴ */
#site-logo {
	display: block;
	width: 180px;
	height: 70px;
	margin-right: 15px;
}
#site-logo a{
	display: block;
	width: 180px;
	height: 70px;
	text-indent: -999em;
	overflow: hidden;
	background-image: url('/images/site-logo.png');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}


#hd-banners{
	width: 65%;
	gap: 20px;
}

.hd-banner {
	display: block;
	width: 100%;
	height: 45px;
	text-indent: -999em;
	overflow: hidden;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
#bnr_30th{
	flex-basis: 25%;
	height: 50px;
	background-image: url('/images/img_30th.png');
}
#bnr_housemade{
	flex-basis: 38%;
	height:75px;
	background-image: url('/images/img_housemade.png');
}
#bnr_delivery{
	flex-basis: 20%;
	background-image: url('/images/img_delivery.png');
}
#bnr_hikitori{
	flex-basis: 18%;
	background-image: url('/images/img_hikitori.png');
}
#bnr_ordermade{
	flex-basis: 18%;
	background-image: url('/images/img_ordermade.png');
}

@media screen and (max-width: 768px) {
	#site-logo {
		width: 130px;
		height: 60px;
	}
	#site-logo a{
		width: 130px;
		height: 60px;
	}
	#hd-banners{display: none;}
}

/* ⑦〜⑨ ボタン群 */
#hd-buttons{
	display: flex;
	width: 260px;
	justify-content: space-around;
}
.hd-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: #555;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
  flex-shrink: 0;
  white-space: nowrap;
}
.hd-btn svg { color: #666; }
.hd-btn-cart {
  position: relative;
  border-radius: 3px;
  padding: 4px 8px;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #c0210a;
  color: #fff;
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}

#btn_menu {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-shrink: 0;
}
.burger-line {
	display: block;
	width: 22px;
	height: 2px;
	background: #555;
	border-radius: 2px;
	transition: transform 0.25s, opacity 0.25s;
	transform-origin: center;
}
#btn_menu.is-active .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#btn_menu.is-active .burger-line:nth-child(2) { opacity: 0; }
#btn_menu.is-active .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media screen and (max-width: 768px) {
	#btn_menu { display: flex; }
	.hd-btn-guide { display: none; }
	.gnav {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		border-bottom: none;
	}
	.gnav.gnav-open {
		max-height: 600px;
		border-bottom: 1px solid #e0d9cf;
	}
}

/* ===== グローバルナビ ===== */
.gnav {
  width:100%;
  transition: background 0.15s;
  border-bottom: 1px solid #e0d9cf;
  overflow-x: scroll;
  &::-webkit-scrollbar {
    display: none;
  }
  scrollbar-width: none;
}
.gnav .flex{ align-items: stretch;}
.gnav-list {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	padding-right: 20px;
}
.gnav-list li {
	width:100%;
}
.gnav-cat li a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 12px 10px;
  white-space: nowrap;
}
.gnav-cat li a:hover { transition: background 0.15s;background: #f8f4ef; }

/* ナビサムネイル */
.gnav-thumb {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  flex-shrink: 0;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

#icon_butsudan{background-image: url('/images/icon_butsudan.jpg');}
#icon_butsudan_modern{background-image: url('/images/icon_butsudan_modern.jpg');}
#icon_butsudan_open{background-image: url('/images/icon_butsudan_open.jpg');}
#icon_butsudan_makido{background-image: url('/images/icon_butsudan_makido.jpg');}
#icon_butsudan_other{background-image: url('/images/icon_butsudan_other.jpg');}
#icon_butsugu{background-image: url('/images/icon_butsugu.jpg');}
#icon_bukka{background-image: url('/images/icon_bukka.jpg');}
#icon_senko{background-image: url('/images/icon_senko.jpg');}

/* サブグループ：テキストのみ・右端・薄茶背景 */
.gnav-sub {
	width: 100%;
	max-width: 330px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f0ea;
	transition: background 0.15s;
	padding:20px 0px;
}
.gnav-sub li a {
	height:40px;
  display: flex;
  align-items: center;
  color: #4a2510;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 0 10px;
  white-space: nowrap;
  text-decoration: none;
}
.gnav-sub li a:hover { background: #ede5d8; }

.gnav-sub li a span.gnav-sub-thumb{
	width:20px;
	height:15px;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	margin-right: 8px;
}
.gnav-sub li a span.gnav-sub-thumb#icon_voice{background-image: url('/images/icon_voice.png');}
.gnav-sub li a span.gnav-sub-thumb#icon_factory{background-image: url('/images/icon_factory.png');}


@media screen and (max-width: 768px) {
	.gnav .flex{display:block;}
	.gnav-list{
		display:flex;
		flex-wrap: wrap;
	}
	.gnav-list li {
		width:100%;
		flex-basis: 50%;
	}
	.gnav-cat li a {justify-content: flex-start;}
	.gnav-sub{
		display:block;
		max-width:none;
	}
	.gnav-sub li {width:100%;}
}

/* ===== メガメニュー ===== */
.mega-menu {
  position: relative;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ede5d8;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  z-index: 100;
}

.mega-panel { display: block; padding:30px 20px;}
.mega-panel[hidden] { display: none; }

.mega-panel h4{
  font-size: 14px;
  font-weight: 700;
  color: #4a2510;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0d9cf;
}

.mega-links {
	width:100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
  margin-bottom: 25px;
}

.mega-links li {
  flex-basis: 32%;
}

.mega-links a {
  display: block;
  font-size: 14px;
  color: #444;
  padding: 8px 10px;
  border-radius: 2px;
  transition: background 0.12s, color 0.12s;
}
.mega-links a:hover {
  background: #f8f4ef;
  color: #4a2510;
}

.mega-all-link {
  display: inline-block;
  font-size: 12px;
  color: #4a2510;
  font-weight: 700;
  text-decoration: underline;
}

.gnav-cat-link.is-active {
  background: #f8f4ef;
}

.mega-tags {
	width:100%;
	margin-bottom: 35px;
}
.mega-tags li{
	display: inline-block;
	border:1px #eee solid;
	margin: 5px;
}
.mega-tags li a{
	display: inline-block;
	font-size: 14px;
	color: #444;
	padding: 10px 15px;
}
.mega-tags li a:hover {
	background: #f8f4ef;
	color: #4a2510;
}

