@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&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");


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


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #00152d;			/*テンプレートの土台カラー*/
	--primary-inverse-color: #725A4C;	/*上のprimary-colorの対となる色*/
	
	--secondary-color: #AD002D;			/*テンプレートのサブまたはアクセントカラー*/
	--secondary-inverse-color: #00152d;	/*上のsecondary-colorの対となる色*/
	
	--accent-color: #fff;			/*アクセントカラー*/
	--accent-inverse-color: #AD002D;		/*アクセントカラーの対となる色*/
	
	--global-space: 20px;				/*主に余白の一括管理用*/
}


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*アニメーション設定*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}

/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。小さいとタイピングのようにカクカク出ます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

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

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

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

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


body {
	margin: 0;padding: 0;
	font-family: "Zen Maru Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	line-height: 2.5;		/*行間*/
	background: #00152d;	/*背景色*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	overflow-x: hidden;
}

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

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


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

/*マウスオン時*/
a:hover {
	text-decoration: none;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
header::before {
	background: url("../images-food/bg2.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のcontents*/
header .contents {
	color: #fff;	/*文字色*/
	padding: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	background: url("../images-food/bg.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

header .contents a {color: inherit;}

/*ロゴ、謳い文句、ロゴ上の装飾画像を囲むボックス*/
header #logo-container {
	flex: 1;
	background: rgba(0,21,45,0.9);	/*背景色。66,42,22はRGB値での色指定で0.8は色が80%出た状態。写真そのまま出したいならこの１行を削除。*/
	padding: 30px 10px 25px;		/*上、左右、下への余白*/
	position: relative;
	text-align: center;
}

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

/*謳い文句*/
header p {
	display: block;
	font-size: 0.8rem;	/*文字サイズ80%*/
}

/*ロゴ上の装飾画像（New Open）*/
header .kazari {
	position: absolute;
	left: 20%;		/*ロゴが入ったボックスに対して左からの配置指定*/
	top: -50px;		/*ロゴが入ったボックスに対して上からの配置指定。マイナスがつくので、ボックスから飛び出る形になります。*/
	width: 140px;	/*画像の幅*/
}


@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.scroll_down{
  position:absolute;
  bottom:50px;
  right:50%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a{
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: #ad002d;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.text {
  display: block;
  margin-top: 70px;
  margin-left: -14px;
  font-size: 12px;
  color: #ad002d;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}

.arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #ad002d;
}

.arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% { opacity: 1; }
  33% { opacity: 1; transform: translateY(30px); }
  67% { opacity: 1; transform: translateY(40px); }
  100% { opacity: 0; transform: translateY(55px) scale3d(0.5, 0.5, 0.5); }
}


/*ヘッダーメニュー（大きな画面で見た場合に左側に固定表示されるメニュー）
---------------------------------------------------------------------------*/
/*1000px未満は非表示*/
#header-menu {
	display: none;
}

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

	#header-menu {
		display: block;	/*表示させる*/
		position: fixed;z-index: 1;
		left: 0px;
		top: 100px;	/*上からの配置場所*/
	}
	
	/*メニュー１個あたり*/
	#header-menu li a {
		text-decoration: none;display: block;
		background: var(--secondary-color);		/*背景色。冒頭のsecondary-colorを読み込む。*/
		color: #fff;	/*文字色。冒頭のsecondary-inverse-colorを読み込む。*/
		margin-bottom: 20px;					/*下に空けるスペース。メニュー同士の上下間の隙間。*/
		border-radius: 0px 100px 100px 0px;		/*角丸の指定。左上、右上、右下、左下への順。100pxの所はとりあえず大きな数字にしておけばOK。*/
		padding: 10px 30px 10px 20px;	/*ボタン内の余白。上、右、下、左への順番。*/
		font-size: 1.2rem;	/*文字サイズを120%に。*/
	}
	
	/*現在表示中のメニューの背景色と、マウスオン時共通*/
	#header-menu li.active a,
	#header-menu li a:hover {
	    color: #fff;	/*文字色。冒頭のsecondary-inverse-colorを読み込む。*/
		background: #00152d;	/*css冒頭のaccent-colorを読み込む*/
	}

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


/*背景画像共通（大きな画面で見た場合に両サイドに見える画像）
---------------------------------------------------------------------------*/
.section::before {
	opacity: 0;
	transition: opacity 1s; /* 1秒かけてフェードイン/フェードアウト */
	content: '';
	position: fixed;z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.section.active::before {
	opacity: 1;
}
.section.inactive::before {
	opacity: 0;
}


/*contents（各セクションブロック直下にあるボックス）
---------------------------------------------------------------------------*/
.contents {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込む。*/
	color: #fff;	/*文字色。冒頭のprimary-inverse-colorを読み込む。*/
	padding: var(--global-space);			/*ボックス内の余白。冒頭のglobal-spaceを読み込む。*/
	position: relative;
	overflow-x: hidden;
}

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

	.contents,
	#gallery .gallery-box {
		max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto;		/*画面の左右中央に配置*/
		overflow-x: visible;
	}

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


/*h2見出し共通*/
.contents h2 {
	margin: 0;
	line-height: 1.8;	/*行間をデフォルトより狭くする。２行になった場合に間があきすぎるので。*/
	padding: 20px 0;	/*上下、左右への余白*/
	font-size: 1.8rem;	/*文字サイズ180%*/
	text-align: center;	/*テキストをセンタリング*/
}

/*h2内の小文字*/
.contents h2 span.hosoku {
	display: block;
	font-size: 0.7rem;		/*文字サイズを70%に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	padding-bottom: 0.5rem;	/*下の見出しとの間の余白。0.5文字分。*/
}


/*オープニング特別メニュー（specialブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#special::before {
	background: url('../images-food/bg.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のcontents*/
#special .contents {
	background: #00152d; 
	url("../images-food/") no-repeat center top / 100%;	/*背景画像の読み込み。見出しの上にある装飾画像です。*/
	color: var(--accent-inverse-color);	/*文字色。冒頭のaccent-inverse-colorを読み込む。*/
}


/*横スライドインタイプのスライドショー（１枚目の画像のアスペクト比が反映されるタイプ）
---------------------------------------------------------------------------*/
/*3枚の画像を囲むブロック*/
.slide5 {
	position: relative;
	overflow: hidden;
}

/*３枚の画像の共通設定*/
.slide5 .slide {
	position: absolute;right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	transform: translateX(100%);
	transition: transform 0.7s ease;	/*0.7sはスライドにかける時間（0.7秒）。0.7を変更する場合、main.jsのスライドショー用のコードの最後の「700」も変更する。*/
}

/*アクティブ時*/
.slide5 .slide.active {
	transform: translateX(0);
}

/*左に移動*/
.slide5 .slide.left {
	transform: translateX(-100%);
}

/*非表示*/
.slide5 .slide.hidden {
	opacity: 0;
}

/*初期表示用*/
.slide5 .slide.initial {
	transform: translateX(0);
	transition: none;
}

/*１枚目画像（変更不要）*/
.slide5 .img1 {
	position: relative;width: 100%;height: auto;
}

/*画像のクリップ*/
.slide5 .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/*現在表示されているスライドのみをクリック可能にする設定（変更不要）*/
.slide5 .slide {
	pointer-events: none;
}
.slide5 .slide.active {
	pointer-events: auto;
}

/*現在表示中のボタンブロック*/
.slide5 .slide-indicators {
    text-align: center;
	position: absolute;
	width: 100%;
	bottom: 80px;	/*ボタンの配置場所。スライドショーの画面下からの距離。*/
	left: 0px;
}

/*ボタン１個あたり*/
.slide5 .indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #ad002d;	/*未アクティブ時のボタン色*/
	border: 4px solid #fff;	/*枠線の幅、線種、色。*/
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

/*アクティブ時のボタン色*/
.slide5 .indicator.active {
    background: var(--accent-color);	/*冒頭のaccent-colorを読み込む*/
}


/*私たちのこだわり（systemブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#system::before {
	background: url('../images-food/bg.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のh2見出し*/
#system h2 {
	position: relative;
	padding-left: 40px;		/*左に空けるスペース。文字と画像が重ならないように適当な余白を確保。*/
	padding-right: 40px;	/*右に空けるスペース。同上。*/
}

/*見出し左右の画像の共通設定*/
#system h2::before,
#system h2::after {
	content: "";
	position: absolute;
	width: 80px;	/*画像の幅*/
	height: 140px;	/*画像の高さ*/
	top: -30px;		/*上からの距離*/
	background: ;	/*画像の読み込み*/
}

/*左側の画像の追加設定*/
#system h2::before {
	left: -40px;	/*左からの配置場所*/
}

/*右側の画像の追加設定*/
#system h2::after {
	right: -40px;	/*右からの配置場所*/
	transform: scale(-1, 1);	/*画像を左右反転させる*/
}

/*こだわりテキストが入った背景色（bg1）*/
#system .bg1 {
	background: #AD002D;	/*背景色*/
	padding: 20px 60px;		/*上下、左右への余白*/
	margin: 0 calc(-1 * var(--global-space));	/*両サイドの余白を相殺して幅一杯に使う*/
}

/*このボックス内のイメージ写真*/
#system aside {
	margin: 0 calc(-1 * var(--global-space));	/*両サイドの余白を相殺して幅一杯に使う*/
	border-radius: 100px 100px 0px 0px;	/*角を丸くする指定。左上、右上、右下、左下への順番。普通に表示させたいならこの１行を削除。*/
	overflow: hidden;
}

/*このボックス内の余白。段落１文字目にインデント（１文字さがる）をとる。*/
#system .bg1 p {
	text-indent: 1em;
}


/*（menuブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#doka::before {
	background: url('../images-food/bg.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
}

#zen::before {
	background: url('../images-food/bg.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
}

#bin::before {
	background: url('../images-food/bg.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
}

#goyen::before {
	background: url('../images-food/bg.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
}

#contact::before {
	background: url('../images-food/bg.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
}


/*このブロック内のh2見出し*/
#menu h2 {
	background: var(--secondary-color);		/*背景色。冒頭のsecondary-colorを読み込む。*/
	color: var(--secondary-inverse-color);	/*文字色。secondary-inverse-colorを読み込む。*/
	padding: 10px 0;	/*上下、左右への余白*/
	margin-bottom: var(--global-space);		/*見出しの下に空ける隙間。冒頭のglobal-spaceを読み込む。*/
	border-radius: 10px 20px 0px 0px;		/*角を丸くする指定。左上、右上、右下、左下への順番*/
}

/*メニューブロック１個あたり*/
.menu img {display: block;}
.menu {
	position: relative;
}

/*メニューの下にあるテキストブロック（※スライドショーと共通）*/
.slide5 .slide .text,
.menu .text {
	margin: 0;
	padding: 5px;	/*ボックス内の余白*/
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	text-align: center;
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は色が60%出た状態。*/
	color: #fff;	/*文字色*/
}

.menu span {
	margin: 0;
	padding: 5px;	/*ボックス内の余白*/
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	text-align: center;
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は色が60%出た状態。*/
	color: #fff;	/*文字色*/
}







/*ギャラリー
---------------------------------------------------------------------------*/
:root {
	--gallery-space: 120px;	/*上と下の波打った画像の高さ。お好みで調整してもらってもOKですし、下で数箇所使っている所を直接数字入力に変更されてもOKです。*/
}

/*大きな画面で見た場合に両サイドに見える画像*/
#gallery::before {
	background: url("../images-food/bg.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}


/*このブロック内のcontents*/
#gallery .contents {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込む。*/
}

#gallery .gallery-box {
	position: relative;
	overflow: visible;
	background: #00152d;
	color: var(--accent-inverse-color);		/*文字色。冒頭のaccent-inverse-colorを読み込む。*/
	margin: var(--gallery-space) calc(-1 * var(--global-space));
}

/*上と下の波打った画像の読み込みに関する共通設定*/
#gallery .gallery-box::before,
#gallery .gallery-box::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--gallery-space);	/*画像の高さ。上のgallery-spaceを読み込む。*/
    background-repeat: no-repeat;
    background-size: 100% 100%;
}



/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
	overflow-x: hidden;
}

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

/*画像*/
.slide-thumbnail1 .img img {
	padding: 5px;	/*画像の余白*/
}

/*右から左へ、左から右へ、のアニメーション*/
.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);}
}


/*tableっぽいdl（「お知らせ」「店舗情報」「メニュー（menu.html）」）
---------------------------------------------------------------------------*/
dl.table {
	display: grid;
	grid-template-columns: 100px auto;	/*dtとddを横並びにし、dtの幅を100pxに、残りは自動。*/
	margin-bottom: 50px;
	line-height: 2;
}
dl.table dt,
dl.table dd {
	padding: 1rem;
}

/*menu.htmlのテキストのみのお品書きに使用*/
dl.table.reverse {
	grid-template-columns: auto 100px;	/*dtとddを横並びにし、dtの幅を自動に、残りは10px。*/
}
dl.table.reverse dd {
	text-align: right;
}

/*menuブロックのみ、奇数番目のメニューの行に薄く背景色をつける*/
#menu dl.table dt:nth-of-type(odd),
#menu dl.table dd:nth-of-type(odd) {
	background: rgba(0,0,0,0.04);
}











/* ボックス */
.cstm-box-offset {
   margin: 15px 0px 15px 0px;; /* 外側余白 */
   padding: 0.2em; /* 内側余白 */
   background: none; /* 元のボックス背景色なし */
   border: 1px solid #ccc; /* 線の太さ（1px）、種類（実線）、色（#ccc） */
   border-radius: 5px;		
   position: relative; /* 配置（基準となる位置） */
   max-width: 800px; /* 最大幅 */
}

/* ボックス内の段落 */
.cstm-box-offset p { margin:0; }




.box-013 {
    max-width: auto;
    margin: 0 auto;
    background: #00152d;
}

.box-013 h2 {
	background: var(--secondary-color);		/*背景色。冒頭のsecondary-colorを読み込む。*/
	color: #fff;	/*文字色。secondary-inverse-colorを読み込む。*/
	padding: 20px 0;	/*上下、左右への余白*/
	margin-bottom: var(--global-space);		/*見出しの下に空ける隙間。冒頭のglobal-spaceを読み込む。*/
	border-radius: 5px ;		/*角を丸くする指定。左上、右上、右下、左下への順番*/
}



.box-013 span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5em 0;
    background-color: #2589d0;
    color: #fff;
    font-weight: 600;
}

.box-013 p {
    margin: 0;
    padding: 1em 1.5em;
    color: #fff;
}

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

	
	.box-013 {
		max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto;		/*画面の左右中央に配置*/
		overflow-x: visible;
	}
    }
    
    
table{
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 10px;
  border: solid 1px #ccc;
  text-align:center;
  box-sizing:border-box;
}
.tb01 th {
  background: ;
  color: #fff;
  
}

.tb01 caption {
  caption-side: top; /* 上に表示 */
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

@media screen and (max-width: 640px) {
  .tb01 {
    width: 100%;
  }
  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}

img.example1 {
width: 100px;
height: 100px;
}

/*テキスト
---------------------------------------------------------------------------*/

.mainVisual__Title span {
  display:inline-block;
  opacity:0;
  
  transform:translateY(30px);
  animation:slideUp 0.6s ease forwards;
}

.mainVisual__Title{
  line-height:1.5; /* 行間を詰める */ 
  margin:0; 
  padding:0;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mainVisual__Title{
  text-align:center;
}
.wrapper{
   display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  height:30vh;
}

/*ボタン
---------------------------------------------------------------------------*/

a.btn_27 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width:80%;
	margin: auto;
	padding: 5px 30px;
	font-size: 1.2em;
	font-weight: bold;
	white-space: nowrap;
	background-color: #AD002D;
	border-radius: 5px 5px 5px 5px;
	color: #fff;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
}
a.btn_27::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(244, 214, 218);
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}

a.btn_27:hover::before {
	background-color: #fff;
	transform: translateX(0);
}
a.btn_27:hover {
	color: #AD002D;
}


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

.top-btn{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;

  display: flex;
  justify-content: center;
  align-items: center;

  text-decoration: none;
  overflow: hidden;
  z-index: 9999;

  /* ガラス風 */
  background: rgba(0, 21, 45,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(0, 21, 45,0.8);

  box-shadow:
    0 8px 32px rgba(0,0,0,0.15),
    inset 0 1px 1px rgba(196,26,65,0.5);

  animation:
    blob 8s ease-in-out infinite,
    float 4s ease-in-out infinite;
}

/* 球体変形 */
@keyframes blob{
  0%,100%{
    border-radius:50%;
  }
  25%{
    border-radius:60% 40% 55% 45% / 45% 60% 40% 55%;
  }
  50%{
    border-radius:40% 60% 45% 55% / 60% 35% 65% 40%;
  }
  75%{
    border-radius:55% 45% 65% 35% / 35% 65% 35% 65%;
  }
}

/* ふわふわ浮遊 */
@keyframes float{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-10px);
  }
}

/* ガラスの光 */
.top-btn::before{
  content:"";
  position:absolute;
  top:8px;
  left:12px;

  width:40%;
  height:20%;

  background:rgba(255,255,255,0.6);
  border-radius:50%;
  filter:blur(4px);

  pointer-events:none;
}

/* 外側の光 */
.top-btn::after{
  content:"";
  position:absolute;
  inset:-3px;

  border-radius:inherit;
  border:1px solid rgba(255,255,255,.2);

  animation:blob 8s ease-in-out infinite reverse;
}

/* 矢印 */
/* 矢印エリア */
.arrow-wrap{
  position: relative;
  width: 24px;
  height: 30px;
}

/* 共通 */
.top-arrow{
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translateX(-50%) rotate(45deg);
  opacity: 0;
}

.top-arrow:nth-child(1){animation:arrowUp 3s infinite;}
.top-arrow:nth-child(2){animation:arrowUp 3s infinite .5s;}
.top-arrow:nth-child(3){animation:arrowUp 3s infinite .8s;}


@keyframes arrowUp{
  0%{
    opacity: 0;
    top: 18px;
  }

  30%{
    opacity: 1;
  }

  100%{
    opacity: 0;
    top: -8px;
  }
}



/* ホバー */
.top-btn:hover{
  background:rgba(188,51,84,0.5);
  transform:translateY(-5px) scale(1.08);
  transition:.3s;
}








/*店舗情報
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#shop::before {
	background: url('../images-food/bg.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*「店舗情報」「マップ」「SNSアイコン」を囲むブロック*/
#shop .shop-data {
	border-radius: 10px 10px 10px 10px;	/*角を丸くする指定。左上、右上、右下、左下への順番。500pxの数字は適当に大きければOK。*/
	background: url('../images-food/blakwood.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
	color: #fff;	/*文字色*/
	padding: 100px 50px 50px;	/*上、左右、下へのボックス内余白*/
}

/*「所在地」などが記載されているtableっぽいブロック（基本設定はこの上の「tableっぽいdl（「お知らせ」「店舗情報」共通）」で行っています。）*/
#shop .shop-data dl.table {
	border-top: 1px solid rgba(255,255,255,0.3);	/*枠線の幅、線種、255,255,255は白のことで0.3は色が30%出た状態。下と揃えておく。*/
}
#shop .shop-data dl.table dt,
#shop .shop-data dl.table dd {
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*枠線の幅、線種、255,255,255は白のことで0.3は色が30%出た状態。上と揃えておく。*/
}

/*Follow Usの画像*/
#shop h3 img {
	display: block;
	width: 150px;	/*画像の幅*/
	margin: 0 auto;
}

/*Google Map*/
#shop iframe {
	width: 100%;
	height: 300px;	/*高さ*/
}

/*ソーシャルメディアのアイコン*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	align-self: center;
	justify-content: center;
	gap: 10px;	/*アイコン同士のマージン的な要素*/
}
.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*フッター設定（コピーライト部分）
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.8rem;		/*文字サイズ80%*/
	text-align: center;		/*内容をセンタリング*/
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;				/*ブロック内の余白。上、左右、下への順番。*/
	background: url('../images-food/bg2.jpg') no-repeat center center / cover;	/*背景色。css冒頭のsecondary-colorを読み込みます。*/
	color: #fff;	/*文字色。css冒頭のsecondary-inverse-colorを読み込みます。*/
	animation: opa1 1s both;				/*opa1を実行する。1sは1秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid var(--secondary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭のsecondary-inverse-colorを読み込みます。*/
	margin: 1rem 0;			/*メニューの外側に空けるスペース。上下、左右への順番。*/
	border-radius: 5px;		/*角を丸くする指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	background: var(--secondary-inverse-color);	/*背景色。css冒頭のsecondary-inverse-colorを読み込みます。*/
	text-align: center;

}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;	/*メニュー内の余白。上下、左右へ。*/
}

/*マウスオン時*/
.small-screen #menubar a:hover {
	color: #fff;				
	background: #AD002D;	
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/* ==========================================
   ハンバーガーボタン
========================================== */

#menubar_hdr{
	position: fixed;
	right: 10px;
	top: 10px;

	width: 70px;
	height: 70px;

	display: flex;
	justify-content: center;
	align-items: center;

	z-index: 200;
	cursor: pointer;
	overflow: hidden;

	/* ガラス風 */
	background: rgba(0, 21, 45,0.6);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	border: 1px solid rgba(0, 21, 45,0.3);

	box-shadow:
		0 8px 32px rgba(0,0,0,0.15),
		inset 0 1px 1px rgba(0, 21, 45,0.5);

	/* 左下だけ丸める */
	border-radius: 0 0 0 20px;

	/* 液体っぽく変形 */
	animation: blobWave 8s ease-in-out infinite;
}

/* ガラスの光沢 */
#menubar_hdr::before{
	content:"";
	position:absolute;
	top:8px;
	left:12px;

	width:40%;
	height:20%;

	background:rgba(255,255,255,.6);
	border-radius:50%;
	filter:blur(4px);

	pointer-events:none;
}

/* 外側の光 */
#menubar_hdr::after{
	content:"";
	position:absolute;
	inset:-2px;

	border-radius:inherit;
	border:1px solid rgba(255,255,255,.2);

	animation: blobWave 8s ease-in-out infinite reverse;

	pointer-events:none;
}

/* ==========================================
   3本線
========================================== */

#menubar_hdr span{
	display:block;
	position:absolute;

	left:18px;

	width:35px;
	height:4px;

	background:rgba(255,255,255,.95);
	border-radius:999px;

	transition:
		transform .4s ease,
		opacity .3s ease;
}

#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{
	background: rgba(196,26,65,0.5);
}

#menubar_hdr.ham span:nth-of-type(1){
	transform: translateY(10px) rotate(-45deg);
}

#menubar_hdr.ham span:nth-of-type(2){
	opacity:0;
	transform:scaleX(0);
}

#menubar_hdr.ham span:nth-of-type(3){
	transform: translateY(-10px) rotate(45deg);
}

/* ==========================================
   液体変形アニメーション
========================================== */

@keyframes blobWave{

	0%{
		border-radius: 0 0 0 20px;
	}

	20%{
		border-radius: 8px 0 5px 28px;
	}

	40%{
		border-radius: 0 8px 0 35px;
	}

	60%{
		border-radius: 5px 0 10px 25px;
	}

	80%{
		border-radius: 0 10px 0 30px;
	}

	100%{
		border-radius: 0 0 0 20px;
	}
}



/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.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;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #000;border: 1px solid #fff;border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.color-check, .color-check a {color: var(--accent-color);}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

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

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}

	}/*画面幅900px以上の追加指定ここまで*/
