@charset "utf-8";


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


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


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


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html {
	font-size: clamp(13px, 0.29vw + 11.9px, 16px);	/*画面幅375px〜1400pxの間で、13px〜16pxに可変。下でrem管理しているものも連動します。*/
	overflow-x: visible;
}
body {
	margin: 0;padding:0;
	font-family: var(--base-font);	/*フォント指定。theme.cssのbase-fontを読み込みます。*/
	-webkit-text-size-adjust: none;
	background: var(--bg-color);	/*背景色。theme.cssのbg-colorを読み込みます。*/
	color: var(--bg-inverse-color);	/*文字色。theme.cssの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内の余白。左右については、theme.cssの--content-space-lを読み込みます。*/
	margin: var(--content-space-l) 0;	/*上下、左右へのsectionの外側にとるマージン。上下については、theme.cssの--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 {
    display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;		/*ロゴとメニューブロックの間に空けるスペース。2文字分。*/
	height: 100px;	/*ヘッダーの高さ。お好みで。*/
	padding-inline: var(--content-space-s);	/*左右の余白。theme.cssのcontent-space-sを読み込みます*/
}

/*ロゴ画像*/
header .logo {margin: 0;flex-shrink: 0;}
header .logo img {
	display: block;
	width: 250px;	/*ロゴの幅。お好みで。*/
}


/*メニューオーバーレイ（メニュー領域外クリックで閉じる用）
---------------------------------------------------------------------------*/
#menubar-overlay {
	display: none;
	position: fixed;
	z-index: 99;	/*#menubar(100)の下、ページの上*/
	top: 0;left: 0;
	width: 100%;height: 100%;
	background: rgba(0,0,0,0.3);	/*半透明の黒。お好みで濃さを調整。*/
}

/*noscroll（メニュー表示中のスクロール禁止用）*/
body.noscroll {
	overflow: hidden;
}


/*大きな端末で見たメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.large-screen #menubar > nav > ul {
	display: flex;
	align-items: center;
	gap: 1.5rem;	/*メニュー同士に空けるスペース。1.5文字分。*/
	font-size: 0.8rem;	/*文字サイズ80%*/
	font-weight: bold;	/*太字*/
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li a {
	display: block;text-decoration: none;
}


/*大きな端末で見た場合のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウン全体*/
.large-screen #menubar ul ul {
	text-shadow: none;
	position: absolute;z-index: 100;
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}

/*メニュー１個あたり*/
.large-screen #menubar ul ul a {
	background: var(--bg-color);	/*背景色。theme.cssのbg-colorを読み込みます。。*/
	color: var(--bg-inverse-color);	/*文字色。theme.cssのbg-inverse-colorを読み込みます。*/
	padding: 0.2rem 1rem;	/*上下に0.2文字分、左右に1文字分の余白*/
	border-radius: 100px;	/*角を丸く。大きければ適当でOK。*/
	margin-top: 5px;		/*メニュー同士の間に空けるスペース*/
	border: 1px solid var(--bg-border-color);	/*枠線の幅、線種、最後は色の指定でtheme.cssのbg-border-colorを読み込みます。。*/
}


/*小さな端末で見たメニュー（開閉メニュー）
---------------------------------------------------------------------------*/
/*メニューブロック共通*/
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 50%;	/*画面の半分の幅*/
	height: 100%;
	padding: 100px var(--content-space-l) 50px;	/*上下に100px、左右にtheme.cssのcontent-space-lで指定しているサイズ、下に50pxの余白*/
	background: var(--primary-color);	/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
}

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

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

	.small-screen #menubar {
		width: 100%;	/*幅を100%に*/
	}

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


/*メニュー１個あたり*/
.small-screen #menubar a {
	display: block;text-decoration: none;
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
	border-radius: 5px;		/*角を少し丸くする*/
	background: #fff;		/*背景色*/
	color: #333;			/*文字色*/
}

/*小さな画面での「ご注文・ご予約」ボタン*/
.small-screen #menubar .btn.accent a {
	background: var(--accent-color);		/*背景色。theme.csのaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);		/*文字色。theme.csのaccent-inverse-colorを読み込みます。*/
	padding: 1rem 2rem;		/*メニュー内の余白。上下に１文字分、左右に２文字分。*/
}

/*子メニュー（ドロップダウンメニュー）*/
.small-screen #menubar ul ul a {
	margin-left: 2rem;	/*左に２文字分のスペースを空ける*/
	padding: 0.5rem 1.5rem;	/*メニュー内の余白。上下に0.5文字分、左右に1.5文字分。*/
}

/*ドロップダウンのアイコン*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f078";		/*このアイコンを使う*/
	margin-right: 1em;		/*アイコンとメニューテキストとの間に空けるスペース。1文字分。*/
	font-size: 0.7em;		/*アイコンサイズ。70%*/
	vertical-align: middle;
	display: inline-block;
	line-height: 1;
}

/*ドロップダウン共通（デフォルトで非表示。チラつかないよう念の為。）
---------------------------------------------------------------------------*/
#menubar ul ul {display: none;}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none; /* デフォルトは非表示 */
	animation: opa1 0s 0.2s both;
	cursor: pointer;
	position: fixed;
	z-index: 101;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	width: 70px;	/*ボタンの幅*/
	height: 70px;	/*ボタンの高さ*/
	border-bottom-left-radius: 10px;	/*左下の角だけ丸くする*/
}

/*ハンバーガーアイコンの線*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 1px;		/*線の高さ*/
	background: var(--bg-inverse-color);	/*線の色。theme.cssのbg-inverse-colorを読み込みます。*/
}

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

/*以下変更不要*/
#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;
}


/*メイン画像
---------------------------------------------------------------------------*/
.mainimg * {margin: 0;padding: 0;}
.mainimg picture {display: block;width: 100%;height: 100%;}

/*メイン画像全体*/
.mainimg {
	background: var(--light-color);	/*背景色。theme.cssのlight-colorを読み込みます。*/
	position: relative;
}

/*画像ブロック*/
.mainimg .image {
	position: relative;
}

/*テキストブロック*/
.mainimg .text {
	position: absolute;
	left: 10%;	/*メイン画像ブロック全体に対して左からの配置場所*/
	top: 50%;
	transform: translateY(-50%);
	width: 30%;	/*ブロックの幅*/
	font-weight: bold;	/*太字*/
	/*text-shadow: 0px 0px 5px #fff;	テキストの影*/
}

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

	/*テキストブロック*/
	.mainimg .text {
		position: static;	/*絶対配置をやめて、写真の下に通常表示させる*/
		transform: none;
		width: 70%;	/*幅。お好みで。*/
		margin: 0 auto 2rem;	/*左右中央、下に2文字分の余白。*/
		text-align: center;		/*テキストのセンタリング*/
	}

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


/*h2とpのテキストにフチをつける*/
.mainimg .text h2,.mainimg .text p {
	position: relative;
	-webkit-text-stroke: 6px #fff;	/*ここが縁の幅と色の指定*/
	paint-order: stroke fill;
}

/*ボタン以外のpタグ*/
.mainimg .text p:not(.btn) {
	font-size: 0.9rem;	/*文字サイズ90%*/
	margin-bottom: 1rem;	/*下に1文字分の余白*/
}

/*ボタンのふちどりを消す*/
.mainimg .text .btn {
	-webkit-text-stroke: 0;
	paint-order: normal;
}


/*flex1（コンセプトブロック）
---------------------------------------------------------------------------*/
/*flex1*/
.flex1 {
	display: flex;
	align-items: center;
	gap: 2rem;	/*左右のブロックの間に空けるスペース。2文字分。*/
	position: relative;
}

/*左右逆向き*/
.flex1.reverse {
	flex-direction: row-reverse;
}

	/*画面幅700px以下の追加指定*/
	@media (max-width:700px) {
	
	/*flex1を縦積みにする*/
	.flex1, .flex1.reverse {
		flex-direction: column;
		padding-right: 0;
	}

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


/*画像ブロック*/
.flex1 .image {
	width: 50%;	/*幅。お好みで。*/
	position: relative;
}

	/*画面幅700px以下の追加指定*/
	@media (max-width:700px) {
	
	/*画像ブロック*/
	.flex1 .image {
		width: 70%;	/*幅。お好みで。*/
		margin: 0 auto;
	}
	
	}/*追加指定ここまで*/

/*「CONCEPT」のアイコン*/
.flex1 .icon {
	position: absolute;
	left: 3%;	/*画像ブロックに対して左からの配置場所*/
	top: 20%;	/*画像ブロックに対して上からの配置場所*/
	transform: translateY(-50%);
	font-size: 0.8rem;	/*文字サイズ80%*/
	font-weight: bold;	/*太字に*/
	width: 6rem;		/*幅。6文字分。*/
	line-height: 6rem;	/*高さ。6文字分。*/
	text-align: center;
	background: var(--primary-color);		/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
	border-radius: 50%;	/*円形にする*/
}

/*テキストブロック*/
.flex1 .text {
	flex: 1;
	min-width: 0;
	position: relative;
	padding-right: 10vw;	/*右に10%の余白。小鳥の飾りイラストを置く為のスペースです。*/
}

	/*画面幅700px以下の追加指定*/
	@media (max-width:700px) {
	
	/*テキストブロック*/
	.flex1 .text {
		padding-right: 0;	/*小鳥の飾りイラストを非表示にするので、右側余白をなくす。*/
	}
	
	}/*追加指定ここまで*/


/*小鳥の飾り画像*/
.flex1 .kazari {
	position: absolute;
	right: calc(-1 * var(--content-space-l));
	top: 30%;	/*上からの配置場所*/
	width: 12vw;	/*小鳥の幅。12%*/
}

	/*画面幅700px以下の追加指定*/
	@media (max-width:700px) {
	
	/*小鳥の飾り画像を非表示に*/
	.flex1 .kazari {
		display: none;
	}
	
	}/*追加指定ここまで*/


	/* マスク対応ブラウザだけ「切り抜き」に切り替え */
	@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {

	.flex1 .mask1,
	.flex1 .mask2 {
		overflow: hidden;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-size: 100% 100%;
		mask-repeat: no-repeat;
		mask-position: center;
		mask-size: 100% 100%;
		/* 明示的に透過（アルファ）でマスクする指定を追加 */
		-webkit-mask-source-type: alpha;
		mask-mode: alpha;
	}

	.flex1 .mask1 {
		-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 90'%3E%3Cpath fill='black' d='M43.9,10.8c42.6-17.2,77.5-11.4,91.1,0,11.5,9.6,10,25.3,13.3,29.3s27.3,29.1-5.1,41.5c-32.4,12.4-78.6,8-91.4,4.9C39.1,83.6.3,77.3,0,60.4-.2,43.7,25,18.5,43.9,10.8Z' /%3E%3C/svg%3E");
		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 90'%3E%3Cpath fill='black' d='M43.9,10.8c42.6-17.2,77.5-11.4,91.1,0,11.5,9.6,10,25.3,13.3,29.3s27.3,29.1-5.1,41.5c-32.4,12.4-78.6,8-91.4,4.9C39.1,83.6.3,77.3,0,60.4-.2,43.7,25,18.5,43.9,10.8Z' /%3E%3C/svg%3E");
	}

	.flex1 .mask2 {
		-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Cpath fill='black' d='M100.5,52C14.2,117.7,4.6,265.1,24.5,308.7c19.9,43.6,43.6,53.6,53.6,68.5,10,15,29.9,98.4,150.8,113.4s245.5-53.6,260.4-118.4-10-72.3-12.5-98.4c-2.5-26.2,32.4-97.2-8.7-153.3s-89.7-57.3-147-73.5c-57.3-16.2-110.9-78.5-220.5,5Z'/%3E%3C/svg%3E");
		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 500'%3E%3Cpath fill='black' d='M100.5,52C14.2,117.7,4.6,265.1,24.5,308.7c19.9,43.6,43.6,53.6,53.6,68.5,10,15,29.9,98.4,150.8,113.4s245.5-53.6,260.4-118.4-10-72.3-12.5-98.4c-2.5-26.2,32.4-97.2-8.7-153.3s-89.7-57.3-147-73.5c-57.3-16.2-110.9-78.5-220.5,5Z'/%3E%3C/svg%3E");
	}

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


/*flex2（営業情報｜出来たてをお届けします！ブロック）
---------------------------------------------------------------------------*/
/*ブロック全体*/
.flex2 {
	display: flex;
	gap: 2rem;	/*ブロック同士に空けるスペース。2文字分。*/
}

/*逆向きバージョン*/
.flex2.reverse {
	flex-direction: row-reverse;
}

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

	/*縦積みに*/
	.flex2 {
		flex-direction: column !important;
	}
	
	}/*追加指定ここまで*/


/*写真ブロック*/
.flex2 .image {
	overflow: hidden;
	width: 50%;	/*幅。お好みで。*/
	border-radius: 10px;	/*角を丸くする*/
}

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

	/*写真ブロック*/
	.flex2 .image {
		width: 100%;	/*幅*/
	}
	
	}/*追加指定ここまで*/


/*iframe（Google Map）大きな画面だと、営業情報テキストブロックに合わせた高さになります*/
.flex2 .image iframe {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

	.flex2 .image iframe {
		position: static;
		aspect-ratio: 2 / 1;	/*アスペクト比2対1。お好みで。*/
	}
	
	}/*追加指定ここまで*/


/*テキストブロック*/
.flex2 .text {
	flex: 1;
	min-width: 0;
}

/*ブロック内のh2見出し*/
.flex2 h2 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 1rem;	/*1remは、「営業情報」とテキストの間に空けるスペースです。1文字分。*/
}

/*見出し内のspan（営業情報）*/
.flex2 h2 span {
	background: var(--primary-color);	/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: #333;	/*文字色。*/
	border-radius: 5px;	/*角を丸くする*/
	padding: 0 1em;		/*上下は0、左右に1文字分の余白。*/
	font-size: 0.7em;	/*文字サイズ70%*/
}

/*営業時間、営業日、などのテーブルっぽいレイアウト全体*/
.flex2 dl {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);	/*dt（見出し）の長さを確保し、ddは残りを使う。*/
	line-height: 1.6;	/*行間を少しせまく*/
	border-top: 1px solid var(--bg-border-color);	/*上の線の幅、線種、var以降は色の指定でtheme.cssのbg-border-colorを読み込みます。*/
}
.flex2 dt, .flex2 dd {
	padding: 0.5rem;	/*中のブロック１個あたりの余白。2文字分。*/
	border-bottom: 1px solid var(--bg-border-color);	/*下の線の幅、線種、var以降は色の指定でtheme.cssのbg-border-colorを読み込みます。*/
}

/*営業時間、営業日のブロック*/
.flex2 dt {
	font-weight: bold;	/*太字*/
	padding-right: 2rem !important;	/*右に2文字分の余白*/
}
/*アイコン*/
.flex2 dt i {
	color: var(--accent-color);	/*アイコン色。theme.cssのaccent-colorを読み込みます。*/
}


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


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

/*h2見出しに下線を入れる場合*/
main h2.line {
	width: fit-content;
	padding: 0 15px 5px 5px;	/*上、右、下、左への見出し内の余白*/
	background: url("../images/line1.svg") no-repeat center bottom / 100% 10px;	/*下線画像の読み込み。高さは10px。*/
}

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


/*list2（選ばれる３つの理由ブロック）
---------------------------------------------------------------------------*/
.list2 * {margin: 0;padding: 0;}

/*ボックス全体*/
.list2 {
	display: grid;
	grid-template-columns: 20% minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);	/*左（見出し）が20%、残りの3ブロックは均等に。*/
	gap: 1rem;		/*ボックス同士の間に空けるスペース。1文字分。*/
}

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

	/*ボックス全体*/
	.list2 {
		grid-template-columns: repeat(3, minmax(0, 1fr));	/*3列に*/
	}

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


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

	/*ボックス全体*/
	.list2 {
		grid-template-columns: minmax(0, 1fr);	/*1列に*/
	}

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


/*h2見出し*/
.list2 h2 {
	line-height: 1.6;	/*行間を少し狭く*/
	text-align: center;	/*テキストをセンタリング*/
	align-self: center;
	background: url("../images/kazari2.png") no-repeat center top / 4rem;	/*上の装飾画像の読み込み。幅は4文字分。*/
	padding-top: 2rem;	/*上の装飾イラストを配置させる為に余白確保*/
}

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

	/*h2見出しの幅を100%にする（見出しの下に3カラム並ぶ形にする）*/
	.list2 h2 {
		grid-column: 1 / -1;
	}
	
	/*見出しの改行をなくす*/
	.list2 h2 br {
		display: none;
	}

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


/*3つのボックス１個あたり*/
.list2 .list {
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	padding: 1rem;		/*ボックス内の余白。1文字分。*/
	border-radius: 10px;	/*角を丸く*/
	display: flex;	/*横並び*/
	gap: 1rem;		/*３つのボックスの間に空けるスペース。1文字分。*/
	align-items: center;
}

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

	/*3つのボックス１個あたり*/
	.list2 .list {
		flex-direction: column;	/*縦積みに*/
		text-align: center;
	}

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


/*3つのボックス内のテキストブロック*/
.list2 .list .text {
	font-size: 0.9rem;	/*文字サイズ90%*/
}

/*3つのボックス内のアイコンブロック*/
.list2 .list .image {
	background: var(--primary-color);		/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	text-align: center;
	border-radius: 50%;	/*円形に*/
	flex-shrink: 0;		/*縮まないように*/
	font-size: 1.8rem;	/*アイコンサイズ180%。*/
	
}
/*アクセントカラーのアイコン*/
.list2 .list .image.accent {
	background: var(--accent-color);	/*背景色。theme.cssのaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。theme.cssのaccent-inverse-colorを読み込みます。*/
}


/*padding1（人気メニューで使っている白い土台）
---------------------------------------------------------------------------*/
.padding1 {
	margin-inline: 3vw;	/*左右（ブロックの外側）に3%のスペースをあける*/
	padding-block: 0.5rem 2rem;	/*上下（ブロック内）に余白。*/
	background: #fff;	/*背景色*/
	border-radius: 10px 10px 0 0;	/*角を丸くする。左上、右上、右下、左下の順番。左上と右上だけ角が丸くなります。*/
	box-shadow: 0 0 20px rgba(0,0,0,0.05);	/*ボックスの影。右へ0、下へ0、ぼかす量20px、0,0,0は影の色で5%だけ出た状態。*/
}


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

/*ボックス全体*/
.list1 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));	/*3列*/
	gap: 1.5rem;		/*ボックス同士の間に空けるスペース。1.5文字分。*/
}

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

	.list1 {
		grid-template-columns: repeat(1, minmax(0, 1fr));	/*1列*/
	}

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


/*ボックス１個あたり*/
.list1 .list {
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ0、下へ0、ぼかす量は5px。0,0,0は黒のことで0.2は20%色が出た状態。*/
	background: #fff;		/*背景色*/
	color: #333;			/*文字色*/
	border-radius: 10px;	/*角を丸くする*/
	overflow: hidden;
}

/*画像ブロック*/
.list1 .image {
	position: relative;
}

/*画像にリンク指定がある場合*/
.list1 .image a img {
		transition: 0.5s;	/*マウスオンにかける時間。0.5秒。*/
}
.list1 .image a:hover img {
	transform: scale(1.05);	/*マウスオン時の拡大率。105%。*/
}

/*テキストボックス*/
.list1 .list .text {
	flex: 1;
	min-width: 0;
	padding: 1rem;	/*ボックス内の余白。1文字分。*/
	display: flex;
	flex-direction: column;
	gap: 0.5rem;	/*画像とテキストブロックの間にとる余白。0.5文字分。*/
}

/*説明だけ小さめにする*/
.list1 .list p {
	font-size: 0.85em;	/*文字サイズ。85%。*/
	line-height: 1.5;	/*行間*/
}

/*価格*/
.list1 .list .price {
	text-align: right;	/*テキストを右寄せ*/
	color: var(--accent-color);	/*文字色。theme.cssのaccent-colorを読み込みます。*/
	font-weight: bold;	/*太字に*/
	font-size: 1rem;	/*文字サイズを標準に戻す*/
}


/*.list1用のアイコン
---------------------------------------------------------------------------*/
/*icon1*/
.list1 .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	font-size: 0.8rem;	/*文字サイズ80%*/
	line-height: 1.4;
	font-weight: bold;	/*太字*/
	width: 5rem;		/*幅。5文字分。*/
	height: 5rem;		/*高さ。5文字分。*/
	position: absolute;
	border-radius: 50%;	/*円形に*/
	left: 5px;			/*ボックスの左からの配置*/
	top: 5px;			/*ボックスの上からの配置*/
	background: var(--primary-color);		/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
	border: 3px solid #fff;	/*枠線の幅、線種、色。*/
}

/*アクセントカラー版*/
.list1 .icon.accent {
	background: var(--accent-color);	/*背景色。theme.cssのaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*文字色。theme.cssのaccent-inverse-colorを読み込みます。*/
}



/*「ご注文・ご予約はこちら！」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
#contact {
	/*背景画像の読み込み。contact-bg.svgを全体におき、contact-bg.pngを幅100%で重ねる。*/
	background:
	url("../images/contact-bg.png") no-repeat center center / 100%,
	url("../images/contact-bg.svg") no-repeat center center / cover;
	
	color: var(--accent-inverse-color);	/*文字色。theme.cssのaccent-inverse-colorを読み込みます。*/
	padding: 3rem 15vw 2rem;	/*ブロック内の余白。上に3文字分、左右に画面幅の15%、下に2文字分。*/
	display: flex;	/*横並びに*/
	gap: 2rem;		/*並んだブロック同士に空けるスペース。2文字分。*/
	align-items: center;
	justify-content: center;
}

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

	/*ブロック全体を縦積みに*/
	#contact {
		flex-direction: column;
		text-align: center;
	}

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


/*ボタンブロック*/
#contact .btn {
	flex-shrink: 0;
}


/*news（お知らせ）
---------------------------------------------------------------------------*/
dl.news * {margin: 0;padding: 0;}

/*日付*/
dl.news dt {
	display: flex;
}

/*アイコン*/
dl.news dt span {
	display: inline-block;
	line-height: 1;
	width: 6rem;	/*幅*/
	padding: 0.3rem 0;	/*上下に0.3文字分、左右に0の余白*/
	background: var(--primary-color);	/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
	text-align: center;
	transform: scale(0.8);	/*サイズを80%に*/
	border-radius: 3px;		/*角を少し丸く*/
}
/*アイコン（primary背景色の上でアイコンが同化しないように）*/
.bg1-primary-parts dl.news dt span {
	background: var(--bg-color);	/*背景色。theme.cssのbg-colorを読み込みます。*/
	color: var(--bg-inverse-color);	/*文字色。theme.cssのbg-inverse-colorを読み込みます。*/
}

/*アイコンを目立たせる場合（accent-color）*/
dl.news dt span.accent-color {
	background: var(--accent-color);	/*背景色。theme.cssのaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*文字色。theme.cssのaccent-inverse-colorを読み込みます。*/
}
/*アイコンを目立たせる場合（accent背景色の上でアイコンが同化しないように）*/
.bg1-accent-parts dl.news dt span.accent-color {
	background: var(--bg-color);	/*背景色。theme.cssのbg-colorを読み込みます。*/
	color: var(--bg-inverse-color);	/*文字色。theme.cssのbg-inverse-colorを読み込みます。*/
}

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

	dl.news {
		display: grid;
		grid-template-columns: max-content minmax(0, 1fr);	/*日付幅は最大の文字数幅に自動調整し、右側テキストは残り一杯使う。*/
		align-items: start;
	}

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


/*フッター
---------------------------------------------------------------------------*/
footer p {margin: 0;}
footer a {text-decoration: none;}

/*フッターブロック*/
footer {
	border-top: 1px solid var(--bg-border-color);	/*フッターの上に線を入れる*/
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;	/*footer直下のボックスの間に空けるスペース。２文字分。*/
	font-size: 0.8rem;	/*文字サイズ80%*/
	padding: var(--content-space-s);	/*ボックス内の余白。theme.cssのcontent-space-sを読み込みます。*/
}

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

/*フッター内のメニュー*/
footer ul {
	list-style: none;margin: 0;padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/*Copyright*/
footer small {
	width: 100%;
	font-size: 0.8rem;
	text-align: center;
}


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

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


/*ボタン
---------------------------------------------------------------------------*/
.btn a {
	display: inline-block;
	text-decoration: none;
	font-weight: bold;
	background: var(--primary-color);		/*背景色。theme.csのprimary-colorを読み込みます。*/
	color: #333;	/*文字色。*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、var以降は色の指定で、theme.cssのprimary-colorを読み込みます。*/
	padding: 0.4rem 2rem;	/*上下に0.4文字分、左右に2文字分の余白*/
	border-radius: 999px;	/*ボタンをカプセル状にする。大きければ適当でOK。*/
}

/*背景が白いタイプのボタン*/
.btn.inverse a {
	background: var(--primary-inverse-color);	/*背景色。theme.csのprimary-inverse-colorを読み込みます。*/
	color: var(--primary-color);				/*文字色。theme.csのprimary-colorを読み込みます。*/
}

/*アクセントカラー版*/
.btn.accent a {
	background: var(--accent-color);		/*背景色。theme.csのaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);		/*文字色。theme.csのaccent-inverse-colorを読み込みます。*/
	border: 1px solid var(--accent-color);	/*枠線の幅、線種、var以降は色の指定で、theme.cssのaccent-colorを読み込みます。*/
}


/*news（お知らせ）
---------------------------------------------------------------------------*/
dl.news * {margin: 0;padding: 0;}

/*日付*/
dl.news dt {
	display: flex;
}

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

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

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


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.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.8rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: 900;
	margin-right: 0.5em;
}


/*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%;	/*円形にする*/
}


/*bg1-parts
---------------------------------------------------------------------------*/
.bg1-parts {
	background-color: var(--bg-inverse-color);	/*文字色。theme.cssのbg-inverse-colorを読み込みます。*/
	color: var(--bg-color);		/*背景色。theme.cssのbg-colorを読み込みます。*/
}

/*bg1-primary
---------------------------------------------------------------------------*/
.bg1-primary-parts {
	background-color: var(--primary-color);		/*背景色。theme.cssのprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。theme.cssのprimary-inverse-colorを読み込みます。*/
}


/*bg1-light
---------------------------------------------------------------------------*/
.bg1-light-parts {
	background-color: var(--light-color);		/*背景色。theme.cssのlight-colorを読み込みます。*/
	color: var(--light-inverse-color);	/*背景色。theme.cssのlight-inverse-colorを読み込みます。*/
}


/*bg1-accent
---------------------------------------------------------------------------*/
.bg1-accent-parts {
	background-color: var(--accent-color);		/*背景色。theme.cssのaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*背景色。theme.cssのaccent-inverse-colorを読み込みます。*/
}


/*bg-parts（bg1-primary-parts、bg1-light-parts、bg1-accent-partsとセットで使います）
---------------------------------------------------------------------------*/
.bg-parts {
	padding-top: var(--content-space-l);		/*ボックス内の上に空ける余白。theme.cssのcontent-space-lを読み込みます。*/
	padding-bottom: var(--content-space-l);	/*ボックス内の下に空ける余白。theme.cssのcontent-space-lを読み込みます。*/
}

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


/*section内で画面両サイドいっぱいまで広げる場合（marginのみでもいいが安定版に）
---------------------------------------------------------------------------*/
.bleed-x-parts {
	--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-parts {
	width: calc(100% + var(--content-space-l));
	margin-left: calc(-1 * var(--content-space-l));
}
.bleed-right-parts {
	width: calc(100% + var(--content-space-l));
	margin-right: calc(-1 * var(--content-space-l));
}


/*その他
---------------------------------------------------------------------------*/
.color-check, .color-check a {color: #c3547b !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;}
.mt20 {margin-top: 20px !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: rgba(0,0,0,0.8);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;}
.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;}
