@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Tangerine&display=swap');*/


/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

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

@import url(font-awesome.min.css);



/*全体の設定
---------------------------------------------------------------------------*/
/*デフォルトマージンを除去*/
*{
	margin:0;
	padding: 0;
  }

html,body {
	
	margin:auto;
	overflow-x: hidden;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅800px以上」で基準を大きなサイズに変更しています。*/
}

body {
	font-family: 'Noto Serif JP', serif;
	/*font-family: "serif","ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	/*background-image : url(../images/bg.jpg);*/
	background-repeat:repeat;
	background: #f7f6ed;	/*背景色*/
	color: #2c2c2c;	/*全体の文字色*/
	line-height: 2;		/*行間*/
}

/*マージンのリセット*/
figure {margin: 0;}
dd {margin: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*section全般の設定*/
section + section {
	padding-top: 15px;	/*sectionの間に空けるスペース*/
	
}

@media all and (min-width: 0) and (max-width: 767px){

section + section {
	padding-top: 5px;	/*sectionの間に空けるスペース*/
}

}



/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}


/*opa1（透明から着色状態に）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #fff;	/*文字色*/
}

a:hover {
	color: #999;	/*マウスオン時の文字色*/
}

/*container。サイト全体を囲むブロック。
---------------------------------------------------------------------------*/
#container {
	margin: 0 auto;
	max-width: 1400px;	/*最大幅。これ以上幅が広がらないように。*/
	padding: 0 10px;	/*上下、左右へのブロック内の余白*/
}

#container2 {
	margin: 0 auto;
	max-width: 1920px;	/*最大幅。これ以上幅が広がらないように。*/
	padding: 0 10px;	/*上下、左右へのブロック内の余白*/
}


/*headerブロック（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*トップページの画像ロゴ(png画像)設定*/
.home header #logo {
	position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);
	width: 300px;				/*ロゴ画像の幅*/
	animation-name: opa1;		/*@keyframesの指定*/
	animation-duration: 3S;		/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}

/*トップページの画像ロゴ(png画像)を、デフォルトでは非表示にする*/
.home header #logo {
	display: none;
}

/*ロゴアニメーションを使わない場合の設定*/
.home.index2 header #logo {display: block;}
.home.index2 svg {display: none;}

/*トップページ以外のロゴ画像の幅*/
header #logo {
	width: 150px;
}

/*mainブロック
---------------------------------------------------------------------------*/
main {
	margin-bottom: 0px;	/*下に空けるスペース*/
}

/*ブロック内のh2タグ*/
main h2 {
	z-index:10;
	opacity: 0;							/*透明度。0は色が出ていない(0%)状態の事。*/
	text-align: center;					/*文字をセンタリング*/
	/*font-family: 'Tangerine', cursive, "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka;*/
	font-family: 'Noto Serif JP', serif;
	font-weight: normal;				/*hタグはデフォルトで太字なので、これを標準にする*/
	font-size: 2.1rem;					/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	margin-bottom: 80px;				/*下に空けるスペース*/
}

/*ブロック内のh2タグ内のspanタグ（日本語の小さい説明用部分）*/
main h2 span {
	display: block;	
	font-size: 0.7rem;			/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	letter-spacing: 0.2em;		/*文字間隔を少し広くとる指定*/
}

/*spanタグの前に「〜」を出力する指定*/
main h2 span::before {
	content: "〜";
	padding-right: 10px;
}

/*spanタグの後に「〜」を出力する指定*/
main h2 span::after {
	content: "〜";
	padding-left: 10px;
}

/*ブロック内のh3タグ*/
main h3 {
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
	text-align: center;		/*文字をセンタリング*/
	font-size: 1.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	margin: 50px 0;			/*上下、左右へとる余白*/
}

/*mainブロックのpタグ*/
main p {
	margin: 0 5px 30px;	/*上、左右、下へ空けるスペース*/
}

@media all and (min-width: 0) and (max-width: 767px){
	main h2 {
		font-size: 1.5rem;
	}


}



/*メニューの設定
---------------------------------------------------------------------------*/


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	
	background-color: #104f0aef;
	margin: 0 calc(50% - 50vw);
	font-size: 0.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

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

/*著作部分*/
footer .pr {display: block;}


/*フッターにあるアイコン類
---------------------------------------------------------------------------*/
/*アイコン類を囲むブロック*/
ul.icon {
	list-style: none;
	margin: 0;padding: 0;
	margin-bottom: 30px;	/*下に空けるスペース*/
}

/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*リストタグを横並びにさせる指定*/
}

/*アイコン画像の設定*/
ul.icon img {
	width: 30px;	/*アイコン画像の幅*/
}

/*画像のマウスオン時*/
ul.icon img:hover {
	opacity: 0.8;	/*透明度。0.8は色が80%出た状態の事。*/
}

/*トップページの「Photo's（お料理の写真）」の横スライドショーコーナー（slickを使用）
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むボックス*/
.pickup {
	position: relative;
	display: flex;			/*flexボックスを使う指定*/
}

/*１個あたりのボックス*/
.pickup .slick-slide {
	margin: 5px !important;
	width: auto;
}

/*ボックス内の画像*/
.pickup .list img {
	object-fit: cover;	/*トリミングのタイプ*/
	width: 100%;		/*画像の幅*/
	font-family: 'object-fit: cover;';	/*IE対策*/
}

/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 5px;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);	/*下線の幅、線種、色。255,255,255,は白の事で0.2は色が20%出た状態の事。*/
	padding: 5px 0;					/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。*/
}

/*menu.htmlの画像配置のコンパクトメニュー部分
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 5px;		/*上下、左右へのボックス内の余白*/
}

/*１個あたりのボックス*/
.list {
	width: 49%;				/*ボックスの幅*/
	margin-right: 2%;		/*ボックス同士の左右間の余白。ボックスを２列並べるので、49%×2個=98%。100%との差の2%がここに入ります。*/
	margin-bottom: 15px;	/*ボックス同士の上下間の余白*/
	text-align: center;		/*テキストをセンタリング*/
	font-size: 0.7rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*2の倍数(偶数番目)のボックスへの追加指定*/
.list:nth-of-type(2n) {
	margin-right: 0;	/*右側のスペースをなくす設定*/
}

/*ボックス内のh4タグ。メニュータイトルを入力しているスペースです。*/
.list h4 {
	margin: 10px 0 0;		/*上、左右、下に空けるスペース*/
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
}

/*ボックス内のpタグ。価格を入力しているスペースです。*/
.list p {
	margin: 0!important;	/*「main p」のマージンをリセットする*/
}



/*熊野を味わう画像配置
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list3-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 5px;		/*上下、左右へのボックス内の余白*/
}

/*１個あたりのボックス*/
.list3 {
	width: 30%;				/*ボックスの幅*/
	margin-right: 2%;		/*ボックス同士の左右間の余白。ボックスを２列並べるので、49%×2個=98%。100%との差の2%がここに入ります。*/
	margin-bottom: 15px;	/*ボックス同士の上下間の余白*/
	text-align: center;		/*テキストをセンタリング*/
	font-size: 0.7rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*2の倍数(偶数番目)のボックスへの追加指定*/
.list3:nth-of-type(2n) {
	margin-right: 0;	/*右側のスペースをなくす設定*/
}

/*ボックス内のh4タグ。メニュータイトルを入力しているスペースです。*/
.list3 h4 {
	margin: 10px 0 0;		/*上、左右、下に空けるスペース*/
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
}

/*ボックス内のpタグ。価格を入力しているスペースです。*/
.list3 p {
	margin: 0!important;	/*「main p」のマージンをリセットする*/
	width: 75%;
    display: inline-block;
}

@media all and (min-width: 0) and (max-width: 767px){

.list3 p {
	margin: 0!important;	/*「main p」のマージンをリセットする*/
	width: 100%;
	display: inline-block;
}
	
}

/*トップページの「今週のランチ」ブロック
---------------------------------------------------------------------------*/
/*写真とメニュー解説テキストを囲むブロック*/
.list2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	align-items: center;	/*垂直揃えの指定。上下中央に配置されるように。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 40px;	/*下に空けるスペース*/
}

/*list2ブロック内のh4タグ*/
.list2 h4 {
	margin: 0;
	font-size: 1.2rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
	text-align: center;		/*テキストをセンタリング*/
}

/*写真下の小さなテキスト*/
.list2 figcaption {
	margin-top: 20px;	/*写真とテキストとの間に空けるスペース*/
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*list2ブロック内のfigureタグ。写真を囲むブロック。*/
.list2 figure {
	width: 90%;				/*幅*/
	text-align: center;		/*テキストをセンタリング*/
}

/*料理写真*/
.list2 figure img {
	padding: 0px;		/*写真の周りに少し余白を作って、より写真っぽく見せる*/
	/*background: #6c260a;	/*上の10pxとの間に出る色*/
	box-shadow: 4px 5px 5px rgb(0 0 0 / 80%);	/*ボックスの影。右へ、下へ、ぼかし幅、範囲。255,255,255は白の事で0.4は色が40%出た状態の事。*/
	/*transform: rotate(-2deg);	/*左に少しだけ回転させる指定。回転させたくなければこの１行と、下の「.list2:nth-of-type(even) img」のブロックを削除。*/
}

/*偶数番目のimg画像*/
/*.list2:nth-of-type(even) img {
	transform: rotate(2deg);	}/*回転を上と逆向きに。*/


/*list2内のtextブロック*/
.list2 .text {
	width: 100%;	/*幅*/
}

/*list2内のリストタグ*/
.list2 li {
	margin-bottom: 10px;	/*上下間にとるスペース*/
}

/*list2内のリストタグ内のspanタグ。文字サイズの小さい説明テキスト部分です。*/
.list2 li span {
	display: block;
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	opacity: 0.5;		/*透明度。0.5は色が50%出た状態の事。*/
}

@media all and (min-width: 0) and (max-width: 767px){
	.list2 h4 {
		margin-top:15px;
	}
}

/*menu.htmlのテキストメニュー設定
---------------------------------------------------------------------------*/
/*テキストメニュー全体を囲むブロック*/
.textmenu {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	border-top: 1px solid rgba(255,255,255,0.5);	/*上の線の幅、線種、色。255,255,255は白の事で、0.5は色が50%出た状態。*/
	margin-bottom: 50px;	/*下に空けるスペース*/
}

/*偶数番目の行の色を変更する*/
/*.textmenu dt:nth-of-type(odd), .textmenu dd:nth-of-type(odd) {
	background: rgba(107,233,100,16%);}	/*背景色。0,0,0は黒の事で0.1は色が10%出た状態。*/


/*メニュータイトル*/
.textmenu dt {
	width: calc(100% - 10em);		/*「10em」は下の「.textmenu dd」のwidthの値を入れて下さい。*/
	padding: 10px 0px 10px 20px;	/*上、右、下、左への余白*/
	border-bottom: 1px solid rgba(22, 22, 22, 0.5);	/*下線の幅、線種、色。*/
}

/*価格*/
.textmenu dd {
	width: 10em;		/*ここを変更する場合は、上の「.textmenu dt」のwidthも変更して下さい。*/
	text-align: right;	/*価格なので、テキストを右寄せで揃えて見やすくしておく。*/
	padding: 10px 20px 10px 0px;	/*上、右、下、左への余白*/
	border-bottom: 1px solid rgba(22, 22, 22, 0.5);	/*下線の幅、線種、色。*/
}

/*トップページのスライドショー（vegasを使用）
---------------------------------------------------------------------------*/
#mainimg {
    width: 100vw;
    height: 100vh;
}

/*SVGロゴ設定*/
#svg-logo {
	position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
	width: 300px;		/*幅*/
    stroke: #fff;		/*ここはこのままで変更しない（文字色の指定ではありません）*/
    stroke-width: 12;	/*ロゴをなぞった際の線の太さを指定して下さい。*/
}

/*スクロールを促すアイコン*/
.scroll {
	position: absolute;left: 50%;bottom: 20px;transform: translateX(-50%);
	width: 30px;	/*画像の幅*/
	opacity: 0.7;	/*透明度。0.7は色が70%出た状態の事。*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 1px solid rgba(255,255,255,0.5);	/*上の枠線の幅、線種、色。255,255,255は白の事で0.5は色が50%出た状態。*/
	padding: 10px 5px;								/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: rgba(0,0,0,0.1);	/*背景色*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid rgba(255,255,255,0.5);	/*テーブルの一番上の線。幅、線種、色。255,255,255は白の事で0.5は色が50%出た状態。*/
	table-layout: fixed;
	width: calc(60% - 10px);	/*テーブルの両サイドに合計10px（左右各5pxずつ）の余白を作った残りを幅にします*/
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

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

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;				/*幅*/
	text-align: left;		/*左よせにする*/
	font-weight: normal;	/*デフォルトの太字を標準にする*/
}

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

.pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #f1c734 !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.large {font-size: 2rem;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #ccc;padding: 5px 20px;background: rgba(0,0,0,0.03);border-radius: 5px;margin: 5px 0;}
.ofx {overflow-x: hidden;}



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


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 18px;	/*基準となるフォントサイズの上書き*/
	margin:auto;
	
}

/*section全般の設定*/
section + section {
	padding-top: 50px;	/*sectionの間に空けるスペース*/
}

/*container。サイト全体を囲むブロック。
---------------------------------------------------------------------------*/
#container {
	padding: 0 50px;	/*上下、左右へのブロック内の余白*/
}

/*menu.htmlの画像配置のコンパクトメニュー部分
---------------------------------------------------------------------------*/
/*１個あたりのボックス*/
.list {
	width: 23%;				/*ボックスの幅*/
	margin-right: 2.66%;	/*ボックス同士の左右間の余白。ボックスを4列並べるので、23%×4個=92%。100%との差の8%分をボックス間にある余白3個分で割った数字がここに入ります。※下の「.list:nth-of-type(2n)」の数字と合わせる。*/
	margin-bottom: 25px;	/*ボックス同士の上下間の余白*/
}

/*2の倍数(偶数番目)のボックスへの追加指定*/
.list:nth-of-type(2n) {
	margin-right: 2.66%;	/*上のlistのmargin-rightと数字を合わせる。小さな端末向けで0になっているのを上書きしています。*/
}

/*4の倍数のボックスへの追加指定*/
.list:nth-of-type(4n) {
	margin-right: 0;	/*右側のスペースをなくす設定*/
}

/*トップページの「今週のランチ」ブロック
---------------------------------------------------------------------------*/
/*写真とメニュー解説テキストを囲むブロック*/
.list2 {
	flex-direction: row;	/*子要素を横並びにする*/
	margin-bottom: 100px;	/*下に空けるスペース*/
}

/*偶数番目のlist2ブロック*/
.list2:nth-of-type(even) {
	flex-direction: row-reverse;	/*配置を左右逆にする*/
}

/*list2ブロック内のfigureタグ。写真を囲むブロック。*/
.list2 figure {
	width: 48%;	/*幅*/
}

/*list2内のtextブロック*/
.list2 .text {
	width: 48%;	/*幅*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

.ta1 {
	width: calc(60% - 10px);
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}

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

/*その他
---------------------------------------------------------------------------*/
.ws {width: 45%;display: inline-block;}

/*　※注意！　下の閉じカッコ　}　は800px以上の設定に必要なので、うっかり削除しないように。　*/

}





/*----------------------------------追加分--------------+*/

.qt-background{
	background: url(../images/qt-bg.jpg) no-repeat;
	background-size: cover;
	padding: 20px 0;
	background-attachment: fixed;
	background-position: center center;
	position: relative;
	margin:0 calc(50% - 50vw);
	
}

.qt-background1{
	background: url(../images/qt-bg1.jpg) no-repeat;
	background-size: cover;
	padding: 20px 0;
	background-attachment: fixed;
	background-position: center center;
	position: relative;
	margin:0 calc(50% - 50vw);
	margin-bottom: -50px;
	
	
}

.qt-background2{
	background-image : url(../images/bg.jpg);
	background-repeat:repeat;
	padding: 20px 0;
	background-attachment: fixed;
	background-position: center center;
	position: relative;
	margin:0 calc(50% - 50vw);
	
	
}

.qt-background3{
	background: url(../images/qt-bg3.jpg) no-repeat;
	background-size: cover;
	padding: 20px 0;
	background-attachment: fixed;
	background-position: center center;
	position: relative;
	margin:0 calc(50% - 50vw);

}

.qt-background3 h5 {
	position: absolute;
	writing-mode: vertical-rl;
	font-size:2.5rem;
	top: 55%;
	left: 48%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
	text-shadow: 2px 2px 3px #323232; 
		}
	

@media all and (min-width: 0) and (max-width: 767px){
.qt-background3{
	background: url(../images/qt-bg4.jpg) ;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	
	}

.qt-background3 h5 {
	font-size:1.5rem;

	}


}





header .inner{
	line-height: 80px;
	margin: 0 auto;
	height: 80px;
	width: 1100px;
}

header .inner .logo {
	vertical-align: middle;
}

header .inner .nav{
	font-size: 14px;
	font-weight: 500;
	list-style: none;
}

header .inner .nav li{
	float: left;
	margin-left: 30px;
}

header .inner .nav li:last-child{
	display: none;
}

header .inner .nav li a:hover{
	color: #c69c6d;
}

header .inner .tel{
	background: #104f0aef;
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	margin-left: 30px;
	padding: 14px 0;
	text-align:center;
	width: 197px;
}

header .inner .tel .sub{
	display: block;
	font-size: 12px;
	color:white;
}

header .inner .tel .fa{
	display: none;
}


.clear{
	clear: both;
}

.clearfix:after{
	content: "";
	clear: both;
	display: block;
}

.f-left{
	float: left;
}

.f-right{
	float: right;
}

a{
	color: #2c2c2c;
	text-decoration: none;
}


@media all and (min-width: 0) and (max-width: 767px){
	#loader img{
		width: 30%;
	}
	#panel-btn{
		display: none;
		position: relative;
		width: 50px;
		height: 50px;
		margin: 0;
	}

	#panel-btn:hover{
		background: #791216;
	}

	#panel-btn-icon{
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 20px;
		height: 2px;
		margin: -1px 0 0 -9px;
		background: #ffffff;
		transition: .2s;
	}

	#panel-btn-icon:before, #panel-btn-icon:after{
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 20px;
		height: 2px;
		background: #ffffff;
		transition: .3s;
	}

	#panel-btn-icon:before{
		margin-top: -6px;
	}

	#panel-btn-icon:after{
		margin-top: 4px;
	}

	#panel-btn .close{
		background: transparent;
	}

	#panel-btn .close:before, #panel-btn .close:after{
		margin-top: 0;
	}

	#panel-btn .close:before{
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}

	#panel-btn .close:after{
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
	
	.sp{
		display: block;
	}

	.pc{
		display: none;
	}
	
	.btn_wrap.pc{
		display: none;
	}

	.btn_wrap.sp{
		display: flex;
	}




	.logo-s{
		display: block;
		left: 20px;
		position: absolute;
		top: 5px;
		width: 70px;
	}

	header.no-top{
		height: 80px;
    	position: absolute;
		top: 0;
		width: 100%;
	}
	
	header .inner{
		height: auto;
		line-height: unset;
		position: absolute;
		width: 100%;
		z-index: 3;
	}
	
	header .inner .nav{
		background: #0f0f0f;
		display: none;
		height: 100vh;
		position: absolute;
		width: 100%;
	}
	
	header .inner .nav li {
		border-bottom: 2px solid #333333;
		float: none;
		height: 50px;
		line-height: 50px;
		margin-left: 0;
	}
	
	header .inner .nav li:last-child{
		display: block;
		border-bottom: none;
		padding: 0 0 0 20px;
	}

	header .inner .nav li > a{
		color: #ffffff;
		display: block;
		padding: 0 0 0 20px;
		width: 100%;
	}

	header .inner .nav li span a{
		display: inline-block;
		margin-left: 10px;
		vertical-align: top;
		width: 25px;
	}
	
	header .inner .tel{
	
	
		display: none;
		background: #104f0aef;
		height: 50px;
		line-height: 50px;
		margin-left: 0;
		position: absolute;
		right: 100px;
		text-align: center;
		top: 0;
		width: 50px;
		

	}
	
	header .inner .tel a{
		color: #ffffff;
		display: none;
	}
	
	header .inner .tel .fa{
		display: inline-block;
		margin: 0;
	}

	header .inner .tel span{
		display: none;
	}

	header .inner .logo{
		display: none;
	}
	
	header .inner .logo img{
		width: 120px;
	}
	
	.sp-btn{
		display: block;
		position: absolute;
		right: 20px;
		top: 50px;
		transition: .2s;
	}
	
	.sp-btn.closed{
		top: 0;
		right: 0;
		height: 100vh;
		background: #791216;
	}



	.ta1 {
		width: calc(80% - 10px);
	}
}



/* header（デモの参考値） */
.demobox-header{
	background: #ddd;
	height: 64px;
	padding: 1em;
	}
	/* headerのサイト名（デモの参考値） */
	.demobox-sitename{
	font-weight: 700;
	font-size: 18px;
	}
	/* 全体調整CSS */
	.hamburger-demo-menubox *{
		font-size: 16px;
	}
	.hamburger-demo-menubox li{
		font-size: 14px;
	}
	/* hamburgerここから */
		/* input非表示 */
	.input-hidden{
		display: none;
	}
		/* label */
	.hamburger-demo-switch{
		cursor: pointer;
		position: absolute;
		right: 3%;
		top: 0; /* アイコン位置調整（上から） */
		z-index: 9999;
		width: 4em; /* アイコン（クリック可能領域）の幅 */
		height: 4em; /* アイコン（クリック可能領域）の高さ */
	}
	/* メニュー展開時にハンバーガーアイコンを固定 */
	#hamburger-demo2:checked ~ .hamburger-demo-switch{
		position: fixed;
	}
	/* iOS風ハンバーガーアイコン */
	.hamburger-switch-ios:before{
		content: "";
		position: absolute;
		width: 4em;
		height: 2em;
		background: #ffffff;
		border-radius: 3em;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -70%);
	}
	.hamburger-switch-ios:after{
		content: "";
		position: absolute;
		width: 2em;
		height: 2em;
		background: #f44336;
		border-radius: 50%;
		top: 50%;
		left: 50%;
		transform: translate(-100%, -70%);
		transition: .3s;
	}
	.hamburger-demo-switch2:before{
		display:none;
		content: "MENU";
		position: absolute;
		bottom: 0;
		font-size: 12px;
		left: 50%;
		transform: translate(-50%, 10%);
		font-weight: 600;
	}
	#hamburger-demo2:checked ~ .hamburger-demo-switch2 .hamburger-switch-ios:before{
		background: #66c666;
	}
	#hamburger-demo2:checked ~ .hamburger-demo-switch2 .hamburger-switch-ios:after{
		transform: translate(0, -70%);
	}
	#hamburger-demo2:checked ~ .hamburger-demo-switch2:before{
		content: "CLOSE";
	}
	/* メニューエリア */
	.hamburger-demo-menuwrap{
		position: fixed;
		height: 100%;
		/*background: #f3ffef;*/
		background-image: url(../images/bg.jpg);
		background-repeat: repeat;
		padding: 5em 3% 2em;
		z-index: 9998;
		transition: .3s;
		overflow-y: scroll; /*リスト内容が多い場合に縦スクロール */
		top: 0;
		left: 100%;
		width: 70%;
	}
	/* メニューリスト */
	.hamburger-demo-menulist{
		margin-right: 3%;
		padding-left: 5% !important; /* !important不要な場合もあり */
		list-style: none;
	}
	.hamburger-demo-menulist li a{
		text-decoration: none;
		color: #333;
		display: block;
		padding: .5em 0;
	}
	/* iOS風ボーダーメニューリスト化 */
	.hamburger-menulist-border li{
		border-bottom: 1px solid #ddd;
		position: relative;
	}
	/*
	.hamburger-menulist-border li a:before{
		content: "";
		width: .7em;
		height: .7em;
		border: 2px solid;
		border-color: #ccc #ccc transparent transparent;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translate( -100%, -50%) rotate(45deg);
	}
	/* メニューエリア･アニメーション */
		/* 右から */
	#hamburger-demo2:checked ~ .hamburger-demo-menuwrap{
		left: 30%;
	}
		/* コンテンツカバー */
	#hamburger-demo2:checked ~ .hamburger-demo-cover{
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 9997;
		background: rgba(3,3,3,.5);
		display: block;
	}
	/* PCではハンバーガーメニューを表示しない */
	@media (min-width: 992px){
		.hamburger-demo-menubox{
			display: none;
		}
	}

	@media all and (min-width: 0) and (max-width: 767px){
.icon1::before{
	content: "\f095";
	font-family:"font Awesome 5 Free";
	font-weight: 900;
}

.fa-phone:before {
    content: "\f095";
	}
}
	


a#tel {
	position: fixed;
	width: 200px;
	height: 44px;
	text-align: center;
	line-height: 44px;
	left:50%;
	bottom: 10px;
	margin-left:-100px;
	display: block;
	background: rgb(8 124 7 / 86%);
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size:20px;
	border-radius: 10px;
  }
  
  a#tel:hover{
	background: rgba(3, 57, 2, 0.892);
  }

  @media screen and (min-width: 768px) {
	a#tel {
		display: none;
	}
	}
	@media screen and (min-width:960px) {
	a#tel {
		display: none;
	}
	}


/*お知らせスクロール*/	
#newsevent {
	height: 150px;/*スクロールの高さ*/
	overflow-y: scroll;
	margin-bottom: 40px;
}


/*文字囲い枠*/
.flame01 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0.5em auto;
	padding: 0.2em;
	width: 75%;
	border: 1px solid #a9a9a9;
	box-shadow: 1.5px 1.5px 2px #696969;
	font-size: 1.8em;
	}


	a {
		position: relative;
		display: inline-block;
		transition: .3s;
	  }
	  a::before,
	  a::after {
		position: absolute;
		left: 50%;
		content: '';
		width: 0;
		height: 1px;
		background-color: #2ecc71;
		transition: .3s;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	  }
	  a::before {
		top: 0;
	  }
	  a::after {
		bottom: 0;
	  }
	  a:hover::before,
	  a:hover::after {
		width: 100%;
	  }


/*利用シーンメニュー*/

.cate_navi ul{
	display: inline-block;
	list-style-type: none;/* 丸いマークを消しています。 */
	margin: 0px auto 0;
	text-align:center;
	}
	.cate_navi li{
	float:left;/* 横並びにしています。 */
	padding: 0 10px 0 10px;
	}
	.cate_navi li +li{
	border-left: 1px solid #333;/* ここがボーダー線指定しているところ */
	padding: 0 10px 0 10px; /* メニューとボーダー線の間の距離感 */
	}

/*@media all and (min-width: 0) and (max-width: 767px){

	.cate_navi li{

		float: none;
	}

	.cate_navi li +li{
		border-left:none;
		border-bottom:1px solid #333;
	}

}


/*画像中央配置*/



.global_menu { /* メニュー全体のスタイル */
	
	width: 100%;
	position: relative;
	color: #333; /* 文字色 */
	background: #f7f6ed; /* 背景色 */
	text-align: center;
  }
  
  .global_menu li {
	display: inline-block;
	
  }
  
  .global_menu a { /* 各項目のスタイル */
	display: block;
	padding: 10px 30px;
	color: rgb(24, 24, 24); /* 文字色 */
  }
  
  .menu:hover > a {
	background: #f7f6ed;
  }
  
  .child_menu > li > a { /* 子項目のスタイル */
	font-size: 0.8em;
  }
  .child_menu > li > a:hover { /* 子項目のスタイル（ホバー時） */
	background: #f7f6ed;
  }
  
  .child_menu { /* 下層メニューのスタイル */
	z-index:20;
	width: 100%;
	position: absolute;
	top: 100%; /* 親項目の直下に配置 */
	left: 0;
	padding: 0;
	color: #333; /* 文字色 */
	background: #f7f6ed; /* 背景色 */
	visibility: hidden; /* 下層メニューを非表示 */
	opacity: 0; /* 不透明度を最小に */
  	transition: 1s opacity; /* アニメーション設定 */
  }
  
  .menu:hover .child_menu { /* 下層メニューのスタイル（親項目ホバー時） */
	opacity: 1; /* 不透明度を最大に */
	visibility: visible; /* 下層メニューを表示 */
  }
  
  .child_menu a:hover {
	color: #fff;
	color: rgb(82, 82, 82); /* 文字色 */
  }




  /* スマホ用（767px以下）*/
@media screen and (max-width: 767px) {
.fb {
width: 100%;
max-width: 300px;
text-align: center;
margin:auto
}
}
/*PC用(768px以上) */
@media screen and (min-width: 768px) {
	.fb {
	width: 500px;
	text-align: center;
	margin:auto
	}
}