@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ballet:opsz@16..72&display=swap');


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


/*cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");


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

	--bg-color: #222;			/*主にテンプレートの背景色*/
	--bg-inverse-color: #fff;		/*上のカラーの「対」として使う色*/
	
	--primary-color: #ffc200;			/*メインまたはアクセントカラー*/
	--primary-inverse-color: #000;	/*上のカラーの「対」として使う色*/

	--content-space-l: 5vw;			/*主に左右の余白の一括管理用。画面幅100% = 100vwです。*/
	--content-space-s: 2rem;		/*headerやfooter、２カラム以上のレイアウトで主に使います*/
	
	--side-space : 60px;			/*左側の細いsideブロックの幅*/

	--banner-height: 100px;
	
	--gradient-main: linear-gradient(270deg, #ffc200, #ef9800, #ffc200);
	
	--base-font: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;  /*フォント指定*/
	--accent-font: "Jost";  /*アクセント用英語フォント指定*/

}

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

	:root {
		--content-space-l: 10px;	/*余白の一括管理用。小さな端末で余白を狭くする。*/
	}

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


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


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html {
	font-size: clamp(12px, 0.488vw + 10.17px, 17px);	/*画面幅約375px〜1400pxの間で、12px〜17pxに可変*/
	overflow-x: visible;
}
body {
	margin: 0;padding:0;
	font-family: var(--base-font);	/*フォント指定。冒頭のbase-fontを読み込みます。*/
	-webkit-text-size-adjust: none;
	background: var(--bg-color);	/*冒頭のbg-colorを読み込みます*/
	color: var(--bg-inverse-color);	/*冒頭のbg-inverse-colorを読み込みます*/
	line-height: 2;		/*行間*/
	overflow-x: 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%;}

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


/*section
---------------------------------------------------------------------------*/
section {
	padding: 0 var(--content-space-l);	/*上下、左右へのsection内の余白。左右については、冒頭の--content-space-lを読み込みます。*/
	margin: var(--content-space-l) 0;	/*上下、左右へのsectionの外側にとるマージン。上下については、冒頭の--content-space-lを読み込みます。*/
}

/*section間のマージンを消したい場合用。1つ目のsectionにだけclass="mb0"を追加する。*/
section.mb0 {margin-bottom: 0;}
section.mb0 + section {margin-top: 0;}


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

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


/*container（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	animation: opa1 0.2s 0.2s both;  /*0.2(2つ目の数字)秒待機後、0.2(1つ目の数字)秒かけてフェードイン*/
	display: flex;
	flex-direction: column;
	min-height: 100vh;
padding-right: var(--side-space);}


/*header（メイン画像やロゴが入った再上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック全体*/
header {
	background: var(--primary-color);		/*冒頭のprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*冒頭のprimary-inverse-colorを読み込みます*/
	padding: 1rem var(--content-space-s);	/*上下に1文字分の余白、左右に冒頭のcontent-space-sの余白*/
}

/*トップページのヘッダー*/
body.home header {
	padding: 0;
	height: 40vw;		/*高さ。メイン画像のバランスを見て調整して下さい。画面幅100% = 100vwです。画面幅に合わせて高さが変動するようにしています。*/
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

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

	body.home header {
		height: auto;
	}

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


/*テキストブロック（ロゴと文章）*/
header .text {
	margin-left: 10vw;		/*左に空けるスペース。画面幅に対して10%。*/
	position: relative;
	padding-right: 32vw;	/* 画像とかぶらないように必要なら調整 */
}

	/*画面幅800px以下の追加指定*/
	@media (max-width: 800px) {
	
	/*テキストブロック（ロゴと文章）*/
	header .text {
		padding-right: 0;
		margin: 0 auto;			/*センタリング*/
		order: 1;				/*小さな画面では、画像の下にテキストブロックを配置する。逆がよければこの１行を削除。*/
		padding-bottom: 5vw;	/*下に空ける余白*/
		text-align: center;
	}
	
	}/*追加指定ここまで*/


/*ロゴ上のラーメンアイコン*/
header .text::before {
	content: "";
	display: inline-block;
	margin-bottom: 4vw;	/*ロゴとアクセントラインとの距離。お好みで。*/
	width: 15vw;			/*アイコンの幅。画面幅の5%。お好みで。*/
	height: 15vw;		/*アイコンの高さ。お好みで。*/
	background: url("../images/logo-design.png") no-repeat center center / contain;
}

	/*画面幅800px以下の追加指定*/
	@media (max-width: 800px) {
	
	/*トップページのロゴ画像をセンタリング*/
	header .text::before {
	width: 25vw;			/*アイコンの幅。画面幅の5%。お好みで。*/
	height: 25vw;		/*アイコンの高さ。お好みで。*/
	}
	
	}/*追加指定ここまで*/

/*ロゴ画像*/
#logo {margin: 0;flex-shrink: 0;}
#logo img {
	display: block;
	width: 200px;	/*画像幅*/
}

/*トップページのロゴ画像*/
body.home #logo img {
	width: 35vw;		/*画像幅。画面の35%。*/
	margin-bottom: 3vw;	/*下のテキストとの間に空けるスペース。*/
}

	/*画面幅800px以下の追加指定*/
	@media (max-width: 800px) {
	
	/*トップページのロゴ画像をセンタリング*/
	body.home #logo img {
		margin-inline: auto;
	}
	
	}/*追加指定ここまで*/


/*ロゴ下の文章*/
header .text p {
	font-size: max(11px, 1vw);	/*文字サイズ。基本は1vw（画面幅の1%）だけど、11pxより小さくしない。*/
}


/*メイン画像
---------------------------------------------------------------------------*/
#mainimg {
	display: block;
	width: 45vw;	/*画像の幅。メイン画像のバランスを見て調整して下さい。画面幅100% = 100vwです。画面幅に合わせて高さが変動するようにしています。*/
	position: absolute;
	right: 0;
	top: 0;
}
#mainimg img {
	display: block;
	width: 100%;
	height: auto;
}

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

	#mainimg {
		width: 100%;
		position: static;
	}

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

/*contents
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	min-height: 0;
}


/*main
---------------------------------------------------------------------------*/
main {overflow-x: hidden;}

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


/*「今月のピックアップ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
.pickup-container {
	margin-top: 0;	/*sectionの上マージンをけす*/
	background: #222;	/*背景色*/
	color: #fff;		/*文字色*/
}
h3 span {
	font-family: "Jost", sans-serif; /* 英語はJost */
	font-weight: 900;
	font-size: 35px;
	letter-spacing: 0.1em;
}
/*2カラムに*/
.pickup-container > div {
	display: flex;
	align-items: center;
	gap: var(--content-space-s);	/*写真とテキストブロックの間に空ける余白。冒頭のcontent-space-sを読み込みます*/
}

/*画像ブロック*/
.pickup-container > div .img {
	width: 40%;		/*幅。お好みで。*/
}

/*テキストブロック*/
.pickup-container > div .text {
	flex: 1;
	padding-block: 8vw;	/*メイン画像に重ならないように上下に余白をとる*/
}

/*「今月のピックアップ」テキスト*/
.pickup-container > div .text .hosoku {
	background: var(--primary-color);		/*冒頭のprimary-colorを読み込みます*/
	font-weight: 900;
	display: inline-block;
	padding: 0 1rem;	/*上下に0、左右に1文字分の余白*/
	font-size: 0.75rem;	/*文字サイズ75%*/
}

/*h3見出し*/
.pickup-container > div .text h3 {
	margin: 0;
	line-height: 1.5;
	font-size: 1.5rem;	/*文字サイズ。2倍。*/
	font-weight: 400;	/*文字の太さ。200〜900まで指定可能。*/
}

/* reverse用：左右入れ替え */
.pickup-container.reverse > div {
	flex-direction: row-reverse;
}

/* reverseの時だけ右寄せ */
.pickup-container.reverse > div .text {
	text-align: right;
}

.pickup-container.reverse > div .text p {
	text-align: left;
}

.pickup-container.reverse .btn-gradient-animated {
	margin-left: auto;
}

.pickup-container + .pickup-container {
	margin-top: 0;
}

.pickup-container {
	margin-bottom: 0;
}

/*list1（カラムブロック）
---------------------------------------------------------------------------*/
.list1 * {margin: 0;padding: 0;}

/*ボックス全体*/
.list1 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));	/*4列*/
	font-size: 0.9rem;	/*文字サイズ90%*/
	background: var(--primary-color);		/*冒頭のprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*冒頭のprimary-inverse-colorを読み込みます*/
	gap: 1px;			/*ボックス同士の余白。今回は、線の代わりになります。*/
	padding: 1px;	/*ボックスの上下の余白。今回は、線の代わりになります。*/
}

/*bleed-x内で使う場合のみ、左右の線を消す*/
.bleed-x .list1 {
	padding-inline: 0;
}

	/*画面幅800px以下の追加指定*/
	@media (max-width: 800px) {
	
	.list1 {
		grid-template-columns: repeat(2, minmax(0, 1fr));	/*2列*/
	}
	
	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list1 .list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;	/*画像、タイトル、説明の間に空ける余白。0.5文字分。*/
	position: relative;
	background: var(--bg-color);	/*冒頭のbg-colorを読み込みます*/
	color: var(--bg-inverse-color);	/*冒頭のbg-inverse-colorを読み込みます*/
	padding: 2vw;	/*ボックス内の余白。画面幅の2%。*/
}

/*テキストボックス*/
.list1 .list .text {
	flex: 1;
}

/*h4見出し*/
.list1 .list h4 {
	text-align: center;	/*センタリング*/
}

/*説明*/
.list1 .list p {
	font-size: 0.9em;	/*文字サイズを90%*/
	line-height: 1.5;	/*行間を少し狭く*/
}


/*list1用のアイコン。今回は価格表示に使っています。
---------------------------------------------------------------------------*/
/*icon1*/
.list1 .icon1 {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	width: fit-content;   /* ←これ効く */
	pointer-events: none;
	font-size: 0.8rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	position: absolute;
	left: 0px;	/*ボックスの左からの配置*/
	top: 0px;	/*ボックスの上からの配置*/
	padding: 0 0.5rem;	/*アイコン内の余白。上下は0、左右に0.5文字分。*/
	background: var(--primary-color);		/*冒頭のprimary-colorを読み込みます*/
	color: var(--primary-inverse-color);	/*冒頭のprimary-inverse-colorを読み込みます*/
	font-family: var(--accent-font), var(--base-font);	/*フォントの指定。冒頭の--accent-fontを読み込み。日本語フォントならbase-fontに変更。*/
}

/*開閉メニュー
---------------------------------------------------------------------------*/
/*開閉メニューの出現アニメーション（右からスライドイン）*/
@keyframes animation1 {
  0% { right: -200px; }                  /* 画面外の右側からスタート */
  100% { right: var(--side-space); }     /* 開いたときの位置 */
}

/*メニューブロック共通（右寄せ用）*/
.small-screen #menubar {
  animation: animation1 0.2s both;
  --border-color: rgba(255,255,255,0.5);
  position: fixed;
  overflow: auto;
  z-index: 100;
  top: 0px;
  right: 0px;           /* 右に固定 */
  left: auto;           /* 左位置無効化 */
  width: 50%;           /* メニューが開いた時の幅 */
  height: 100%;
  padding: 7vw;
  background: rgba(0,0,0,0.95);
  color: #fff;
  border-left: 1px solid var(--border-color); /* 線を左側に */
  border-right: none;
  font-size: 0.9rem;
}

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

/*画面幅600px以下の追加指定*/
@media (max-width:600px) {
  .small-screen #menubar {
    width: calc(100% - var(--side-space));
  }
}

/*メニュー１個あたり*/
.small-screen #menubar a {
  display: block;
  text-decoration: none;
  margin-bottom: 1rem;
  padding: 0.5rem 2rem;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.small-screen #menubar a::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: #ffc200;
  margin-top: 5px;
  transform: scaleX(0);
}
/* ホバーした瞬間だけ再生 */
.small-screen #menubar a:hover::after {
  animation: lineFlash 0.4s ease forwards;
}

.small-screen #menubar a:hover {
  border-color: #ffc200;
  transform: translateX(-5px);
  background: rgba(255,255,255,0.1);
}

.small-screen #menubar a:hover::after {
  transform: scaleX(1);
  transform-origin: left; /* 左に向かって伸びる */
}

/*子メニュー（ドロップダウンメニュー）右寄せ用*/
.small-screen #menubar ul ul a {
  border: none;
  border-radius: 0;
  margin-left: 0;           /* 左の余白を消す */
  margin-right: 2rem;       /* 右にスペース */
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

/*ドロップダウンのアイコン*/
a.ddmenu::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f078";
  margin-right: 1em;
  font-size: 0.7em;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}

/*ドロップダウン共通（デフォルトで非表示）*/
#menubar ul ul { display: none; }

/* 伸びて→消える */
@keyframes lineFlash {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  40% {
    transform: scaleX(1); /* 一瞬フル表示 */
    transform-origin: left;
  }
  100% {
    transform: scaleX(0); /* 自動で消える */
    transform-origin: right;
  }
}
/*side（ハンバーガーアイコン、SNSアイコンが入ったブロック）右寄せ用
---------------------------------------------------------------------------*/
#side {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
  bottom: 0;
  width: var(--side-space);
  margin: 0;
  padding: 0;
  background: #222;
}

/*SNSアイコン
---------------------------------------------------------------------------*/
.others-sns1 {
	list-style: none;
	margin: 0;padding: 0;
	margin-top: 90px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;		/*アイコン同士のマージン的な要素。1.5文字分。*/
}

.others-sns1 i {
	font-size: 20px;	/*アイコンサイズ*/
	color: #777;		/*アイコの色。お好みで。*/
}

html, body {
  margin: 0;
  padding: 0;
}

/*３本バー（ハンバーガー）アイコン設定（右寄せ用）*/
#menubar_hdr {
	display: none; /* デフォルトは非表示 */
	animation: opa1 0s 0.2s both;
	cursor: pointer;
	position: fixed;
	z-index: 101;
	right: 0px;         /* 右端に配置 */
	left: auto;         /* 左無効化 */
	top: 0px;
	width: var(--side-space);
	height: 70px;
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	position: absolute;
	right: 12px;       /* 左寄せから右寄せに変更 */
	width: 35px;
	height: 2px;
	background: #fff;
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: #ff0000;	/*背景色*/
}
#menubar_hdr.ham span {
	background: #fff;	/*線の色*/
}

/*線の位置（上下）*/
#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; }


/*c2。section内で使う2カラムパーツ（※800px未満では１カラム）
---------------------------------------------------------------------------*/
	.c2 {
		display: flex;
		justify-content: space-between;
		gap: var(--content-space-l);	/*２カラムの間に空けるスペース。冒頭のcontent-space-lを読み込みます。。*/
		background: #ef9800;		/*背景色。冒頭のprimary-colorを読み込みます。*/
	}

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

	.c2 {
		display: flex;
		justify-content: space-between;
		gap: var(--content-space-l);	/*２カラムの間に空けるスペース。冒頭のcontent-space-lを読み込みます。。*/
		background: #ef9800;		/*背景色。冒頭のprimary-colorを読み込みます。*/
	}
	
	/*title側*/
	.title {
		width: 30%;	/*幅。お好みで。*/
	}
	
	/*text側*/
	.c2 .text {
		flex: 1;
	}
	
	/*左右逆で使いたい場合*/
	.c2.reverse {
		flex-direction: row-reverse;
	}
	
	}/*追加指定ここまで*/

section.c2 {
	margin-bottom: 0;
	padding-bottom: var(--content-space-l);
}

/*news（お知らせ）
---------------------------------------------------------------------------*/

/*日付*/
dl.news2 dt {
	display: flex;
	font-family: var(--accent-font), var(--base-font);	/*フォントの指定。冒頭の--accent-fontを読み込み。日本語フォントならbase-fontに変更。*/
}

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

	dl.news2 {
		display: grid;
		grid-template-columns: max-content minmax(0, 1fr);	/*日付幅は最大の文字数幅に自動調整し、右側テキストは残り一杯使う。*/
		gap: 0 2rem;	/*2remが、日付とテキストとの間に空けるスペース。お好みで。*/
		align-items: start;
	}

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


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

/*フッターボックス全体*/
footer {
	font-size: 0.85rem;	/*文字サイズ85%*/
    padding: var(--content-space-s);		/*ボックス内の余白。冒頭のcontent-space-sを読み込みます。*/
    background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
    color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/*ロゴの最大幅*/
footer .logo {
	max-width: 300px;
}

/*フッター直下のdiv（２つのブロックそれぞれ）*/
footer > div {
	display: flex;
	flex-direction: column;	/*縦積み*/
}


/*Copyright部分*/
footer small {
	display: block;
	text-align: left;	/*右寄せ*/
	margin-top: 20px;	/*下に*/
}

.has-banner footer {
	padding-bottom: var(--banner-height);
}
/*Google Map用
---------------------------------------------------------------------------*/
.others-iframe1 {
	width: 100%;
	aspect-ratio: 16 / 9;	/*マップのアスペクト比。お好みで。*/
	position: relative;
	overflow: hidden;
	max-width: 1100px;
	margin: 0 auto;
}
.others-iframe1 iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*テーブル（ta-week2）
---------------------------------------------------------------------------*/
/*テーブルブロック設定*/
.calendar-wrap {
margin: 0 auto;
max-width: 1110px;
display: grid;
gap: 40px;
margin-bottom: 50px;

}
@media screen and (max-width:800px) {
.calendar-wrap {
display: flex;
flex-direction: column;

}
}

.calendar {
width: 100%;
border-collapse: collapse;

}

.calendar th,
.calendar td {
border: 1px solid var(--bg-inverse-color);
text-align: center;
padding: 5px;
font-size: 14px;
font-weight: bold;

}

.calendar th {
padding: 6px 10px;

}
.calendar td {

}

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

.calendar th,
.calendar td {
padding: 6px;
font-size: 12px;

}

.calendar th {
padding: 3px 6px;
}
}

.calendar .sun {
color: #e17f7e;
background-color: #f8e4e2;
opacity: 0.6;
}

.calendar .sun2 {
color: #e17f7e;
background-color: #7d7d7d;
}

.calendar .sun3 {
 color: #e17f7e;
}

.calendar .sat {
color: #7ab6f3;
background-color: #e7f6fd;
opacity: 0.6;
}

.calendar .sat2 {
color: #7ab6f3;
}

.calendar .mute {
color: #aaa;
}

.calendar .today {
color: #000;
background-color: #7d7d7d;
}

.calendar .off {
background-color: #fadcdb;
}
/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;display: block;
	background: rgba(0,0,0,0.5);
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: 900;
	margin-right: 0.5em;
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.2rem 1rem;	/*ボックス内の余白。上下に0.2文字分、左右に1文字分。*/
	margin-bottom: 1rem;	/*下に空けるスペース。１文字分。*/
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/*テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid var(--bg-inverse-color);	/*テーブルの一番上の線。幅、線種、varは色の設定で冒頭のbg-inverse-colorを読み込みます。。*/
	width: 100%;
	margin-bottom: 2rem;	/*テーブルの下に空けるスペース。２文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid var(--bg-inverse-color);	/*テーブルの下線。幅、線種、varは色の設定で冒頭のbg-inverse-colorを読み込みます。。*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白。１文字分。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 13rem;		/*幅。13文字分。*/
	text-align: left;	/*左よせにする*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;
	z-index: 999;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 0px;		/*右からの配置場所指定*/
	bottom: 140px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(255,255,255,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
}


/*bg1
---------------------------------------------------------------------------*/
.bg {
	padding-top: var(--content-space-l);	/*ボックス内の上に空ける余白。theme.cssのcontent-space-lを読み込みます。*/
	padding-bottom: var(--content-space-l);	/*ボックス内の下に空ける余白。theme.cssのcontent-space-lを読み込みます。*/
}

/*背景色が続く場合に隙間を空けない*/
.bg + .bg {
	margin-top: calc(-1 * var(--content-space-l)) !important;
}

/*bg1の色設定*/
.bg1 {
	background: #ef9800;
}


/*section内で画面両サイドいっぱいまで広げる場合（marginのみでもいいが安定版に）
---------------------------------------------------------------------------*/
.bleed-x {
	--bleed-x: var(--content-space-l);	/*エイリアスに*/
	width: calc(100% + (var(--bleed-x) * 2));	/*section内容の幅＋両サイドpadding（対象要素の幅）*/
	margin-left: calc(var(--bleed-x) * -1);
	margin-right: calc(var(--bleed-x) * -1);
	max-width: none;
}


/*左右によせる専用
---------------------------------------------------------------------------*/
.bleed-left {
	width: calc(100% + var(--content-space-l));
	margin-left: calc(-1 * var(--content-space-l));
}
.bleed-right {
	width: calc(100% + var(--content-space-l));
	margin-right: calc(-1 * var(--content-space-l));
}


/*その他
---------------------------------------------------------------------------*/
.color-check, .color-check a {color: #ff0000 !important;}
.bg1-accent .color-check, .color-check a {color: #fef500 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 100%;display: block;}
.wl {width: 100%;display: block;}
.padding-x {padding: 0 var(--content-space-l);}
.mt0 {margin-top: 0px !important;}
.mt1rem {margin-top: 1rem !important;}
.mt3rem {margin-top: 3rem !important;}
.mb0 {margin-bottom: 0px !important;}
.mb1rem {margin-bottom: 1rem !important;}
.mb3rem {margin-bottom: 3rem !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #333;color: #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.is-clip {overflow: hidden;}

/*大きな画面の場合*/
.large-screen .ws {width: 50%;}
.large-screen .sh {display: none;}
.large-screen .pc {display: block;}


/*form1用
---------------------------------------------------------------------------*/
.contact-form-block {
    width: 100%;
}

.form-global-error {
    border: 1px solid #f0c2c2;
    background: #fff4f4;
    color: #9b2e2e;
}

.js-ajax-form[hidden] {
    display: none !important;
}

.form-row + .form-row {
    margin-top: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 700;
    color: #1f2947;
    line-height: 1.5;
}

.required-badge {
    display: inline-block;
    margin-left: 0.45rem;
    padding: 0.12rem 0.45rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;
    background: #d94c4c;
    vertical-align: middle;
}

.contact-form-inner input[type="text"],
.contact-form-inner input[type="email"],
.contact-form-inner input[type="file"],
.contact-form-inner select,
.contact-form-inner textarea {
    width: 100%;
    appearance: none;
    border: 1px solid #d6dbeb;
    border-radius: 16px;
    padding: 0.95rem 1rem;
    background: #fff;
    font: inherit;
    line-height: 1.6;
    color: #222;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.contact-form-inner input[type="file"] {
    padding: 0.8rem 1rem;
    cursor: pointer;
}

.contact-form-inner input[type="file"]::file-selector-button {
    margin-right: 0.9rem;
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    background: #eef2ff;
    color: #2f55d4;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.contact-form-inner textarea {
    resize: vertical;
    min-height: 12em;
}

.contact-form-inner input[type="text"]:focus,
.contact-form-inner input[type="email"]:focus,
.contact-form-inner input[type="file"]:focus,
.contact-form-inner select:focus,
.contact-form-inner textarea:focus {
    outline: none;
    border-color: #5d7bff;
    box-shadow: 0 0 0 4px rgba(93, 123, 255, 0.12);
}

.select-inline-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.select-inline {
    width: 100%;
}

.check-group,
.radio-group {
    display: grid;
    gap: 0.7rem;
}

.check-item,
.radio-item,
.check-single {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    line-height: 1.6;
}

.check-item input,
.radio-item input,
.check-single input {
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.form-help-text,
.form-file-reset-text {
    margin: 0.45rem 0 0;
    font-size: 0.92rem;
    line-height: 1.6;
}

.form-row.is-error input[type="text"],
.form-row.is-error input[type="email"],
.form-row.is-error input[type="file"],
.form-row.is-error select,
.form-row.is-error textarea {
    border-color: #d94c4c;
    background: #fff8f8;
}

.form-row.is-error .form-label,
.form-row.is-error .check-single,
.form-row.is-error .check-item,
.form-row.is-error .radio-item {
    color: #972f2f;
}

.form-error-text {
    margin: 0.45rem 0 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #b23838;
}

.form-actions {
    margin-top: 1.8rem;
	text-align: center;
}

/*個人情報同意チェックを中央寄せ*/
.form-row.js-privacy-row .check-single {
	display: flex;
	width: fit-content;
	margin: 0 auto;
	align-items: center;
	gap: 0.5rem;
}

/*送信ボタン*/
.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 13em;
    min-height: 56px;
    border: none;
    border-radius: 999px;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, #2f55d4 0%, #5d7bff 100%);
    color: #fff;
    font: inherit;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 24px rgba(47, 85, 212, 0.18);
}

.submit-button:hover {
    transform: translateY(-1px);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 767px) {
    .contact-form-inner {
        border-radius: 22px;
    }

    .select-inline-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .js-date-select-group[data-date-mode="ymd"] .select-inline-group {
        grid-template-columns: 1fr;
    }

    .submit-button {
        width: 100%;
        min-width: 0;
    }
}

/*郵便番号・都道府県はPCで少し短くする*/
@media (min-width: 768px) {

	.h-adr input[name="postal_code"],
	.h-adr input[name="address_pref"] {
		width: min(100%, 10rem);
	}

}

.bottom-banner {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
width: 92%;
display: flex;
justify-content: space-between;
gap: 12px;
padding: 30px;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
z-index: 9999;
}

.banner-btn {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
background: var(--primary-color);
background-size: 300% 300%;
animation: gradientMove 6s linear infinite;
text-decoration: none;
font-weight: bold;
color: #000;
letter-spacing: 0.08em;
border: 2px solid rgba(0,0,0,0.8);
transition: all 0.3s ease;
padding: 14px 36px;
line-height: 1.1;
font-size: 16px;
cursor: pointer;
}
.banner-btn {
  gap: 8px;
}

.banner-btn:hover {
transform: translateY(-2px);
}


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

.bottom-banner {
bottom: 10px;
width: 95%;
padding: 20px;
}

.banner-btn {
padding: 12px 16px;
line-height: 1.1;
font-size: 15px;
white-space: nowrap;
}
}

.btn-gradient-animated {
display: flex;
background: var(--gradient-main);
background-size: 300% 300%;
color: white;
border: none;
padding: 18px 36px;
font-size: 14px;
cursor: pointer;
font-weight: bold;
transition: all 0.3s ease;
animation: gradientMove 6s linear infinite;
text-align: center;
}

.btn-gradient-animated:hover {
transform: translateY(-2px);
}

.btn-fit {
  display: inline-block;
  padding: 10px 20px;
}

/*h1*/
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/*Link*/
.group-links {
	background: #111;
	padding: 4vw var(--content-space-l);
}

.group-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.group-card {
	display: block;
	text-decoration: none;
	background: #000;
	border: 1px solid rgba(255,255,255,0.2);
	padding: 1.5rem;
	text-align: center;
	transition: 0.3s;
}

.group-card h3 {
	margin: 0;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
}

.group-card p {
	margin: 0.5rem 0 0;
	font-size: 0.8rem;
	color: #ccc;
}

/* hoverでちょいかっこよく */
.group-card:hover {
	transform: translateY(-3px);
	border-color: var(--primary-color);
	color: var(--primary-color);
}
.group-links {
	margin-bottom: 0;
	padding-bottom: var(--content-space-l);
}
/* スマホ対応 */
@media (max-width: 800px) {
	.group-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* モーダル */
.popup-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.95);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.popup-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* 画像 */
.popup-img-wrap {
	position: relative;
	max-width: 90%;
}

.popup-img-wrap img {
	width: 100%;
	max-height: 70vh;
	object-fit: contain;
	border-radius: 12px;
}

/* キャプション（←ここが重要） */
.popup-caption {
	color: #fff;
	margin-top: 15px;
	text-align: left;
	padding: 0 24px 30px; /* ←左右余白＋下余白 */
	max-width: 480px;
}

.popup-caption h3 {
	margin: 0 0 10px;
	font-size: 18px;
}

.popup-caption p {
	font-size: 14px;
	opacity: 0.8;
	line-height: 1.8;
}

/* 閉じる */
.popup-close {
	position: absolute;
	top: 20px;
	right: 20px;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
}

/* 左右ボタン */
.popup-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 30px;
	color: #fff;
	cursor: pointer;
	padding: 10px;
}

.popup-prev { left: 10px; }
.popup-next { right: 10px; }

/* ドット */
.popup-dots {
	display: flex;
	gap: 6px;
	margin-top: 10px;
}

.popup-dots span {
	width: 8px;
	height: 8px;
	background: #777;
	border-radius: 50%;
}

.popup-dots .active {
	background: #fff;
}


.menu-list {
	background: #000;
	color: #fff;
	padding: 30px;
	margin-top: 0;
}

.menu-title {
	color: #ff0000;
	font-weight: bold;
	font-size: 12px;
	margin-bottom: 15px;
	border-left: 4px solid #ff0000;
	padding-left: 10px;
	letter-spacing: 0.1em;
}

.menu-item {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	padding: 8px 0;
}

.menu-item .name {
	font-size: 10px;
	font-weight: bold;
}

.menu-item .price {
	font-family: var(--accent-font), var(--base-font);
	font-size: 0.8rem;           /* ← icon1と同じ */
	letter-spacing: 0.05em;
	font-weight: bold;         /* ←太すぎ防止 */
}

@media (max-width: 768px) {
  .menu-list {
    padding: 15px 10px;
  }
}

.badge {
	display: inline-block;
	font-size: 10px;
	padding: 2px 6px;
	margin-right: 6px;
	border-radius: 3px;
	font-weight: bold;
	letter-spacing: 0.05em;
}

/* 限定 */
.badge.limited {
	padding: 0px 3px;
	font-size: 9px;
	background: #ff0000;
	color: #fff;
	border-radius: 4px;
}

/* 希少 */
.badge.rare {
	padding: 0px 3px;
	font-size: 9px;
	background: #fdcb06;
	color: #000;
	border-radius: 2px;
}

/* アコーディオン */
.accordion-008 {
max-width: auto;
margin-bottom: 10px;
border-radius: 0px;
background-color: var(--primary-color);
margin: 0 50px; /* 左右に20px */	
}

.accordion-008 summary {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
padding: 1em 2em;
color: #000;
font-weight: bold;
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: 3px solid #000;
border-right: 3px solid #000;
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(--bg-inverse-color);

}

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

}

.ta caption {
font-size: 1.2rem;
padding: 0.2rem 1rem;
background: rgba(255,255,255,0.2);
color: #fff;
font-weight: bold;
margin-bottom: 1rem;
}

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

.ta tr {
border-bottom: 1px solid rgba(255,255,255,0.3);
color: #fff;
font-weight: bold;
}

.ta th, .ta1 td {
font-size: 1rem;
padding: 1rem;
word-break: break-all;
}


.ta th {
padding: 1rem;
word-break: break-all;
width: 60%;
text-align: left;
font-weight: normal;
margin-left: 50px;
padding-left: 150px;

}

.ta td {
text-align: right;
margin-right: 30px;
padding-right: 200px;
font-family: var(--accent-font), var(--base-font);
letter-spacing: 0.05em;

}

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

.accordion-008 {
max-width: auto;
margin-bottom: 10px;
border-radius: 0px;
background-color: var(--primary-color);
margin: 0 10px; /* 左右に20px */	
}

.ta th {
width: 60%;
padding-left: 40px;
}
	
.ta td {
padding-right: 40px;
}
}

.ta1 caption {
font-weight: bold;
padding: 0.2rem 1rem;
background: rgba(0,0,0,0.1);
color: var(--bg-inverse-color);
margin-bottom: 1rem;
border-radius: 0px;
}

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

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

.ta1 th, 
.ta1 td {
padding: 1rem;
word-break: break-all;
}

.ta1 th {
width: 50%;
text-align: center;
margin-left: 0px;
padding-left: 60px;
}

.ta1 td {
padding: 1rem;
text-align: left;

}


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


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


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

.ta2 caption {
font-size: 1.2rem;
padding: 0.2rem 1rem;
background: rgba(255,255,255,0.2);
color: #000;
font-weight: bold;
margin-bottom: 1rem;
border-radius: 5px;
}

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

.ta2 tr {
border-bottom: 1px solid rgba(255,255,255,0.3);
color: #000;
font-weight: bold;
}

.ta2 th, 
.ta2 td {
padding: 15px 8px;
  }

.ta2 th {
padding: 1rem;
word-break: break-all;
text-align: left;
font-weight: normal;
padding-left: 12px;
width: 65%;
white-space: nowrap;
}

.ta2 td {
text-align: right;
padding-right: 12px;
font-family: var(--accent-font), var(--base-font);
letter-spacing: 0.05em;
width: 35%;
}


.yakiniku-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ホバー */
.yakiniku-btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* クリック時（押し込み感） */
.yakiniku-btn:active {
  transform: translateY(2px);
  opacity: 0.8;
}

.breadcrumb {
  margin-top: 10px;
  margin-bottom: 20px;
}

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

.breadcrumb li {
  color: #fff;
}

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

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

.breadcrumb a:hover {
  text-decoration: underline;
}