@charset "utf-8";



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




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

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



/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	overflow-x: hidden;
	font-size: 14px;
}

body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: none;
	background: #f8f8f8;
	color: #8a8878;
	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: 30px;
}

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

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


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

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #8a8878;
}

a:hover {
	color: #999;
}

/*container。サイト全体を囲むブロック。
---------------------------------------------------------------------------*/
#container {
	margin: 0 auto;
	max-width: 1400px;
	padding: 0 10px;
}

	

/*headerブロック（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*トップページの画像ロゴ(png画像)設定*/
.home header #logo {
	position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);
	width: 280px;
	animation-name: opa1;
	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: 380px;
}

h1{
	font-size: 12px;
	text-align: center;		
}

/*mainブロック
---------------------------------------------------------------------------*/
main {
	margin-bottom: 100px;
}

/*ブロック内のh2タグ*/
main h2 {
	opacity: 0;	
	font-family: 'Tangerine', cursive, "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka;
	font-weight: normal;
	font-size: 1.5rem;
	margin-left: 5px;				
}

/*ブロック内のh2タグ内のspanタグ（日本語の小さい説明用部分）*/
main h2 span {
	display: block;	
	font-size: 0.7rem;
	letter-spacing: 0.2em;
}


/*ブロック内のh3タグ*/
main h3 {
	font-weight: normal;
	text-align: center;	
	font-size: 1.6rem;
	margin: 50px 0;
}

/*mainブロックのpタグ*/
main p {
	margin: 0;
}

.right {
	float: right;
	width: 50%;
	padding: 10px;
	text-align: left;		
}

.left {
	float: left;
	width: 50%;
	padding: 10px;
	text-align: left;			
}

	

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	background: #fff url(../images/icon_menu.png) no-repeat center top/50px;
}

/*×印が出ている状態の設定。*/
#menubar_hdr.close {
	background: #fff url(../images/icon_menu.png) no-repeat center bottom/50px;
}

/*メニューの設定
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;}

/*ボックス全体の設定*/
#menubar {
	display: none;
	animation-name: opa1;
	animation-duration: 1S;
	animation-fill-mode: both;
	position: fixed;overflow: auto;z-index: 99;
	left: 100px;top: 50px;
	width: 50%;
	height: 70%;
	padding: 10px;
	text-align: center;
	font-size: 1.2rem;
}

/*メニュー１個あたりの設定*/
#menubar li {
	margin-bottom: 20px;
}

#menubar a {
	display: block;text-decoration: none;
	text-align: center;
	background: #fff;
	color: #000;
	border-radius: 5px;

}

/*メニュー内のspanタグ（小さい日本語部分）*/
#menubar span {
	display: block;
	font-size: 0.7rem;
}

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

footer {
clear:both;
	font-size: 0.6rem;
	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;
}

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

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

/*ボックス内の画像*/
.pickup .list img {
	object-fit: cover;
	width: 100%;
	font-family: 'object-fit: cover;';
}


/*menu.htmlの画像配置のコンパクトメニュー部分
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
.list-container {
	display: flex;
	flex-wrap: wrap;
	padding: 0 5px;
}

/*１個あたりのボックス*/
.list {
	width: 49%;
	margin-right: 2%;
	margin-bottom: 15px;
	text-align: center;
	font-size: 0.7rem;
}

/*2の倍数(偶数番目)のボックスへの追加指定*/
.list:nth-of-type(2n) {
	margin-right: 0;
}

/*ボックス内のh4タグ。メニュータイトルを入力しているスペースです。*/
.list h4 {
	margin: 10px 0 0;
	font-weight: normal;
}

/*ボックス内のpタグ。価格を入力しているスペースです。*/
.list p {
	margin: 0!important;
}

/*トップページの「今週のランチ」ブロック
---------------------------------------------------------------------------*/
/*写真とメニュー解説テキストを囲むブロック*/
.list2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

/*list2ブロック内のh4タグ*/
.list2 h4 {
	margin: 0;
	font-size: 1.2rem;
	font-weight: normal;
	text-align: center;
}


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

/*list2内のリストタグ*/
.list2 li {
	margin-bottom: 10px;
}

/*list2内のリストタグ内のspanタグ。文字サイズの小さい説明テキスト部分です。*/
.list2 li span {
	display: block;
	font-size: 0.7rem;
	opacity: 0.5;
}

/*menu.htmlのテキストメニュー設定
---------------------------------------------------------------------------*/
/*テキストメニュー全体を囲むブロック*/
.textmenu {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

/*偶数番目の行の色を変更する*/
.textmenu dt:nth-of-type(odd), .textmenu dd:nth-of-type(odd) {
	background: rgba(0,0,0,0.05);
}

/*メニュータイトル*/
.textmenu dt {
	width: calc(100% - 10em);
	padding: 10px 0px 10px 20px;
}

/*価格*/
.textmenu dd {
	width: 10em;
	text-align: right;
	padding: 10px 20px 10px 0px;
}

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


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 1px solid #ccc;
	font-weight: bold;
	padding: 10px 5px;
	background: rgba(0,0,0,0.05);
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid #ccc;
	table-layout: fixed;
	width: calc(100% - 10px);
	margin: 0 auto 30px;
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;
	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: #000;
	background: #fff;
	border: 1px solid #ff0000;
}

/*マウスオン時*/
.pagetop a:hover {
	background: #eee;
}

/*その他
---------------------------------------------------------------------------*/
.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: 16px;
}

/*section全般の設定*/
section + section {
	padding-top: 50px;
}

/*container。サイト全体を囲むブロック。
---------------------------------------------------------------------------*/
#container {
	padding: 0 10px;
}

/*menu.htmlの画像配置のコンパクトメニュー部分
---------------------------------------------------------------------------*/
/*１個あたりのボックス*/
.list {
	width: 23%;	
	margin-right: 2.66%;
	margin-bottom: 25px;
}

/*2の倍数(偶数番目)のボックスへの追加指定*/
.list:nth-of-type(2n) {
	margin-right: 2.66%;
}

/*4の倍数のボックスへの追加指定*/
.list:nth-of-type(4n) {
	margin-right: 0;
}

/*トップページの「今週のランチ」ブロック
---------------------------------------------------------------------------*/
/*写真とメニュー解説テキストを囲むブロック*/
.list2 {
	margin-bottom: 10px;
}



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



/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 20px 15px;
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 20px 15px;	
}

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

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

}

