@charset "UTF-8";
/* CSS Document */

header {
	width: 100%;
	height: 100px;
	background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  position: fixed;
	z-index: 1000;

}



.slider_css {
	 width:100%;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
	 position: relative;
}


.slider_css ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.slider_css ul li {
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  animation-iteration-count: infinite;
  animation-duration: 40s;
}
.slider_css ul li:nth-child(1) {
background-image:url(../img/main_img_1.png);
  background-position:center;
  animation-name: slider-zoomin;
  animation-delay: -3s;
}
.slider_css ul li:nth-child(2) {
background-image:url(../img/main_img_2.png);
  background-position:center;
  animation-name: slider-zoomin;
  opacity: 0;
  animation-delay: 5s;
}
.slider_css ul li:nth-child(3) {
background-image:url(../img/main_img_3.png);
  background-position:center;
  animation-name: slider-zoomin;
  opacity: 0;
  animation-delay: 13s;
}
.slider_css ul li:nth-child(4) {
background-image:url(../img/main_img_4.png);
  background-position:center;
  animation-name: slider-zoomin;
  opacity: 0;
  animation-delay: 21s;
}
.slider_css ul li:nth-child(5) {
background-image:url(../img/main_img_5.png);
  background-position:center;
  animation-name: slider-zoomin;
  opacity: 0;
  animation-delay: 29s;
}
.slider_css ul li:nth-child(6) {
background-image:url(../img/main_img_6.png);
  background-position:center;
  animation-name: slider-zoomin;
  opacity: 0;
  animation-delay: 37s;
}
.slider_css ul li img {
  width: 130%;
}
@media only screen and (max-width: 480px) {
  .slider_css {
	  width: 100%;
    height: 100%;
  }
  .slider_css ul li {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

@keyframes slider-zoomin {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  27.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}
@keyframes slider-zoomout {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  12.5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  27.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}




#first {
background-image: url("../img/bg01.png");
	background-size: cover;
	width: 100%;
	height: 100vh;
}
#firstbox {
	width: 1000px;
	margin: 0 auto;
}
.yoyaku {
	width: 300px;
	margin: 0 auto;
	padding: 150px 0 0 0;
}
#first h2 {
	width: 500px;
	padding: 80px 0 0 500px;
	margin: 0;
}

#kisetsu {
	width: 100%;
	margin: 0 auto;
	padding: 120px 0 50px 0;
	text-align: center;
}
	
#kisetsu h2 {
	 writing-mode: vertical-rl;
	font-size: 24px;
	text-align: center;
	margin: 0;
	padding: 0 0 30px 0;
	font-feature-settings: initial;
	display: inline-block;
}
		
#kisetsu-box {
	width: 100%;
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
		
.kise {
	width: 25%;
	border-right: 1px solid #fff;
	box-sizing: border-box;
}
.kise:last-of-type {
	border: none;
}
#kisetsu figure {
	width: 100%;
	
}
#kisetsu h3 {
	font-size: 18px;
	padding: 5px 5px 5px 10px;
	line-height: 1.3em;
	
}
#kisetsu p {
padding: 0 20px;
	text-align: justify;
}
.kisetsu-link {
	text-align: center;
	padding: 0 0 0 0;
	margin: 100px 0 0 0;
	font-size: 18px;
}
.kisetsu-link a {
	text-decoration: underline;
	text-underline-offset: 10px;
	color: #333;
}
.kisetsu-link a:hover {
	text-decoration: underline;
	text-underline-offset: 10px;
	color: #b20000;
}


/* ==========================================
   メニュー一覧
========================================== */

.food-grid {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 1px;

    background: #fff;
}
#menu-food {
	width: 100%;
	margin: 0 auto;
	padding: 120px 0 0 0;
	text-align: center;
}
#menu-food h2 {
	 writing-mode: vertical-rl;
	font-size: 24px;
	text-align: center;
	margin: 0;
	padding: 0 0 30px 0;
	font-feature-settings: initial;
	display: inline-block;
}
/* ==========================================
   各メニュー
========================================== */

.food-item {
    position: relative;

    /* 画像の縦横比 */
    aspect-ratio: 1.5 / 1;

    overflow: hidden;

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

    text-decoration: none;

    color: #fff;
}


/* ==========================================
   背景画像
========================================== */

.food-bg {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;

    transition: transform 0.7s ease;

    z-index: 1;
}


/* 少し暗くする */

.food-item::after {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.15);

    z-index: 2;

    pointer-events: none;

    transition: background 0.5s ease;
}


/* ==========================================
   縦書きタイトル
========================================== */

.food-title {
    position: relative;

    z-index: 3;

    writing-mode: vertical-rl;
    text-orientation: upright;

    font-family:
        "FOT-TsukuAOldMin Pr6N",
        "Yu Mincho",
        "YuMincho",
        "Hiragino Mincho ProN",
        serif;

    font-size: 16px;

    line-height: 1.4;

    letter-spacing: 0;

    color: #fff;

    text-shadow:
        0 1px 4px rgba(0,0,0,.8),
        0 0 8px rgba(0,0,0,.35);

    /* 上下左右中央 */
    display: flex;
    align-items: center;
    justify-content: center;
	font-feature-settings: initial;
}


/* ==========================================
   マウスオーバー
========================================== */

.food-item:hover .food-bg {

    transform: scale(1.08);

}

.food-item:hover::after {

    background: rgba(0,0,0,0.08);

}


/* ==========================================
   タブレット
========================================== */

@media screen and (max-width: 900px) {

    .food-grid {

        grid-template-columns: repeat(3, 1fr);

    }

}


/* ==========================================
   スマホ
========================================== */

@media screen and (max-width: 480px) {

    .food-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .food-title {

        font-size: 15px;

        line-height: 1.6;

        letter-spacing: 0;

    }

}





#newstop {
	width: 1000px;
	margin: 0 auto;
	padding: 120px 0 0 0;
}
#newstop ul {
	width: 100%;
	margin: 0;
	padding: 0;
}
#newstop ul li {
	width: 100%;
	margin: 0 0 20px 0;
	text-align: center;
	font-size: 16px;
	line-height: 80px;
	height: 80px;
	box-sizing: border-box;
	border: 1px solid #999;
	border-radius: 15px;
}
#newstop ul li a {
	width: 100%;
	display: block;
	text-decoration: none;
	color: #333;
	padding: 0;
}
#newstop ul li a:hover {
	width: 100%;
	display: block;
	text-decoration: none;
	color: #b20000;
	padding: 0;
}


#info {
	width: 100%;
	margin: 0 auto;
	padding: 120px 0;
	background-image: url("../img/back-info.jpg");
	background-position: bottom center;
	background-size: contain;
	background-repeat: no-repeat;
	text-align: center;
}
	
#info h2 {
	 writing-mode: vertical-rl;
	font-size: 24px;
	text-align: center;
	margin: 0 ;
	padding: 0 0 60px 0;
	font-feature-settings: initial;
	display: inline-block;
}

#info dl {
  width: 600px;
	margin: 0 auto;
  padding: 0 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
	text-align: left;
}
#info dt {
  width: 20%;
}
#info dd {
  width: 80%;
  line-height: 2em;
  box-sizing: border-box;
  padding: 0 0 25px 0;
}
#info dd span {
font-size: 18px;
}



#tenpo {
	width: 100%;
	margin: 0 auto;
	padding: 120px 0 0 0 ;
	text-align: center;
}
#tenpo h2 {
	 writing-mode: vertical-rl;
	font-size: 24px;
	text-align: center;
	margin: 0;
	padding: 0 0 60px 0;
	font-feature-settings: initial;
	display: inline-block;
}
#tenpo-photo {
	width: 100%;
	height: 600px;
	background-image: url("../img/tenpo.png");
	background-position: center center;
	background-size: cover;
}
#tenpo h3 {
width: 240px;
	margin: 0 auto;
	padding: 80px 0 0 0;
}

.yoyaku2 {
	width: 300px;
	margin: 0 auto;
	padding: 60px 0;
}
.tx1 {
	text-align: center;
	padding: 0;
}
.call {
	width: 250px;
	text-align:center;
	margin: 0 auto;
	padding: 0;
}
#shop {
	width: 1100px;
	overflow: hidden;
	margin: 50px auto;
}
#shop-left {
	float: left;
	width: 500px;
}
#shop-right {
	float: right;
	width: 500px;
}
#shop-right p {
	letter-spacing: 0 !important;
	text-align: left;
}
#shop dl {
  width: 95%;
	margin: 0 auto;
  padding: 0 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
	text-align: left;
}
#shop dt {
  width: 20%;
}
#shop dd {
  width: 80%;
  line-height: 1.8em;
  box-sizing: border-box;
  padding: 0 0 15px 0;
}
#shop dd span {
font-size: 18px;
}

#shop h4 {
	text-align: center;
	font-size: 16px;
	width: 90%;
	padding: 15px 0;
	border: 1px solid #999;
	margin: 10px 0 20px 0;
	border-radius: 15px;
}


#mapbox {
  width: 100%;
  height: 400px;
  margin: 30px auto;
}
#map_canvas {
  width: 100%;
  height: 100%;
}

#footbanner {
	width: 1100px;
	margin: 100px auto;
}
#footbanner ul {
	width: 100%;
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footbanner ul li {
	width: 25%;
}

/*お席の予約==========*/
#reserv {
	width: 100%;
	background-image: url("../img/yoyaku-main.png");
	background-position: top center;
	background-size: cover;
	padding: 0 0 100px 0;
	
}
#reserv-box1 {
	width: 1100px;
	margin: 0 auto;
	height: 100vh;
}

#reserv-box1 h2 {
	font-size: 26px;
	text-align: center;
	margin: 0 auto;
	padding: 300px 0 60px 0;
	color: #fff;
}
#reserv-box1 p {
text-align: center;
	color: #fff;
}

#reserv-box2 {
	width: 1100px;
	margin: 0 auto;
}

#reserv-box2 h2 {
	font-size: 26px;
	text-align: center;
	margin: 0 auto;
	padding: 120px 0 30px 0;
	color: #fff;
}
#reserv-box2 p {
text-align: center;
	color: #fff;
}

#reserv-box2 h3 {
	font-size: 22px;
	text-align: center;
	margin: 0 auto;
	padding: 50px 0 30px 0;
	color: #fff;
}
#reserv-box3 {
	width: 700px;
	margin: 0 auto;
	overflow: hidden;
	padding: 50px 0 10px 0;
}
.reserv-left {
	width: 220px;
	float: left;
}
.reserv-right {
	width: 220px;
	float: right;
}

#reserv-box1{
    position:relative;
}

/* 矢印 */
.scroll-btn{
    position:absolute;
    left:50%;
    bottom:120px;
    transform:translateX(-50%);
    width:100px;
    text-align:center;
    text-decoration:none;
}

.scroll-btn span{
    display:block;
    width:50px;
    height:50px;
    margin:0 auto;

    border-right:6px solid #fff;
    border-bottom:6px solid #fff;

    transform:rotate(45deg);
filter:drop-shadow(0 2px 6px rgba(0,0,0,.8));
    animation:arrowMove 1.8s infinite;
}

.scroll-btn em{
    display:block;
    width:100%;
    margin-top:25px;
    color:#fff;
    font-size:15px;
    font-style:normal;
    letter-spacing:6px;
    text-align:center;
    text-shadow:
        0 2px 6px rgba(0,0,0,.8);

    opacity:.95;
}
/* アニメーション */
@keyframes arrowMove{

    0%{
        opacity:0;
        transform:rotate(45deg) translate(-8px,-8px);
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        transform:rotate(45deg) translate(8px,8px);
    }

}
		



/*お知らせ==========*/
#news {
	width: 100%;
	background-image: url("../img/news-main.png");
	background-position: top center;
	background-size: cover;
	margin: 0 auto;
	height: 100vh;
	
	
}


#news h2 {
	font-size: 26px;
	text-align: center;
	margin: 0 auto;
	padding: 300px 0 60px 0;
	color: #fff;
}

#newsbox {
	padding: 120px 0 100px 0;
	background-image: url("../img/back-info.jpg");
	background-position: bottom center;
	background-size: 100%;
	background-repeat: no-repeat;
}
#newsbox dl {
  width: 600px;
	margin: 0 auto;
  padding: 0 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}
#newsbox dt {
  width: 20%;
}
#newsbox dd {
  width: 80%;
  line-height: 2em;
  box-sizing: border-box;
  padding: 0 0 25px 0;
}
#newsbox dd span {
font-size: 18px;
}

#newsbox dl dt:nth-of-type(n+7),
#newsbox dl dd:nth-of-type(n+7) {
    display: none;
}

/* もっと見るボタン */
.more-news {
    text-align: center;
    margin: 50px 0 20px;
}

#more-news-btn {
    display: inline-block;
    min-width: 220px;
    padding: 16px 30px;
    background: transparent;
    border: none;
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    color: #333;
    font-size: 15px;
    letter-spacing: 0.18em;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* マウスを乗せたとき */
#more-news-btn:hover {
    letter-spacing: 0.25em;
}

/* 開いた状態 */
#more-news-btn.active {
    /* 必要ならここに開いた状態の設定 */
	color: #b20000;
}
/*お品書き==========*/
#menu-top {
	width: 100%;
	background-image: url("../img/menu-top.jpg");
	background-position: top center;
	background-size: cover;
	margin: 0 auto;
	height: 100vh;
	
	
}


#menu-top h2 {
	font-size: 26px;
	text-align: center;
	margin: 0 auto;
	padding: 300px 0 60px 0;
	color: #fff;
}
#menu-top p {
text-align: center;
	color: #fff;
}


#menu-concept {
	width: 100%;
	background-image: url("../img/food-top2.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: auto;
	height: 1765px;
}
#menu-concept-box {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}
#menu-concept h2 {
	 writing-mode: vertical-rl;
	font-size: 24px;
	padding: 430px 0 0 0;
	float: right;
	font-feature-settings: initial;

}
#menu-concept p {
	 writing-mode: vertical-rl;
padding: 430px 50px 0 0;
	float: right;
height: 600px;
	font-feature-settings: initial;
}

#menu-box {
	width: 100%;
	margin: 80px auto;
	text-align: center;
}
#menu-box h2 {
    writing-mode: vertical-rl;
    font-size: 24px;
    text-align: center;
    margin: 0;
    padding: 0 0 60px 0;
	font-feature-settings: initial;
	display: inline-block;
}
	
#menu-box p {
    text-align: center;
	padding: 0 0 60px 0;
}
	
.food {
	width: 1200px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.food-photo {
	float: left;
	width: 700px;
}
.food-right {
	width: 500px;
	float: right;
	position: absolute;
	right: 0;
	bottom: 30px;
}
#menu-box h3 {
    font-size: 24px;
    text-align: right;
    margin: 0;
    padding: 100px 0 10px 0;
	position: relative;
	line-height: 1.6em;
	
}	
.food p {
	text-align: right !important;
	padding: 0 0 10px 0 !important;
}
.price {
	text-align: right !important;
	padding: 0 0 10px 0 !important;
}
.price span {
	font-size: 24px;
}
#menu-box h3::after{
    content: "";
    position: absolute;
    top: 5px;
    right: 70px;
    transform: translateX(-50%);
    width: 1px;
    height: 70px;
    background: #333;
    opacity: .8;
}
.cau {
	text-align: right !important;
	padding: 0 0 10px 0 !important;
	font-size: 12px;
}	
.pt100 {
	padding-top: 100px !important;
}
	
.drink {
	width: 400px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.8em;
  color: #333;
	letter-spacing: 0.2em;
}
.drink th {
	padding: 0 0 30px 0;
}
.drink td {
	padding: 0 0 0 0;
	text-align: right;
}
.drink span {
	font-size: 12px;
	line-height: 1.4em;
}
.pb5 {
	padding: 0 0 5px 0 !important;
}

#menu-box h4 {
    font-size: 22px;
    text-align: center;
    margin: 0;
    padding: 50px 0 20px 0;
	line-height: 1.6em;
	
}

#menu-fig {
	width: 100%;
	height: 600px;
	background-image: url("../img/menu-foot.png");
	background-position: top center;
	background-size: cover;
	margin: 50px 0;
}


.link1 {
  width: 200px;
  height: 40px;
  margin: 10px 0 0 0;
	float: right;
}
.button {
  display: inline-block;
  width: 100%;
  height: 40px;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  outline: none;
  margin: 0 0 0 0;
  border-radius: 10px;
}
.button::before, .button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button, .button::before, .button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button {
  position: relative;
  z-index: 2;
  border: 1px solid #fff;
  color: #fff;
  line-height: 40px;
  overflow: hidden;
  font-size: 14px;
  font-family: "Optima", sans-serif;
  background-color: #000;
}
.button:hover {
  color: #fff;
  letter-spacing: 0.3em;
}
.button::after {
  top: -100%;
  left: -100%;
  width: 100%;
  height: 100%;
}
.button:hover::after {
  top: 0;
  left: 0;
  background-color: #f15a24;
}


#pickup {
	width: 100%;
	margin: 0 auto;
	padding: 120px 0 50px 0;
	text-align: center;
}
	
#pickup h2 {
	 writing-mode: vertical-rl;
	font-size: 24px;
	text-align: center;
	margin: 0;
	padding: 0 0 30px 0;
	font-feature-settings: initial;
	display: inline-block;
}

#pick-box {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.pick {
    width: 33.3%;
    border-right: 1px solid #fff;
    box-sizing: border-box;
}

.pick img {
    display: block;
    width: 100%;
}
.pick:first-child {
    border-right: 1px solid #fff;
}


/*スマホ==========================================================================================================*/
@media screen and (max-width: 480px) {
	.slider_css.sp {
        display: block !important;
    }
	#first {
background-image: url("../img/first-back-sp.png");
	background-size: cover;
		background-position: bottom center;
	width: 100%;
	height: 100vh;
}
#firstbox {
	width: 100%;
	margin: 0 auto;
}

#first h2 {
	width: 90%;
	padding: 80px 0 0 0;
	margin: 0 auto;
}
	/* 矢印 */
.scroll-btn{
    position:absolute;
    left:50%;
    bottom:120px;
    transform:translateX(-50%);
    width:100px;
    text-align:center;
    text-decoration:none;
}

.scroll-btn span{
    display:block;
    width:50px;
    height:50px;
    margin:0 auto;

    border-right:6px solid #fff;
    border-bottom:6px solid #fff;

    transform:rotate(45deg);
filter:drop-shadow(0 2px 6px rgba(0,0,0,.8));
    animation:arrowMove 1.8s infinite;
}

.scroll-btn em{
    display:block;
    width:100%;
    margin-top:25px;
    color:#fff;
    font-size:15px;
    font-style:normal;
    letter-spacing:6px;
    text-align:center;
    text-shadow:
        0 2px 6px rgba(0,0,0,.8);

    opacity:.95;
}
	
	#float {
		display: none;
	}
	
	
	
	
#kisetsu {
	width: 100%;
	margin: 0 auto;
	padding: 50px 0 50px 0;
}
	
#kisetsu h2 {
	 writing-mode: vertical-rl;
	font-size: 24px;
	text-align: center;
	margin: 0 auto;
	padding: 0 0 30px 0;
	font-feature-settings: initial;
}
		
#kisetsu-box {
	width: 100%;
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
		
.kise {
	width: 50%;
	margin: 0 0 10px 0;
}
#kisetsu figure {
	width: 100%;
	
}
#kisetsu h3 {
	font-size: 16px;
	padding: 5px 5px 5px 10px;
	line-height: 1.3em;
	
}
#kisetsu p {
padding: 0 10px;
}
.kisetsu-link {
	text-align: center;
	padding: 0 0 0 0;
	margin: 50px 0 0 0;
	font-size: 16px;
}
.kisetsu-link a {
	text-decoration: underline;
	text-underline-offset: 10px;
	color: #333;
}
.kisetsu-link a:hover {
	text-decoration: underline;
	text-underline-offset: 10px;
	color: #b20000;
}

	
#newstop {
	width: 100%;
	margin: 0 auto;
	padding: 50px 0 0 0;
}
#newstop ul {
	width: 90%;
	margin: 0 auto;
	padding: 0;
}
#newstop ul li {
	width: 100%;
	margin: 0 0 15px 0;
	text-align: center;
	font-size: 14px;
	line-height: 1.4em;
	height: auto;
	box-sizing: border-box;
	border: 1px solid #999;
	border-radius: 15px;
	padding: 10px;
}
#newstop ul li a {
	width: 100%;
	display: block;
	text-decoration: none;
	color: #333;
	padding: 0;
}
#newstop ul li a:hover {
	width: 100%;
	display: block;
	text-decoration: none;
	color: #b20000;
	padding: 0;
}


#info {
	width: 100%;
	margin: 0 auto;
	padding: 50px 0 50px 0;
	background-image: url("../img/back-info.jpg");
	background-position: bottom center;
	background-size: cover;
	background-repeat: no-repeat;
}
	
#info h2 {
	 writing-mode: vertical-rl;
	font-size: 24px;
	text-align: center;
	margin: 0 auto;
	padding: 0 0 30px 0;
	font-feature-settings: initial;
}

#info dl {
  width: 90%;
	margin: 0 auto;
  padding: 0 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}
#info dt {
  width: 100%;
}
#info dd {
  width: 100%;
  line-height: 1.6em;
  box-sizing: border-box;
  padding: 0 0 15px 0;
}
#info dd span {
font-size: 16px;
}



#tenpo {
	width: 100%;
	margin: 0 auto;
	padding: 60px 0 0 0 ;
}
#tenpo h2 {
	 writing-mode: vertical-rl;
	font-size: 22px;
	text-align: center;
	margin: 0 auto;
	padding: 0 0 30px 0;
}
#tenpo-photo {
	width: 100%;
	height: 200px;
	background-image: url("../img/tenpo.png");
	background-position: center center;
	background-size: cover;
}
#tenpo h3 {
width: 60%;
	margin: 0 auto;
	padding: 80px 0 0 0;
}

.yoyaku2 {
	width: 70%;
	margin: 0 auto;
	padding: 20px 0;
}
.tx1 {
	text-align: center;
	padding: 0;
}
.call {
	width: 60%;
	text-align:center;
	margin: 0 auto;
	padding: 0;
}
#shop {
	width: 90%;
	overflow: hidden;
	margin: 30px auto;
}
#shop-left {
	float: none;
	width: 100%;
}
#shop-right {
	float: none;
	width: 100%;
}
#shop-right p {
	letter-spacing: 0 !important;
}
#shop dl {
  width: 100%;
	margin: 0 auto;
  padding: 0 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}
#shop dt {
  width: 25%;
	line-height: 1.6em;
  box-sizing: border-box;
  padding: 0 0 15px 0;
}
#shop dd {
  width: 75%;
  line-height: 1.6em;
  box-sizing: border-box;
  padding: 0 0 15px 0;
}
#shop dd span {
font-size: 16px;
}

#shop h4 {
	text-align: center;
	font-size: 14px;
	width: 100%;
	padding: 15px 0;
	border: 1px solid #999;
	margin: 10px 0 20px 0;
	border-radius: 15px;
	box-sizing: border-box;
}


#mapbox {
  width: 100%;
  height: 400px;
  margin: 30px auto;
}
#map_canvas {
  width: 100%;
  height: 100%;
}

#footbanner {
	width: 1100px;
	margin: 100px auto;
}
#footbanner ul {
	width: 100%;
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footbanner ul li {
	width: 25%;
}
	
	
#mapbox {
  width: 100%;
  height: 300px;
  margin: 30px auto;
}
#map_canvas {
  width: 100%;
  height: 100%;
}

#footbanner {
	width: 100%;
	margin: 100px auto;
}
#footbanner ul {
	width: 100%;
	display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footbanner ul li {
	width: 50%;
	line-height: 0;
}	
	
	.slider_css.sp {
        display: block !important;
        width: 100%;
        height: 100vh !important;
        position: relative;
    }
	.slider_css ul li.spp:nth-child(1) {
background-image:url(../img/001.png);
  background-position:center;
  animation-name: slider-zoomin;
  animation-delay: -3s;
}
.slider_css ul li.spp:nth-child(2) {
background-image:url(../img/002.png);
  background-position:center;
  animation-name: slider-zoomin;
  opacity: 0;
  animation-delay: 5s;
}
.slider_css ul li.spp:nth-child(3) {
background-image:url(../img/003.png);
  background-position:center;
  animation-name: slider-zoomin;
  opacity: 0;
  animation-delay: 13s;
}
.slider_css ul li.spp:nth-child(4) {
background-image:url(../img/004.png);
  background-position:center;
  animation-name: slider-zoomin;
  opacity: 0;
  animation-delay: 21s;
}
.slider_css ul li.spp:nth-child(5) {
background-image:url(../img/005.png);
  background-position:center;
  animation-name: slider-zoomin;
  opacity: 0;
  animation-delay: 29s;
}
.slider_css ul li.spp:nth-child(6) {
background-image:url(../img/006.png);
  background-position:center;
  animation-name: slider-zoomin;
  opacity: 0;
  animation-delay: 37s;
}
	
	
	
	#menu-food {
		display: block;
	width: 100%;
	margin: 0 auto;
	padding: 50px 0 0 0;
}
#menu-food h2 {
	 writing-mode: vertical-rl;
	font-size: 24px;
	text-align: center;
	margin: 0 auto;
	padding: 0 0 30px 0;
	font-feature-settings: initial;
}
	
	
	
/*お席の予約==========*/
#reserv {
	width: 100%;
	background-image: url("../img/yoyaku-main-sp.png");
	background-position: top center;
	background-size: 100%;
	background-repeat: no-repeat;
	padding: 0 0 100px 0;
	background-color: #000;
	
}
#reserv-box1 {
	width: 100%;
	margin: 0 auto;
	height: 100vh;
}

#reserv-box1 h2 {
	font-size: 24px;
	text-align: center;
	margin: 0 auto;
	padding: 200px 0 60px 0;
	color: #fff;
}
#reserv-box1 p {
text-align: center;
	color: #fff;
	font-size: 16px;
}

#reserv-box2 {
	width: 100%;
	margin: 0 auto;
}

#reserv-box2 h2 {
	font-size: 24px;
	text-align: center;
	margin: 0 auto;
	padding: 50px 0 30px 0;
	color: #fff;
}
#reserv-box2 p {
text-align: center;
	color: #fff;
}

#reserv-box2 h3 {
	font-size: 18px;
	text-align: center;
	margin: 0 auto;
	padding: 50px 0 30px 0;
	color: #fff;
}
#reserv-box3 {
	width: 60%;
	margin: 0 auto;
	overflow: hidden;
	padding: 50px 0 10px 0;
}
.reserv-left {
	width: 100%;
	float: none;
	padding: 0 0 40px 0;
}
.reserv-right {
	width: 100%;
	float: none;
}

#reserv-box1{
    position:relative;
}	
	
	
	
	
	/*お知らせ==========*/
#news {
	width: 100%;
	background-image: url("../img/news-main-sp.png");
	background-position: top center;
	background-size: cover;
	margin: 0 auto;
	height: 100vh;
	
	
}


#news h2 {
	font-size: 24px;
	text-align: center;
	margin: 0 auto;
	padding: 200px 0 60px 0;
	color: #fff;
}

#newsbox {
	padding: 50px 0 50px 0;
	background-image: url("../img/washi.png");
	background-position: bottom center;
	background-size: 100%;
	background-repeat: no-repeat;
}
#newsbox dl {
  width: 90%;
	margin: 0 auto;
  padding: 0 0 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}
#newsbox dt {
  width: 100%;
}
#newsbox dd {
  width: 100%;
  line-height: 1.6em;
  box-sizing: border-box;
  padding: 0 0 20px 0;
}
#newsbox dd span {
font-size: 16px;
}


/*お品書き==========*/
#menu-top {
	width: 100%;
	background-image: url("../img/menu-top.png");
	background-position: top center;
	background-size: cover;
	margin: 0 auto;
	height: 100vh;
	
	
}


#menu-top h2 {
	font-size: 24px;
	text-align: center;
	margin: 0 auto;
	padding: 200px 0 60px 0;
	color: #fff;
}
#menu-top p {
text-align: center;
	color: #fff;
	font-size: 16px !important;
}


#menu-concept {
	width: 100%;
	background-image: url("../img/food-top2.jpg");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: auto;
	height: 1765px;
}
	#menu-concept-sp {
	width: 100%;
}
#menu-concept-box {
	width: 1100px;
	margin: 0 auto;
	position: relative;
}
#menu-concept h2 {
	 writing-mode: vertical-rl;
	font-size: 24px;
	padding: 430px 0 0 0;
	float: right;
	font-feature-settings: initial;

}
#menu-concept p {
	 writing-mode: vertical-rl;
padding: 430px 50px 0 0;
	float: right;
height: 600px;
	font-feature-settings: initial;
}

#menu-box {
	width: 100%;
	margin: 80px auto;
}
#menu-box h2 {
    writing-mode: vertical-rl;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
    padding: 0 0 60px 0;
	font-feature-settings: initial;
}
	
#menu-box p {
    text-align: center;
	padding: 0 0 60px 0;
}
	
.food {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: static;
}
.food-photo {
	float: none;
	width: 100%;
}
.food-right {
	width: 94%;
	float: none;
	margin: 0 auto;
	position: static;
	right: 0;
	bottom: 0;
	padding: 0 10px 10px 0;
}
#menu-box h3 {
    font-size: 22px;
    text-align: right;
    margin: 0;
    padding: 0 0 0 0;
	position: relative;
	line-height: 1.6em;
	
}	
.food p {
	text-align: right !important;
	padding: 0 0 10px 0 !important;
}
.price {
	text-align: right !important;
	padding: 0 0 10px 0 !important;
}
.price span {
	font-size: 24px;
}
#menu-box h3::after{
display: none;
}
.cau {
	text-align: right !important;
	padding: 0 0 10px 0 !important;
	font-size: 12px;
}	
.pt100 {
	padding-top: 100px !important;
}
	
.drink {
	width: 90%;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.8em;
  color: #333;
	letter-spacing: 0.2em;
}
.drink th {
	padding: 0 0 30px 0;
}
.drink td {
	padding: 0 0 0 0;
	text-align: right;
}
.drink span {
	font-size: 12px;
	line-height: 1.4em;
}
.pb5 {
	padding: 0 0 5px 0 !important;
}

#menu-box h4 {
    font-size: 20px;
    text-align: center;
    margin: 0;
    padding: 50px 0 20px 0;
	line-height: 1.6em;
	
}

#menu-fig {
	width: 100%;
	height: 200px;
	background-image: url("../img/menu-foot.png");
	background-position: top center;
	background-size: cover;
	margin: 20px 0;
}


	
	
#pick-box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.pick {
    width: 50%;
	margin: 0 0 10px 0;
}	
	
}





/* ==========================================
   ポップアップ
========================================== */
#food-lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.88);
cursor: pointer;
    align-items: center;
    justify-content: center;
}
img.food-lightbox {
    cursor: pointer !important;
}
.food-lightbox {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.food-lightbox:hover {
    opacity: 0.8;
}
#food-lightbox img {
    display: block;
    width: 60vw;
    max-width: 900px;
    max-height: 80vh;
    height: auto;

    opacity: 0;
    transform: scale(0.85);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

#food-lightbox img.zoom-in {
    opacity: 1;
    transform: scale(1);
}
.food-lightbox-prev,
.food-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    border: 0;
    background: none;
    color: #fff;

    font-size: 60px;
    line-height: 1;
    cursor: pointer;
}

.food-lightbox-prev {
    left: 20px;
}

.food-lightbox-next {
    right: 20px;
}

.food-lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;

    border: 0;
    background: none;
    color: #fff;

    font-size: 45px;
    line-height: 1;
    cursor: pointer;
}

.food-lightbox {
    cursor: pointer;
}
@media screen and (max-width: 480px) {
	.food-lightbox-prev,
    .food-lightbox-next {
        font-size: 45px;
    }

    .food-lightbox-prev {
        left: 8px;
    }

    .food-lightbox-next {
        right: 8px;
    }

    #food-lightbox img {
        max-width: 88%;
        max-height: 80vh;
    }

	
}