
@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{
    width: 99px;
    padding-top: 5px;
}
@media screen and (max-width: 767px) {
.obititle {
    width: 80px;
    padding-top: 10px;
    }
}


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

/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.9rem;
  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: #d3bb85;
}

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

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



/* 展開時のデザイン */
.drawer__button.active{
    border: solid 1px #d3bb85;
}

.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-30deg);
  background-color: #d3bb85;
  width: 1.9rem;
}

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

.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(30deg);
  background-color: #d3bb85;
  width: 1.9rem;
}

/* メニューのデザイン */
.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  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: #000;
  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;
  margin-bottom: 20px;
}

.nav_shop_title{
    color: #d3bb85;
    font-size: 25px;
    padding: 0.7rem 1rem 0.7rem 1.5rem;
    border-bottom: solid 1px #d3bb85;
}
@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: #FFF;
  text-decoration: none;
  padding: 0.8rem 1.5rem 1.1rem;
  border-bottom: solid 1px #d3bb85;
  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;
}
@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: #d3bb85;
    padding: 6px 10px 10px;
    border-radius: 8px;
}

.reservation a{
    color: #000;
}

img.reservation_tel{
    margin: 0 0 -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;
    }
}

.menu_tel{
	font-size: 21px;
}
@media screen and (max-width: 767px) {
.menu_tel{
    font-size: 18px;
	}
}

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

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

section:nth-child(even) {
  background-color: skyblue;
}
