@charset "utf-8";



/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	--base-color: #fff;					/*テンプレートの土台となる色（主に背景カラー）*/
	--base-inverse-color: #0e211f;		/*上のbase-colorの対となる色（主にテキストカラー）*/

	--primary-color: #9e7a58;			/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;		/*上のprimary-colorの対となる色*/

	--content-space: 2rem;				/*余白の一括管理用。2rem＝2文字分。*/
	
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:800px) {

	:root {

		--content-space: 4rem;			/*余白の一括管理用。4rem＝4文字分。*/

	}

	}/*追加指定ここまで*/


/*animation11のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {transform: translateX(100%);}
	100% {transform: translateX(0);}
}


/*opa1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*jump1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes jump1 {
  0%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  90% {
    transform: translateX(-50%) translateY(-10px);
  }
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	font-size: 13px;	/*基準となるフォントサイズ。*/
	overflow-x: hidden;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:800px) {

	html, body {
		font-size: 15px;	/*基準となるフォントサイズ。*/
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
	font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類（ゴシック）*/
	font-optical-sizing: auto;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: var(--base-color);		/*背景色。css冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);	/*文字色。css冒頭のbase-inverse-colorを読み込みます。*/
	line-height: 2;		/*行間*/
	overflow-x: hidden;
}

body.noscroll {
	overflow: hidden;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

.map-embed iframe {
	display: block;
	max-width: 100%;
}

.shop-map-actions {
	margin-top: 0.75rem;
}

.shop-map-open-link {
	color: var(--primary-color);
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

/*他*/
input {font-size: 1rem;}

/*section*/
section {
	padding: var(--content-space) 0;	/*section内の余白。上下にcss冒頭のcontent-spaceを読み込み、左右は0（ゼロ）*/
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
}

p {
	text-align:justify;
	word-break:break-all; 
	text-justify:inter-ideograph;
	text-justify:inter-character;
	word-wrap:break-word;
	overflow-wrap:break-word;
}
/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	position: relative;
	animation: opa1 0.2s 0.4s both;  /*0.4秒待機後、0.2秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding: 0 var(--content-space);	/*コンテナー内の余白。上下は0（ゼロ）、左右はcss冒頭のcontent-spaceを読み込む。*/
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	padding: var(--content-space) 0;	/*ヘッダー内の余白。上下にcss冒頭のcontent-spaceを読み込み、左右は0（ゼロ）*/
}

	/*画面幅400px以下の追加指定*/
	@media screen and (max-width:800px) {

	/*ヘッダーブロック*/
	header {
		padding-top: calc(var(--content-space) + 70px);	/*右上ボタンとロゴが重ならないようヘッダー上部の余白に70px上乗せ*/
	}
	
	}/*追加指定ここまで*/


/*ロゴ*/
#logo {

	margin: 0;
	padding: 0;

}

#logo img {

	display: inline-block;
	width: 300px;	/* PCロゴの幅 */
	margin-top: 100px;
	margin-bottom: 400px;

}

body:has(.breadcrumb) header {
	padding: 0;
}

body:has(.breadcrumb) #logo img {
	margin-bottom: 40px;
}

body:has(#results-section),
body.shop-admin-page {
  --page-container-inline-space: var(--content-space);
}

body:has(#results-section) #logo,
body.shop-admin-page #logo {
  margin-left: calc(var(--content-space) - var(--page-container-inline-space));
}

body:has(#results-section) .breadcrumb,
body.shop-admin-page .breadcrumb {
  margin-left: calc(5px + var(--content-space) - var(--page-container-inline-space));
}

/* スマホ */

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

	#logo img {
		width: 150px;	/* スマホロゴの幅 */
		margin-top: 50px;
		margin-bottom: 150px;
	}

}

/* mainimg（横スライドショー）
---------------------------------------------------------------------------*/

/* h2見出し */
#mainimg-box h2 {
  font-size: 5vw;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-top: -300px;
  padding: 1rem 3rem;
}

/* h2内の色がついた部分（span） */
#mainimg-box h2 span {
  color: var(--primary-color);
}

/* h2見出しのカギカッコ装飾（共通） */
#mainimg-box h2::before,
#mainimg-box h2::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 50px;
  border: 2px solid var(--base-inverse-color);
}

/* 左上のカギカッコ */
#mainimg-box h2::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

/* 右下のカギカッコ */
#mainimg-box h2::after {
  right: 0;
  bottom: 0;
  border-top: none;
  border-left: none;
}

/* 上段・下段 共通 */
#mainimg-top,
#mainimg-bottom {
  overflow: hidden;
  position: relative;
  background: linear-gradient(transparent 20%, var(--primary-color) 20%);
  color: var(--primary-inverse-color);
}

/* 画像列 共通 */
#mainimg-top .img,
#mainimg-bottom .img {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* 各画像ブロック */
#mainimg-top .img > div,
#mainimg-bottom .img > div {
  flex: 0 0 auto;
}

/* リンク */
#mainimg-top .img a,
#mainimg-bottom .img a {
  display: block;
}

/* 画像 共通 */
#mainimg-top .img img,
#mainimg-bottom .img img {
  display: block;
  padding: 0 1vw;
  height: auto;
  cursor: pointer;
}

/* スライド下の英語表記テキスト */
#mainimg-top .img + p.c,
#mainimg-bottom .img + p.c {
  padding: 2rem;
  font-size: 1.4rem;
}

/* 右から左 */
#mainimg-top .img.rtl,
#mainimg-bottom .img.rtl {
  animation-name: slide-rtl;
}

/* 左から右 */
#mainimg-top .img.ltr,
#mainimg-bottom .img.ltr {
  animation-name: slide-ltr;
}

/* 右から左 */
@keyframes slide-rtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* 左から右 */
@keyframes slide-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Caveatフォント */
.caveat {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}


/* =========================
   Lightbox Gallery
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox.active {
  display: block;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox-inner img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  width: auto;
  height: auto;
  display: block;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  object-fit: contain;
}

/* 閉じる */
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: #111;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

/* 枚数表示 */
.lightbox-counter {
  margin-top: 14px;
  padding: 2px 18px;
  background: #9e7a58;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* 下のナビ */
.lightbox-nav {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 12px;
  width: 80%;
  max-width: 350px;
  justify-content: center;
}

.lightbox-prev,
.lightbox-next {
  flex: 1 1 0;
  min-height: 20px;
  padding: 10px 12px;
  border: none;
  background: rgba(255,255,255,0.95);
  color: #111;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  z-index: 3;
}

/* 元画像 */
.popup-img {
  display: block;
}

.popup-img img {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

/* スマホ */
@media (max-width: 768px) {
  .lightbox-inner {
    padding: 16px 12px 24px;
  }

  .lightbox-inner img {
    max-width: 94vw;
    max-height: 62vh;
  }

  .lightbox-nav {
    max-width: 100%;
    gap: 10px;
  }

  .lightbox-prev,
  .lightbox-next {
    min-height: 56px;
    font-size: 17px;
  }

  .lightbox-close {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }
}
/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
#contents {
	flex: 1;
}

/*コンテンツ内で使用するul,ol要素（リストタグ）*/
#contents ul,#contents ol {
	margin-left: 2rem;
	margin-right: 2rem;
}


/*main
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	font-weight: 500;	/*太さ。200〜900まで指定可能。大きいほど太くなります。*/
	font-size: 1.8rem;	/*文字サイズ180%。*/
}

/*「商品ラインナップ」ブロック
---------------------------------------------------------------------------*/
.list-grid .list * {margin: 0;padding: 0;}

/*ブロック全体を囲むブロック*/
.list-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);	/*2列にする指定。3列にしたければrepeat(3, 1fr)とする。*/
	gap: 1rem;	/*ブロックの間に1文字分のスペースを空ける*/
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*ブロック全体を囲むブロック*/
	.list-grid {
		grid-template-columns: repeat(4, 1fr);	/*4列にする指定。2列にしたければrepeat(2, 1fr)とする。*/
		gap: 2rem;	/*ブロックの間に2文字分のスペースを空ける*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-grid .list {
    display: grid;
	position: relative;
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	overflow: hidden;
}

/*ボックス内のp要素*/
.list-grid .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}
.list-grid .list a {
  display: block;
  color: inherit;
  text-decoration: none;
}

/*「商品ラインナップ」ブロックで使っているアイコン（「NEW」や「UP」）
---------------------------------------------------------------------------*/
/*共通*/
.list-grid .icon-bg1,
.list-grid .icon-bg2,
.list-grid .icon-bg3 {
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	overflow: hidden;
	position: absolute;
	left: 0px;		/*左からの配置場所*/
	top: 0px;		/*上からの配置場所*/
	font-size: 0.85rem;	/*文字サイズ。85%*/
	width: 10rem;		/*幅。10文字分*/
	padding-top: 2rem;	/*テキストの上にとる余白。2文字分。*/
	text-align: center;	/*テキストをセンタリング*/
	transform: rotate(-45deg) translate(-2.4rem,-3rem);	/*反時計回りに45度回転、X軸に-2.4文字分、Y軸に-3文字分移動。*/
	box-shadow: 0px 5px #fff;	/*ボックスの影。アイコンと写真の間の境界線として使っています。*/
}

/*icon-bg1（サンプルだと「NEW」）*/
.list-grid .icon-bg1 {
	background: #ff4242;	/*背景色*/
	color: #fff;			/*文字色*/
}

/*icon-bg2（サンプルだと「UP」）*/
.list-grid .icon-bg2 {
	background: #ff9c00;	/*背景色*/
	color: #fff;			/*文字色*/
}
/*icon-bg2（サンプルだと「UP」）*/
.list-grid .icon-bg3 {
	background: #41c400;	/*背景色*/
	color: #fff;			/*文字色*/
}


/* お客様の声 */
.list-yoko-scroll {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	background: transparent;
}

.list-yoko-scroll::-webkit-scrollbar {
	display: none;
}

.list-yoko-scroll .list {
	width: 60%;
	flex-shrink: 0;
	scroll-snap-align: start;
	padding: 0 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: transparent;
}

@media screen and (min-width: 800px) {
	.list-yoko-scroll .list {
		width: 28%;
	}
}

/* ここが重要 */
.list-yoko-scroll .list figure {
	width: 140px !important;
	height: 140px !important;
	margin: 2rem auto 1rem;
	padding: 0;
	border-radius: 50% !important;
	overflow: hidden !important;
	background: transparent !important;
}

.list-yoko-scroll .list figure img {
	width: 140px !important;
	height: 140px !important;
	display: block;
	object-fit: cover !important;
	border-radius: 50% !important;
	background: transparent !important;
}

/* 見出し */
.list-yoko-scroll .list h4 {
	text-align: left;
	margin-bottom: 1rem;
	line-height: 1.3;
	word-break: break-word;
	overflow-wrap: break-word;
}

/* 本文 */
.list-yoko-scroll .list .text {
	flex: 1;
	font-size: 0.85rem;
	line-height: 1.5;
	text-align: left;
	background: transparent;
	color: #fff;
}
/* Customer testimonials ではカード演出を消す */
.list-yoko-scroll .list,
.list-yoko-scroll .list:hover,
.list-yoko-scroll .list:focus,
.list-yoko-scroll .list:active,
.list-yoko-scroll .list a,
.list-yoko-scroll .list a:hover,
.list-yoko-scroll .list a:focus,
.list-yoko-scroll .list a:active {
	box-shadow: none !important;
	transform: none !important;
	filter: none !important;
	transition: none !important;
	background: transparent !important;
}

/* 親aがブロック化されていても装飾させない */
.list-yoko-scroll .list a {
	display: block;
	text-decoration: none;
}

/* 画像まわりも余計な演出を消す */
.list-yoko-scroll .list figure,
.list-yoko-scroll .list figure:hover,
.list-yoko-scroll .list img,
.list-yoko-scroll .list img:hover {
	box-shadow: none !important;
	transform: none !important;
	filter: none !important;
	transition: none !important;
	background: transparent !important;
}
/*２カラムレイアウト用（下のお知らせブロック用で使っています）
---------------------------------------------------------------------------*/
.news-c2 * {margin: 0;padding: 0;}

/*左側のタイトルブロック*/
.news-c2 .title {
	margin-bottom: 2rem;	/*下に2文字分のスペースを空ける*/
	text-align: center;		/*テキストをセンタリング*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:800px) {

	.news-c2 {
		display: flex;
		gap: 2rem;
	}

	/*左側のタイトルブロック*/
	.news-c2 .title {
		margin-bottom: 0;	/*マージンのリセット*/
		text-align: left;	/*テキストを左寄せ*/
		width: 30%;			/*ブロックの幅*/
	}

	/*右側のテキストブロック*/
	.news-c2 .text {
		flex: 1;
	}

	}/*追加指定ここまで*/


/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.news dd {
	padding-bottom: 1rem;
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.news dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	padding: 0 1rem;		/*上下、左右へのブロック内の余白*/
	width: 8rem;			/*幅。約8文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: #fff;		/*背景色*/
	color:#777;				/*文字色*/
	border: 1px solid #999;	/*枠線の幅、線種、色*/
}

/*icon-bg1。サンプルテンプレートでは「重要」と書いてあるマーク*/
.news .icon-bg1 {
	border-color: transparent;	/*上で設定している線を透明に*/
	background: #cd0000;	/*背景色*/
	color: #fff;			/*文字色*/
}

/*icon-bg2。サンプルテンプレートでは「サービス」と書いてあるマーク*/
.news .icon-bg2 {
	border-color: transparent;	/*上で設定している線を透明に*/
	background: #006acd;	/*背景色*/
	color: #fff;			/*文字色*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*ブロック全体*/
	.news {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}

	}/*追加指定ここまで*/


/*list-c2（お問い合わせ、オンラインショップ）
---------------------------------------------------------------------------*/
.list-c2 > a {
    text-decoration: none;
    display: block;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:800px) {
	
	/*２つのボックスを囲むボックス*/
	.list-c2 {
		display: flex;	/*横並びにする*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-c2 .list {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;		/*文字色*/
	padding: 5rem 2rem;	/*上下、左右へのボックス内の余白*/
	margin: 1rem 0;		/*上下、左右へのマージン*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:800px) {
	
	.list-c2 > * {
		flex: 1;
	}
	.list-c2 .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.list-c2 > a .list {
		height: 100%;
	}

	}/*追加指定ここまで*/


/*左側ボックスの背景*/
.list-c2 .list.image1 {
	background: url("../images/1.webp") no-repeat center center / cover;
}

/*右側ボックスの背景*/
.list-c2 .list.image2 {
	background: url("../images/2.webp") no-repeat center center / cover;
}

/*h4見出し*/
.list-c2 h4 {
	font-weight: 200;	/*細字にする*/
	line-height: 1.2;	/*行間を狭く*/
}

/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
	display: block;
	font-size: 3rem;		/*文字サイズ。3倍。*/
	padding-top: 1.5rem;	/*上に空ける余白*/
	padding-bottom: 3rem;	/*下に空ける余白*/
}
.list-c2 p .main-text {
	text-align: left;
}
	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:800px) {

	.list-c2 h4 .main-text {
		font-size: 4rem;	/*文字サイズ。4倍。*/
	}

	}/*追加指定ここまで*/


/*h4見出し内のサブテキスト（sub-text）*/
.list-c2 h4 .sub-text {
	position: relative;
	padding: 0 5rem;
	line-height: 1.8;
    min-height: 7em;
/*上下、左右への余白設定ですが、両サイドのラインの配置にも影響します。お好みで。*/
}
/*h4見出し内のサブテキストの左右のライン*/
.sub-text::before {left: 0;}
.sub-text::after {right: 0;}
.list-c2 h4 .sub-text::before,.list-c2 h4 .sub-text::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 2rem;	/*線の長さ*/
	border-top: 1px solid #fff;	
	/*ラインの幅、線種、色*/
}

/*見出しの下の説明テキスト*/
.list-c2 .list .text {
	position: relative;z-index: 1;
}
.list-c2 .list .text p {
	position: relative;z-index: 1;
	font-size: 0.85rem;	/*文字サイズ85%*/
	color: #fff;
	line-height: 2;
}

/*マウスオン用のアニメーション*/
.list-c2 .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.3s 0.1s;	/*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}
.list-c2 .list:hover::before {
	transform: translateY(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}


.list-c2 .list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/*フッター
---------------------------------------------------------------------------*/
footer * {margin: 0;padding: 0;}
footer ul {list-style: none;}

/*ブロック全体*/
footer {
	background: #222;
	color: #ccc;
	padding: var(--content-space) var(--content-space) 0;
}

/*フッター内のロゴ画像*/
.footer1 {
	text-align: left;
	margin-bottom: 20px;

}
.footer-logo {
	display: inline-block;
	width: 300px;
	height: auto;
}

/* スマホ */
@media screen and (max-width: 700px) {
	.footer-logo {
		width: 160px;
	}
}
/*ロゴやSNSアイコンが入ったブロック*/
footer div.footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;	/*このブロック内のボックス同士の間に空ける余白。１文字分。*/
}

	/*画面700px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*ブロック全体*/
	footer {
		display: flex;
		gap: 2rem;		/*ロゴのブロックとメニューのブロックとの間の余白。2文字分。*/
	}

	/*ロゴやSNSアイコンが入ったブロック*/
	footer div.footer1 {
		text-align: left;
		width: 40%;	/*幅。40%。*/
	}

	}/*追加指定ここまで*/


/*SNSアイコン
---------------------------------------------------------------------------*/
.sns1 {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;		/*アイコン同士のマージン的な要素。１文字分。*/
}

.sns1 i {
	font-size: 20px;	/*アイコンサイズ*/
}

/*ポップアップ
---------------------------------------------------------------------------*/
#popup * {margin: 0;padding: 0;}

/*ポップアップウィンドウ*/
#popup {
	display: none;
	font-size: 0.9rem;
	padding: 2rem 4rem 1rem;

	position: fixed;
	z-index: 1001;

	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 350px;
	background: #fff;
	color: #555;
	border: 1px solid #333;
	overflow: hidden;
}
/*閉じるボタン*/
#popup .close-btn {
	display: block;
	width: 40px;		/*ボタンの幅*/
	line-height: 40px;	/*ボタンの高さ*/
	text-align: center;
	position: absolute;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	background: #ff0000;	/*背景色*/
	color: #fff;			/*文字色*/
	cursor: pointer;
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none; /* デフォルトは非表示 */
	position: fixed;
	z-index: 1001;
	cursor: pointer;
	right: max(var(--content-space), env(safe-area-inset-right));		/*右からの配置場所*/
	top: calc(max(var(--content-space), env(safe-area-inset-top)) + 2rem);		/*上からの配置場所*/
	width: 148px;	/*ボタンの幅*/
	height: 72px;	/*ボタンの高さ*/
	background: transparent;
	transform-origin: right top;
	transform: scale(1);	/*アイコンのサイズ。100%。このテンプレの場合はOnline Shopボタンと揃えてるので、基本、変更しない方がいいです。*/
	border: none;
	color: #fff;
	font-family: "Roboto", sans-serif;
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1;
	text-transform: uppercase;
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: transparent;
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: none;
	position: absolute;
	left: 17px;
	width: 30px;
	height: 1.5px;		/*線の高さ*/
	background: #fff;	/*線の色*/
	transition: 0.3s;	/*線が切り替わる場合にかける時間。0.3秒。*/
	margin-top: -4px;
}

#menubar_hdr::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle 28px at 57px 60%, #ff8b2b 99%, transparent 100%),
		radial-gradient(circle 36px at calc(100% - 54px) 50%, #ff8b2b 99%, transparent 100%);
}

#menubar_hdr::after {
	content: "Search";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1rem;
	transform: translate(4px, 5px);
}

#menubar_hdr.ham::before {
	background:
		radial-gradient(circle 28px at 57px 60%, #ff8b2b 99%, transparent 100%),
		radial-gradient(circle 36px at calc(100% - 54px) 50%, #ff8b2b 99%, transparent 100%);
}

#menubar_hdr.ham::after {
	content: "Close";
}

/*以下は基本的に変更しない*/
#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}

/* ハンバーガーメニュー展開時 */
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

/*小さな画面での設定*/
.small-screen #menubar_hdr {
	display: flex;
}
#menubar {
  display: none;  /* 初期状態は閉じておく */
}
/* 2番目の線を少し短く */
#menubar_hdr span:nth-of-type(2) {
	width: 22px; /* 30pxから短く */
	left: 17px;  /* 右側に寄せる（または左寄せなら17pxのまま） */
}

/* 3番目の線を中間の長さに */
#menubar_hdr span:nth-of-type(3) {
	width: 15px;
	left: 17px;
}

/* バツ印（.ham）になった時は、綺麗に重なるよう幅を揃える */
#menubar_hdr.ham span {
	width: 30px;    /* 短くしていた2本目と3本目を30pxに戻す */
	left: 17px;     /* 開始位置を17pxに統一して左右のズレをなくす */
}

/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 1000;
	left: auto;
	right: 0px;top: 0px;
    width: 100vw;
	max-width: 100vw;
	height: 100dvh;
	min-height: 100%;
		padding: 132px var(--content-space) 50px;		/*ブロック内の余白。上に100px、左右についてはcss冒頭のcontent-spaceを読み込む、下に50px。*/
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
}

@media screen and (min-width: 800px) {
	.small-screen #menubar {
			width: 50vw;
			max-width: 50vw;
			padding-top: 142px;
			padding-right: 3.4rem;
			padding-left: 3.4rem;
		}
}

.small-screen #menubar {display: none;}

/*メニュー１個あたり*/
.small-screen #menubar a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける。メニュー同士の間隔です。*/
    padding: 1rem 1rem; /* 左右の余白を詰める */
}

/*子メニュー（ドロップダウンメニュー）*/
.small-screen #menubar ul ul a {
	border: none;
	padding: 0;
    margin-left: 3.8rem;	/*左に空けるスペース*/
}

/* =======================
   検索UIデザイン
======================= */

/* タイトル */
.search-title {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

/* 各ブロック */
.search-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

/* ラベル */
.search-box label {
  font-size: 12px;
  margin-bottom: 5px;
  font-weight: 700;
  opacity: 1;
}

/* セレクト（ボタン風） */
.search-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 44px;
  box-sizing: border-box;
  padding: 0.55rem 2.5rem 0.55rem 0.65rem;
  border: none;
  background: #fff;
  color: #333;
  font-size: 1rem;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
}

/* フォーカス */
.search-box select:focus {
  outline: none;
}

.search-check-box {
  margin-top: 2px;
}

.search-check-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  box-sizing: border-box;
  padding: 0.35rem 0;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  line-height: 1.3;
  box-shadow: none;
  cursor: pointer;
}

.search-check-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent-color, #ff8a2a);
}

.search-check-label span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.credit-filter-box .search-check-label {
  display: grid;
  grid-template-columns: auto;
  justify-content: start;
  align-items: center;
  row-gap: 0.26rem;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.credit-filter-box .search-check-label span {
  grid-column: 1 / -1;
  grid-row: 1;
  color: #fff;
  font-weight: 700;
}

.credit-filter-box .search-check-label input[type="checkbox"] {
  grid-column: 1;
  grid-row: 2;
}

/* ボタン */
.search-btn {
  margin-top: 10px;
  padding: 12px;
  border: none;
  background: #fff;
  color: #0e211f;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

/* ホバー */
.search-btn:hover {
  background: #f2f2f2;
}
/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 50;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 50px;		/*下からの配置場所指定*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: var(--primary-color);	/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}

body.noscroll .pagetop,
body.noscroll .pagetop a {
	pointer-events: none;
}

body.noscroll .pagetop {
	visibility: hidden;
	opacity: 0;
}

body.noscroll .pagetop a {
	z-index: 1;
}


/*svgアニメーション（大きな背景ラインアニメーション）
このcssの他、htmlの一番下の「SVGアニメーション」というブロックで指定があります。
---------------------------------------------------------------------------*/
#kazari1 {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-miterlimit: 10;
	stroke: #fff;		/*これは線の色ではありません。線色はsvg画像を直接編集して下さい。*/
	stroke-width: 30;	/*svgをなぞった際の線幅をここで設定*/
	width: 100%;
}


/*bg1背景色（「お客様の声」ブロックで使用）
---------------------------------------------------------------------------*/
.bg1 {
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
}


/*sectionの両サイドの余白を相殺するスタイル
---------------------------------------------------------------------------*/
.margin-lr0 {
	margin: 0 calc(-1 * var(--content-space));
}

@media screen and (max-width: 800px) {
  body.shop-admin-page {
    --page-container-inline-space: 0.8rem;
  }

  body.shop-admin-page footer.margin-lr0 {
    margin-left: calc(-1 * var(--page-container-inline-space));
    margin-right: calc(-1 * var(--page-container-inline-space));
  }
}


pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

.breadcrumb {
  margin-top: 0;
  margin-bottom: 35px;
  margin-left: 5px;
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body:has(.breadcrumb) #contents > main > section:first-child {
  padding-top: 0;
}

body:has(.breadcrumb) #mainimg-box h2 {
  margin-top: 0;
}

.breadcrumb li {
  color: #000;
}

.breadcrumb li + li::before {
  content: ">";
  margin: 0 8px;
  color: #aaa;
}

.breadcrumb a {
  color: #000;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}
#results-section { display:none; }

.search-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

/* 全ボタンリセット＆共通化 */
.search-buttons button,
.search-buttons input[type="submit"] {
  all: unset;                /* 既存スタイルを完全リセット */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.8rem;
  margin-top: 30px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  box-sizing: border-box;
  color: #fff;
}

#menuContent > form > .search-buttons button {
  flex: 0 0 8.8rem;
  width: 8.8rem;
  min-height: 44px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

/* Searchボタン */
.search-buttons .search-btn {
  background: linear-gradient(135deg, #FF7E5F, #FEB47B);
}
.search-buttons .search-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #FF9472, #FFB98C);
}

/* Resetボタン */
.search-buttons .reset-btn {
  background: linear-gradient(135deg, #6C63FF, #9B8FFF);
}
.search-buttons .reset-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #8171FF, #B1A3FF);
}

.id-search button {
  margin-top: 0;
  min-height: 44px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.id-search {
  display: flex;
  flex-direction: column; /* ←縦並び */
  margin-top: 30px;        /* 上の余白 */
  padding-top: 20px;       /* 線と中身の間 */
  border-top: 1px solid #ccc; /* 区切り線 */

  gap: 8px;
}

.id-search > label {
  font-weight: 700;
  opacity: 1;
}

.id-search .input-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.id-search input[type="text"],
.id-search input[type="search"],
.id-search input[type="date"] {
  min-width: 0;
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  padding: 0.55rem 0.65rem;
  border: none;
  background: #fff;
  color: #333;
  font-size: 1rem;
  line-height: 1.3;
  text-align: left;
  text-indent: 0;
}

.id-search input::placeholder {
  color: #8a8a8a;
}

@media (max-width: 600px) {
  #menubar input[type="text"],
  #menubar input[type="search"],
  #menubar input[type="date"],
  #menubar input[type="email"],
  #menubar input[type="tel"],
  #menubar select,
  #menubar textarea {
    font-size: 16px;
  }
}

#menubar > .reservation-lookup-search {
  margin: 80px 0 1rem !important;
  padding: 0.9rem;
  border: 1px solid rgba(220, 205, 189, 0.78);
  background: rgba(250, 247, 242, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.reservation-lookup-search > label {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reservation-lookup-message {
  margin: 0.5rem 0 0;
  font-size: 0.86rem;
}

.reservation-lookup-message.is-error {
  color: #ffe0dc;
}

.reservation-lookup-message.is-success {
  color: #e5ffe9;
}
/* option の背景色やフォントは限定的に可能 */
select option {
  background-color: #f0f0f0;
  color: #333;
  padding: 0.5rem 1rem;
}

.accordion-008 {
max-width: auto;
margin-bottom: 20px;
background-color: var(--primary-color);
padding: 0 1em;
	
}

.accordion-008 summary {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
padding: 1em 2em;
color: #fff;
font-weight: 300;
cursor: pointer;

}

.accordion-008 summary::-webkit-details-marker {
display: none;

}

.accordion-008 summary::after {
transform: translateY(-25%) rotate(45deg);
width: 7px;
height: 7px;
margin-left: 10px;
border-bottom: 2px solid #fff;
border-right: 2px solid #fff;
content: '';
transition: transform .3s;

}

.accordion-008[open] summary::after {
transform: rotate(225deg);

}

.accordion-008 p {
transform: translateY(0px);
opacity: 0;
margin: 0;
padding: 3em 2em 1.5em;
color: var(--base-inverse-color);

}

.accordion-008[open] p {
transform: none;
opacity: 1;

}


.ta2 caption {
font-weight: bold;
padding: 0.2rem 1rem;
background: rgba(0,0,0,0.1);
color: #fff;
margin-bottom: 1rem;

}

.ta2 {
table-layout: fixed;
border-top: 1px solid rgba(0,0,0,0.3);
width: 100%;
margin-bottom: 2rem;

}

.ta2 tr {
border-bottom: 1px solid rgba(0,0,0,0.3);
}

.ta2 th, 
.ta2 td {
padding: 1rem;
word-break: break-all;
color: #fff;
}

.ta2 th {
width: 70%;
text-align: left;
margin-left: 0px;
padding-left: 20px;
}
.ta2 td {
width: 30%;
text-align: right;
margin-right: 0px;
padding-right: 20px;
}

.shop-menu-dynamic {
margin-top: 1.5rem;
}

.shop-section-head {
margin: 2rem 0 1rem;
}

.shop-section-head h3 {
margin: 0;
}

.shop-menu-loading {
padding: 1rem;
border: 1px solid rgba(158, 122, 88, 0.22);
color: var(--base-inverse-color);
}

.shop-menu-empty {
padding: 1rem;
border: 1px solid rgba(158, 122, 88, 0.22);
background: #faf7f2;
color: #725538;
}

.shop-menu-item-name,
.shop-menu-item-desc {
display: block;
}

.shop-menu-item-desc {
margin-top: 0.25rem;
font-size: 0.82rem;
font-weight: 400;
line-height: 1.5;
opacity: 0.82;
}

.ta1 {
border-collapse: separate;
border-spacing: 0 0.45rem;
width: 100%;
}

.ta1 th,
.ta1 td {
vertical-align: top;
}

.ta1 th {
width: 7.8rem;
min-width: 7.8rem;
padding: 0.05rem 0;
text-align: center;
white-space: nowrap;
}

.menu-info-label {
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
min-height: 1.55em;
padding: 0.1rem 0.3rem;
border: 1px solid #d8c9b8;
background: #fff7ed;
color: #744719;
font-size: 0.82rem;
font-weight: 700;
line-height: 1.35;
white-space: nowrap;
}

.ta1 td {
min-width: 0;
padding: 0.05rem 0 0.05rem 0.65rem;
overflow-wrap: anywhere;
}

.menu-info-hours {
white-space: nowrap;
}

@media screen and (max-width: 799px) {
  .ta1 th {
    width: 7rem;
    min-width: 7rem;
  }

  .menu-info-label {
    padding-right: 0.25rem;
    padding-left: 0.25rem;
    font-size: 0.78rem;
  }

  .ta1 td {
    padding-left: 0.5rem;
  }
}

@media screen and (min-width:800px) {

.ta2 th {
width: 70%;
text-align: left;
margin-left: 0px;
padding-left: 150px;
}
.ta2 td {
width: 50%;
text-align: right;
margin-right: 0px;
padding-right: 150px;
}


.ta2 th figure {
width: 100%;
height: 280px;
overflow: hidden;
margin: 0;
}


.ta2 th figure img {
width: 100%; 
height: 100%;
object-fit: cover;
object-position: center;
max-width: none;
display: block;
}
}

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

.accordion-008 {
padding-left: 0.55em;
padding-right: 0.55em;
}

.accordion-008 summary {
padding-left: 1.2em;
padding-right: 1.2em;
}

.ta2 th,
.ta2 td {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
word-break: normal;
}

.ta2 th {
width: 58%;
padding-left: 0.45rem;
padding-right: 0.85rem;
overflow-wrap: anywhere;
}

.ta2 td {
width: 42%;
padding-left: 0.35rem;
padding-right: 0.45rem;
white-space: nowrap;
word-break: keep-all;
overflow-wrap: normal;
font-size: 0.86rem;
}
}

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

.ta2 td {
font-size: 0.8rem;
}
}

/* ================================
   近隣ワルンスライダー（完全版）
================================ */

/* 親 */
.nearby-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
  min-height: 196px;
}

/* カード */
.nearby-card {
  flex: 0 0 220px;
  max-width: 220px;
  scroll-snap-align: start;
}

.nearby-card a {
  color: inherit;
  text-decoration: none;
}

.nearby-card a:hover,
.nearby-card a:hover strong,
.nearby-card a:hover .nearby-area,
.nearby-card a:hover .nearby-distance {
  text-decoration: none;
}

/* 画像 */
.nearby-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* テキスト */
.nearby-card .text {
  margin-top: 5px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.nearby-card strong,
.nearby-card .nearby-area,
.nearby-card .nearby-distance {
  display: block;
}

.nearby-card .nearby-area,
.nearby-card .nearby-distance {
  margin-top: 2px;
  color: #666;
  font-size: 0.82rem;
}

.nearby-message {
  flex: 1 0 100%;
  margin: 0;
}

/* ================================
   ワルン紹介（完全版）
================================ */

.shop-intro {
  max-width: auto;
  margin: 40px auto;
  padding: 20px;
  line-height: 1.8;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* カード（角あり） */
.intro-block {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 22px;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.25s ease;
}

/* 左ラインアクセント（シャープ） */
.intro-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #111;
}

/* ホバー（控えめに上品） */
.intro-block:hover {
  border-color: #111;
  transform: translateY(-2px);
}

/* 見出し */
.shop-intro h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
  letter-spacing: 0.5px;
}

.shop-intro h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

/* 本文 */
.shop-intro p {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}

/* キャッチコピー */
.message {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  border-left: 3px solid #000;
  padding-left: 10px;
  margin-bottom: 16px;
}

/* セクションごとの違いを少しだけ */
.intro-block:nth-child(3)::before {
  background: #ff6b00; /* フード感（オレンジ） */
}
  .intro-block {
	text-align:justify;
	word-break:break-all; 
	text-justify:inter-ideograph;
	text-justify:inter-character;
	word-wrap:break-word;
	overflow-wrap:break-word;
	margin-bottom: -40px;
  }

/* モバイル */
@media (max-width: 800px) {
  .shop-intro {
	text-align:justify;
	word-break:break-all; 
	text-justify:inter-ideograph;
	text-justify:inter-character;
	word-wrap:break-word;
	overflow-wrap:break-word;
  }

  .intro-block {
	text-align:justify;
	word-break:break-all; 
	text-justify:inter-ideograph;
	text-justify:inter-character;
	word-wrap:break-word;
	overflow-wrap:break-word;
	margin-bottom: -40px;
  }

  .shop-intro h2 {
    font-size: 18px;
  }
}

/* 必要に応じて search-results.html の CSS を継承 */
.search-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.search-btn, .reset-btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.search-btn { background: linear-gradient(135deg, #FF7E5F, #FEB47B); }
.reset-btn { background: linear-gradient(135deg, #6A82FB, #FC5C7D); }
.search-btn:hover { transform: translateY(-3px); background: linear-gradient(135deg, #FF9472, #FFB98C); }
.reset-btn:hover { transform: translateY(-3px); background: linear-gradient(135deg, #8C9EFF, #FF6F95); }
.search-btn:active, .reset-btn:active { transform: translateY(0); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* Reservation pages
---------------------------------------------------------------------------*/
.reservation-page {
  max-width: 1100px;
  margin: 0;
}

@media screen and (min-width: 801px) {
  body.shop-admin-page .reservation-page {
    margin-left: auto;
    margin-right: auto;
  }
}

.reservation-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.reservation-head h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  font-weight: 700;
}

.reservation-head p {
  margin: 0;
}

.reservation-kicker {
  margin: 0 0 0.3rem;
  color: var(--primary-color);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.6fr);
  gap: 1.5rem;
  align-items: start;
}

.reservation-summary,
.reservation-form,
.reservation-dashboard-head,
.admin-toolbar,
.reservation-table-wrap {
  min-width: 0;
  border: 1px solid rgba(158, 122, 88, 0.28);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.reservation-summary {
  padding: 1.4rem;
  position: sticky;
  top: 1rem;
}

.reservation-summary h3,
.reservation-dashboard-head h3 {
  margin: 0 0 0.5rem;
  line-height: 1.3;
  font-size: 1.4rem;
}

.reservation-form {
  padding: 1.4rem;
}

.admin-login {
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid.three {
  grid-template-columns: 1.2fr 1fr 0.8fr;
}

.form-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.field {
  margin-bottom: 1rem;
}

.field.compact {
  margin-bottom: 0;
}

.field label {
  display: block;
  margin-bottom: 0.25rem;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.4;
}

.field input,
.field select,
.field textarea,
.reservation-table select,
.reservation-table input {
  width: 100%;
  min-height: 54px;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(158, 122, 88, 0.35);
  background: #fff;
  color: var(--base-inverse-color);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}
/* Pengaturan Reservasi 入力欄の高さ調整 */
.admin-settings-panel .field input,
.admin-settings-panel .field select,
.admin-settings-panel input[type="time"],
.admin-settings-panel input[type="number"],
.admin-settings-panel select {
  height: 38px;
  min-height: 38px;
  padding: 0.25rem 0.6rem;
  line-height: 1.2;
  box-sizing: border-box;
}

.field textarea {
  resize: vertical;
}

.table-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.table-selector-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.45rem;
  border: 1px solid rgba(158, 122, 88, 0.28);
  background: #faf7f2;
}

.table-selector-item span {
  min-width: 1.4rem;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
}

.table-selector-item select {
  min-height: 44px;
  padding: 0.45rem 0.55rem;
  background-color: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.reservation-table select:focus,
.reservation-table input:focus {
  outline: 2px solid rgba(158, 122, 88, 0.25);
  border-color: var(--primary-color);
}

.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--base-inverse-color);
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-out;
}

.phone-input-group {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) minmax(220px, 1fr);
  gap: 0.55rem;
}

.phone-input-group select {
  min-width: 0;
}

.phone-number-control {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 54px;
  border: 1px solid rgba(158, 122, 88, 0.35);
  background: #fff;
}

.phone-number-control:focus-within {
  outline: 2px solid rgba(158, 122, 88, 0.25);
  border-color: var(--primary-color);
}

.phone-plus,
.phone-dial-code {
  flex: 0 0 auto;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.phone-plus {
  padding-left: 0.8rem;
}

.phone-dial-code {
  padding: 0 0.65rem 0 0.12rem;
  border-right: 1px solid rgba(158, 122, 88, 0.22);
}

.field .phone-number-control input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0.75rem 0.85rem;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.reservation-calendar {
  padding: 0.85rem;
  border: 1px solid rgba(158, 122, 88, 0.35);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: opacity 0.2s, filter 0.2s;
}

.reservation-calendar.is-disabled {
  opacity: 0.34;
  pointer-events: none;
  filter: grayscale(0.35);
}

.calendar-header {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.calendar-header strong {
  font-size: clamp(1.5rem, 4.5vw, 2.3rem);
  line-height: 1.2;
  text-align: center;
}

.calendar-nav {
  min-height: 42px;
  border: 1px solid rgba(158, 122, 88, 0.35);
  background: #faf7f2;
  color: var(--base-inverse-color);
  font-size: 1.7rem;
  font-weight: 700;
  cursor: pointer;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.22rem;
}

.calendar-weekday {
  padding: 0.1rem 0;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.95rem, 3vw, 1.25rem);
  font-weight: 700;
  text-align: center;
}

.calendar-day,
.calendar-blank {
  min-height: 46px;
}

.calendar-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: #fff;
  color: var(--base-inverse-color);
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.25rem, 4vw, 1.8rem);
  font-weight: 700;
  cursor: pointer;
}

.calendar-day small {
  display: block;
  margin-top: 0.05rem;
  max-width: 100%;
  font-size: 0.48em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.calendar-day:hover {
  border-color: var(--primary-color);
  background: #faf7f2;
}

.calendar-day.is-today {
  border-color: rgba(158, 122, 88, 0.45);
}

.calendar-day.is-selected {
  background: var(--primary-color);
  color: var(--primary-inverse-color);
}

.calendar-day.is-closed {
  border-color: rgba(180, 81, 69, 0.28);
  background: rgba(180, 81, 69, 0.08);
  color: #9b4a40;
}

.calendar-day.is-regular-closed {
  border-color: rgba(158, 122, 88, 0.32);
  background: #faf7f2;
  color: #725538;
}

.calendar-day.is-closed.is-regular-closed {
  border-color: rgba(180, 81, 69, 0.28);
  background: rgba(180, 81, 69, 0.08);
  color: #9b4a40;
}

.calendar-day.is-closed.is-selected {
  background: #9b4a40;
  color: #fff;
}

.calendar-day.is-regular-closed.is-selected {
  background: var(--primary-color);
  color: var(--primary-inverse-color);
}

.calendar-reservation-dots {
  display: flex;
  gap: 0.16rem;
  justify-content: center;
  margin-top: 0.18rem;
}

.calendar-reservation-dot {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: #f28565;
}

.calendar-day.is-selected .calendar-reservation-dot,
.calendar-day.is-closed.is-selected .calendar-reservation-dot,
.calendar-day.is-regular-closed.is-selected .calendar-reservation-dot {
  background: #fff;
}

.calendar-day:disabled {
  color: #b8b8b8;
  cursor: not-allowed;
  opacity: 0.55;
}

.calendar-day.is-closed:disabled {
  color: #9b4a40;
  opacity: 0.75;
}

.people-slot-row,
.time-slot-grid {
  display: flex;
  gap: 0.65rem;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  padding: 0.15rem 0 0.35rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.time-slot-grid.is-disabled {
  opacity: 0.48;
  pointer-events: none;
}

.time-slot-grid.is-loading {
  opacity: 1;
  pointer-events: none;
}

.time-slot-grid .reservation-muted {
  flex: 1 0 100%;
  margin: 0;
}

.time-slot-grid.is-loading .reservation-muted {
  color: var(--base-inverse-color);
}

.time-slot-grid .inline-loading {
  justify-content: flex-start;
}

.people-slot-btn,
.time-slot-btn {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-height: 48px;
  padding: 0.55rem 0.45rem;
  border: 1px solid rgba(158, 122, 88, 0.38);
  background: #faf7f2;
  color: var(--base-inverse-color);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.people-slot-btn {
  min-width: 92px;
  font-size: 1.05rem;
}

.time-slot-btn {
  min-width: 92px;
}

.people-slot-btn:hover,
.time-slot-btn:hover {
  border-color: var(--primary-color);
  background: #fff;
}

.people-slot-btn.is-selected,
.time-slot-btn.is-selected {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--primary-inverse-color);
}

.reservation-selected-shop {
  min-height: 54px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(158, 122, 88, 0.35);
  background: #faf7f2;
  line-height: 1.5;
}

.reservation-selected-shop strong,
.reservation-selected-shop span {
  display: block;
}

.reservation-selected-shop strong {
  font-size: 1.08rem;
}

.reservation-selected-shop span {
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

.reservation-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: flex-end;
  margin-top: 1rem;
}

.reservation-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.reservation-notice {
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border-left: 5px solid var(--primary-color);
  background: rgba(158, 122, 88, 0.1);
  line-height: 1.6;
}

.notice-success {
  border-left-color: #4f8a5b;
  background: rgba(79, 138, 91, 0.12);
}

.notice-error {
  border-left-color: #b45145;
  background: rgba(180, 81, 69, 0.12);
}

.shop-unavailable {
  box-sizing: border-box;
  margin: 3rem auto;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid rgba(158, 122, 88, 0.28);
  background: rgba(250, 247, 242, 0.78);
}

.shop-unavailable h2 {
  margin-top: 0;
}

.shop-unavailable-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0;
}

.shop-unavailable-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.55rem 1.2rem;
  text-decoration: none;
}

.reservation-muted {
  color: #6f6f6f;
}

.reservation-complete-page {
  display: flex;
  align-items: center;
  min-height: 46vh;
}

.reservation-complete-panel {
  width: 100%;
  box-sizing: border-box;
  padding: clamp(1.6rem, 5vw, 3rem);
  border: 1px solid rgba(158, 122, 88, 0.28);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.reservation-complete-panel h2 {
  margin: 0;
  font-size: clamp(1rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 700;
  white-space: nowrap;
}

.reservation-complete-id {
  margin: 1rem 0 0;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.95rem, 3.6vw, 1.15rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.reservation-complete-actions {
  justify-content: center;
  margin-top: 1.8rem;
}

.reservation-complete-actions .search-btn {
  min-width: 180px;
  text-align: center;
  text-decoration: none;
}

.reservation-cancel-card h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3.8vw, 2.1rem);
  line-height: 1.25;
}

.reservation-cancel-details {
  margin-bottom: 1rem;
  border: 1px solid rgba(158, 122, 88, 0.24);
  background: #faf7f2;
}

.reservation-cancel-details dl {
  margin: 0;
}

.reservation-cancel-detail-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.35fr) minmax(0, 1fr);
  border-bottom: 1px solid rgba(158, 122, 88, 0.18);
}

.reservation-cancel-detail-row:last-child {
  border-bottom: none;
}

.reservation-cancel-detail-row dt,
.reservation-cancel-detail-row dd {
  margin: 0;
  padding: 0.75rem 0.85rem;
  line-height: 1.45;
}

.reservation-cancel-detail-row dt {
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.reservation-cancel-detail-row dd {
  overflow-wrap: anywhere;
}

.reservation-status-detail-row dd {
  overflow-wrap: normal;
}

.reservation-status-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.reservation-status-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.35rem 0.45rem;
  border: 1px solid rgba(158, 122, 88, 0.28);
  background: #fff;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.reservation-status-step.is-active {
  color: #fff;
}

.reservation-status-step.is-pending {
  border-color: #c68b52;
  background: #c68b52;
}

.reservation-status-step.is-confirmed {
  border-color: #4f8a5b;
  background: #4f8a5b;
}

.reservation-status-step.is-cancelled {
  border-color: #b45145;
  background: #b45145;
}

.reservation-status-step.is-completed {
  border-color: #5c6f82;
  background: #5c6f82;
}

.reservation-cancel-page-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.reservation-cancel-page-actions .reset-btn {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.reservation-manage-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.reservation-manage-actions .search-btn {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}

.reservation-manage-primary-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin: 1rem 0;
}

.reservation-manage-primary-actions .search-btn,
.reservation-manage-primary-actions .reservation-cancel-page-btn {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
}

.reservation-manage-primary-actions .search-btn.is-active {
  background: linear-gradient(135deg, #9e7a58, #c6a27a);
}

.reservation-change-panel {
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.reservation-change-panel.is-locked {
  opacity: 0.5;
  filter: grayscale(0.15);
  pointer-events: none;
  user-select: none;
}

.reservation-change-panel.is-locked .reservation-calendar.is-disabled,
.reservation-change-panel.is-locked .time-slot-grid.is-disabled {
  opacity: 1;
  filter: none;
}

.reservation-cancel-page-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.8rem;
  border: none;
  background: linear-gradient(135deg, #b94a3f, #df765d) !important;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.reservation-cancel-page-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ca5b50, #ea876e) !important;
}

.reservation-cancel-page-btn:disabled {
  background: linear-gradient(135deg, #b94a3f, #df765d) !important;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.reservation-cancel-page-btn.is-disabled {
  pointer-events: none;
  opacity: 0.65;
  transform: none;
}

.reservation-dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.3rem;
}

.reservation-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(96px, 1fr));
  gap: 0.75rem;
}

.reservation-stats div {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(158, 122, 88, 0.25);
  background: #faf7f2;
  text-align: center;
}

.reservation-stats strong {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.reservation-stats span {
  display: block;
  color: #725538;
  font-size: 0.9rem;
}

.admin-toolbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
}

.admin-toolbar .field {
  width: 100%;
}

.admin-toolbar > .reset-btn {
  width: 100%;
  min-width: 0;
  min-height: 54px;
}

.admin-date-filter-field {
  flex: 1 1 auto;
  max-width: none;
}

.admin-inline-calendar {
  width: 100%;
  box-sizing: border-box;
}

.admin-inline-calendar .calendar-header strong,
.admin-inline-calendar .calendar-nav {
  color: var(--base-inverse-color);
}

.admin-filter-calendar {
  max-width: none;
}

.admin-calendar-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.65rem;
}

.admin-calendar-clear {
  min-height: 38px;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(158, 122, 88, 0.35);
  background: #faf7f2;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.reservation-table-wrap {
  margin-bottom: 1.5rem;
  overflow-x: auto;
}

.reservation-table {
  width: 100%;
  min-width: 1420px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.reservation-table th,
.reservation-table td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(158, 122, 88, 0.18);
  text-align: left;
  vertical-align: top;
}

.reservation-table th {
  background: #faf7f2;
  color: #725538;
  font-family: "Roboto", sans-serif;
  white-space: nowrap;
}

.reservation-table .reservation-date-cell,
.reservation-table .reservation-time-cell,
.reservation-table .reservation-id-cell {
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
}

.reservation-id-cell {
  min-width: 168px;
}

.reservation-id-cell code {
  display: inline-block;
  padding: 0.25rem 0.4rem;
  border: 1px solid rgba(158, 122, 88, 0.28);
  background: #fbf6ef;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem;
}

.reservation-table select {
  min-width: 96px;
}

.reservation-table input {
  min-width: 190px;
}

.reservation-source {
  display: block;
  color: #777;
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
}

.reservation-name-cell {
  min-width: 150px;
}

.reservation-name-cell strong {
  display: block;
  white-space: nowrap;
}

.reservation-table-cell {
  min-width: 82px;
}

.reservation-table select.reservation-table-select {
  width: 74px;
  min-width: 74px;
  min-height: 44px;
  padding: 0.45rem 0.45rem;
}

.reservation-phone-cell {
  min-width: 145px;
}

.reservation-phone-number,
.reservation-phone-country {
  display: block;
  white-space: nowrap;
}

.reservation-phone-country {
  margin-top: 0.2rem;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
}

.reservation-message-cell {
  min-width: 170px;
  max-width: 260px;
}

.reservation-received-cell {
  min-width: 132px;
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
  font-size: 0.88rem;
}

.reservation-status-cell {
  width: 112px;
  padding-right: 0.45rem;
  padding-left: 0.45rem;
}

.reservation-table select.reservation-status-select {
  width: 108px;
  min-width: 108px;
  min-height: 44px;
  padding: 0.45rem 0.45rem;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--primary-color);
  background: var(--primary-color);
  color: var(--primary-inverse-color);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.menu-info-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.menu-info-head h3 {
  margin: 0;
}

.reserve-cta-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  min-width: 220px;
  min-height: 50px;
  padding: 0.55rem 0.58rem 0.55rem 1.3rem;
  border: 1px solid rgba(158, 122, 88, 0.28);
  background: linear-gradient(135deg, #ff8568 0%, #f4a35f 100%);
  color: #fff;
  box-shadow: none;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(0);
  transition: border-color 0.25s ease, filter 0.25s ease;
}

.reserve-cta-text {
  position: relative;
  z-index: 1;
}

.reserve-cta-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #a66e4b;
  transition: transform 1s cubic-bezier(0.72, 0, 0.2, 1), background-color 0.25s ease, color 0.25s ease;
}

.reserve-cta-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.reserve-cta-btn:hover:hover {
  color: #fff;
  filter: none;
  border-color: rgba(158, 122, 88, 0.55);
}

.reserve-cta-btn:hover .reserve-cta-icon {
  background: var(--primary-color);
  color: #fff;
}

.reserve-cta-btn.is-activating {
  pointer-events: none;
  border-color: rgba(158, 122, 88, 0.65);
}

.reserve-cta-btn.is-activating .reserve-cta-icon {
  background: var(--primary-color);
  color: #fff;
  transform: translateX(var(--reserve-icon-travel, 0)) rotate(720deg);
}

@media screen and (min-width: 800px) {
  .reserve-cta-btn {
    min-width: 280px;
  }
}

@media screen and (max-width: 799px) {
  .small-screen #menubar_hdr {
    right: calc(env(safe-area-inset-right) + 0.45rem);
  }

  .menu-info-head {
    align-items: stretch;
    flex-direction: column;
    gap: 0.8rem;
  }

  .reserve-cta-btn {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-left: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reserve-cta-icon {
    transition: background-color 0.25s ease, color 0.25s ease;
  }

  .reserve-cta-btn.is-activating .reserve-cta-icon {
    transform: none;
  }
}

.admin-add-panel {
  margin-top: 1.5rem;
}

.admin-settings-panel {
  margin-bottom: 1.5rem;
}

.admin-menu-panel {
  margin-bottom: 1.5rem;
}

.admin-menu-form {
  display: block;
  padding-top: 0.65rem;
}

.admin-menu-form > .reservation-muted:first-child {
  margin-top: 0;
  margin-bottom: 0.75rem;

}

.admin-menu-rows {
  display: grid;
  gap: 0.75rem;
}

.admin-lazy-state {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 1rem;
  border: 2px solid rgba(158, 122, 88, 0.26);
  background: #fff;
  color: #725538;
  line-height: 1.5;
}

.admin-lazy-state strong {
  display: block;
  color: var(--base-inverse-color);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.admin-lazy-state span {
  color: rgba(80, 55, 35, 0.72);
}

.admin-lazy-loading {
  background: rgba(255, 248, 239, 0.98);
}

.admin-lazy-error {
  border-color: rgba(184, 77, 64, 0.35);
  background: rgba(252, 238, 236, 0.98);
}

.admin-lazy-error strong {
  color: #9c3f36;
}

.admin-lazy-state .inline-loading {
  justify-content: flex-start;
  color: var(--base-inverse-color);
}

.admin-lazy-state .loading-text {
  color: inherit;
}

.admin-lazy-retry {
  justify-self: start;
  margin-top: 0.35rem;
}

.admin-menu-panel[data-admin-loading="true"] #adminAddMenuItem,
.admin-menu-panel[data-admin-loading="true"] #adminSaveMenus,
.admin-filter-panel[data-admin-loading="true"] #adminRefresh {
  opacity: 0.62;
  cursor: wait;
}

.admin-menu-category-list {
  display: grid;
  gap: 0.75rem;
}

.admin-menu-category-panel {
  border: 2px solid rgba(158, 122, 88, 0.24);
  background: rgba(255, 255, 255, 0.95);
}

.admin-menu-category-panel summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.8rem 1rem;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.admin-menu-category-panel summary > span {
  flex: 1 1 auto;
  min-width: 0;
}

.admin-menu-category-panel summary small {
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
  color: rgba(114, 85, 56, 0.75);
  font-size: 0.85rem;
  font-weight: 700;
}

.admin-menu-category-body {
  display: grid;
  gap: 0.75rem;
  padding: 0 0.75rem 0.75rem;
}

.admin-menu-row {
  display: grid;
  grid-template-columns: minmax(88px, 0.45fr) minmax(130px, 0.75fr) minmax(180px, 1.05fr) minmax(220px, 1.3fr) minmax(120px, 0.65fr) auto auto;
  align-items: start;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 2.5px solid rgba(158, 122, 88, 0.22);
  background: #fff;
}

.admin-menu-order-cell {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto 42px;
  align-items: start;
  align-content: start;
  gap: 0.25rem 0.5rem;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
}

.admin-menu-order-cell > span {
  font-size: 0.84rem;
  line-height: 1.4;
}

.admin-menu-order-cell > strong {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #10231f;
}

.admin-menu-move-actions {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  height: 42px;
}

.admin-menu-move {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 100%;
  min-height: 0;
  padding: 0;
  line-height: 1;
}

.admin-menu-move:disabled {
  opacity: 0.35;
  cursor: default;
}

.admin-menu-row .field {
  margin-bottom: 0;
}

.admin-menu-row input,
.admin-menu-row select,
.admin-menu-row textarea {
  box-sizing: border-box;
  height: 42px;
  min-height: 42px;
  padding: 0.45rem 0.65rem;
  line-height: 1.35;
}

.admin-menu-row textarea {
  height: 42px;
  resize: none;
  overflow: hidden;
  line-height: 1.45;
  transition: height 0.18s ease;
}

.admin-menu-desc-field {
  position: relative;
  z-index: 1;
}

.admin-menu-desc-field:hover,
.admin-menu-desc-field:focus-within {
  z-index: 5;
}

.admin-menu-desc-field textarea:hover,
.admin-menu-desc-field textarea:focus {
  overflow: auto;
  background: #fff;
}

.admin-menu-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 42px;
  margin: 1.65rem 0 0;
  color: #725538;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.admin-menu-remove {
  align-self: start;
  min-height: 42px;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  margin-top: 1.65rem;
}

.admin-menu-active input {
  width: auto;
  min-width: 0;
  height: auto;
}

.admin-menu-actions {
  justify-content: space-between;
  margin-top: 1rem;
}

/* Pengaturan Reservasi：曜日ボタンの見た目はそのまま、横幅いっぱい */
.admin-settings-panel .weekday-toggle-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.5rem;
  width: 100%;
}

.admin-settings-panel .weekday-toggle-btn {
  min-width: 0;
}

/* スマホだけ：曜日文字を中央へ */
@media screen and (max-width: 800px) {
  .admin-settings-panel .weekday-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
  }
}

.weekday-toggle-btn,
.closed-date-chip {
  min-height: 42px;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(158, 122, 88, 0.38);
  background: #faf7f2;
  color: var(--base-inverse-color);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.weekday-toggle-btn.is-selected,
.closed-date-chip {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--primary-inverse-color);
}


.closed-date-control {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.closed-date-control .reset-btn {
  align-self: start;
  min-height: 54px;
}

@media screen and (max-width: 800px) {
  .reservation-layout,
  .form-grid,
  .form-grid.two,
  .form-grid.three,
  .form-grid.five {
    grid-template-columns: 1fr;
  }

  .reservation-summary {
    position: static;
  }

  .reservation-form,
  .reservation-summary,
  .reservation-dashboard-head,
  .admin-toolbar {
    padding: 1rem;
  }

  .phone-input-group {
    grid-template-columns: minmax(128px, 0.9fr) minmax(0, 1.1fr);
    gap: 0.45rem;
  }

  .phone-input-group select {
    padding-right: 0.45rem;
    padding-left: 0.55rem;
    font-size: 0.9rem;
  }

  .phone-plus {
    padding-left: 0.55rem;
  }

  .phone-dial-code {
    padding-right: 0.42rem;
    font-size: 0.95rem;
  }

  .field .phone-number-control input {
    padding-right: 0.55rem;
    padding-left: 0.55rem;
  }

  .reservation-dashboard-head,
  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-toolbar .field,
  .admin-date-filter-field,
  .admin-filter-calendar {
    width: 100%;
    max-width: none;
  }

  .reservation-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservation-actions {
    justify-content: stretch;
  }

  .reservation-actions button {
    width: 100%;
  }

  .reservation-cancel-page-actions {
    grid-template-columns: 1fr;
  }

  .reservation-manage-actions {
    grid-template-columns: 1fr;
  }

  .reservation-cancel-page-actions .reset-btn {
    width: 100%;
    box-sizing: border-box;
  }

  .reservation-calendar {
    padding: 0.65rem;
  }

  .reservation-cancel-detail-row {
    grid-template-columns: 1fr;
  }

  .reservation-cancel-detail-row dt {
    padding-bottom: 0.15rem;
  }

  .reservation-cancel-detail-row dd {
    padding-top: 0.15rem;
  }

  .reservation-complete-panel {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .calendar-day,
  .calendar-blank {
    min-height: 42px;
  }

  .calendar-day small {
    font-size: 0.42em;
  }

  .reservation-status-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reservation-status-step {
    min-height: 34px;
    font-size: 0.78rem;
  }

  .people-slot-row,
  .time-slot-grid {
    gap: 0.5rem;
  }

  .people-slot-btn,
  .time-slot-btn {
    min-height: 50px;
    font-size: 0.98rem;
  }

  .people-slot-btn {
    min-width: 84px;
  }

  .closed-date-control {
    grid-template-columns: 1fr;
  }

  .table-selector-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .admin-menu-row {
    grid-template-columns: 1fr;
  }

  .admin-menu-active {
    justify-content: flex-start;
  }
}

.tab-1 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;       /* 横幅いっぱい */
    max-width: 100%;   /* これで親幅に合わせる */
	margin-bottom: -50px;

}

.tab-1 > label {
    flex: auto;
    order: -1;
    min-width: 150px;
	margin-top: 20px;
	margin-left: 50% 50%;
	margin-bottom: 20px;
    background-color: #e9f0f6;
    color: #535353;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

.tab-1 > label:hover {
    opacity: .8;
}

.tab-1 input {
    display: none;
}

.tab-1 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: transparent;
}

.tab-1 label:has(:checked) {
    background-color: #fff;
    border-color: #000000 #f0f0f0 #fff;
    border-style: solid;
    border-width: 4px 1px 1px;
    color: #333333;
}

.tab-1 label:has(:checked) + div {
    display: block;
}

#loading-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.86);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: #8a6747;
  font-size: 1.05rem;
  backdrop-filter: none;
}

.loading-inner {
  min-width: min(280px, calc(100vw - 48px));
  padding: 1rem;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.spinner {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.9rem;
  border: 5px solid rgba(158, 122, 88, 0.22);
  border-top-color: #a47c56;
  border-right-color: #a47c56;
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

.loading-text {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18rem;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.loading-dots {
  display: inline-flex;
  gap: 0.12rem;
  min-width: 1.2em;
}

.loading-dots span {
  width: 0.26em;
  height: 0.26em;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.28;
  transform: translateY(0);
  animation: loadingDot 1s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.16s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.32s;
}

.inline-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 1.6em;
}

.inline-loading .loading-text {
  color: inherit;
  font-size: inherit;
}

.inline-spinner {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  border: 2px solid rgba(158, 122, 88, 0.24);
  border-top-color: #ff8b6a;
  border-right-color: #ff8b6a;
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

.section-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 84px;
  width: 100%;
  box-sizing: border-box;
  padding: 1rem;
  color: #8a6747;
  background: rgba(250, 247, 242, 0.68);
  border: 1px solid rgba(158, 122, 88, 0.18);
}

.nearby-slider .section-loading {
  flex: 1 0 100%;
  min-height: 178px;
}

.section-spinner {
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 auto;
  border: 3px solid rgba(158, 122, 88, 0.22);
  border-top-color: #a47c56;
  border-right-color: #a47c56;
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

@keyframes loadingDot {
  0%, 80%, 100% {
    opacity: 0.28;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-0.28em);
  }
}

@media (prefers-reduced-motion: reduce) {
  .spinner,
  .inline-spinner,
  .section-spinner,
  .loading-dots span {
    animation-duration: 1.8s;
  }
}

/* =========================
   カードグリッド（完成版）
========================= */
.list-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

/* PC（最大5列） */
@media (min-width: 1200px) {
  .list-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* タブレット（3列） */
@media (max-width: 1199px) and (min-width: 768px) {
  .list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* スマホ（2列） */
@media (max-width: 767px) {
  .list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =========================
   カードデザイン
========================= */
.list {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ホバー */
.list:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

/* 画像 */
.list figure {
  margin: 0;
  height: 160px;
  overflow: hidden;
}

.list figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.list:hover figure img {
  transform: scale(1.08);
}

/* テキスト */
.list .text {
padding: 1.2rem;}

.list h4 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  line-height: 1.4;
  font-weight: 600;
}

.list h4::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e5e5e5;
  margin-top: 6px;
  margin-bottom: 6px;
}

.list p {
  margin: 0;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* =========================
   スマホ最適化
========================= */
@media (max-width: 600px) {
  .list figure {
    height: 120px;
  }
  
  .list h4 {
    font-size: 1rem;
  }

  .list p {
    font-size: 0.8rem;
    margin-top: 0.4rem;
  }
}

/* =========================
   Search result cards
========================= */
.results-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto 1.35rem;
  padding: 0.85rem 1rem;
  border: 1px solid #e2d5c8;
  background: #fffaf4;
}

.results-sort {
  display: grid;
  gap: 0.35rem;
  min-width: min(100%, 260px);
}

.results-sort label {
  color: #735135;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.results-sort select {
  width: 100%;
  min-height: 44px;
  padding: 0.45rem 1.55rem 0.45rem 0.75rem;
  border: 1px solid #d8c9b8;
  appearance: none;
  background-color: #fff;
  background-image:
    linear-gradient(45deg, transparent 50%, #8a6a4a 50%),
    linear-gradient(135deg, #8a6a4a 50%, transparent 50%);
  background-position:
    calc(100% - 0.85rem) calc(50% - 0.12rem),
    calc(100% - 0.55rem) calc(50% - 0.12rem);
  background-repeat: no-repeat;
  background-size: 0.32rem 0.32rem, 0.32rem 0.32rem;
  color: #22302d;
  font-size: 0.95rem;
}

.results-count {
  margin: 0;
  color: #735135;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

#results.list-grid {
  margin-top: 1.45rem;
}

#results .result-card .text {
  padding: 0.9rem;
}

#results .result-card,
#results .result-card a,
#results .result-card figure,
#results .result-card img,
#results .result-card .text,
#results .result-card .result-meta-row {
  min-width: 0;
}

#results .result-card {
  width: 100%;
}

#results .result-card figure,
#results .result-card img {
  width: 100%;
  max-width: 100%;
}

#results .result-card figure {
  aspect-ratio: 4 / 3;
  height: auto;
}

#results .result-card img {
  height: 100%;
  object-fit: cover;
}

#results .result-card .result-meta {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.55rem;
  color: #444;
  font-size: 0.82rem;
  line-height: 1.45;
}

#results .result-card .result-meta-row {
  display: grid;
  grid-template-columns: 5.4rem minmax(0, 1fr);
  column-gap: 0.5rem;
  align-items: start;
}

#results .result-card .result-meta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.55em;
  padding: 0.1rem 0.3rem;
  border: 1px solid #d8c9b8;
  background: #fff7ed;
  color: #744719;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

#results .result-card .result-meta-value {
  min-width: 0;
  overflow-wrap: anywhere;
}

#results .result-card .result-meta-food .result-meta-value {
  display: grid;
  gap: 0.12rem;
}

#results .result-card .result-meta-item {
  display: block;
}

.show-more-wrap {
  display: flex;
  justify-content: center;
  margin: 1.4rem 0 0;
}

.show-more-btn {
  min-width: 190px;
}

/* Featured pages
---------------------------------------------------------------------------*/
.featured-page-body {
  --featured-border-color: #e4d8cb;
  --featured-soft-bg: #fbf7f1;
}

.featured-page {
  padding-top: 1rem;
}

.featured-hero {
  max-width: 980px;
  margin: 0 auto 2.5rem;
  padding: 2rem 0 1rem;
}

.featured-eyebrow {
  margin: 0 0 0.5rem;
  color: var(--primary-color);
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.featured-hero h1 {
  margin: 0 0 0.65rem;
  color: var(--base-inverse-color);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.05;
}

.featured-hero p:last-child {
  max-width: 760px;
  margin: 0;
  color: #5e5a55;
  font-size: 1rem;
  line-height: 1.8;
}

.featured-status {
  max-width: 980px;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  border: 1px solid var(--featured-border-color);
  background: var(--featured-soft-bg);
  color: #735135;
  font-weight: 700;
}

.featured-stack {
  display: grid;
  gap: 2.2rem;
  max-width: 1120px;
  margin: 0 auto;
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: stretch;
  padding: clamp(1rem, 2.2vw, 1.6rem);
  border: 1px solid var(--featured-border-color);
  background:
    linear-gradient(90deg, rgba(158, 122, 88, 0.09), transparent 28%),
    #fff;
}

.featured-card-media {
  min-width: 0;
}

.featured-photo-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  height: 100%;
  min-height: 360px;
}

.featured-photo {
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #f7f1ea;
}

.featured-photo-1 {
  grid-row: 1 / span 3;
}

.featured-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 0.4rem 0;
}

.featured-card-kicker {
  margin: 0 0 0.5rem;
  color: var(--primary-color);
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.featured-card h3 {
  margin: 0 0 0.8rem;
  color: var(--base-inverse-color);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.featured-card-copy {
  margin: 0 0 1rem;
  color: #514b45;
  font-size: 0.95rem;
  line-height: 1.75;
}

.featured-meta {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.featured-meta-row {
  display: grid;
  grid-template-columns: 7.4rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  min-width: 0;
}

.featured-meta-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.55em;
  padding: 0.1rem 0.35rem;
  border: 1px solid #d8c9b8;
  background: #fff7ed;
  color: #744719;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.featured-meta-value {
  min-width: 0;
  color: #403b35;
  font-size: 0.92rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.featured-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--primary-color);
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.featured-action-primary {
  background: var(--primary-color);
  color: #fff;
}

.featured-action-secondary {
  background: #fff;
  color: #735135;
}

@media (max-width: 900px) {
  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-photo-grid {
    min-height: 320px;
  }
}

@media (max-width: 600px) {
  body:has(#results-section) {
    --page-container-inline-space: 1rem;
  }

  body:has(#results-section) #container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body:has(#results-section) .margin-lr0 {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .results-toolbar {
    align-items: stretch;
    gap: 0.55rem;
    margin-bottom: 1.15rem;
    padding: 0.65rem;
  }

  .results-sort {
    min-width: 0;
    flex: 0 1 190px;
    max-width: 190px;
  }

  .results-sort select {
    width: 100%;
    min-height: 40px;
    padding-right: 1.25rem;
    background-position:
      calc(100% - 0.7rem) calc(50% - 0.1rem),
      calc(100% - 0.43rem) calc(50% - 0.1rem);
    font-size: 0.9rem;
  }

  .results-count {
    align-self: end;
    font-size: 0.8rem;
    white-space: normal;
    text-align: right;
  }

  #results.list-grid {
    margin-top: 1.35rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1rem;
  }

  #results .result-card .text {
    padding: 0.6rem 0.5rem 0.65rem;
  }

  #results .result-card figure {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  #results .result-card h4 {
    margin-bottom: 0.35rem;
    font-size: 0.96rem;
    line-height: 1.28;
  }

  #results .result-card h4::after {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  #results .result-card .result-meta {
    gap: 0.26rem;
    margin-top: 0.4rem;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  #results .result-card .result-meta-row {
    grid-template-columns: 4.25rem minmax(0, 1fr);
    column-gap: 0.32rem;
  }

  #results .result-card .result-meta-label {
    min-height: 1.45em;
    padding: 0.08rem 0.18rem;
    font-size: 0.66rem;
  }

  .show-more-wrap {
    margin-top: 1.1rem;
  }

  .show-more-btn {
    min-width: min(100%, 210px);
  }

  .featured-page {
    padding-top: 0.5rem;
  }

  .featured-hero {
    margin-bottom: 1.3rem;
    padding-top: 0;
  }

  .featured-hero h1 {
    font-size: 2.9rem;
  }

  .featured-stack {
    gap: 1.3rem;
  }

  .featured-card {
    padding: 0.8rem;
  }

  .featured-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 0.42rem;
    min-height: 0;
  }

  .featured-photo {
    aspect-ratio: 4 / 3;
  }

  .featured-photo-1 {
    grid-column: 1 / span 3;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .featured-card h3 {
    font-size: 2rem;
  }

  .featured-card-copy {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .featured-meta-row {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 0.45rem;
  }

  .featured-meta-label {
    font-size: 0.7rem;
  }

  .featured-meta-value {
    font-size: 0.86rem;
  }

  .featured-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}
/*その他
---------------------------------------------------------------------------*/
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.small {font-size: 0.75em;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:800px) {
	}/*追加指定ここまで*/

/* ================================
   Menu Warung スマホ表示調整
   Aの縦並び → Bのように2列ベースへ
================================ */
@media screen and (max-width: 1200px) {

  .admin-menu-panel .admin-menu-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding: 0.75rem;
  }

  /* Deskripsi は横いっぱい */
  .admin-menu-panel .admin-menu-desc-field {
    grid-column: 1 / -1;
  }

  /* Deskripsi のtextareaをBのように横長に */
  .admin-menu-panel .admin-menu-desc-field textarea {
    width: 100%;
  }

  /* Hapusボタンも横いっぱい */
  .admin-menu-panel .admin-menu-remove {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.5rem;
  }

  /* Tampil の位置を整える */
  .admin-menu-panel .admin-menu-active {
    margin-top: 1.65rem;
    justify-content: center;
  }

  /* 下の2ボタンを横並び */
  .admin-menu-panel .admin-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .admin-menu-panel .admin-menu-actions button {
    width: 100%;
    margin-top: 0;
  }
}

/* ================================
   スマホだけ：Menu WarungをBの形にする
================================ */
@media screen and (max-width: 1200px) {

  body .shop-admin-page .admin-menu-panel .admin-menu-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr 0.7fr 0.75fr !important;
    gap: 0.65rem !important;
    align-items: end !important;
  }

  /* No.：左 */
  body .shop-admin-page .admin-menu-panel .admin-menu-order-cell {
    grid-column: 1 / 2 !important;
    grid-row: 1 !important;
  }

  /* Kategori：中央 */
  body .shop-admin-page .admin-menu-panel .admin-menu-category-field {
    grid-column: 2 / 3 !important;
    grid-row: 1 !important;
  }

  /* Nama Menu：右 */
  body .shop-admin-page .admin-menu-panel .admin-menu-name-field {
    grid-column: 3 / 5 !important;
    grid-row: 1 !important;
  }

  /* Deskripsi：横いっぱい */
  body .shop-admin-page .admin-menu-panel .admin-menu-desc-field {
    grid-column: 1 / 5 !important;
    grid-row: 2 !important;
  }

  /* Harga IDR：左 */
  body .shop-admin-page .admin-menu-panel .admin-menu-price-field {
    grid-column: 1 / 3 !important;
    grid-row: 3 !important;
  }

  /* Tampil：Hargaの右 */
  body .shop-admin-page .admin-menu-panel .admin-menu-active {
    grid-column: 3 / 4 !important;
    grid-row: 3 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.35rem !important;
    min-height: 36px !important;
    margin: calc(1.4em + 0.25rem) 0 0 !important;
    padding: 0 0 0.1rem !important;
    white-space: nowrap !important;
  }

  body .shop-admin-page .admin-menu-panel .admin-menu-active input {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
  }

  /* Hapus：右 */
  body .shop-admin-page .admin-menu-panel .admin-menu-remove {
    grid-column: 4 / 5 !important;
    grid-row: 3 !important;
    width: 100% !important;
    margin-top: calc(1.4em + 0.25rem) !important;
  }
}

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

  body .shop-admin-page .admin-menu-panel .admin-menu-row {
    grid-template-columns: minmax(62px, 0.55fr) 1fr 1fr 0.85fr !important;
  }

  body .shop-admin-page .admin-menu-panel .admin-menu-category-field {
    grid-column: 2 / 5 !important;
    grid-row: 1 !important;
  }

  body .shop-admin-page .admin-menu-panel .admin-menu-name-field {
    grid-column: 1 / 5 !important;
    grid-row: 2 !important;
  }

  body .shop-admin-page .admin-menu-panel .admin-menu-desc-field {
    grid-row: 3 !important;
  }

  body .shop-admin-page .admin-menu-panel .admin-menu-price-field {
    grid-row: 4 !important;
  }

  body .shop-admin-page .admin-menu-panel .admin-menu-active,
  body .shop-admin-page .admin-menu-panel .admin-menu-remove {
    grid-row: 4 !important;
  }
}

/* ================================
   スマホだけ：Pengaturan Reservasi
   Jam Buka / Jam Tutup は2列
   Interval / Durasi / Maks. Tamu は3列
================================ */
@media screen and (max-width: 800px) {

  .admin-settings-panel .form-grid.five {
    display: grid !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    column-gap: 1rem !important;
    row-gap: 1rem !important;
  }

  /* 1段目：Jam Buka */
  .admin-settings-panel .form-grid.five .field:nth-of-type(1) {
    grid-column: 1 / 4 !important;
  }

  /* 1段目：Jam Tutup */
  .admin-settings-panel .form-grid.five .field:nth-of-type(2) {
    grid-column: 4 / 7 !important;
  }

  /* 2段目：Interval Jam Mulai */
  .admin-settings-panel .form-grid.five .field:nth-of-type(3) {
    grid-column: 1 / 3 !important;
  }

  /* 2段目：Durasi Reservasi */
  .admin-settings-panel .form-grid.five .field:nth-of-type(4) {
    grid-column: 3 / 5 !important;
  }

  /* 2段目：Maks. Tamu / Reservasi */
  .admin-settings-panel .form-grid.five .field:nth-of-type(5) {
    grid-column: 5 / 7 !important;
  }

  .admin-settings-panel .form-grid.five .field,
  .admin-settings-panel .form-grid.five input,
  .admin-settings-panel .form-grid.five select {
    min-width: 0;
    box-sizing: border-box;
  }

  /* スマホでラベルが詰まりすぎる場合の調整 */
  .admin-settings-panel .form-grid.five .field label {
    font-size: 0.86rem;
    line-height: 1.25;
  }
}

/* 休業日リストの日付同士の間隔 */
.closed-date-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 500px) {

  .admin-settings-panel .form-grid.five .field:nth-of-type(1) input,
  .admin-settings-panel .form-grid.five .field:nth-of-type(2) input {
    width: calc(100% - 1.2rem) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .admin-settings-panel .form-grid.five .field:nth-of-type(2) input {
    margin-left: auto !important;
  }
}
/* 全てのプルダウンを四角に統一＋矢印を表示 */
select {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;

  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23725538' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px 8px !important;

  padding-right: 2.4rem !important;
}
/* スマホだけ：selectの矢印を小さくする */
@media screen and (max-width: 800px) {
  select {
    background-size: 8px 5px !important;
    background-position: right 7px center !important;
    padding-right: 1.8rem !important;
  }
}
/* ================================
   shop-admin.html 店舗管理画面専用
   パンくず・メニューバー・ハンバーガーを非表示
================================ */
body.shop-admin-page .breadcrumb,
body.shop-admin-page #menubar,
body.shop-admin-page #menubar_hdr {
  display: none !important;
}

@media screen and (max-width: 800px) {
  /* iPhoneのdate/time標準UIが横にはみ出す対策 */
  .admin-add-panel input[type="date"],
  .admin-add-panel input[type="time"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    -webkit-appearance: none;
    appearance: none;
  }
}

@media screen and (max-width: 800px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* shop-admin.html スマホだけ：画面外側の左右余白を詰める */
@media screen and (max-width: 800px) {

  body.shop-admin-page #container {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  body.shop-admin-page .reservation-page {
    margin-left: calc(var(--content-space) - var(--page-container-inline-space));
    margin-right: calc(var(--content-space) - var(--page-container-inline-space));
  }

}
/* Shop admin menu editor compact override
---------------------------------------------------------------------------*/
body .shop-admin-page .admin-menu-row .field > .admin-menu-control {
  box-sizing: border-box;
  height: 36px;
  min-height: 36px !important;
  padding: 0.34rem 0.55rem !important;
  font-size: 0.95rem;
  line-height: 1.25 !important;
}

body .shop-admin-page .admin-menu-row .field > textarea.admin-menu-control {
  height: 36px;
  resize: none;
  overflow: hidden;
}

body .shop-admin-page .admin-menu-row .field > textarea.admin-menu-control:hover,
body .shop-admin-page .admin-menu-row .field > textarea.admin-menu-control:focus {
  overflow: auto;
}

body .shop-admin-page .admin-menu-row .admin-menu-order-cell {
  grid-template-rows: auto 36px !important;
}

body .shop-admin-page .admin-menu-row .admin-menu-move-actions {
  height: 36px !important;
}

@media screen and (min-width: 801px) {
  body .shop-admin-page .admin-menu-row .admin-menu-move-actions {
    transform: translateY(-4px);
  }
}

body .shop-admin-page .admin-menu-row .admin-menu-move {
  height: 36px !important;
  min-height: 36px !important;
}

body .shop-admin-page .admin-menu-row .admin-menu-active,
body .shop-admin-page .admin-menu-row .admin-menu-remove {
  min-height: 36px !important;
  margin-top: calc(1.4em + 0.25rem);
}
body .shop-admin-page .admin-menu-row .admin-menu-remove {
  margin-top: calc(1.4em + 0.55rem);
}
body .shop-admin-page .admin-menu-row .admin-menu-remove {
  box-sizing: border-box;
  height: 36px !important;
  min-height: 36px !important;
  padding: 0 0.8rem !important;
  line-height: 1 !important;
}

@media screen and (max-width: 800px) {
  body .shop-admin-page .admin-menu-row .admin-menu-active,
  body .shop-admin-page .admin-menu-row .admin-menu-remove {
    margin-top: calc(1.4em + 0.25rem) !important;
  }

  body .shop-admin-page .admin-menu-row .admin-menu-remove {
    margin-top: calc(1.4em + 1rem) !important;
  }
}

.admin-section-line {
	border: none;
	border-top: 2px solid rgba(158, 122, 88, 0.12);
	margin: 30px 0;
	height: 1px;
	box-shadow: 0 8px 18px rgba(158, 122, 88, 0.12);
}
body.shop-admin-page .calendar-day.is-disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

body.shop-admin-page .calendar-day.is-disabled:hover {
	transform: none;
}

/* Store Content admin panel
---------------------------------------------------------------------------*/
.admin-shop-info-form textarea,
.admin-content-panel textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.admin-content-panel #adminMetaDescription {
  min-height: 76px;
}

.admin-content-panel #adminAboutText,
.admin-content-panel #adminFoodHighlightsText,
.admin-content-panel #adminWhyChooseText {
  min-height: 82px;
}

.admin-content-preview {
  margin: -2rem 0 0.62rem !important;
  padding-left: 0 !important;
  color: rgba(112, 91, 72, 0.18);
  font-size: 0.78rem;
  line-height: 1.14;
  white-space: pre-wrap;
}

.admin-content-preview-label {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-left: 0;
  margin-bottom: 0.14rem;
  padding: 0.08rem 0.34rem;
  background-color: rgba(168, 126, 88, 0.08);
  border: 1px solid rgba(112, 91, 72, 0.16);
  color: rgba(112, 91, 72, 0.42);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 600;
}

.admin-content-preview-text {
  display: block;
}

.admin-content-preview.is-empty {
  color: rgba(112, 91, 72, 0.3);
  font-style: italic;
}

.admin-content-panel .admin-content-form {
  display: block;
}

.admin-content-panel .admin-content-actions {
  margin-top: 1rem;
}

.admin-shop-info-form .phone-input-row {
  display: flex;
  align-items: stretch;
}

.admin-shop-info-form .phone-prefix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 1rem;
  border: 1px solid rgba(158, 122, 88, 0.35);
  border-right: none;
  background: rgba(158, 122, 88, 0.08);
  color: var(--primary-color);
  font-weight: 700;
}

.admin-shop-info-form .phone-input-row input {
  flex: 1 1 auto;
  min-width: 0;
}

.admin-shop-info-form small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(80, 55, 35, 0.62);
}

.admin-check-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.admin-check-list label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(158, 122, 88, 0.28);
  background: rgba(158, 122, 88, 0.04);
  color: #725538;
  font-weight: 700;
  line-height: 1.25;
}

.admin-check-list input {
  width: auto;
}

.admin-shop-info-actions {
  margin-top: 1rem;
}

@media screen and (max-width: 800px) {
  .admin-shop-info-panel input,
  .admin-shop-info-panel select,
  .admin-shop-info-panel textarea,
  .admin-content-panel input,
  .admin-content-panel textarea {
    font-size: 16px !important;
  }

  .admin-check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-content-panel textarea {
    min-height: 150px;
  }

  .admin-content-panel #adminAboutText,
  .admin-content-panel #adminFoodHighlightsText,
  .admin-content-panel #adminWhyChooseText {
    min-height: 96px;
  }

  .admin-content-preview {
    margin-top: 0.1rem;
    margin-bottom: 0.58rem;
    font-size: 0.76rem;
    line-height: 1.22;
  }

  .admin-lazy-state {
    padding: 0.8rem;
  }

  .admin-lazy-state strong {
    font-size: 0.95rem;
  }
}


/* =========================
   Admin photo slot upload
   Added: 20260525-photo-slot-final1
========================= */
body.shop-admin-page .admin-photo-list {
  margin-top: 20px;
}

body.shop-admin-page .admin-photo-summary {
  display: grid;
  gap: 4px;
  margin: 18px 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(158, 122, 88, 0.22);
  background: rgba(158, 122, 88, 0.06);
}

body.shop-admin-page .admin-photo-summary strong {
  font-size: 0.95rem;
  color: var(--primary-color);
}

body.shop-admin-page .admin-photo-summary span {
  font-size: 0.8rem;
  color: rgba(80, 55, 35, 0.72);
}

body.shop-admin-page .admin-photo-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

body.shop-admin-page .admin-photo-slot {
  border: 1px solid rgba(158, 122, 88, 0.22);
  background: #fff;
  overflow: hidden;
}

body.shop-admin-page .admin-photo-slot-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(158, 122, 88, 0.08);
}

body.shop-admin-page .admin-photo-slot-head strong {
  font-size: 0.85rem;
}

body.shop-admin-page .admin-photo-status {
  flex: 0 0 auto;
  padding: 3px 8px;
  font-size: 0.72rem;
  background: rgba(80, 55, 35, 0.1);
  color: rgba(80, 55, 35, 0.72);
}

body.shop-admin-page .admin-photo-status.status-pending {
  background: rgba(255, 193, 7, 0.2);
}

body.shop-admin-page .admin-photo-status.status-approved {
  background: rgba(46, 125, 50, 0.16);
}

body.shop-admin-page .admin-photo-status.status-rejected {
  background: rgba(198, 40, 40, 0.16);
}

body.shop-admin-page .admin-photo-status.status-replaced {
  background: rgba(80, 55, 35, 0.12);
}

body.shop-admin-page .admin-photo-status.status-empty {
  background: rgba(80, 55, 35, 0.08);
}

body.shop-admin-page .admin-photo-slot-body {
  padding: 12px;
  min-height: 92px;
  font-size: 0.82rem;
  color: rgba(80, 55, 35, 0.72);
}

body.shop-admin-page .admin-photo-file {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}

body.shop-admin-page .admin-photo-file span {
  word-break: break-all;
}

body.shop-admin-page .admin-photo-file a {
  color: var(--primary-color);
  text-decoration: underline;
}

body.shop-admin-page .admin-photo-slot-body small {
  display: block;
  margin-top: 6px;
  color: rgba(80, 55, 35, 0.55);
}

body.shop-admin-page .admin-photo-upload-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 8px 12px;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.8rem;
  cursor: pointer;
}

body.shop-admin-page .admin-photo-upload-btn input {
  display: none;
}

@media (max-width: 700px) {
  body.shop-admin-page .admin-photo-slot-grid {
    grid-template-columns: 1fr;
  }

  body.shop-admin-page .admin-photo-slot-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
body.shop-admin-page .admin-photo-summary,
body.shop-admin-page #adminReservationList .reservation-muted,
body.shop-admin-page .admin-photo-summary strong,
body.shop-admin-page .admin-photo-summary span,
body.shop-admin-page .admin-photo-panel > .reservation-muted {
  color: #fff;
}

/* =========================
   Admin photo preview bulk upload
   Added: 20260526-photo-preview1
========================= */
body.shop-admin-page .admin-photo-summary,
body.shop-admin-page .admin-photo-summary strong,
body.shop-admin-page .admin-photo-summary span,
body.shop-admin-page .admin-photo-panel > .reservation-muted,
body.shop-admin-page #adminPhotoList .reservation-muted,
body.shop-admin-page #adminReservationList .reservation-muted {
  color: #fff;
}
body.shop-admin-page .admin-photo-upload-btn,
body.shop-admin-page .admin-photo-delete-btn,
body.shop-admin-page .admin-photo-clear-btn {
  position: static;
  top: auto;
}
body.shop-admin-page .admin-photo-bulk-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

body.shop-admin-page .admin-photo-bulk-actions span {
  font-size: 0.82rem;
  color: #fff;
}

body.shop-admin-page .admin-photo-status.status-ready {
  background: rgba(158, 122, 88, 0.18);
  color: var(--primary-color);
}

body.shop-admin-page .admin-photo-clear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(158, 122, 88, 0.35);
  background: #fff;
  color: var(--primary-color);
  font-size: 0.8rem;
  cursor: pointer;
}

body.shop-admin-page .admin-photo-upload-btn {
  border-radius: 0;
}

body.shop-admin-page .admin-photo-slot {
  border-radius: 0;
}
body.shop-admin-page .admin-photo-bulk-actions {
  margin: 14px 0 18px;
  text-align: left;
}

body.shop-admin-page .admin-photo-bulk-upload {
  border-radius: 0;
}

body.shop-admin-page .admin-photo-slot-body {
  display: grid;
  grid-template-columns: minmax(190px, 42%) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  min-height: 0;
}

body.shop-admin-page .admin-photo-preview-box {
  width: 100%;
  min-height: 160px;
  background: rgba(158, 122, 88, 0.06);
  border: 1px solid rgba(158, 122, 88, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body.shop-admin-page .admin-photo-preview-box img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.shop-admin-page .admin-photo-preview-box span {
  color: rgba(80, 55, 35, 0.55);
  font-size: 0.9rem;
}

body.shop-admin-page .admin-photo-info-box {
  display: grid;
  gap: 10px;
  align-content: center;
  align-self: center;
  min-width: 0;
}

body.shop-admin-page .admin-photo-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

body.shop-admin-page .admin-photo-clear-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(158, 122, 88, 0.35);
  background: #fff;
  color: var(--primary-color);
  font-size: 0.8rem;
  cursor: pointer;
}

body.shop-admin-page .admin-photo-upload-btn,
body.shop-admin-page .admin-photo-delete-btn,
body.shop-admin-page .admin-photo-clear-btn {
  min-height: 42px;
  min-width: 112px;
  margin: 0;
  padding: 10px 16px;
  line-height: 1;
}

body.shop-admin-page .admin-photo-status.status-ready {
  background: rgba(255, 139, 43, 0.18);
  color: #8a4b20;
}
@media screen and (max-width: 700px) {
  body.shop-admin-page .admin-photo-slot-grid {
    grid-template-columns: 1fr;
  }

  body.shop-admin-page .admin-photo-slot-body {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  body.shop-admin-page .admin-photo-preview-box {
    min-height: 0;
  }

  body.shop-admin-page .admin-photo-info-box {
    gap: 8px;
  }

  body.shop-admin-page .admin-photo-actions-row {
    align-items: stretch;
    gap: 8px;
    margin-top: 2px;
  }

  body.shop-admin-page .admin-photo-upload-btn,
  body.shop-admin-page .admin-photo-delete-btn,
  body.shop-admin-page .admin-photo-clear-btn {
    width: 100%;
    min-height: 44px;
  }
}

body.shop-admin-page .admin-photo-delete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 0;
  padding: 10px 16px;
  border: 1px solid rgba(198, 40, 40, 0.35);
  background: #fff;
  color: #c62828;
  font-size: 0.8rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 0;
}

body.shop-admin-page .admin-photo-delete-btn:hover {
  background: rgba(198, 40, 40, 0.08);
}
