
@charset "UTF-8";

/* 共通部分
--------------------------------------- */
html {
	font-size: 100%;
	scroll-behavior: smooth;
}

body{
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-weight: 300;
	line-height: 1.7;
	color: #000;
}

img {
	max-width: 100%;	
}	

/* HEADER
--------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 10;
  transition: transform 0.3s 0.1s;
}

/* スクロールするとヘッダーが隠れる */
header.hidden {
    transform: translateY(-5.5em);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1.5rem 0.6rem 2rem;
}
@media screen and (max-width: 767px) {
.header__inner {
    height: 60px;
    padding: 9px 15px 9px 20px;
    }
}

.header__inner a{
    text-decoration: none;
}

.obititle{
	font-size: 29px;
	font-family: "Shippori Mincho", serif;
	color: #FFF;
}
@media screen and (max-width: 767px) {
.obititle{
	font-size: 21px;
        width: 80%;
        padding-top: 3px;
    }
}

/* Nav
-----------------------------------------*/
/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}

/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 1.5px;
  transform: translateX(-50%);
}

.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.5s ease;
  background-color: #FFF;
}

.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  background-color: #FFF;
}

.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.5s ease;
  background-color: #FFF;
}

/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-20deg);
  background-color: #000;
}

.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}

.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(20deg);
  background-color: #000;
}

/* メニューのデザイン */
.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.7);
  transition: opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
  overflow-y: auto; /* ← これがキモ！ */
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  display: flex; /* ← 必須！中のflexに高さ渡すため */
  flex-direction: column;
}

.drawer__nav.active {
  opacity: 1;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer__nav__inner {
  position: relative;
  width: 475px;
  height: 100%; /* ← コレ！固定値やめる */
  background-image: url("../../images/menu_bg.jpg");
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.5s ease;
}
@media screen and (max-width: 767px) {
.drawer__nav__inner {
  width: 100%;
  height: 100%;
  }
}

.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}

.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}

.nav_shop_title{
    font-size: 25px;
    padding: 0.7rem 1rem 0.7rem 1.5rem;
    border-bottom: solid 1px lightgray;
}
@media screen and (max-width: 767px) {
.nav_shop_title{
    font-size: 21px;
    height: 60px;
    padding: 0.7rem 1rem 0.7rem 0.5rem;
    }
}

.drawer__nav__item{
    padding: 0 20px;
}

img.menu_icon{
    width: 25px;
    margin: 10px 10px -3.5px;
}
@media screen and (max-width: 767px) {
img.menu_icon{
    width: 25px;
    margin: 10px 10px -4.5px;
    }
}

.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 0.8rem 2.5rem 1.1rem;
  border-bottom: solid 1px #b7b7b7;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
.drawer__nav__link {
    padding: 0.4rem 1rem 1rem;
    font-size: 18px;
    }
}

.menu_textbox_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
    margin: 15px 0 10px;
    text-align: center;    
}
@media screen and (max-width: 767px) {
.menu_textbox_grid{
    margin: 15px 0 12px;
    }
}

a.menu_item{
    text-decoration: none;
    color:#000;
    padding: 10px 10px 10px 20px
}
@media screen and (max-width: 767px) {
a.menu_item{
   font-size: 15px;
   padding: 10px;
    }
}

.menu_item{
    border: 1px solid #000;
    margin-top: -1px;
    margin-left: -1px;
}

.menu_banner{
    padding: 0 10px;
}

img.menu_banner{
    margin: 2px 0;
}

.reservation{
	margin: 0 auto;
	color: #000;
	font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
	font-size: 25px;
	font-weight: 500;
	padding: 10px 20px;
	text-align: center;
}
@media screen and (max-width: 767px) {
.reservation{
    font-size: 20px;
    }
}

.reservation_button{
    margin: 0 auto;
    background-color: #111a1e;
    padding: 6px 10px 10px;
    border-radius: 8px;
}


img.reservation_tel{
    margin: 0px 5px -8px;
    height: 34.6px;
}

p.menu_time{
    text-align: center;
    font-size: 22px;
}
@media screen and (max-width: 767px) {
p.menu_time{
    font-size: 18px;
    }
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}

/* 見た目の調整 */
section {
  width: 100%;
  height: 30vh;
}

section:nth-child(even) {
  background-color: skyblue;
}
.drawer__nav__inner a{
  color: inherit;
  text-decoration: none;
  outline: none;
}

.drawer__nav__inner a:hover,
.drawer__nav__inner a:focus,
.drawer__nav__inner a:active {
  color: inherit;
  text-decoration: none;
  outline: none;
}
.reservation a{
    color: #FFF;
}