*{
	box-sizing:border-box; 
	//outline:1px solid red;
}
html { scroll-behavior: smooth;}
body{
	background:#000;
	padding:0;
	margin:0;
	font-family:"NewYork Midium","Source Serif 4","BIZ UDPMincho","游教科書体 横用","YuKyokasho Yoko","UD デジタル 教科書体 NP-R","UD Digi Kyokasho NP-R",serif;
	letter-spacing:1px;
}
/*ヘッダー*/
header{
	width:100%;
	position:fixed; top:0;
	z-index:999;
	border-bottom:1px solid #fff;
}
.header-color{
	background:#f7e8e1;
	border-bottom:1px solid #c7bdb5;
	transition: 0.3s;
	.icon_w{display:none;}
	.icon_b{display:block;}
	nav ul li a{color:#000;}
	.btn1 a{color:#000;}
}
.header-black{
	background:#f7e8e1;
	border-bottom:1px solid #c7bdb5;
	.icon_w{display:none;}
	.icon_b{display:block;}
	nav ul li a{color:#000;}
	.btn1 a{color:#000;}
	
}
.header.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
.header.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}
.header-inner{
	display:flex;
	height:100px;
	
}
.left,.right{
	width:100%;
	height:100px;
	line-height:100px;
	display:flex;
}
#logo{
	width:100px;	
}

.schedule,.cart{
	padding:35px 20px;
}
.schedule img,.cart img{
	width:20px;
	height:20px;
	vertical-align:middle;
}
.openbtn,#g-nav,.icon_b{
	display:none;
}

/*ナビ*/
nav{
	width:100%;
}
nav ul{
	display:flex;
	list-style:none;
	padding:0;
	margin:0;
}
nav ul li{
	width:100%;
}
nav ul li a{
	text-decoration:none;
	display:block;
	text-align:center;
	font-size:13px;
	color:#fff;
}
.y{
	width:0.6vw;
	margin-left:5px;
}

/*言語切り替えボタン*/
#nb{
	display:flex;
	align-items:center; 
}
.btn1, .btn2{
	margin:0;
	display:block;
}
.btn1 a, .btn2 a{
	color: #fff;
	font-size:14px;	
	padding:0px 36px;
	text-decoration:none; 
	border-radius:30px;
}
.selected{
	background-color:#242322;
}
.btn1 a:hover,
.btn2 a:hover{
	color:#ccc;
	background-color:transparent;
}

/*トップページ*/
.background{
	background:#f7e8e1;
	z-index:-1;
}
#top{
	display:flex;
	overflow: hidden;
	height:100vh;
}
#top img{
	width:100%; 
	height:100%;
	object-fit:cover;
	vertical-align:top;
}
.top-left,.top-right{
      	width: 100%; 
	height:100vh;
	z-index:1;
}
.top-comment{
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index:777;
	width:100%;
}
.top-comment p{
	
	text-align:center;
	padding:0;
	margin:0 auto;
	color:#fff;
	font-size:25px;
	line-height:45px;
}

/*タイトル*/
.title{ 
	height:0;
}
.title img{
	position:absolute;
	bottom:0;
	margin:0;
	width:100%;
	z-index:100;
}
/*サブタイトル*/
.subtitle{
	height:;
}
.wrap{
	display:flex;
	max-width:1300px;
	overflow:hidden;
	margin:0 auto;
}
.sub-left{
	width:100%;
	border-right:1px solid #ded2ca;
}
.comment-box{
	display:flex;
	height:100%;
}
.sub-left h1{
	writing-mode:vertical-rl;
	font-size:80px;
	white-space: nowrap;
}
#h1-comment1{
	margin:50px 0 0 50px;
}
#h1-comment2{
	margin-top:200px;
}
.sub-comment1{
	font-size:0.75vw;
	margin:auto;
	margin-bottom:50px;
	line-height:200%;
}
.sub-right{
	width:100%;
}

.sub-comment2{
	margin:50px 0 50px 50px;
	width:400px;
	font-size:20px;
}
.sub-comment2 p{
	padding-top:50px;
	line-height:250%;

}

/*スライダー*/
#foodslide{
	background:#1a1a1a;
}
.slider {
    	width:94%;
    	margin:0 auto;
}

.slider img {
    	width:450px;
    	height:auto;
	margin-top:30px;
}
.slider .slick-slide {
  	transform: scale(0.8);
  	transition: all .5s;
  	opacity: 0.5;
}
.slider .slick-slide.slick-center{
  	transform: scale(1);
  	opacity: 1;
}
.slick-prev,.slick-next {
    	position: absolute;
    	top: 42%;
    	cursor: pointer;
    	outline: none;
    	border-top: 2px solid #666;
    	border-right: 2px solid #666;
    	height: 15px;
    	width: 15px;
}
.slick-prev {
    	left: -1.5%;
    	transform: rotate(-135deg);
}
.slick-next {
    	right: -1.5%;
    	transform: rotate(45deg);
}
.slick-dots {
    	text-align:center;
  	margin:20px 0 0 0;
}
.slick-dots li {
    	display:inline-block;
  	margin:0 5px;
}
.slick-dots button {
    	color: transparent;
    	outline: none;
    	width:8px;
    	height:8px;
    	display:block;
    	border-radius:50%;
    	background:#ccc;
}
.slick-dots .slick-active button{
    	background:#333;
}

/*ショップデータ*/
#shopdata{
	width:100%;
	overflow:hidden;
}
#shopdata p{
	width:100%;
	text-align:center;
	font-size:18px;
	margin-top:20px;
	padding:0;
	letter-spacing:0.2em;
}
#shopdata h3{
	color:#771116;
	width:100%;
	text-align:center;
	font-size:6vw;
	line-height:110%;
	margin:0;
	padding-top:8px;
	padding-bottom:40px;
}

.address:before{
	content:"";
	position:fixed ;
	top:0;
	left:0;
	z-index:-100;
	background:linear-gradient(rgba(67,10,13,0.3),rgba(0,0,0,1)),url("../images/wine.jpg");
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
	height:500px;
	overflow:hidden;
	width:100%;
	object-fit:cover;
}

.address_left,.address_right{
	width:100%;
	position:relative;
	height:100vh;
}
.address_left_inner{
	position:absolute; top:50%; left:50%;
	transform:translate(-50%,-50%);
}
#gifu{
	width:500px;
}
.address h2{
	font-size:60px;
	color:#fff;
	text-align:center;

}
.address_right{
 	display: flex;
  	justify-content: center;
  	align-items: center;
}
.address_text{
	color:#fff;
	width:500px;
	line-height:40px;
}
.address_text a{
	color:#fff;
}
/*パンくずリスト*/
.breadcrumb{
	padding:130px 0 0 100px;
	width:100%;
}
.breadcrumb ol{
	margin-left:10px;	
}
.breadcrumb ol li{
	list-style-type:none;
	display: inline-block;
}
.breadcrumb li:after{
  content:">";
}
.breadcrumb ol li a{
	color:#000;
}

/*ニュース*/
#news{
	width:100%;
	height:100%;
}

.news1 h1,.news2 h1{
	margin:0;
	padding:0;
	line-height:100%;
	font-size:8vw;
	color:#771116;
}
#news_title{
	padding:30px 0 30px 100px;
}
.news2{
	display:flex;
	align-items:center;
}
#osirase{
	color:#000;
	font-size:20px;
	margin-right:50px;
}

.news_wrap{
	display:flex;
	flex-direction:row;
	border-top:1px solid #c7bdb5;
}
.news_list{
	width:30%;
	border-right:1px solid #c7bdb5;
	padding-left:100px;
	padding-top:50px;

}
.news_list li{
	list-style:none;
	line-height:38px;
	margin:0;
	padding:0;
}
.news_list li a{
	text-decoration:none;
	font-size:14px;
	position:relative;
	color:#000;
	padding:0;
}
.news_list li a:hover{
	width:100%;
	bottom:-1px;
}

#underline3{
	width:2.7em;
	border-bottom:1px solid #83333c;
	padding:0;
	color:#83333c;
}
#underline4{
	width:3.7em;
	border-bottom:1px solid #83333c;
	padding:0;
	color:#83333c;
}
#underline7{
	width:6.5em;
	border-bottom:1px solid #83333c;
	padding:0;
	color:#83333c;
}

.news_topic{
	height:auto;
	margin:0;
	padding:0;
	width:70%;
	padding-top:50px;
}

.news_topic dt{
	font-size:15px;
	line-height:25px;
	padding-left:30px;
}
.news_topic dd{
	font-size:20px;
	padding:15px 0;
	margin-left:80px;
	margin-bottom:20px;
	border-bottom:1px solid #c7bdb5;
}
.news_wrap dl{
	height:auto;
	margin:0;
	padding:0;
	width:70%;
}
.news_wrap dl a{
	text-decoration:none;
	color:#000;
}
.news_summary{
	text-align:right;
	width:70%;
}
.news_summary a{
	text-decoration:none;
	color:#771116;
	font-size:28px;
}
.news_summary img{
	padding-left:10px;
	width:30px;
}
#news_space{
	background:#f7e8e1;
	height:100px;
}

/*news個別*/
.news_topic_kobetu{
	width:100%;
	max-width:1000px;
	margin:0 auto;
	padding-top:30px;
}
.news_topic_kobetu h2{
	font-size:40px;
	border-bottom:1px solid #aaa;
	padding-top:20px;
}
#gazou{
	padding-top:50px;
}
#gazou img{
	width:500px;
}
#honbun{
	padding:20px 0;
}
#honbun p{
	width:500px;
	text-align:left;
	margin:0;
	display:block;
	line-height:100%;
}
#back{
	text-align:right;
	padding-top:50px;
	width:100%;
	border-top:1px solid #aaa;
}
#back a{
	font-size:20px;
	color:#000;
	padding-right:20px;
}


/*メニュー*/
#menu{
	width:100%;
	height:600px;
	background-image:url("../images/food.jpg");
	background-repeat:no-repeat;
	background-size:cover;
	background-position:50% 30%;
	text-align:center;
	position:relative;
}
.food{
	color:#771116;
	position:absolute; top:50%; left:50%;
	transform:translate(-50%,-50%);
	text-align:center;
	background:rgba(255,255,255,0.6);
	border:1px solid #fff;
	width:400px;
	height:300px;
}
.food:hover{
	background:rgba(255,255,255,0.8);
}
#food{
	position:absolute; top:50%; left:50%;
	transform:translate(-50%,-50%);
}	
.food h1{
	font-size:500%;
	line-height:100%;

}
.food  p{
	font-size:18px;
}
.food img{
	width:18px;
	vertical-align:middle;
	transform:rotate(45deg);
	margin-left:5px;
}

/*メニューページ*/
.menu-wrap{
  	width:100%;
  	max-width: 1000px;
  	margin:0 auto 50px;
    	background:#fefefe;
}
#menuh1{
	text-align:center;
	font-size:8vw;
	margin:0;
	color:#771116;
}
.menu-photo img{
	width:100%;
	height:400px;
	object-fit:cover;
	vertical-align:top;
} 
.menu-box{
	position:relative;
}
.tab{

}
.tab ul{
	display: flex;
	flex-wrap: wrap;
	list-style:none;
	flex-wrap: wrap;
}
.tab ul li{
	text-align:center;
	width:calc(100%/6);
}
.tab li a{
	display:block;
	padding:10px;
	color:#000;
	font-size:15px;
	height:100%;
	border:1px solid #ccc;
	text-decoration:none;
}
.tab2{
	font-size:12px;
}
.tab li.active a{
	background:#771116;
	color:#fff;
}
.area1 {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:50px 20px;
}
.area1.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.menu-panel{
	margin:0 auto;
	width:100%;
}
.menu-panel h2{
	padding:20px;
	font-size:40px;
}
.menu-panel h3{
	padding:0 0 20px 40px;
	font-size:25px;
}
.menu-title{
	background:#771116;
	width:600px;
	color:#fff;
	margin:0 auto;
	margin-top:30px;
	padding:5px 10px;
	box-sizing:border-box;
}
.area1 table{
	width:600px;
	margin:0 auto;
}
.area1 table td{
	line-height:40px;
}

/*フッター*/
footer{
	background:#771116;
}
.footer-inner{
	display:flex;
	overflow:hidden;
	color:#fff;	
	height:600px;
}
.footer-left{
	width:35%;
	border-bottom:1px solid #af6169;
	text-align:center;

}
.footer-left h4{
	font-size:30px;
	margin:30px 0;
}
#footer-logo{
	width:180px;
	padding:0;
	margin-top:100px;
}
.footer-left img{
	width:200px;

}
.footer-left p{
	font-size:80%;
	padding:30px 0;
}
.footer-right{
	width:100%;
	border-style:none none solid solid;
	border-color: #af6169;
	border-width:1px;
}
.footer-right-inner{
	display:flex;
}
#footerul{
	padding-left:0;
}
#footerul li{
	list-style:none;
	padding-bottom:20px;
}
#footerul li a{
	color:#fff;
	text-decoration:none;
	font-size:80%;
}
.sitemap{
	width:40%;
	padding-left:30px;
}
#footer #footertitle{
	font-size:80%;
	padding:110px 0;
	text-align:left;
}
.footer-bottom{
	overflow:hidden;
	height:70px;
	display:flex;
	align-items:center;
	padding-left:100px;
	color:#fff;
}
#footer .footer-bottom p{
	text-align:left;
	font-size:80%;	
}