@charset "UTF-8";

/* ====== 共通 ====== */

:root{
  --gold:#d4af37;
  --gold-soft:#e5c86b;
  --bg:#090705;
  --panel:rgba(17,12,8,.94);
  --text:rgba(255,255,255,.94);
  --text-soft:rgba(255,255,255,.78);
  --line:rgba(255,255,255,.10);
  --line-strong:rgba(255,255,255,.16);
  --container:min(1240px, 100% - 64px);
  --ease:cubic-bezier(.22,.61,.36,1);
  --header-offset:96px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html,
body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:#fff;
  font-family:"Helvetica Neue","Yu Gothic","Hiragino Kaku Gothic ProN","Noto Sans JP",sans-serif;
  overflow-x:hidden;
  font-size:clamp(14px, 1.2vw + 0.8rem, 18px);
  line-height:1.6;
}

body.is-locked{
  overflow:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

ul{
  list-style:none;
  margin:0;
  padding:0;
}

.visually-hidden{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0, 0, 0, 0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* =========================
   HEADER
========================= */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:300;
  pointer-events:none;
}

.header-inner{
  width:var(--container);
  margin:0 auto;
  padding-top:25px;
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
  gap:24px;
}

.nav,
.menu-toggle{
  pointer-events:auto;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  background:rgba(20,20,20,.6);
  border:1px solid rgba(255,255,255,.06);
}

.logo{
  pointer-events:auto;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  width:200px;
  height:100px;
  display:grid;
  place-items:center;
  font-size:30px;
  letter-spacing:.04em;
  position:relative;
  z-index:310;
  transition:none;
}

body.is-locked .logo{
  opacity:1;
  pointer-events:auto;
}

.nav{
  padding:14px 20px;
  position:relative;
  z-index:320;
}

.nav ul{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav li{
  display:block;
}

.nav button{
  appearance:none;
  border:0;
  background:none;
  color:rgba(255,255,255,.72);
  font-size:13px;
  letter-spacing:.14em;
  cursor:pointer;
  padding:0;
  position:relative;
  transition:.25s ease;
  white-space:nowrap;
}

.nav button::before{
  content:"";
  position:absolute;
  left:0;
  top:-12px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:width .25s var(--ease);
}

.nav button:hover,
.nav button.is-current{
  color:#fff;
}

.nav button:hover::before,
.nav button.is-current::before{
  width:100%;
}

.menu-toggle{
  display:none;
  appearance:none;
  width:54px;
  height:46px;
  padding:0;
  cursor:pointer;
  position:relative;
  align-items:center;
  justify-content:center;
  gap:5px;
  flex-direction:column;
  z-index:330;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:1px;
  background:#fff;
  transition:.25s ease;
}

.menu-toggle.is-open span:nth-child(1){
  transform:translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2){
  opacity:0;
}

.menu-toggle.is-open span:nth-child(3){
  transform:translateY(-6px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.hero{
  position:relative;
  min-height:100vh;
  min-height: 100dvh; /* dvhが使えるブラウザではこちらを優先 */
  overflow:hidden;
  width:100%;
}

.hero-bg,
.hero-blur{
  position:absolute;
  inset:0;
  width:100%;
}

.hero-bg{
  z-index:1;
  transform:scale(1.03);
}

.hero-blur{
  z-index:2;
  opacity:0;
  filter:blur(10px) brightness(.82);
  transform:scale(1.08);
  animation:heroBlurIn 2s ease forwards;
  animation-delay:1.2s;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:3;
  background:
    linear-gradient(90deg, rgba(18,10,4,.60) 0%, rgba(18,10,4,.28) 34%, rgba(0,0,0,.08) 62%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.04) 45%, rgba(0,0,0,.22) 100%);
}

.hero-logo{
  position:absolute;
  top:30px;
  left:calc((100% - var(--container)) / 2);
  z-index:10;
  width:clamp(120px, 16vw, 240px);
  background:none;
  background-color:transparent;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  border:none;
  box-shadow:none;
}

.hero-logo img{
  display:block;
  width:100%;
  height:auto;
  filter:
    drop-shadow(0 0 1px rgba(255,255,255,.90))
    drop-shadow(0 0 4px rgba(255,255,255,.50))
    drop-shadow(0 3px 7px rgba(0,0,0,.35));
}

.hero-content{
  position:relative;
  z-index:5;
  width:var(--container);
  min-height:100vh;
  min-height: 100dvh; /* dvhが使えるブラウザではこちらを優先 */
  margin:0 auto;
  padding:230px 0 56px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.hero-main{
  max-width:720px;
}

.hero-title{
  margin:0 0 24px;
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(32px, 4vw, 54px);
  font-weight:400;
  line-height:1.2;
  color:#efc54a;
  text-shadow:0 2px 8px rgba(0,0,0,.15);
}

.hero-sub{
  margin:0 0 34px;
  font-size:.8rem;
  line-height:1.9;
  color:#fff;
  text-shadow:0 3px 12px rgba(0,0,0,.22);
}

.hero-sub br{
  display:none;
}

.yoyaku a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding:10px 40px 10px 25px;
  text-decoration:none;
  font-weight:normal;
  font-size:.8rem;
  background:linear-gradient(to right, #efc54a 50%, rgba(0,0,0,.5) 50%);
  background-size:200% 100%;
  background-position:right bottom;
  transition:all .4s ease-out;
  color:#fff;
  border:1px solid #666;
  white-space:nowrap;
  font-family:Georgia, "Times New Roman", serif;
}

.yoyaku a::after{
  content:"";
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  width:0;
  height:0;
  border-style:solid;
  border-width:4px 0 4px 6px;
  border-color:transparent transparent transparent currentColor;
}

.yoyaku a:hover{
  background-position:left bottom;
  color:#000;
}

.hero-bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:30px;
  margin-top:40px;
}

.store-meta{
  width:min(980px, 100%);
  display:grid;
  grid-template-columns:140px 1fr;
  column-gap:24px;
  row-gap:20px;
  align-items:start;
  font-size:.82rem;
}

.store-meta dt{
  margin:0;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:0;
  color:#fff;
  line-height:1.55;
  align-self:start;
  font-size:.78rem;
}

.store-meta dd{
  margin:0;
  padding:0 0 0 24px;
  font-size:.82rem;
  font-weight:500;
  line-height:1.75;
  color:rgba(255,255,255,.95);
  text-shadow:0 2px 10px rgba(0,0,0,.22);
  border-left:1px solid rgba(255,255,255,.28);
  align-self:start;
}

.hero-share{
  display:none;
}

.store-meta dd.add br{
	display:none;
}

/* =========================
   PANEL
========================= */
.panel{
  scroll-margin-top:calc(var(--header-offset) + 20px);
}

.panel-inner{
  width:var(--container);
  min-height:100vh;
  min-height: 100dvh; /* dvhが使えるブラウザではこちらを優先 */
  margin:0 auto;
  padding:110px 0 70px;
}

.panel-layout{
  display:grid;
  grid-template-columns:minmax(420px, 1.05fr) minmax(340px, .7fr);
  gap:36px;
  align-items:start;
  min-height:calc(100vh - 180px);
}

.panel-left{
  padding:8px 10px 0 14px;
}

.panel-right{
  padding-top:0;
}

.panel-title{
  margin:0 0 30px;
  font-family:Georgia, "Times New Roman", serif;
  color:#efc54a;
  font-weight:400;
  line-height:1.2;
  text-shadow:0 2px 8px rgba(0,0,0,.15);
  font-size:clamp(24px, 6vw, 42px);
  letter-spacing:.02em;
  text-transform:uppercase;
}

.panel-copy{
  max-width:760px;
  font-size:16px;
  line-height:1.95;
  color:var(--text);
}

.panel-copy.mb{
  margin-bottom:3rem;
}

.panel-copy p{
  margin:0 0 18px;
}

.panel-copy .en{
  margin-top:34px;
  color:#fff;
  font-weight:200;
  line-height:1.55;
}

.panel-close{
  position:fixed;
  top:96px;
  right:24px;
  appearance:none;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(20,20,20,.18);
  color:#fff;
  width:52px;
  height:52px;
  font-size:28px;
  cursor:pointer;
  z-index:500;
}

.panel-image{
  width:100%;
  height:min(78vh, 880px);
  overflow:hidden;
  background:#111;
}

.panel-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  font-family: 'object-fit: cover;'; /* IE対策が必要な場合の名残ですが、今でも明示は有用です */
}

/* Swiper 共通 */
.panel-image .swiper-container{
  width:100%;
  height:100%;
}

.panel-image .swiper-wrapper{
  height:100%;
}

.panel-image .swiper-slide{
  height:100%;
}

.panel-image .swiper-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================
   CONCEPT slider
========================= */
.concept-slider{
  width:100%;
  overflow:hidden;
}

.concept-swiper{
  width:100%;
  height:100%;
  overflow:hidden;
  position:relative;
}

.concept-swiper .swiper-wrapper{
  height:100%;
}

.concept-swiper .swiper-slide{
  height:100%;
  overflow:hidden;
}

.concept-swiper .swiper-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.concept-swiper .swiper-pagination{
  left:0;
  width:100%;
}

/* =========================
   PCスライド
========================= */
@media (min-width:768px){
  .panel{
    position:fixed;
    inset:0;
    z-index:120;
    background:var(--panel);
    transform:translateX(100%);
    transition:transform .7s var(--ease);
    overflow:auto;
    pointer-events:none;
  }

  .panel.active{
    transform:translateX(0);
    pointer-events:auto;
  }

  .panel--news .panel-inner{
    min-height:auto;
  }
}

/* =========================
   MAP
========================= */
.map{
  position:relative;
  background:#b89d55;
  padding-top:2px;
}

.map-label{
  position:absolute;
  top:-10px;
  left:50%;
  transform:translateX(-50%);
  z-index:2;
  background:#000;
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.14em;
  padding:10px 24px;
}

.map iframe{
  width:100%;
  height:420px;
  border:0;
  display:block;
}

/* =========================
   NEWS
========================= */
.news-section{
  background:#0a0806;
  padding:88px 0 70px;
  border-top:1px solid rgba(255,255,255,.06);
}

.news-inner{
  width:var(--container);
  margin:0 auto;
}

.news-heading{
  margin:0 0 20px;
  font-family:Georgia, "Times New Roman", serif;
  color:#fff;
  font-weight:400;
  line-height:1.2;
  text-shadow:0 2px 8px rgba(0,0,0,.15);
  font-size:clamp(24px, 6vw, 42px);
  letter-spacing:.02em;
}

.news-item{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:24px;
  align-items:start;
  padding:24px 0;
  border-bottom:1px solid var(--line);
}

.news-date{
  font-size:13px;
  color:#fff;
  padding-top:4px;
}

.news-title{
  font-size:16px;
  line-height:1.8;
  color:#fff;
}

.news-more{
  margin-top:40px;
  display:flex;
  justify-content:flex-end;
}

.news-more a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  letter-spacing:.12em;
  color:#fff;
  position:relative;
  padding-right:18px;
}

.news-more a::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:6px;
  height:6px;
  border-right:1px solid #fff;
  border-bottom:1px solid #fff;
  transform:translateY(-50%) rotate(-45deg);
}

.news-more a:hover{
  color:var(--gold);
}

.news-more a:hover::after{
  border-color:var(--gold);
}

/* =========================
   FOOTER
========================= */
.footer{
  background:#0a0806;
  padding:100px 0 26px;
  border-top:1px solid rgba(255,255,255,.3);
}

.footer-inner{
  width:var(--container);
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 220px;
  gap:40px;
}

.footer-store-list{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px 60px;
}

.footer-store-list a,
.footer-links a{
  font-size:14px;
  line-height:1.9;
  color:rgba(255,255,255,.88);
}

.footer-store-list a:hover,
.footer-links a:hover{
  color:var(--gold);
}

.footer-store-list a{
  font-weight:700;
}

.footer-links{
  display:grid;
  gap:12px;
  justify-content:start;
}

.footer-share{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:12px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.88);
}

.footer-bottom{
  width:var(--container);
  margin:100px auto 0;
  padding-top:18px;
  font-size:12px;
  color:rgba(255,255,255,.62);
  text-align:center;
}

/* =========================
   ANIMATION
========================= */
@keyframes heroBlurIn{
  to{
    opacity:1;
  }
}

/* =========================
   MENU / common
========================= */
.caption{
  max-width:100% !important;
  padding-bottom:3rem;
  margin-bottom:3rem;
  border-bottom:1px solid #333;
}

#menu .top{
  padding:8px 10px 0 14px;
}

#menu h3{
  font-size:1.8rem;
  font-weight:500;
}

#menu h3 + .txt{
  margin-bottom:5rem;
  font-size:15px;
  line-height:1.8;
  color:var(--text);
}

#menu h4{
  font-size:1.1rem;
  font-weight:500;
  margin-top:0 !important;
  margin-bottom:.8rem;
}

#menu ul + .txt,
#menu h4 + .txt{
  font-size: 14px;
  margin-bottom:1rem;
    line-height:1.7;
}

.menu-box h4 span{
  margin-left:.5rem;
  font-weight:normal;
  font-size:.95rem;
}

#menu .drink ul{
  margin-bottom:3rem !important;
}

.note{
  text-align:right;
  font-size:.8rem;
  margin-bottom:3rem;
}

#menu ul + .txt{
	margin-bottom:3rem !important;
}

#menu ul .etc{
	padding-left:2rem;
	font-size:.8rem;
}



/* =========================
   SPACE / card
   #spaceのカード列数は変数で切り替え
========================= */

/*
  店舗別CSSで下記を指定すると、#spaceのみ列数を変更できます。

  2列：
  #space{
    --space-card-columns:2;
  }

  3列：
  #space{
    --space-card-columns:3;
  }
*/

#space{
  --space-card-columns:3;
}

.space-grid{
  display:grid;
  gap:20px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

#space .space-grid{
  grid-template-columns:repeat(var(--space-card-columns), minmax(0, 1fr));
}

.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.card__image{
  aspect-ratio:16 / 10;
  overflow:hidden;
}

.card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  font-family: 'object-fit: cover;'; /* IE対策が必要な場合の名残ですが、今でも明示は有用です */
}

.card__body{
  padding:22px;
}

.card__title{
  margin:0 0 10px;
  font-size:16px;
  font-weight:700;
}

.card__text{
  margin:0;
  color:var(--text-soft);
  line-height:1.9;
  font-size:15px;
}

/* =========================
   CTA
========================= */
.cta{
  text-align:center;
  margin-top:5rem;
  margin-bottom:5rem;
}

.cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
  gap:10px;
  padding:10px 40px 10px 25px;
  text-decoration:none;
  font-weight:bold;
  background:linear-gradient(to right, #000 50%, #efc54a 50%);
  background-size:200% 100%;
  background-position:right bottom;
  transition:all .4s ease-out;
  color:#000;
  white-space:nowrap;
  border:1px solid #666;
  box-sizing:border-box;
}

.cta a::after{
  content:"";
  position:absolute;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  width:0;
  height:0;
  border-style:solid;
  border-width:5px 0 5px 8px;
  border-color:transparent transparent transparent currentColor;
}

.cta a:hover{
  background-position:left bottom;
  color:#fff;
}

.cta-text{
  display:inline;
}

.cta-ja,
.cta-en{
  display:inline;
}

.cta-en{
  font-size:inherit;
  opacity:1;
}

.cta small{
  font-size:.8rem;
  font-weight:normal;
}

#party .cta a{
  font-size:.8rem;
  font-weight:normal;
}

/* =========================
   CHEF
========================= */
.chef-image picture,
.chef-image img{
  display:block;
  width:100%;
  height:100%;
}

.chef-image img{
  object-fit:cover;
}

/* =========================
   TABLET / 1100
========================= */
@media (max-width:1100px){
  .header-inner{
    width:min(100% - 32px, 1240px);
  }

  .hero-content,
  .footer-inner,
  .footer-bottom{
    width:min(100% - 56px, 1240px);
  }

  .hero-content{
    padding-top:230px;
  }

  .panel-inner{
    width:min(100% - 32px, 1240px);
  }

  .logo{
    width:160px;
    height:80px;
    font-size:26px;
  }

  .nav ul{
    gap:18px;
  }

  .hero-bottom{
    flex-direction:column;
    align-items:flex-start;
    margin-top:52px;
  }

  .panel-layout{
    grid-template-columns:1fr;
    min-height:auto;
    gap:15px;
  }

  .panel-image{
    /*height:56vh;*/
    height:auto;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }

  #menu .panel-right{
    padding-bottom:5rem;
  }

  #chef .panel-image{
    overflow:hidden;
  }

  #chef .panel-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    aspect-ratio:auto;
  }

  #concept .panel-image.concept-slider{
    width:100%;
    height:360px !important;
    overflow:hidden;
    background:#111;
  }

  #concept .concept-swiper,
  #concept .concept-swiper .swiper-wrapper,
  #concept .concept-swiper .swiper-slide{
    width:100% !important;
    height:100% !important;
  }

  #concept .concept-swiper .swiper-slide img{
    display:block;
    width:100% !important;
    height:100% !important;
    max-width:none;
    aspect-ratio:auto !important;
    object-fit:cover;
    object-position:center center;
  }

  #menu .panel-left{
    padding:0 !important;
  }

  .menu-box,
  .panel-copy{
    max-width:100% !important;
  }

  #menu .food .panel-left{
    padding-left:14px !important;
    padding-right:10px !important;
  }

  #menu .food .menu-box{
    margin-left:0;
    margin-right:0;
  }

  #menu .menu-box ul{
    margin-bottom:1.5rem !important;
  }

}

@media (max-width:1100px) and (min-width:600px){
  .panel-inner{
    padding-left:40px;
    padding-right:40px;
  }

  #concept .panel-image,
  #party .panel-image{
    width:88%;
    margin:30px auto 0;
  }
}

@media (max-width:1100px) and (min-width:801px){
  #menu .drink .panel-layout{
    display:block;
  }

  #menu .drink .panel-left{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:24px 28px;
    padding-left:14px !important;
    padding-right:10px !important;
    align-items:start;
  }

  #menu .drink .menu-box{
    max-width:none;
    width:100%;
    margin:0;
  }
}

@media (max-width:1024px){
  #space .space-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   SP
========================= */
@media (max-width:767px){
  :root{
    --container:min(100% - 48px, 1240px);
    --header-offset:78px;
  }

  body.is-locked{
    overflow:auto;
  }

  .header-inner{
    padding-top:14px;
    align-items:center;
    width:var(--container);
  }

  .logo{
    width:120px;
    height:60px;
    font-size:22px;
  }

  #menuToggle{
    display:flex;
    appearance:none;
    width:54px;
    height:46px;
    padding:0;
    cursor:pointer;
    position:relative;
    align-items:center;
    justify-content:center;
    gap:5px;
    flex-direction:column;
    z-index:10001;
    border:none;
    outline:none;
    background:transparent;
    box-shadow:none;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }

  #menuToggle:focus{
    outline:none;
    box-shadow:none;
  }
	
  #menuToggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  #nav{
    display:block;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    height: 100dvh; /* dvhが使えるブラウザではこちらを優先 */
    padding:0;
    background:#111;
    border:none;
    transform:translateY(-100%);
    transition:transform .4s ease;
    z-index:10000;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }

  #nav.is-open{
    transform:translateY(0);
  }

  #nav ul{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    margin:0;
    padding:110px 32px 40px;
  }

  #nav li{
    width:100%;
  }

  #nav button{
    display:block;
    width:100%;
    text-align:left;
    font-size:14px;
    letter-spacing:.12em;
    padding:18px 0;
    color:#fff;
    position:relative;
    background:none;
    border:0;
  }

  #nav button::before{
    display:none !important;
  }

  #nav button::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#efc54a;
    transition:width .3s ease;
  }

  #nav button:hover::after,
  #nav button.is-current::after{
    width:100%;
  }

  .hero-logo{
    top:20px;
    left:20px;
    width:clamp(120px, 40vw, 180px);
  }

  .hero-content{
    width:var(--container);
    padding-top:180px;
    padding-bottom:72px;
  }

  .hero-title{
    margin-bottom:24px;
    font-size:clamp(30px, 11vw, 62px);
    line-height:1.08;
  }

  .hero-sub{
    margin-bottom:26px;
    line-height:1.75;
  }

  .hero-sub br{
    display:block;
  }

  .hero-btn{
    min-height:54px;
    padding:0 22px;
    font-size:15px;
  }

  .hero-bottom{
    margin-top:46px;
  }

  .store-meta{
    grid-template-columns:110px 1fr;
    column-gap:16px;
    row-gap:18px;
    font-size:.78rem;
  }

  .store-meta dt{
    line-height:1.5;
    font-size:.75rem;
  }

  .store-meta dd{
  font-size:.79rem;
    line-height:1.8;
    padding-left:16px;
  }

  .panel{
    position:relative;
    inset:auto;
    z-index:auto;
    background:linear-gradient(180deg, #15100c 0%, #100c09 100%);
    transform:none !important;
    transition:none;
    overflow:visible;
    pointer-events:auto;
    display:block;
    border-top:1px solid rgba(255,255,255,.08);
  }

  .panel-inner{
    width:var(--container);
    min-height:auto;
    padding:80px 0;
  }

  .panel-close{
    display:none;
  }

  .panel-title{
    font-size:34px;
    line-height:1.1;
	text-align:center;
  }

  .panel-copy{
    max-width:100%;
    overflow-wrap:anywhere;
    word-break:break-word;
  }

  .panel-copy p{
    margin:0 0 16px;
    line-height:1.9;
  }

  .panel-copy .en{
    margin-top:28px;
    line-height:1.6;
  }

  .panel-image{
    margin-top:22px;
    height:auto;
  }

  .panel-image img{
    width:100%;
    aspect-ratio:4 / 3;
    object-fit:cover;
  }

  #concept .panel-image.concept-slider{
    width:100%;
    height:300px !important;
    margin-top:22px;
    overflow:hidden;
    background:#111;
  }

  #concept .concept-swiper,
  #concept .concept-swiper .swiper-wrapper,
  #concept .concept-swiper .swiper-slide{
    width:100% !important;
    height:100% !important;
  }

  #concept .concept-swiper{
    overflow:hidden;
  }

  #concept .concept-swiper .swiper-slide{
    overflow:hidden;
  }

  #concept .concept-swiper .swiper-slide img{
    display:block;
    width:100% !important;
    height:100% !important;
    max-width:none;
    aspect-ratio:auto !important;
    object-fit:cover;
    object-position:center center;
  }

  .gallery-strip-wrap{
    display:block;
    margin-top:18px;
    margin-bottom:18px;
  }

  .gallery-label,
  .gallery-mark{
    display:none;
  }

  .gallery-strip{
    grid-template-columns:repeat(3, 1fr);
    gap:6px;
    background:none;
    box-shadow:none;
  }

  .gallery-strip img{
    aspect-ratio:1 / 1;
  }

  .space-cards,
  .menu-box{
    max-width:none;
  }

  #space .space-grid{
    grid-template-columns:1fr;
  }

  .panel-download a{
    min-width:0;
    width:100%;
    font-size:16px;
  }

  .footer-inner,
  .footer-bottom{
    width:var(--container);
  }

  .footer-store-list{
    grid-template-columns:1fr;
  }

  .map iframe{
    height:320px;
  }

  .news-item{
    grid-template-columns:1fr;
    gap:10px;
  }

  .news-more{
    margin-top:30px;
  }

  .news-more a{
    font-size:12px;
  }
}

@media (max-width:600px){
  .store-meta{
    grid-template-columns:84px 1fr;
    column-gap:12px;
    row-gap:16px;
  }

  .store-meta dt{
    font-size:.72rem;
    line-height:1.45;
  }

  .store-meta dd{
    padding-left:12px;
    font-size:.76rem;
    line-height:1.75;
  }

	.store-meta dd.add br{
		display:inline;
	}


  #menu h3,
  #menu .food h4{
    text-align:center;
  }

  #menu .food h4 + .txt.tl{
    text-align:left !important;
  }

  #menu .food h4 + .txt.tc{
    text-align:center !important;
  }

  #menu .food h4 + .txt.tl{
    text-align:left !important;
  }

  .menu-box h4 span{
    display:block;
    margin-left:0;
    font-weight:normal;
    font-size:.85rem;
  }

  #menu .menu-box ul{
    margin-bottom:0 !important;
  }

  #menu .drink .menu-box ul{
    margin-bottom:3rem !important;
  }
}

@media (max-width:500px){
  .cta{
    width:100%;
    margin-top:3rem;
    margin-bottom:3rem;
    text-align:left;
  }

  .cta a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding:12px 40px 12px 16px;
    gap:12px;
    white-space:normal;
  }

  .cta-text{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:2px;
    min-width:0;
  }

  .cta-ja{
    display:block;
    line-height:1.35;
  }

  .cta-en{
    display:block;
    font-size:.72rem;
    line-height:1.2;
    opacity:.85;
  }

  .cta small{
    flex:0 0 auto;
    margin-left:12px;
    font-size:.8rem;
    line-height:1;
  }
}

@media (max-width:480px){
  #concept .panel-image.concept-slider{
    height:240px !important;
  }
}

/* =========================
   Individual fixes
========================= */
#menu .food .panel-image img{
  height:auto !important;
}

#menu .drink .panel-image{
  height:auto !important;
}

#menu .drink .panel-image img{
  height:auto !important;
  object-fit:contain;
}

#concept .panel-image img,
#party .panel-image img{
  aspect-ratio:auto !important;
}

@media (max-width:1100px){
  #concept .panel-image.concept-slider{
    height:auto !important;
  }

  #concept .concept-swiper,
  #concept .concept-swiper .swiper-wrapper,
  #concept .concept-swiper .swiper-slide{
    height:auto !important;
  }

  #concept .concept-swiper .swiper-slide img{
    width:100%;
    height:auto !important;
    object-fit:contain !important;
    background:#111;
  }

  #menu .tapas-gallery{
    display:block;
    background:none;
    height:auto;
  }

  #menu .tapas-gallery img:first-child{
    display:block;
    width:100%;
    height:auto;
  }

  #menu .tapas-gallery img:not(:first-child){
    display:none;
  }
}

@media (min-width:1101px){
  #menu .food .panel-layout{
    display:grid;
    grid-template-columns:minmax(420px, 1.05fr) minmax(340px, .7fr);
    gap:36px;
    align-items:start;
    min-height:0;
    margin-bottom:3rem;
  }

  #menu .food .panel-image{
    width:100%;
    height:auto;
    background:none;
  }

  #menu .food .panel-image img{
    width:100%;
    height:auto;
    display:block;
    margin-top:10px;
  }

  #menu .tapas-gallery img:first-child{
    /*display:none;*/
  }

  #menu .tapas-gallery img{
    display:block;
    width:100%;
    height:auto;
  }
}

/* =========================
   PAGETOP
========================= */
.page-top{
  position:fixed;
  right:24px;
  bottom:24px;
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(20,20,20,.6);
  color:#fff;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:400;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.3s ease;
}

.page-top.is-show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* =========================
   Scrollbar
========================= */
@media (min-width:768px){
  .panel{
    overflow-y:auto;
    overflow-x:hidden;
    scrollbar-width:thin;
    scrollbar-color:#2b2b2b #0b0b0b;
  }

  .panel::-webkit-scrollbar{
    width:10px;
  }

  .panel::-webkit-scrollbar-track{
    background:#0b0b0b;
  }

  .panel::-webkit-scrollbar-thumb{
    background:#2b2b2b;
    border-radius:999px;
    border:2px solid #0b0b0b;
  }

  .panel::-webkit-scrollbar-thumb:hover{
    background:#444;
  }
}

/* ===== Menu list style restore ===== */
#menu .menu-box ul{
  list-style:disc;
  padding-left:1.4em;
  margin:0;
}

#menu .menu-box li{
  font-size:14px;
  line-height:1.7;
  margin-bottom:.35em;
}

#menu .menu-box li:last-child{
  margin-bottom:0;
}

#menu .menu-box li::marker{
  color:#fff;
}

/* ===== menu 左余白戻す ===== */
#menu .panel-left{
  padding-left:14px !important;
  padding-right:10px !important;
}

.map iframe {
  width: 100%;
  height: 420px; /* PCでの高さ */
  border: 0;
  display: block;
  filter: grayscale(20%) contrast(90%); /* サイトの雰囲気に合わせて少し彩度を落とす */
}

@media (max-width: 767px) {
  .map iframe {
    height: 320px; /* スマホでの高さ */
  }
}

#chef h3{
    font-size: 30px;
	line-height:2rem;
	font-weight:600;
}
	
#chef h3 small{
    font-size: 11px;
	font-family: 'Crimson Text', serif;
}


#menu .drink ul.mb {
    margin-bottom: 1.5rem!important;
}


