@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');


/*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: #fff;				/*主にテンプレートの背景色*/
	--bg-inverse-color: #877e72;	/*上のカラーの「対」として使う色*/
	
	--title-color: #6f675d;			/*見出しの色*/
	
	--content-space-l: 10vw;  /*主に左右の余白の一括管理用。画面幅100% = 100vwです。*/
	--content-space-s: 2rem;  /*headerやfooter、２カラム以上のレイアウトで主に使います*/

	--base-font: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;  /*フォント指定*/
	--accent-font: "Jost";  /*アクセント用英語フォント指定*/

}

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

	: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.293vw + 10.9px, 15px);	/*画面幅約375px〜1400pxの間で、12px〜15pxに可変*/
	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を読み込みます。*/
}

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

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


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


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;	/*内容をセンタリング*/
	padding: 3rem;		/*ヘッダー内の余白。2文字分。*/
}

/*ロゴ（※画像の場合）*/
#logo {
	margin: 0;
	flex-shrink: 0;
}

#logo img {
	display: block;
	width: 150px;
	margin-left: 15px;
	margin-top: -20px;
}

#logo a,
#logo a:hover,
#logo a:hover img,
#logo img:hover {
	filter: none !important;
	opacity: 1 !important;
}
@media screen and (max-width: 700px) {
	#logo {
		text-align: center;
	}

	#logo img {
		width: 150px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 50px;
	}
}
/* h1：上下マージンを小さくして中央 */

.site-h1 {
	text-align: center;
	font-size: clamp(10px, 1vw, 14px);
	margin-top: -20px !important;
	margin-bottom: 50px !important;
	font-weight: 500;
}
/*メイン画像
---------------------------------------------------------------------------*/
.mainimg {
	max-width: 800px;
	padding-inline: 2rem;
	margin: 0 auto; /* 左寄りを中央寄せに */
	display: grid;
	grid-template-columns: 1fr 200px;
	align-items: center;
	gap: 60px;

}
.mainimg-text {
	min-width: 0;
	white-space: nowrap;
}
.mainimg h2 {
	font-size: clamp(12px, 2vw, 20px);
	text-align: left;
	margin-left: 0px;
	font-weight: 500;
	letter-spacing: -0.03em;
}

.mainimg p {
	font-size: clamp(10px, 2vw, 18px);
	margin-left: 0px;
}

.mainimg-circle {
	width: 180px;
	aspect-ratio: 1 / 1;
	margin-left: auto;
	overflow: hidden;
}
.mainimg-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* 青背景内のイラストを切らずに左いっぱいへ */
.mainimg-blue-reverse > .mainimg-circle {
	width: 180px;
	aspect-ratio: auto;
	margin-left: 0;
	margin-right: auto;
	padding-inline: 0;
	overflow: visible;
}

.mainimg-blue-reverse > .mainimg-circle img {
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: left center;
	display: block;
}

/* 文字：右寄せ */
/* 青背景内の右側テキストの余白を消す */
.mainimg-blue-reverse > .mainimg-text {
	padding-inline: 0;
	margin-right: 0;
}

/* 青バック逆パターン */
.mainimg-blue-reverse {
	background: #294b66;
	color: #fff;
	max-width: 800px;
	margin: 0 auto; /* 左寄りを中央寄せに */
	display: grid;
	grid-template-columns: 200px 1fr;
	align-items: center;
	gap: 60px;
	position: relative;
	padding-block: 40px;
}

.mainimg-blue-reverse::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	background: #294b66;
	z-index: -1;

}
.mainimg-blue-reverse > * {
	width: 100%;
	margin-inline: auto;
	padding-inline: 2rem;
	position: relative;
	z-index: 1;
}

/* 画像：左右が切れないように contain */
.mainimg-blue-reverse .mainimg-circle {
	width: 180px;
	aspect-ratio: 1 / 1;
	margin-left: auto;
	overflow: hidden;
}
.mainimg-blue-reverse .mainimg-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
/* 文字：右寄せ＋白 */
.mainimg-blue-reverse .mainimg-text {
	min-width: 0;
	white-space: nowrap;
	text-align: right;
	color: #fff;
}
.mainimg-blue-reverse h2 {
	font-size: clamp(12px, 2vw, 16px);
	text-align: right;
	color: #fff;
	font-weight: 500;
	letter-spacing: -0.03em;
}
.mainimg-blue-reverse p {
	font-size: clamp(10px, 2vw, 13px);
	text-align: right;
	color: #fff;
}

.mainimg-mt {
	margin-top: clamp(60px, calc(90px - 8vw), 60px);
}
.mainimg-mtb {
	margin-bottom: clamp(0px, calc(90px - 8vw), 60px);
}

@media screen and (max-width: 700px) {
	.mainimg-blue-reverse {
		grid-template-columns: 1fr;
	}

	.mainimg-blue-reverse .mainimg-circle {
		grid-row: 1;
		grid-column: 1;
		margin-left: 0;
		margin-right: auto;
		z-index: 1;
		opacity: 0.9;
	}

	.mainimg-blue-reverse .mainimg-text {
		grid-row: 1;
		grid-column: 1;
		text-align: right;
		white-space: normal;
		z-index: 2;
	}

	.mainimg-blue-reverse h2,
	.mainimg-blue-reverse p {
		text-align: right;
	}
}

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

/* =========================
   Birdman Header Icons
========================= */
/* SNSアイコン */
.sns {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	position: fixed;
	top: 28px;
	right: 110px; /* ハンバーガー分だけ左へ */
	z-index: 10002;
}

.sns a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255,255,255,0.45);
	border-radius: 50%;
	color: #fff;
	text-decoration: none;
	background: #05273f;
	backdrop-filter: blur(4px);
	transition: 0.3s ease;
}

.sns a:hover {
	background: #073654;
	transform: translateY(-2px);
}

.sns i {
	font-size: 1.15rem;
	line-height: 1;
}
/* スマホ */
@media screen and (max-width: 700px) {
	.sns {
		top: 28px;
		right: 106px;
		gap: 12px;
	}

	.bm-menu-bg {
		top: 28px;
		right: 54px;
		width: 38px !important;
		height: 38px !important;
	}

	.bm-menu {
		width: 82vw;
		padding: 95px 30px 40px;
	}

	.bm-menu a {
		font-size: 1.2rem;
	}
}

/* ハンバーガーボタン */
.bm-menu-btn {
	position: fixed;
	top: 28px;
	right: 54px;
	z-index: 10003;
	width: 38px !important;
	height: 38px !important;
	min-width: 38px !important;
	min-height: 38px !important;
	max-width: 38px !important;
	max-height: 38px !important;

	border: 1px solid rgba(255,255,255,0.45);
	border-radius: 50%;
	background: #05273f;
	backdrop-filter: blur(4px);
	box-shadow: none !important;
	outline: none !important;

	cursor: pointer;
	display: grid;
	place-items: center;
	padding: 0 !important;
	margin: 0;
	appearance: none;
	-webkit-appearance: none;
}

.bm-menu-btn span {
	display: block;
	width: 18px;
	height: 1px;
	background: #fff;
	position: absolute;
	transition: 0.35s ease;
}

.bm-menu-btn span:nth-child(1) {
	transform: translateY(-6px);
}

.bm-menu-btn span:nth-child(2) {
	transform: translateY(0);
}

.bm-menu-btn span:nth-child(3) {
	transform: translateY(6px);
}

.bm-menu-btn.is-open span:nth-child(1) {
	transform: rotate(45deg);
}

.bm-menu-btn.is-open span:nth-child(2) {
	opacity: 0;
}

.bm-menu-btn.is-open span:nth-child(3) {
	transform: rotate(-45deg);
}


/* 背景 */
.bm-menu-bg {
	position: fixed;
	inset: 0;
	z-index: 9998;
	background: rgba(0,0,0,0.35);
	opacity: 0;
	pointer-events: none;
	transition: 0.35s ease;
}

.bm-menu-bg.is-open {
	opacity: 1;
	pointer-events: auto;
}


/* メニュー本体 */
.bm-menu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	width: min(78vw, 360px);
	height: 100vh;
	background: #05273f;
	backdrop-filter: blur(12px);
	transform: translateX(100%);
	transition: 0.45s ease;
	padding: 110px 38px 40px;
}

.bm-menu.is-open {
	transform: translateX(0);
}

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

.bm-menu li {
	border-bottom: 1px solid rgba(255,255,255,0.15);
}

.bm-menu a {
	display: block;
	padding: 15px 0;
	color: #fff;
	text-decoration: none;
	font-family: var(--accent-font), var(--base-font);
	font-size: 1rem;
	letter-spacing: 0.08em;
	transition: 0.3s ease;
}

.bm-menu a:hover {
	padding-left: 10px;
	color: var(--primary-color);
}


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


/*main
---------------------------------------------------------------------------*/
main {
	container-type: inline-size;
}

/*h2見出し*/
main h2 {
font-family: var(--accent-font), var(--base-font);	/*英語の場合は冒頭のaccent-fontに指定したフォントを読み込む。日本語はbase-fontで指定したフォントを読み込む。*/

}

/*list1（Worksブロック内の3カラムブロック）
---------------------------------------------------------------------------*/
/* 中の余白リセット */

.list1 * {
	margin: 0;
	padding: 0;
}

/* ボックス全体 */
.list1 {
	display: grid;
	margin-inline: clamp(0px, 3vw, 150px);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	font-size: clamp(10px, 1.5vw, 18px);
	counter-reset: list-number;
}

/* 文字エリア：PC〜スマホまで縦横中央 */
.list1 .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: left;
	padding-inline: clamp(0px, 3vw, 3rem);
	min-height: 100%;
	line-height: 1.5;
}

/* 文字の中身を中央に置きつつ、文章は左揃え */
.list1 .text h3,
.list1 .text p,
.list1 .text .price {
	width: 100%;
	max-width: 420px;
}

.list1 .price {
	display: inline-block;
	margin-top: 0.5rem;
	font-family: var(--accent-font), var(--base-font);
	font-size: clamp(13px, 1.8vw, 20px);
	letter-spacing: 0.08em;
	color: #05273f;
	line-height: 1;
}

.list1 .price small {
	font-size: 0.75em;
	letter-spacing: 0.05em;
	margin-left: 0.2em;
}

/* square（正方形）画像 */
.list1.square figure {
	width: 100%;
	aspect-ratio: 1 / 1;
}

.list1.square figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.list1 figure {
	position: relative;
}

.list1 figure::before {
	content: counter(list-number, decimal-leading-zero);
	counter-increment: list-number;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 2;
	width: clamp(30px, 3vw, 50px);
	height: clamp(30px, 3vw, 50px);
	border-radius: 50%;
	background: rgba(5,39,63,0.85);
	color: #fff;
	display: grid;
	place-items: center;
	font-family: "Cormorant Garamond", "Times New Roman", serif;
	font-style: italic;
	font-size: clamp(14px, 2vw, 28px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.04em;
	text-shadow: none;
}

@media screen and (max-width: 700px) {
	.list1 {
		margin-inline: 0;
		gap: 10px;
	}

	.list1 .text {
		justify-content: center;
		align-items: center;
		padding-inline: 0;
		line-height: 1.25;
	}

	.list1 .text h3,
	.list1 .text p,
	.list1 .text .price {
		max-width: none;
	}
}
/*CONTACTブロック内の２つのボタン
---------------------------------------------------------------------------*/
/*２つのボタンを囲むボックス*/
ul.contact {
	font-family: var(--accent-font), var(--base-font);
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 4列 */
	gap: 24px; /* 縦横の間隔 */
	max-width: 1700px;
	margin-inline: auto;
}
.menu-strong {
	font-weight: 600;
}
/*ボタン１個あたり*/
ul.contact li {
	flex: 1;
	position: relative;
	overflow: hidden;
	border: 1px solid #ddd;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
	transition: border-color 0.45s ease;
	max-width: 500px;	/*ボタン１個あたりの最大幅*/
}
ul.contact a {
	position: relative;
	z-index: 1;
	display: block;
	font-size: clamp(12px, 2vw, 16px);
	text-decoration: none;
	letter-spacing: 0.2em;	/*文字間隔を少しだけ広く*/
	text-align: center;		/*テキストをセンタリング*/
	padding: 3rem 1rem 1rem;	/*ボタン内の余白。上に2文字分、左右に1文字分、下に1文字分。*/
	transition: color 0.45s ease;
	line-height: 1.2;
}

/*ボタンの中の「●」共通*/
ul.contact li::before,
ul.contact li::after {
	content: "";
	position: absolute;
	top: 0.9rem;
	left: 50%;
	width: 8px;	
	height: 8px;
	background: #05273f;
	border-radius: 50%;
}

/*ボタンの中の「●」マウスオンで拡大する方*/
ul.contact li::before {
	transform: translateX(-50%) scale(1);
	transition: transform 0.55s ease;
	z-index: 0;
}
ul.contact li:hover::before {
	transform: translateX(-50%) scale(100);
}

/*ボタンの中の「●」マウスオンで白色になってそのまま残る方*/
ul.contact li::after {
	transform: translateX(-50%);
	transition: background 0.45s ease;
	z-index: 2;
}
ul.contact li:hover::after {
	background: #bb4314;	/*「●」の色を白くする*/
}

/*マウスオン時の枠線の色。「●」の色と揃えています*/
ul.contact li:hover {
	border-color: #bb4314;
}

/*マウスオン時の文字色*/
ul.contact li:hover a {
	color: #fff;
}

@media screen and (max-width: 800px) {
	ul.contact {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2列 */
	gap: 24px; /* 縦横の間隔 */
	max-width: 700px;
	margin-inline: auto;

	}
}

.contact-section {
	background: #294b66;
	padding-top: 10px;
	padding-bottom: 60px;
	margin-top: 0px;
	margin-bottom: 0;
}
.contact-section p {
	font-family: var(--accent-font), var(--base-font);
	text-transform: uppercase;
	text-align: center;	
	font-weight: 400;
	letter-spacing: 0.15em;	
	color: #fff;
	font-size: 20px;
}
/*画像がupするパララックス
---------------------------------------------------------------------------*/
.bg-slideup1 {
	position: relative;
	height: clamp(240px, 20vw, 360px);
	overflow: hidden;
	margin-top: 30px;
}

.scrollfx-move {
	--fx-extra: 240px;
	position: absolute;
	left: 0;
	right: 0;
	top: 30%;
	width: 100%;
	height: calc(100% + var(--fx-extra));
	object-fit: cover;
	will-change: transform;
	transform: translate3d(0,-50%,0);
}

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

/* テーブルブロック設定 */
.ta1 {
	table-layout: fixed;
	border-top: 1px solid #ddd;
	width: 100%;
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ddd;	/*テーブルの下線。幅、線種、色。*/
}

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

/*th（左側）のみの設定*/
.ta1 th {
	width: 10rem;		/*幅。13文字分。*/
	margin-left: 25px;
	text-align: left;	/*左よせにする*/
	font-weight: normal;
}
/*th（左側）のみの設定*/
.ta1 td {
	text-align: justify;	/*左よせにする*/
	font-weight: normal;
}


/*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: 30px;		/*下からの配置場所指定*/
	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%;	/*円形にする*/
}



/*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;
}

/* =========================
   Kushiyaki side animation
========================= */

.kushiyaki-section {
  width: 100%;
  margin-top: -60px;
  margin-bottom: -60px;
  padding: 100px 0;
  overflow: hidden;
}

.kushiyaki-list {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 0 4vw;
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-top: -40px;

}

.kushiyaki-item {
  width: min(42vw, 360px);
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.3s ease;
  margin-top: 20px;

}

.kushiyaki-item.left {
  align-self: flex-start;
  transform: translateX(-120px);
}

.kushiyaki-item.right {
  align-self: flex-end;
  transform: translateX(120px);
}

.kushiyaki-item.is-show {
  opacity: 1;
  transform: translateX(0);
}

.kushiyaki-item:hover {
  filter: none;
  transform: translateY(-4px);
}
.kushiyaki-item img {
  display: block;
  width: 100%;
  height: auto;
}

.kushiyaki-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.kushiyaki-modal.is-open {
  display: block;
}


.kushiyaki-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  cursor: pointer;
}


.kushiyaki-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(86vw, 420px);
	max-height: 86vh;
	transform: translate(-50%, -50%) scale(0.95);
	opacity: 0;
	text-align: center;
	color: #fff;
	transition: 0.3s ease;
	z-index: 2;
}

.kushiyaki-modal-content img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 62vh;
	object-fit: contain;
	margin: 0 auto 14px;
}

.kushiyaki-modal-content h3 {
	margin: 18px 0 6px;
	font-family: "Cormorant Garamond", "Times New Roman", serif;
	font-size: clamp(22px, 4vw, 36px);
	font-weight: 500;
	letter-spacing: 0.12em;
	line-height: 1.3;
	color: #fff;
	text-shadow: 0 3px 12px rgba(0,0,0,0.45);
}

.kushiyaki-modal-content h3 small {
	font-size: 0.55em;
	letter-spacing: 0.05em;
	margin-left: 0.2em;
}

.kushiyaki-modal-content p {
	display: inline-block;
	margin-top: -15px;
	margin-left: 8px;
	padding: 10px 18px;
	font-family: "Cormorant Garamond", "Times New Roman", serif;
	font-size: clamp(15px, 2.2vw, 22px);
	letter-spacing: 0.08em;
	color: #fff;
	text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.kushiyaki-modal-content h2 small {
	font-size: 0.85em;
	margin-left: 0.2em;
}

.kushiyaki-modal-content p small {
	font-size: 0.85em;
	margin-left: 0.2em;
}

.kushiyaki-modal.is-open .kushiyaki-modal-content {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.kushiyaki-modal-title-row {
	position: relative;
	width: min(100%, 520px);
	margin: 18px auto 0;
	text-align: center;
}

.kushiyaki-modal-title-row h3 {
	margin: 0;
	text-align: center;
	white-space: nowrap;
}

.kushiyaki-modal-nav {
	position: absolute;
	top: 100%;
	transform: translateY(-50%);
	width: 80px;
	height: 38px;
	border: 1px solid rgba(255,255,255,0.45);
	background: rgba(255,255,255,0.15);
	color: #fff;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
}

.kushiyaki-modal-prev {
	left: -120px;
}

.kushiyaki-modal-next {
	right: -120px;
}

.kushiyaki-item {
	position: relative;
}

.kushiyaki-item::before {
	content: attr(data-en);
	position: absolute;
	z-index: 10;
	font-family: var(--accent-font), sans-serif;
	font-size: clamp(30px, 6vw, 100px);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	white-space: nowrap;
	color: rgba(0,0,0,0.06);
	pointer-events: none;
}

/* 左から出る串：英字は右端で止める */
.kushiyaki-item.left::before {
	left: auto;
	right: -51vw;
	bottom: 0;
	width: 80vw;
	text-align: right;
}
/* 右から出る串：英字は左端で止める */
.kushiyaki-item.right::before {
	right: 0;
	left: -51vw;
	bottom: 0;
	text-align: left;
}

/* 串画像を前面に */
.kushiyaki-item img {
	position: relative;
	z-index: 1;
}

/* 英字を見せるため、親側は隠さない */
.kushiyaki-list {
	overflow: visible;
}

.kushiyaki-caption {
	position: absolute;
	z-index: 2;
	bottom: -10px;
	width: min(46vw, 360px);
	color: #05273f;
	pointer-events: none;
}

.kushiyaki-caption h3 {
	margin: 0 0 4px;
	font-size: clamp(12px, 2vw, 16px);
	letter-spacing: 0.08em;
	line-height: 1.3;
}

.kushiyaki-caption .price {
	display: block;
	font-family: var(--accent-font), var(--base-font);
	font-size: clamp(14px, 2vw, 18px);
	letter-spacing: 0.08em;
	line-height: 1;
}

.kushiyaki-caption .price small {
	font-size: 0.65em;
	margin-left: 0.2em;
}

.kushiyaki-caption p {
	margin: 0;
	font-size: clamp(9px, 1.2vw, 13px);
	line-height: 1.6;
}

/* 左から出る串：説明は右側 */
.kushiyaki-item.left .kushiyaki-caption {
	left: 100%;
	top: 50%;
	bottom: auto;
	transform: translate(20px, -50%);
	text-align: left;
}

/* 右から出る串：説明は左側 */
.kushiyaki-item.right .kushiyaki-caption {
	right: 100%;
	top: 50%;
	bottom: auto;
	transform: translate(-20px, -50%);
	text-align: right;
}

@media screen and (max-width: 700px) {
	.kushiyaki-modal-title-row {
		width: 100%;
	}
	.kushiyaki-modal-prev {
		left: -20px;
	}
	.kushiyaki-modal-next {
		right: -20px;
	}
	.kushiyaki-caption {
		width: 58vw;
		bottom: -18px;
	}
	.kushiyaki-item.left .kushiyaki-caption {
		left: 45%;
	}
	.kushiyaki-item.right .kushiyaki-caption {
		right: 45%;
	}
	.kushiyaki-caption {
		width: 62vw;
	}
	/* 左から出る串：説明をもっと右へ */
	.kushiyaki-item.left .kushiyaki-caption {
		left: 100%;
		transform: translate(22px, -50%);
	}
	/* 右から出る串：説明をもっと左へ */
	.kushiyaki-item.right .kushiyaki-caption {
		right: 100%;
		transform: translate(-22px, -50%);
	}

}

/*Link*/
.group-links {
	padding: 4vw var(--content-space-l);
	margin: 80px 30px 50px 30px !important;
	line-height: 1.5;
	background: #294b66;
	color: #fff;
	position: relative;
	z-index: 1;
}
.group-links::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	background: #294b66;
	z-index: -1;

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

.group-card {
	display: block;
	text-decoration: none;
	border: 0.5em solid rgba(255,255,255,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: 1.4;	
}

.group-card p {
	margin: 0.5rem clamp(-0.5rem, calc(6vw - 2rem), 5rem) 0;
	font-size: 0.75rem;
	color: #fff;
	text-align: justify
}

/* hoverでちょいかっこよく */
.group-card:hover {
	transform: translateY(-3px);
	border: 0.5em solid rgba(0,0,0,0.2);
	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;
}

}

/* =========================================================
   バードマン駅用：カレンダー・下部案内・フッター・固定アイコン
========================================================= */

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

.calendar-wrap {
	width: min(100% - 20px, 1100px);
	margin: 0 auto 60px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 32px;
}

.calendar-block {
	background: rgba(255,255,255,0.35);
	border: 1px solid rgba(71,68,63,0.18);
	padding: 22px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.calendar-title {
	margin: 0 0 16px;
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: var(--bg-inverse-color);
	text-align: center;
}

.calendar {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	color: var(--bg-inverse-color);
	background: rgba(255,255,255,0.35);
}

.calendar th,
.calendar td {
	border: 1px solid rgba(71,68,63,0.16);
	text-align: center;
	vertical-align: middle;
	padding: 8px 4px;
	height: 44px;
	font-size: 0.85rem;
	font-weight: 500;
}

.calendar th {
	background: rgba(71,68,63,0.08);
	letter-spacing: 0.08em;
}

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

.calendar td:hover {
	background: var(--bg-inverse-color);
	color: var(--bg-color);
}

.calendar .mute {
	color: rgba(71,68,63,0.28);
}

.calendar .sun {
	color: #b96b61;
}

.calendar .sat {
	color: #5f7f9f;
}

.calendar .today {
	background: #294b66;
	color: #fff;
	font-weight: 700;
}

.calendar .off {
	background: #47443f;
	color: #fff;
}

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

/* 定休日のお知らせ 見出し上の余白 */
.calendar-heading {
	margin-top: 80px;
}

/* =========================================================
   下部テキストリンクの下線を消す
========================================================= */

.info-section .p-center-small a {
	text-decoration: none !important;
	border-bottom: none !important;
}

.info-section .p-center-small a:hover {
	text-decoration: none !important;
	border-bottom: none !important;
}

/* =========================================================
   お問い合わせフォーム調整
   form/index.html 用
========================================================= */

/* フォームページ全体 */
.bg1 {
	background: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* パンくず */
.breadcrumb {
	width: min(100% - 40px, 1000px);
	margin: 0 auto 40px !important;
	padding-left: 0 !important;
	font-size: 0.9rem !important;
}

.breadcrumb ul {
	gap: 0.5em;
}

.breadcrumb li + li::before {
	content: ">";
	margin-right: 0.5em;
	color: rgba(0,0,0,0.45);
}

.breadcrumb a {
	color: var(--bg-inverse-color) !important;
	text-decoration: none !important;
}

.breadcrumb span {
	color: var(--bg-inverse-color) !important;
}

/* フォームセクション */
.info-section {
	width: min(100% - 40px, 900px);
	margin-left: auto;
	margin-right: auto;
}

/* フォーム前の説明文 */
.info-section .p-center-small {
	max-width: 760px;
	margin: 0 auto 2rem;
	font-size: 0.95rem;
	line-height: 2.1;
	text-align: justify;
}

/* フォームテーブル */
.ta1.formTable {
	width: 100%;
	border-collapse: collapse;
	margin: 0 auto 2rem;
	table-layout: fixed;
	border-top: 1px solid rgba(0,0,0,0.18);
}

/* caption */
.ta1.formTable caption {
	caption-side: top;
	margin-bottom: 1.2rem;
	padding: 0;
	background: transparent;
	color: var(--bg-inverse-color);
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-align: center;
}

/* 行 */
.ta1.formTable tr {
	border-bottom: 1px solid rgba(0,0,0,0.18);
}

/* th / td */
.ta1.formTable th,
.ta1.formTable td {
	padding: 1rem 0.8rem;
	vertical-align: middle;
	line-height: 1.6;
}

/* 左側ラベル */
.ta1.formTable th {
	width: 28%;
	text-align: left;
	font-size: 0.95rem;
	font-weight: 600;
	white-space: nowrap;
}

/* 右側入力欄 */
.ta1.formTable td {
	width: 72%;
	text-align: left;
}

/* 入力欄 */
.ta1.formTable input[type="text"],
.ta1.formTable input[type="email"],
.ta1.formTable textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	border: 1px solid rgba(0,0,0,0.35);
	background: #fff;
	color: var(--bg-inverse-color);
	padding: 0.75rem 0.9rem;
	font-size: 1rem;
	line-height: 1.6;
	font-family: inherit;
	border-radius: 0;
}

/* テキストエリア */
.ta1.formTable textarea {
	min-height: 170px;
	resize: vertical;
}

/* フォーカス時 */
.ta1.formTable input:focus,
.ta1.formTable textarea:focus {
	outline: none;
	border-color: var(--accent-color);
	box-shadow: 0 0 0 2px rgba(198,109,41,0.14);
}

/* 確認ボタン */
.btn-gradient-animated {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 54px;
	padding: 0.9rem 2rem;
	border: none;
	background: var(--bg-inverse-color);
	color: #fff;
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: 0.3s ease;
}

.btn-gradient-animated:hover {
	transform: translateY(-2px);
	background: var(--accent-color);
	filter: none;
}

/* 送信ボタンの行 */
.ta1.formTable tr:last-child th {
	white-space: normal;
}

.ta1.formTable tr:last-child td {
	text-align: left;
}

/* 入力欄の共通クラス対策 */
.ws,
.wl {
	width: 100% !important;
	display: block;
}

/* =========================================================
   お問い合わせフォーム スマホ調整
========================================================= */

@media (max-width: 700px) {

	.bg1 {
		padding-top: 5px;
		padding-bottom: 5px;
	}

	.breadcrumb {
		width: min(100% - 24px, 1000px);
		margin-bottom: 30px !important;
		font-size: 0.8rem !important;
	}

	.info-section {
		width: min(100% - 24px, 900px);
	}

	.info-section .p-center-small {
		font-size: 0.86rem;
		line-height: 2;
		margin-bottom: 1.8rem;
	}

	.ta1.formTable,
	.ta1.formTable caption,
	.ta1.formTable tbody,
	.ta1.formTable tr,
	.ta1.formTable th,
	.ta1.formTable td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}

	.ta1.formTable {
		border-top: none;
	}

	.ta1.formTable caption {
		text-align: left;
		font-size: 0.95rem;
		margin-bottom: 1rem;
	}

	.ta1.formTable tr {
		border-bottom: none;
		margin-bottom: 1rem;
	}

	.ta1.formTable th {
		padding: 0 0 0.35rem;
		font-size: 0.88rem;
		white-space: normal;
	}

	.ta1.formTable td {
		padding: 0;
	}

	.ta1.formTable input[type="text"],
	.ta1.formTable input[type="email"],
	.ta1.formTable textarea {
		padding: 0.75rem;
		font-size: 16px; /* iPhoneのズーム防止 */
	}

	.ta1.formTable textarea {
		min-height: 150px;
	}

	.ta1.formTable tr:last-child {
		margin-top: 1.6rem;
	}

	.ta1.formTable tr:last-child th {
		margin-bottom: 0.8rem;
	}

	.btn-gradient-animated {
		width: 100%;
		min-height: 56px;
	}

}

/* 下部SEO案内
---------------------------------------------------------------------------*/

.bg1 {

	padding-top: 0px;
	padding-bottom: 0px;
}

/* =========================
   下部案内セクション
   フッター幅に合わせる
========================= */

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

.info-section + .info-section {
	margin-top: 5px;
}

.info-section .small-title {
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 0.5rem;
}

/* 本文も少し広げる */
.p-center-small {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	font-size: 0.88rem;
	line-height: 2.1;
	text-align: justify;
	color: var(--bg-inverse-color);
}

.p-center-small a {
	color: var(--accent-color);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid currentColor;
	padding-bottom: 0.1em;
}

.p-center-small a:hover {
	filter: none;
	opacity: 0.7;
}

/* footer
---------------------------------------------------------------------------*/

footer {
	font-size: 0.9rem;
	line-height: 2;
	padding: 0 0 30px;
}

footer .info-section {
	width: min(100% - 20px, 1000px);
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 0;

}

footer .logo {
	width: fit-content;
	max-width: 150px;
	margin-bottom: 20px;
}

footer .logo img {
	display: block;
	width: 100%;
	height: auto;
}

.footer-links {
	max-width: 500px;
	margin-left: 0;
	margin-right: auto;
	grid-template-columns: repeat(2, 210px);
	column-gap: 55px;
}
/* =========================
   フッターリンクの「・」を消す
========================= */

.footer-links,
.footer-links li {
	list-style: none !important;
}
.footer-links {
	padding-left: 0 !important;
	margin-left: 0;
}

.footer-links li::marker {
	content: "" !important;
}
.footer-links li {
	margin: 0;
}

.footer-links a {
	text-decoration: none;
	font-size: 0.8rem;
	line-height: 1.6;
	opacity: 0.9;
}

.footer-links a:hover {
	filter: none;
	opacity: 0.65;
}

footer small {
	display: block;
	margin-top: 24px;
	font-size: 0.72rem;
	letter-spacing: 0.05em;
	opacity: 0.75;
	text-align: center;
}
/* Google Map
---------------------------------------------------------------------------*/

.others-iframe1 {
	width: 100%;
	margin: 30px auto 0;
}

.others-iframe1 iframe {
	display: block;
	width: 100%;
	height: 340px;
	border: 0;
	filter: grayscale(20%);
}

/* list2：メニューカード
---------------------------------------------------------------------------*/
.list2 {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px;
	font-size: 0.9rem;
}

.list2 * {
	margin: 0;
	padding: 0;
}

.list2 .list {
	background: #fff;
}

.list2 figure {
	width: 100%;
	aspect-ratio: 4 / 3;
	margin-bottom: 0.8rem;
	overflow: hidden;
}

.list2 figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.list2 h4 {
	font-size: 0.8rem;
	line-height: 1.5;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.list2 p {
	font-size: 0.85rem;
	line-height: 1.8;
	color: #877e72;
}

.list2 .price {
	display: inline-block;
	margin-top: 0.8rem;
	margin-bottom: 30px;
	font-family: var(--accent-font), var(--base-font);
	font-size: clamp(16px, 1.8vw, 24px);
	letter-spacing: 0.08em;
	color: #05273f;
	line-height: 1;
}

.list2 .price small {
	font-size: 0.55em;
	letter-spacing: 0.05em;
	margin-left: 0.2em;
}

/* スマホ */
@media screen and (max-width: 700px) {
	.list2 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 14px;
		padding-inline: 15px;
	}

	.list2 figure {
		aspect-ratio: 1 / 1;
		margin-bottom: 0.6rem;
	}

	.list2 h4 {
		font-size: 0.9rem;
	}

	.list2 p {
		font-size: 0.75rem;
		line-height: 1.7;
	}

	.list2 .price {
		font-size: 15px;
	}
}
.square-image-center {
	width: min(80vw, 420px);
	aspect-ratio: 1 / 1;
	margin: 60px auto;
	overflow: hidden;
}

.square-image-center img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.set-menu-info {
	width: min(92vw, 720px);
	margin: 24px auto 70px;
	padding: 28px 24px 32px;
	margin-top: -50px;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(5,39,63,0.18);
	color: #05273f;
}

.set-menu-info h3 {
	font-size: clamp(15px, 2vw, 25px);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.5;
}

.set-menu-en {
	font-family: var(--accent-font), var(--base-font);
	font-size: clamp(10px, 1vw, 13px);
	letter-spacing: 0.12em;
	color: rgba(5,39,63,0.65);
	margin-top: -10px;
	margin-bottom: -30px;
}

.set-menu-price {
	margin-top: -35px;
}

.set-menu-price p {
	margin: 4px 0;
	font-family: var(--accent-font), var(--base-font);
	font-size: clamp(20px, 2.6vw, 30px);
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.3;

}

.set-menu-price span {
	display: inline-block;
	margin-right: 0.4em;
	font-size: 0.75em;
	font-weight: 700;
}

.set-menu-price small {
	font-size: 0.55em;
	margin-left: 0.15em;
	letter-spacing: 0.02em;
}

.set-menu-text {
	margin-top: 20px;
	font-size: clamp(10px, 1.1vw, 14px);
	line-height: 1.4;
	color: #5f5a54;
	text-align: center !important;
}

@media screen and (max-width: 700px) {
.set-menu-info {
	width: calc(100% - 24px);
	margin-top: -50px;
	padding: 22px 18px 26px;
}

.set-menu-info h3 {
	letter-spacing: 0.04em;
}

.set-menu-text {
	text-align: left;
}
}

.mt-section {
	margin-top: clamp(80px, 6vw, 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: 1.2rem;
padding: 0.2rem 1rem;
background: rgba(0,0,0,0.1);
color: var(--bg-inverse-color);	
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);
}

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

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

}

.ta2 td {
text-align: right;
font-weight: bold;
margin-right: 30px;
padding-right: 200px;

}

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

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

.table-wrap {
	width: 100%;
	max-width: 1100px;
	margin-inline: auto;
	padding-inline: clamp(0px, 5vw, 150px);
}

.table-wrap .ta1 {
	width: 100%;
	margin-inline: 0;
	line-height: 1.4;
}
/*その他
---------------------------------------------------------------------------*/

.c {text-align: center !important;}
.ws {width: 100%;display: block;}
.wl {width: 100%;display: block;}
.small {font-size: 0.85em;}
