@charset "utf-8";



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


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap');


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


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

	--bg-color: #e3dfd7;			/*主にテンプレートの背景色*/
	--bg-inverse-color: #47443f;	/*上のbg-colorの対として使う色*/
	
	--content-space: 8.33vw;  /*余白の一括管理用。画面幅100% = 100vwです。（grid-boxと幅を合わせる為に100÷12=8.33にしました）*/

}

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

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

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


/*animation11のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


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


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

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

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

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


body {
	margin: 0;padding:0;
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
	font-weight: 300;
	-webkit-text-size-adjust: none;
	background: var(--bg-color);	/*背景色*/
	color: var(--bg-inverse-color);		/*文字色*/
	line-height: 3;		/*行間*/
	overflow-x: hidden;
}
/* メニュー開いたらSNSアイコンを隠す */
body.menu-open .icons {
	opacity: 0;
	pointer-events: none;
	transition: 0.2s;
}
/*リセット*/
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 > ol,section > ul {margin-left: 2rem;}


/*sectionの設定
---------------------------------------------------------------------------*/
section {
	padding: 0 var(--content-space);
	margin: 3vw 0;
}


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

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


/*conatiner（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	animation: opa1 0.2s 0.4s both;  /*0.4秒待機後、0.2秒かけてフェードイン*/
	display: grid;
	grid-template-rows: auto 1fr;	/*主にトップページ以外（※トップはコンテンツが多いので）用。mainの内容が少ない場合にfooterが浮かないように。*/
	min-height: 100vh;
	min-height: 100dvh;
}


/*header（ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	position: relative;
}

/*ロゴ画像*/
#logo {

  display: block;

  width: fit-content;

  margin: 10px auto;

}

#logo img {

	display: block;
	width: 180px;
	margin-top: 100px;
	margin-bottom: 60px;

}

@media (max-width: 800px) {

  #logo img {

    width: 160px;

    margin-top: 70px;

    margin-bottom: 60px;

  }

}
/*画面右上の「Online Shop」ボタン*/
#nav {
	list-style: none;margin: 0;
	position: fixed;
	z-index: 99;
	right: 75px;	/*右からの配置場所*/
	top: 0px;		/*上からの配置場所*/
	display: flex;
	gap: 0.5rem;	/*ボタンを複数おいた場合のボタン同士に空けるスペース*/
	font-size: 0.8rem;	/*文字さいう80%*/
}
#nav a {
	text-decoration: none;display: block;
	background: #fff;	/*背景色*/
	border-radius: 0px 0px 5px 5px;	/*角を丸くする。左上、右上、右下、左下の順。*/
	padding: 0 1rem;	/*ボタン内の余白。上下は0、左右に1文字分。*/
}

.top-h1 {
	margin: 0 0 14px;
	font-size: 0.85rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.02em;
}

@media screen and (max-width: 800px) {
	.top-h1 {
		margin: 0 0 10px;
		line-height: 1.4;
		letter-spacing: 0.01em;
	}
}

/*見出し
---------------------------------------------------------------------------*/
/*h2と、grid-box内のh4*/
#container h2, .grid-box h4 {
	display: flex;
	flex-direction: column-reverse;	/*spanと表示順を入れ替える*/
	font-size: 1.8rem;	/*文字サイズ1.8倍*/
	font-weight: 400;
}
#container h2, .grid-box p {
	line-height: 100%;
}

/*上記のh2とh4の中で使うspan（小文字）*/
#container h2 span, #container h4 span {
	font-size: 0.8rem;	/*文字サイズ0.8倍*/
	opacity: 0.5;		/*透明度50%*/
	letter-spacing: 0.4em;	/*文字間隔を少しだけ広く*/
	margin-top: 30px;
	margin-bottom: 10px;
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;
	z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px var(--content-space) 20px;		/*ブロック内の余白*/
	background: var(--bg-color);	/*背景色*/
	color: var(--bg-inverse-color);	/*文字色*/
}

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

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

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none; /* デフォルトは非表示 */
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	width: 70px;	/*ボタンの幅*/
	height: 70px;	/*ボタンの高さ*/
	transform-origin: right top;
	transform: scale(1);	/*大きさを調整したい場合はここの「1」を変更します。1.2や0.7など。*/
}

/*バツ印が出ている時のボタン色*/
#menubar_hdr.ham {
	background: var(--bg-color);
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 24px;
	width: 25px;
	height: 2px;		/*線の高さ*/
	background: var(--bg-inverse-color);	/*線の色*/
	transition: 0.3s;
}

#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;
}


/*list-grid（３列に並んだリストブロック）
---------------------------------------------------------------------------*/
.list-grid .list * {
	margin: 0;
	padding: 0;
}

/*ブロック全体を囲むブロック*/
/*ブロック全体を囲むブロック*/
.list-grid {
	display: grid;
	margin: 40px auto;
	width: min(calc(100% - 40px), 1200px);
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	align-items: start;
	line-height: 2;
}
/*ボックス１個あたり*/
.list-grid .list {
	display: grid;
	text-align: left;
	position: relative;
}

/*ボックス内のfigure画像（※アスペクト比を1:1にした場合）*/
.list-grid.square .list figure {
	width: 100%;
	aspect-ratio: 1 / 1;
}

.list-grid.square .list figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin-bottom: 10px;
}

/*ボックス内のh4（見出し）*/
.list-grid h4 {
	font-weight: 500;
	line-height: 1.4;
	font-size: 1.05rem;
}

/*ボックス内のp（文章）*/
.list-grid p {
	font-weight: normal;
	font-size: 0.95rem;
	opacity: 0.7;
	text-align: justify;
	line-height: 1.6;
}

/* ---------- スマホ ---------- */
@media screen and (max-width: 800px) {
	.list-grid {
		width: calc(100% - 24px);
		margin: 20px auto;
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 14px;
		line-height: 1.7;
	}

	.list-grid.square .list figure img {
		margin-bottom: 8px;
	}

	.list-grid h4 {
		font-size: 0.95rem;
		line-height: 1.4;
	}

	.list-grid p {
		font-size: 0.85rem;
		line-height: 1.5;
	}
}
/*grid-box（色々なレイアウト用）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.grid-box {
	margin-bottom: 5vw;	/*下に空けるスペース。100vw = 画面幅100%なので、この場合は5%。*/
}

/*section内で使うgrid-boxの左右の余白をなくす*/
section .grid-box {
	margin-left: calc(-1 * var(--content-space));
	margin-right: calc(-1 * var(--content-space));
}

/*ボックス内のh2*/
.grid-box h2 {
	grid-column: 2 / 12;
}

/*ボックス内のh4*/
.grid-box h4{
	margin: 0;
}

/*画像と文字を囲むブロック*/
.grid-box article {
	display: grid;
	grid-template-columns: repeat(12, 1fr); /* 12等分 */
	gap: 5vw; /* 要素間の隙間 */
	margin-bottom: 5vw;	/*下に空けるスペース*/
	grid-auto-flow: dense;
}
.grid-box article:last-child {
  margin-bottom: 0;	/*最後のブロックの下マージンをなくす*/
}

/*imageとtextの設定*/
.grid-box .image,
.grid-box .text {
	align-self: center;
	position: relative;
}

/*imageのみの設定*/
.grid-box .image {
	grid-column: 1 / -1;
}

/*textのみの設定*/
.grid-box .text {
	grid-column: 2 / 12;
}

/*装飾イラスト用*/
.grid-box .kazari {
	display: block;
	position: absolute;
	z-index: 99;
	transform: translate(-50%, -50%);
	width: 150px;	/*幅*/
}

/*image-wide（横長で使う場合）*/
.grid-box .image-wide {
	grid-column: 2 / 12;
}

/*image-01*/
.grid-box .image-01 {
	grid-column: 8 / 12;
}
/*.text-01*/
.grid-box .text-01 {
	grid-column: 2 / 8;
}
/*image-01（左右入れ替え用）*/
.grid-box article.reverse .image-01 {
	grid-column: 2 / 6;
}
/*text-01（左右入れ替え用）*/
.grid-box article.reverse .text-01 {
	grid-column: 6 / 12;
}

/*image-02*/
.grid-box .image-02 {
	grid-column: 1 / 10;
}
/*text-02*/
.grid-box .text-02 {
	grid-column: 2 / 10;
}
/*image-02（左右入れ替え用）*/
.grid-box article.reverse .image-02 {
	grid-column: 4 / -1;
}
/*text-02（左右入れ替え用）*/
.grid-box article.reverse .text-02 {
	grid-column: 4 / 12;
}

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

	/*section内で使うgrid-boxの左右の余白をデフォルトに戻す*/
	section .grid-box {
		margin-left: var(--content-space);
		margin-right: var(--content-space);
	}

	/*画像と文字を囲むブロック*/
	.grid-box article {
		display: block;
		margin-bottom: 60px;
	}
	
	}/*追加指定ここまで*/

.h2-small-local {
	font-size: 1.35rem !important;
	line-height: 1.5;
}

@media screen and (max-width: 800px) {
	.h2-small-local {
		font-size: 1.1rem !important;
		line-height: 1.45;
		
	}
}

/*お知らせページ（new.html）
---------------------------------------------------------------------------*/
	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	/*ブロック全体*/
	.new {
		display: grid;
		gap: 1rem;  /*日付や文章の間にとるスペース。１文字分。*/
		grid-template-columns: auto 1fr;	/* 日付の幅は自動で、内容が入るブロックは残り幅一杯とる。 */
	}

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


/*背景画像が少しずつ上に移動する
---------------------------------------------------------------------------*/
/*画像ボックス*/
.bg-slideup {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 50vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bg-slideup.bg-photo-01 {
	background-image: url("../images/01.webp");
}

.bg-slideup.bg-photo-02 {
	background-image: url("../images/yakitori.webp");
}

.bg-slideup.bg-photo-03 {
	background-image: url("../images/36.webp");
}

.bg-slideup.bg-photo-04 {
	background-image: url("../kumamoto-local-food/images/basashi.webp");
}
.bg-slideup.bg-photo-05 {
	background-image: url("../kumamoto-local-food/images/marudori-karaage.webp");
}
.bg-slideup.bg-photo-06 {
	background-image: url("../kumamoto-local-food/images/basashi.webp");
}
.bg-slideup.bg-photo-07 {
	background-image: url("../side-menu/images/oyakodon.webp");
}
.bg-slideup.bg-photo-08 {
	background-image: url("../mizutaki-motsunabe/images/mizutaki.webp");
}
.bg-slideup.bg-photo-09 {
	background-image: url("../mizutaki-motsunabe/images/motsunabe.webp");
}
.bg-slideup.bg-photo-10 {
	background-image: url("../kumamoto-local-food/images/basashi.webp");
}
.bg-slideup.bg-photo-11 {
	background-image: url("../kumamoto-local-food/images/birdman2.mp4");
}

	@media screen and (max-width:800px) {
.bg-slideup {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 20vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

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

/*btn1（ボタン）
---------------------------------------------------------------------------*/
.btn1 a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 50px;
	margin: 0px 0px 20px 0px;
	text-decoration: none;
	background: #000;
	color: #fff;
	letter-spacing: 0.1em;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.1);
	padding: 0;
}

/*マウスオン時*/
.btn1 a:hover {
	background: #eee;	/*背景色*/
	color: #000;		/*文字色*/
	box-shadow: none;	/*ボタンの影を消す*/
}

.btn-gradient-animated {
	display: flex;
	background: var(--bg-inverse-color);
	background-size: 300% 300%;
	color: var(--bg-color);
	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);
	}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: normal;		/*太字に*/
	padding: 0.2rem 1rem;		/*ボックス内の余白*/
	background: rgba(0,0,0,0.1);	/*背景色*/
	color: var(--bg-inverse-color);			/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid rgba(0,0,0,0.3);	/*テーブルの上の線。幅、線種、0,0,0は黒のことで0.3は色が30%出た状態。*/
	width: 100%;				/*幅*/
	margin-bottom: 2rem;		/*テーブルの下に空けるスペース。２文字分。*/
	line-height: 2;
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid rgba(0,0,0,0.3);	/*テーブルの下の線。幅、線種、0,0,0は黒のことで0.3は色が30%出た状態。*/
}

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

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: right;	/*左よせにする*/
}
.ta1 td {
	width: 70%;			/*幅*/
	text-align: left;	/*左よせにする*/
}

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

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;		/*幅*/
		}

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

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

.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);
	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: 30%;
	}

.ta2 td {
	text-align: left;
	padding-right: 10px;
	letter-spacing: 0.05em;
	width: 50%;
	}


/*ボタン
---------------------------------------------------------------------------*/
.btn {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	cursor: pointer;
	background: rgba(0,0,0,0.7);	/*背景色*/
	color: #fff;  /*文字色*/
	padding: 1rem 2rem;
	border-radius: 5px;
	transition: 0.3s;
}


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

/*フッターボックス全体*/
footer {
	font-size: 0.85rem;
	line-height: 2;
    background: var(--primary-color);
    color: var(--primary-inverse-color);
	}

/*ロゴの最大幅*/
footer .logo {
	max-width: 150px;
	margin: 0 auto;
}

footer .logo img {
	display: block;
	margin: 0 auto;
}

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

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:800px) {
	footer .logo {
	max-width: 150px;
	margin: 0 auto;
}
	
		}
.others-iframe1 {

	width: 100%;
	max-width: 1100px;
	margin: 0 auto;

}

.others-iframe1 iframe {

	display: block;
	width: 100%;
	height: 320px;
	margin-top: 20px;
	border: 0;

}
/*SNSアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	line-height: 2;
	display: flex;
	flex-direction: column;  /*縦並び*/
	text-align: center;
	position: fixed;  /*アイコンを固定*/
	gap: 25px;
	right: 23px;  /*右からの配置場所*/
	top: 90px;  /*上からの配置場所*/
}
.icons i {
	font-size: 20px;	/*アイコンサイズ*/
}


/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
	background: #f4f4f2;
	padding-top: 3vw;
	padding-bottom: 3vw;
	
}
.bg1 p {
    text-align: justify;
}
/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むブロック*/
.slide-thumbnail1 {
	overflow-x: hidden;
	margin-bottom: 2rem;
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
	overflow: hidden;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 0 1vw;	/*上下の余白はなし、左右への余白は画面の1%*/
}


/*段違いに見せる為、偶数番目の画像に上に余白を作る。*/
.slide-thumbnail1 .img div:nth-of-type(even) {
	margin-top: 30px;
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .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);}
}

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

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

/* =========================
   Yakitori 5-visible slider
========================= */
.yakitori-slider-section {
  background: transparent;
  width: 100%;
  padding: 0;
  overflow: hidden;
  margin-top: 60px;
}

/* 商品名＋金額 全体 */
.yakitori-meta {
  position: relative;
  width: 320px;         /* 固定幅 */
  margin: 0 auto 24px;
  padding: 12px 23px;
  text-align: center;
}

/* カギカッコ装飾 */
.yakitori-meta::before,
.yakitori-meta::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 40px;
  border: 1px solid #333;
}

/* 左上 */
.yakitori-meta::before {
  top: 1px;
  left: 6px;
  border-right: none;
  border-bottom: none;
}

/* 右下 */
.yakitori-meta::after {
  right: 11px;
  bottom: 6px;
  border-top: none;
  border-left: none;
}

/* 商品名 */
.yakitori-meta h2 {
  margin: 0 0 4px;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.2;
}
.yakitori-meta h2 {
	display: block !important;
	flex-direction: unset !important;
}

.yakitori-meta h2 small {
	display: inline !important;
	position: static !important;
	float: none !important;
	font-size: 0.7em !important;
	font-weight: 400 !important;
	white-space: nowrap !important;
	vertical-align: baseline !important;
	margin-left: 0.15em;
}
/* 金額 */
.yakitori-meta p {
  margin: 0px 0px 0px 90px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}

/* 税込部分 */
.yakitori-meta p .tax {
  font-size: 10px;
  font-weight: normal;
}

.yakitori-slider-wrap {
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

@media (min-width: 801px) {
  .yakitori-slider-wrap {
    width: calc(100% - 200px);
    margin: 0 auto 30px;
  }
}
.yakitori-stage {
  width: 100%;
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 1fr 1fr;
  gap: 2vw;
  align-items: center;
  justify-items: center;
  padding: 0 2vw;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.yakitori-stage.dragging {
  cursor: grabbing;
}

.yakitori-item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: transform 0.28s ease, opacity 0.28s ease;
  pointer-events: none;

}

.yakitori-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.28s ease, opacity 0.28s ease;
  pointer-events: none;
  margin-bottom: 60px;
}

/* 中央 */
.yakitori-item.is-center img {
  width: 100%;
  max-height: 88vh;
  opacity: 1;
}

/* 中央左右 */
.yakitori-item.is-near img {
  width: 86%;
  max-height: 62vh;
  opacity: 0.72;
}

/* 外側 */
.yakitori-item.is-far img {
  width: 62%;
  max-height: 40vh;
  opacity: 0.45;
}

/* スマホ */
@media (max-width: 800px) {
  .yakitori-meta {
    padding: 10px 18px;
    margin: 0 auto 18px;
  }

  .yakitori-meta::before,
  .yakitori-meta::after {
    width: 12px;
    height: 32px;
  }
.yakitori-meta {
  position: relative;
  width: 320px;          /* 固定幅 */
  margin: 0 auto 24px;
  padding: 12px 30px;
  text-align: center;
}

  .yakitori-meta h2 {
    font-size: clamp(1.3rem, 5vw, 2rem);
  }

  .yakitori-meta p {
    font-size: 16px;
  }

  .yakitori-meta p .tax {
    font-size: 9px;
  }

  .yakitori-stage {
    min-height: 54vh;
    grid-template-columns: 0.8fr 1fr 1.6fr 1fr 0.8fr;
    gap: 1.5vw;
    padding: 0 1vw;
  }

  .yakitori-item.is-center img {
    width: 100%;
    max-height: 54vh;
  }

  .yakitori-item.is-near img {
    width: 94%;
    max-height: 38vh;
  }

  .yakitori-item.is-far img {
    width: 92%;
    max-height: 22vh;
  }
}

/* =========================
   Tsukune menu list
========================= */
.tsukune-menu-section {
  width: 100%;
  padding: 0 !important;
  margin: 0px 0px 80px 0px;
}

.tsukune-menu-list {
  display: grid;
  gap: 1rem;
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 0 2.5vw;
  transform: none;
}

.tsukune-menu-item {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  column-gap: 1.2rem;
  min-height: 150px;
}

.tsukune-photo {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}

.tsukune-photo img {
  display: block;
  width: 100%;
  max-width: 560px;
  max-height: 140px;
  object-fit: contain;
}

.tsukune-text {
  width: 100%;
}

.tsukune-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
  max-width: 100%;
}

.tsukune-text h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.5rem);
  line-height: 1.15;
  font-weight: 700;
  min-width: 0;
}

.tsukune-text .price {
  margin: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.55rem);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.tsukune-text .price span {
  font-size: 0.72em;
  font-weight: 600;
}

.tsukune-text .en {
  margin: 0;
  font-size: clamp(0.9rem, 1vw, 1.15rem);
  line-height: 1;
  opacity: 0.9;
}

.tsukune-text h3 .small-title {
  font-size: 0.72em;
}

/* スマホ：レイアウトそのままで小さくする */
@media (max-width: 800px) {
  .tsukune-menu-list {
    gap: 1rem;
    width: 100%;
    padding: 0 3vw;
  }

  .tsukune-menu-item {
    grid-template-columns: 48% 52%;
    column-gap: 0.5rem;
    min-height: 78px;
  }

  .tsukune-photo {
    height: 78px;
  }

  .tsukune-photo img {
    max-height: 72px;
    max-width: none;
  }

  .tsukune-head {
    gap: 0.2rem;
    margin-bottom: 0.1rem;
    max-width: 100%;
  }

  .tsukune-text h3 {
    font-size: clamp(0.95rem, 4vw, 1.2rem);
    line-height: 1.1;
    min-width: 0;
  }

  .tsukune-text .price {
    font-size: clamp(0.72rem, 3vw, 0.95rem);
    line-height: 1;
    white-space: nowrap;
  }

  .tsukune-text .price span {
    font-size: 0.68em;
  }

  .tsukune-text .en {
    font-size: 0.6rem;
    line-height: 1.1;
  }

  .tsukune-text h3 .small-title {
    font-size: 0.72em;
  }
}

article.c .text p {
	line-height: 1.8;
	margin: 0 0 0.8em;
	padding-left: 500px;
	padding-right: 500px;
	text-align: justify;
}

/* 大きめPC */
@media (max-width: 1400px) {
	article.c .text p {
		padding-left: 300px;
		padding-right: 300px;
	}
}

/* ノートPC〜タブレット横 */
@media (max-width: 1200px) {
	article.c .text p {
		padding-left: 120px;
		padding-right: 120px;
	}
}

/* タブレット〜スマホ */
@media (max-width: 800px) {
	article.c .text p {
		padding-left: 30px;
		padding-right: 30px;
	}
}
/*Link*/
.group-links {
	padding: 4vw var(--content-space-l);
	margin: 80px 30px 50px 30px !important;
	line-height: 1.5;
}

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

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

.group-card h3 {
	margin: 0;
	font-size: 1rem;
	letter-spacing: 0.05em;
	line-height: 2;
	
}

.group-card p {
	margin: 0.5rem 0 0;
	font-size: 0.8rem;
	color: #474747;
	text-align: center
}

/* 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);
	}
	.group-links {
	padding: 4vw var(--content-space-l);
	margin: 80px 10px 50px 10px !important;
	line-height: 1.5;
}

}

/* =========================
   Add-on Menu
========================= */
.add-menu-section {
  padding: 40px 20px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.add-menu-title {
  margin-bottom: 30px;
  line-height: 1.2;
}

.add-menu-title span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-top: 8px;
}

.add-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.add-menu-col {
  padding-left: 18px;
  border-left: 2px solid rgba(120, 95, 45, 0.45);
}

.add-menu-col h4 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.2;
  color: #b63a2b;
  font-weight: 500;
}

.add-menu-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.add-menu-col li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.add-menu-col li:last-child {
  border-bottom: none;
}

.add-menu-col li span {
  font-size: 1rem;
  line-height: 1.5;
}

.add-menu-col li b {
  font-size: 1.05rem;
  line-height: 1.2;
  white-space: nowrap;
  font-weight: 700;
}

.add-menu-col li b small {
  font-size: 0.72em;
  font-weight: 500;
}

.add-menu-note {
  margin: 18px 0 0;
  font-size: 0.78rem;
  opacity: 0.7;
  text-align: right;
}


/* スマホ */
@media (max-width: 900px) {
  .add-menu-section {
    padding: 30px 12px 10px;
  }

  .add-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .add-menu-col {
    padding-left: 14px;
  }

  .add-menu-col h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .add-menu-col li {
    padding: 7px 0;
  }

  .add-menu-col li span {
    font-size: 0.96rem;
  }

  .add-menu-col li b {
    font-size: 1rem;
  }

  .add-menu-note {
    text-align: left;
    margin-top: 14px;
  }
}

.image.right {
  text-align: right;
}

/*calendar
---------------------------------------------------------------------------*/

.calendar-wrap {
  max-width: 1110px;
  margin: 0 auto 50px;
  display: grid;
  gap: 32px;
}

.calendar-block {
  border: 1px solid rgba(0,0,0,0.12);
  padding: 20px;
}

.calendar-title {
  margin: 0 0 16px;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #47443f;
}

.calendar {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  color: #47443f;
}

.calendar th,
.calendar td {
  border: 1px solid rgba(0,0,0,0.12);
  text-align: center;
  vertical-align: middle;
  padding: 8px;
  font-size: 14px;
  font-weight: bold;
}

.calendar th {
  color: #47443f;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.08);
}

.calendar td {
  transition: background-color 0.2s ease;
}

.calendar td:hover {
  color: #fff;
  background: #1b1b1b;
}

.calendar .mute {
  color: #666;

}

.calendar .sun {
  color: #ff7b7b;
}

.calendar .sat {
  color: #7db8ff;
}

.calendar .today {
  background: #ffc200;
  color: #000;
  font-weight: 900;
}

.calendar .off {
  background: #7d7d7d;
  color: #fff;
}

.calendar .note {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: normal;
  line-height: 1.3;
  color: inherit;
  opacity: 0.9;
}

@media screen and (max-width: 800px) {
  .calendar-wrap {
    gap: 20px;
  }

  .calendar-block {
    padding: 12px;
  }

  .calendar-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .calendar th,
  .calendar td {
    padding: 6px 4px;
    height: 40px;
    font-size: 12px;
  }

  .calendar .note {
    font-size: 9px;
  }
}

.p-center-small {
	text-align: left;
	font-size: 0.85rem;
	color: #000;
	line-height: 20px;
	}

.p-center-small a {
	color: red;
	text-decoration: none;
	font-weight: bold;
	}

@media (max-width:800px) {
.p-center-small {
	font-size: 0.8rem;
	}
	}

.others-sns1 li a {
	font-size: 17px;
	text-decoration: none;
	}

.main-copy {
	font-size: 0.85rem;
	}

.center-title {
	text-align: center;
	font-size: 17px;
	margin: 1.8rem auto 1.8rem;
	}

.small-title {
	font-size: 1.1rem;
	line-height: 1.5;
	text-align: justify;
	}

.info-section {
	width: min(100% - 20px, 800px);
	margin-left: auto;
	margin-right: auto;
}

.info-section .small-title {
	padding-inline: clamp(20px, 10vw, 200px);
	box-sizing: border-box;
	margin-top: 30px;
	margin-bottom: 10px;

	}

/* =========================
   PC大だけ横並び
========================= */
@media screen and (min-width: 1100px) {
	.list-grid .no-image-group {
		grid-column: 1 / 4;
		margin-top: 30px;
	}

	.list-grid .no-image-group .text {
		display: flex;
		align-items: flex-start;
		gap: 120px;
		padding-top: 0;
		padding-left: 0;
	}

	.list-grid .no-image-group .mini-menu-title {
		font-size: 1.1rem;
		font-weight: 500;
		white-space: nowrap;
		padding-top: 2px;
		margin-right: 210px;
	}

	.list-grid .no-image-group .mini-menu-item {
		margin: 0;
		padding: 0;
		border: none;
		min-width: 120px;
	}

	.list-grid .no-image-group .mini-menu-item h4 {
		font-size: 1rem;
		line-height: 1.7;
		margin-bottom: 4px;
		word-break: keep-all;
		white-space: nowrap;
				margin-right: 210px;
		
	}

	.list-grid .no-image-group .mini-menu-item p {
		font-size: 1rem;
		line-height: 1.6;
		text-align: left;
		word-break: keep-all;
		white-space: nowrap;
		opacity: 0.75;
		margin-top: -10px;
				margin-right: 210px;
	}
}
/* =========================
   スマホ
========================= */
@media screen and (max-width: 800px) {
	.list-grid .no-image-group {
		grid-column: auto;
	}

	.list-grid .no-image-group .text {
		display: block;
		padding-left: 18px;
	}

	.list-grid .no-image-group .mini-menu-title {
		font-size: 0.95rem;
		font-weight: 500;
		margin-top: 10px;
		margin-bottom: 12px;
	}

	.list-grid .no-image-group .mini-menu-item {
		margin-bottom: 14px;
		padding: 0 0 14px;
		border-bottom: 1px solid rgba(0,0,0,0.12);
	}

	.list-grid .no-image-group .mini-menu-item:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}

	.list-grid .no-image-group .mini-menu-item h4 {
		font-size: 1rem;
		line-height: 1.6;
		margin-bottom: 2px;
		word-break: keep-all;
	}

	.list-grid .no-image-group .mini-menu-item p {
		font-size: 1rem;
		line-height: 1.5;
		text-align: left;
		opacity: 0.75;
	}
}


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

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  margin: 120px 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;
}

/* =========================================================
   コース料理
========================================================= */
.course-section {
	width: min(100%, 1200px);
	margin: 50px auto 180px;
	padding: 0 40px;
}

.course-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 50px 40px;
}

.course-col {
	position: relative;
	padding: 0 10px 10px 22px;
	border-left: 2px solid #d8cfbf;
}

.course-col h3 {
	margin: 0 0 6px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.04em;
	color: var(--bg-inverse-color);		/*文字色*/}

.course-en {
	margin: 0 0 18px;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	color: var(--bg-inverse-color);		/*文字色*/}

.course-price {
	margin: 0 0 8px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	color: var(--bg-inverse-color);		/*文字色*/}

.course-price span {
	display: inline-block;
	margin-right: 10px;
	padding: 2px 8px;
	background: #d61f26;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.4;
	vertical-align: middle;
}

.course-price small,
.course-price-sub small {
	font-size: 0.9em;
	font-weight: 500;
}
.course-price large,
.course-price-sub large {
	font-size: 1.5em;
	font-weight: 900;
}

.course-price-sub {
	margin: 0 0 24px;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.5;
	color: #222;
}

.course-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 24px;
	row-gap: 10px;
}

.course-list li {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.9;
	color: var(--bg-inverse-color);		/*文字色*/
	word-break: keep-all;
}

.course-note {
	margin: 35px 0 0;
	font-size: 0.95rem;
	line-height: 1.8;
	color: var(--bg-inverse-color);		/*文字色*/
	text-align: center;
}


/* =========================
   スマホ
========================= */
@media screen and (max-width: 800px) {
	.course-section {
		padding: 0 22px;
		margin: 35px auto 60px;
	}

	.course-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px 14px;
	}

	.course-col {
		padding: 0 0 4px 12px;
	}

	.course-col h3 {
		font-size: 1rem;
		line-height: 1.45;
	}

	.course-en {
		margin-bottom: 10px;
		font-size: 0.7rem;
	}

	.course-price {
		font-size: 0.8rem;
		line-height: 1.6;
	}

	.course-price span {
		display: inline-block;
		margin: 0 0 6px 0;
		padding: 2px 6px;
		font-size: 1.1rem;
		line-height: 1.4;
	}

	.course-price-sub {
		margin-bottom: 14px;
		font-size: 0.75rem;
		line-height: 1.5;
	}

	.course-list {
		grid-template-columns: 1fr;
		row-gap: 4px;
	}

	.course-list li {
		font-size: 0.85rem;
		line-height: 1.65;
	}

	.course-note {
		margin-top: 24px;
		font-size: 0.8rem;
		line-height: 1.7;
		text-align: left;
	}
}

.ta1.formTable th {
	font-size: 0.8rem;
	line-height: 1.5;
	text-align: left;
}

/* リンク右側の外部リンク風アイコン */
a.link-icon::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.45em;
  vertical-align: -0.2em;
  margin-top: 1px;

  background:
    linear-gradient(#47443f, #47443f) right top / 70% 2px no-repeat,
    linear-gradient(#47443f, #47443f) right top / 2px 70% no-repeat,
    linear-gradient(#47443f, #47443f) left bottom / 70% 2px no-repeat,
    linear-gradient(#47443f, #47443f) left bottom / 2px 70% no-repeat;
  box-shadow: 4px -4px 0 -2px #e3dfd7, 4px -4px 0 0 #47443f;
}
a.link-icon,
a.link-icon:hover {
  text-decoration: none;
}

/* =========================================================
   Cookie同意バナー
   焼鳥バードマン銀座通り店用
========================================================= */

.cookie-consent {
	position: fixed;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 9998;
	display: none;
	background: rgba(227,223,215,0.94);
	color: var(--bg-inverse-color);
	border: 1px solid rgba(71,68,63,0.28);
	box-shadow: 0 10px 32px rgba(0,0,0,0.18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.cookie-consent.is-show {
	display: block;
}

.cookie-consent-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(100%, 1120px);
	margin: 0 auto;
	padding: 18px 22px;
}

.cookie-consent-text {
	flex: 1;
}

.cookie-consent-text p {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.8;
	color: rgba(71,68,63,0.84);
}

.cookie-consent-text .cookie-title {
	margin-bottom: 4px;
	color: var(--bg-inverse-color);
	font-weight: 500;
	font-size: 0.92rem;
	letter-spacing: 0.12em;
}

.cookie-consent-text .cookie-title::before {
	content: "";
	display: inline-block;
	width: 1.2em;
	height: 1px;
	margin-right: 0.7em;
	background: currentColor;
	vertical-align: middle;
	opacity: 0.55;
}

.cookie-consent-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-policy-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 110px;
	height: 42px;
	padding: 0 16px;
	border: 1px solid rgba(71,68,63,0.35);
	color: var(--bg-inverse-color);
	text-decoration: none;
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	background: transparent;
}

.cookie-policy-link:hover {
	filter: none;
	background: rgba(71,68,63,0.08);
}

.cookie-accept-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	height: 42px;
	padding: 0 18px;
	border: 1px solid var(--bg-inverse-color);
	background: var(--bg-inverse-color);
	color: var(--bg-color);
	font-family: inherit;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	cursor: pointer;
	transition: 0.3s ease;
}

.cookie-accept-btn:hover {
	transform: translateY(-2px);
	background: #2f2c28;
	border-color: #2f2c28;
}

/* スマホ */
@media (max-width: 800px) {

	.cookie-consent {
		left: 10px;
		right: 10px;
		bottom: 78px; /* 下部固定アイコンと重ならないように */
	}

	.cookie-consent-inner {
		display: block;
		padding: 16px 14px;
	}

	.cookie-consent-text p {
		font-size: 0.72rem;
		line-height: 1.7;
	}

	.cookie-consent-text .cookie-title {
		font-size: 0.82rem;
		margin-bottom: 6px;
	}

	.cookie-consent-actions {
		margin-top: 12px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	.cookie-policy-link,
	.cookie-accept-btn {
		width: 100%;
		min-width: 0;
		height: 40px;
		font-size: 0.72rem;
	}

}

.holiday-title {
  margin-top: 100px;
}

/* アコーディオン */
.accordion-008 {
	max-width: auto;
	margin: 0 clamp(0px, 10vw, 500px) 10px;
	border-radius: 1px;
	background-color: #f4f4f2;
	border: 1px solid var(--primary-color);
}

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

	}

.ta2 caption {
	font-size: 1rem;
	padding: 0.2rem 1rem;
	background: rgba(255,255,255,0.2);
	color: var(--bg-inverse-color);
	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: var(--bg-inverse-color);

	}

.ta2 th, 
.ta2 td {
	font-size: 0.9rem;
	padding: 15px 8px;
	}

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

.ta2 td {
	text-align: right;
	padding-right: 10px;
	letter-spacing: 0.05em;
	width: 50%;
	}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #c02340 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.padding0 {padding: 0 !important;}
.mb0 {margin-bottom: 0px !important;}
.mb3rem {margin-bottom: 3rem !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: rgba(0,0,0,0.7); color: #fff; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.look .color-check {color: yellow !important;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.block {display: block !important;}
