@charset "UTF-8";

/* =====================================================
  RESTAURANT TOP
===================================================== */

.restaurant-main{
  background:var(--fb-bg);
}


/* =====================================================
  HERO
===================================================== */

.restaurant-hero{
  position:relative;
  min-height:72vh;
  display:flex;
  align-items:center;
  background-image:url("../img/hero.jpg");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  color:#fff;
  filter:saturate(1.03) contrast(1.02);
}

.restaurant-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.18) 0%,
      rgba(0,0,0,.28) 40%,
      rgba(0,0,0,.45) 100%
    );
  backdrop-filter:blur(.4px);
}

.restaurant-hero__inner{
  position:relative;
  z-index:2;
  width:100%;
  padding-top:0;
  padding-bottom:0;
  padding-left:clamp(32px, 4.6vw, 72px);
  padding-right:clamp(24px, 4vw, 56px);
}

.restaurant-hero__eyebrow,
.restaurant-hero .fb-eyebrow{
  margin:0 0 10px;
  color:rgba(255,255,255,.86);
}

.restaurant-hero__title{
  display:none;
}

.restaurant-hero__lead{
  max-width:24em;
  margin:0;
  color:rgba(255,255,255,.90);
  font-size:13px;
  line-height:1.85;
  text-shadow:0 2px 12px rgba(0,0,0,.28);
}


/* =====================================================
  HERO SCROLL INDICATOR
===================================================== */

.restaurant-hero__scroll{
  position:absolute;
  left:50%;
  bottom:72px;
  transform:translateX(-50%);
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  pointer-events:none;
}

.restaurant-hero__scroll-label{
  color:rgba(255,255,255,.78);
  font-family:var(--fb-en);
  font-size:10px;
  line-height:1;
  letter-spacing:.28em;
  text-transform:uppercase;
}

.restaurant-hero__scroll-line{
  position:relative;
  width:1px;
  height:64px;
  background:rgba(255,255,255,.22);
  overflow:hidden;
}

.restaurant-hero__scroll-line::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:1px;
  height:100%;
  background:rgba(255,255,255,.88);
  transform:translateY(-100%);
  animation:restaurantScrollLine 3.2s cubic-bezier(.22,.61,.36,1) infinite;
}

@keyframes restaurantScrollLine{
  0%{
    transform:translateY(-100%);
    opacity:0;
  }
  20%{
    opacity:1;
  }
  100%{
    transform:translateY(100%);
    opacity:0;
  }
}


/* =====================================================
  SECTION
===================================================== */

.restaurant-section{
  border-top:1px solid var(--fb-line);
  background:#fff;
}

.restaurant-grid{
  display:grid;
  grid-template-columns:minmax(220px, 280px) minmax(0, 1fr);
  gap:32px 56px;
}

.restaurant-grid__head{
  align-self:start;
}

.restaurant-grid__body{
  min-width:0;
}

.restaurant-section-title{
  margin:0;
  font-family:var(--fb-en);
  font-size:clamp(16px, 1.95vw, 24px);
  line-height:1.16;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--fb-text);
}

.restaurant-body{
  margin:0;
  max-width:42em;
  color:var(--fb-muted);
}


/* =====================================================
  COURSE
===================================================== */

.restaurant-course-list{
  display:grid;
  gap:0;
}

.restaurant-course-card{
  padding:14px 0 16px;
  border-bottom:1px solid var(--fb-line);
  transition:
    background .35s ease,
    padding-left .35s ease,
    padding-right .35s ease,
    border-color .35s ease;
}

.restaurant-course-card:hover{
  background:rgba(49,49,49,.03);
  padding-left:14px;
  padding-right:14px;
  border-color:rgba(49,49,49,.18);
}

.restaurant-course-card__title{
  margin:0 0 8px;
  font-family:var(--fb-en);
  font-size:18px;
  line-height:1.4;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--fb-text);
  transition:letter-spacing .35s ease;
}

.restaurant-course-card:hover .restaurant-course-card__title{
  letter-spacing:.10em;
}

.restaurant-course-card__text{
  margin:0;
  color:var(--fb-muted);
  transition:color .35s ease;
}

.restaurant-course-card:hover .restaurant-course-card__text{
  color:rgba(49,49,49,.86);
}


/* =====================================================
  GALLERY
===================================================== */

.restaurant-gallery-grid--featured{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:14px;
}

.restaurant-gallery-item{
  margin:0;
  position:relative;
  overflow:hidden;
  background:#f6f6f6;
}

.restaurant-gallery-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .9s cubic-bezier(.2,.6,.2,1), opacity .6s ease;
}

.restaurant-gallery-item:hover img{
  transform:scale(1.035);
}

.restaurant-gallery-item--1{
  grid-column:span 8;
  grid-row:span 2;
}

.restaurant-gallery-item--1 img{
  aspect-ratio:16/10;
}

.restaurant-gallery-item--2,
.restaurant-gallery-item--3,
.restaurant-gallery-item--4,
.restaurant-gallery-item--5,
.restaurant-gallery-item--6,
.restaurant-gallery-item--7,
.restaurant-gallery-item--8,
.restaurant-gallery-item--9{
  grid-column:span 4;
}

.restaurant-gallery-item--2 img,
.restaurant-gallery-item--3 img,
.restaurant-gallery-item--4 img,
.restaurant-gallery-item--5 img,
.restaurant-gallery-item--6 img,
.restaurant-gallery-item--7 img,
.restaurant-gallery-item--8 img,
.restaurant-gallery-item--9 img{
  aspect-ratio:4/3;
}


/* =====================================================
  INFO
===================================================== */

.restaurant-info{
  display:grid;
  gap:0;
  border-top:1px solid var(--fb-line);
}

.restaurant-info__row{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--fb-line);
}

.restaurant-info__label{
  font-family:var(--fb-en);
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--fb-muted);
}

.restaurant-info__value{
  color:var(--fb-text);
}


/* =====================================================
  CTA
===================================================== */

.restaurant-cta{
  text-align:center;
  padding:clamp(8px,2vw,18px) 0;
}

.restaurant-cta .restaurant-section-title{
  margin-bottom:22px;
}

.restaurant-cta__buttons{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  width:min(100%,520px);
  margin-inline:auto;
}

.restaurant-button{
  width:100%;
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #313131;
  background:#313131;
  color:#fff;
  font-family:var(--fb-en);
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.restaurant-button--ghost{
  background:transparent;
  color:#313131;
}


/* =====================================================
  SIDE BADGES
===================================================== */

.fb-sidebadges{
  position:fixed;
  right:0;
  top:50%;
  transform:translateY(-50%);
  z-index:120;

  display:flex;
  flex-direction:column;

  gap:0;
  margin:0;
  padding:0;

  background:#313131; 
  overflow:hidden;
}

.fb-sidebadge{
  appearance:none;
  -webkit-appearance:none;

  width:48px;
  min-height:188px;
  padding:16px 4px;

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

  background:transparent; 
  text-decoration:none;
  cursor:pointer;

  border:0;
  border-radius:0;
  box-shadow:none;

  margin:0;
  flex:0 0 auto;
}

.fb-sidebadge + .fb-sidebadge{
  border-top:none;
}

.fb-sidebadge span{
  writing-mode:vertical-rl;
  text-orientation:mixed;
  color:#fff;
  font-size:9px;
  line-height:1;
  letter-spacing:.16em;
}

.fb-sidebadge:hover{
  opacity:.85;
}


/* =====================================================
  QUIET REVEAL
===================================================== */

body:not(.is-loaded) .is-reveal{
  opacity:0 !important;
  transform:translate3d(0,18px,0) !important;
}

.is-reveal{
  opacity:0;
  transform:translate3d(0,18px,0);
  transition:
    opacity .9s cubic-bezier(.22,.61,.36,1),
    transform .9s cubic-bezier(.22,.61,.36,1);
}

body.is-loaded .is-reveal.is-inview{
  opacity:1;
  transform:none;
}


/* =====================================================
  TABLET
===================================================== */

@media (max-width:1100px){

  .restaurant-gallery-grid--featured{
    grid-template-columns:repeat(6,1fr);
  }

  .restaurant-gallery-item--1{
    grid-column:span 6;
    grid-row:auto;
  }

  .restaurant-gallery-item--2,
  .restaurant-gallery-item--3,
  .restaurant-gallery-item--4,
  .restaurant-gallery-item--5,
  .restaurant-gallery-item--6,
  .restaurant-gallery-item--7,
  .restaurant-gallery-item--8,
  .restaurant-gallery-item--9{
    grid-column:span 3;
  }

}


/* =====================================================
  MOBILE
===================================================== */

@media (max-width:767px){

  .restaurant-hero{
    min-height:calc(100vh - var(--fb-header-h));
    background-position:58% center;
    filter:none;
  }

  .restaurant-hero__scroll{
    bottom:22px;
  }

  .restaurant-hero__scroll-line{
    height:64px;
  }

  .restaurant-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .restaurant-gallery-grid--featured{
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .restaurant-gallery-item--1{
    grid-column:1/-1;
  }

  .restaurant-info__row{
    grid-template-columns:1fr;
  }

  .restaurant-cta__buttons{
    width:100%;
  }

  .fb-sidebadges{
    display:none;
  }

}


/* =====================================================
  REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion:reduce){

  body:not(.is-loaded) .is-reveal,
  .is-reveal,
  body.is-loaded .is-reveal.is-inview{
    opacity:1;
    transform:none;
    transition:none;
  }

  .restaurant-hero__scroll-line::after{
    animation:none;
    opacity:.9;
    transform:none;
  }

}


/* =====================================================
  MAP
===================================================== */

.restaurant-map{
  margin-top:40px;
  height:420px;
  overflow:hidden;
  background:#f6f6f6;
  border:1px solid var(--fb-line);
  filter:grayscale(1) brightness(1.04) contrast(.94);
}

.restaurant-map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

@media (max-width:767px){

  .restaurant-map{
    margin-top:28px;
    height:320px;
  }

}

/* =====================================================
  LOADING
  THE CAFE と統一
===================================================== */

.fb-loading{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f5f5f5;
  opacity:1;
  visibility:visible;
  transition:
    opacity .6s ease,
    visibility .6s ease;
}

.fb-loading.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.fb-loading__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.fb-loading__label{
  margin:0;
  font-family:var(--fd-serif-en, var(--fb-en));
  font-size:11px;
  line-height:1;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:rgba(0,0,0,.68);
  padding-left:.34em;
}

.fb-loading__line{
  position:relative;
  display:block;
  width:68px;
  height:1px;
  background:rgba(0,0,0,.14);
  overflow:hidden;
}

.fb-loading__line::after{
  content:"";
  position:absolute;
  top:0;
  left:-26px;
  width:26px;
  height:1px;
  background:rgba(0,0,0,.52);
  animation:fbLoaderLine 1.2s cubic-bezier(.55,.08,.45,.92) infinite;
}

@keyframes fbLoaderLine{
  0%{
    transform:translateX(0);
    opacity:0;
  }
  15%{
    opacity:1;
  }
  85%{
    opacity:1;
  }
  100%{
    transform:translateX(94px);
    opacity:0;
  }
}