@charset "UTF-8";

/* =====================================================
  BAR TOP
===================================================== */

.bar-main{
  background:var(--fb-bg);
  color:var(--fb-text);
}


/* =====================================================
  LOADING
===================================================== */

/* =====================================================
  LOADING
===================================================== */

.bar-loading{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--fb-bg);
  transition:opacity 1.1s ease, visibility 1.1s ease;
}

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

/* =========================
  INNER（中央配置＋左揃え）
========================= */

.bar-loading__inner{
  display:flex;
  flex-direction:column;
  align-items:flex-start;   /* ← 左揃え */
  gap:14px;                /* ← 呼吸 */

  width:180px;             /* ← ラインと完全同期 */
  margin-inline:auto;      /* ← 中央配置 */
}

/* =========================
  TITLE
========================= */

.bar-loading__title{
  margin:0;
  font-family:var(--fb-en);
  font-size:14px;
  line-height:1;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:rgba(255,255,255,.88);

  text-align:left;
}

/* =========================
  LINE（左から伸びる）
========================= */

.bar-loading__line{
  position:relative;
  width:100%; /* ← innerと同期 */
  height:1px;
  background:color-mix(in srgb, var(--bar-accent) 22%, transparent);
  overflow:hidden;
}

.bar-loading__line::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:0;
  height:100%;
  background:var(--bar-accent);
  transform-origin:left center;
  animation:barLoadingProgress 1.95s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes barLoadingProgress{
  0%{
    width:0;
    opacity:.35;
  }
  20%{
    opacity:.9;
  }
  100%{
    width:100%;
    opacity:1;
  }
}

body.is-loading{
  overflow:hidden;
}


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

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

.is-reveal.is-visible{
  opacity:1;
  transform:none;
}

.is-reveal--hero{
  opacity:0;
  transform:translateY(18px);
  transition:
    opacity 1.2s cubic-bezier(.22,.61,.36,1),
    transform 1.2s cubic-bezier(.22,.61,.36,1);
  will-change:opacity, transform;
}

.is-reveal--hero.is-visible{
  opacity:1;
  transform:translateY(-2vh);
}

.bar-section--concept.is-reveal{ transition-delay:.06s; }
.bar-section--drinks.is-reveal{ transition-delay:.10s; }
.bar-section--gallery.is-reveal{ transition-delay:.14s; }
.bar-section--reserve.is-reveal{ transition-delay:.18s; }
.bar-section--access.is-reveal{ transition-delay:.22s; }


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

.bar-hero{
  position:relative;
  height:100svh;
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
}

.bar-hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(8,10,14,.20) 0%,
      rgba(8,10,14,.42) 46%,
      rgba(8,10,14,.74) 100%
    ),
    url("../img/hero.jpg") center/cover no-repeat;
}

.bar-hero__bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 42%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 38%);
  pointer-events:none;
}

.bar-hero__bg::after{
  content:"";
  position:absolute;
  inset:0;
  backdrop-filter:blur(.6px);
  -webkit-backdrop-filter:blur(.6px);
  pointer-events:none;
}

.bar-hero__inner{
  position:relative;
  z-index:2;
  width:100%;
  text-align:center;
  transform:translateY(-2vh);
}

.bar-hero__title{
  margin:0;
  font-family:var(--fb-en);
  font-size:clamp(36px, 5vw, 64px);
  line-height:1.02;
  font-weight:500;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#fff;
  text-shadow:0 6px 30px rgba(0,0,0,.22);
}


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

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

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

.bar-hero__scroll-line{
  position:relative;
  width:1px;
  height:58px;
  background:rgba(255,255,255,.18);
  overflow:hidden;
}

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

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


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

.bar-section{
  border-top:1px solid var(--fb-line-soft);
  background:var(--fb-bg);
}

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

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

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

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

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


/* =====================================================
  DRINKS
===================================================== */

.bar-drinks-list{
  display:grid;
  gap:0;
}

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

.bar-drinks-card:hover{
  background:rgba(255,255,255,.03);
  padding-left:14px;
  padding-right:14px;
  border-color:rgba(255,255,255,.16);
}

.bar-drinks-card__title{
  margin:0 0 8px;
  font-family:var(--fb-en);
  font-size:18px;
  line-height:1.4;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-weight:500;
  color:var(--fb-text);
}

.bar-drinks-card__text{
  margin:0;
  color:var(--fb-muted);
}


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

.bar-gallery-grid{
  display:grid;
  grid-template-columns:repeat(12, minmax(0,1fr));
  gap:12px;
  align-items:start;
}

.bar-gallery-item{
  margin:0;
  min-width:0;
  width:100%;
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.05);
}

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

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

.bar-gallery-item:empty{
  display:none;
}

.bar-gallery-item--1{
  grid-column:span 7;
  aspect-ratio:1.35 / 1;
}

.bar-gallery-item--2{
  grid-column:span 5;
  aspect-ratio:1 / 1;
}

.bar-gallery-item--3,
.bar-gallery-item--4,
.bar-gallery-item--5{
  grid-column:span 4;
  aspect-ratio:1 / 1.05;
}

.bar-gallery-item--6{
  grid-column:span 12;
  aspect-ratio:2.2 / 1;
}


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

.bar-section--reserve .fb-container{
  display:flex;
  justify-content:center;
}

.bar-cta{
  width:min(100%, 760px);
  margin-inline:auto;
  padding:6px 0 2px;
  text-align:center;
}

.bar-cta .fb-eyebrow,
.bar-cta .bar-section-title,
.bar-cta .bar-body{
  text-align:center;
}

.bar-cta__body{
  margin-top:16px;
  margin-left:auto;
  margin-right:auto;
}

.bar-cta__buttons{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  margin-top:30px;
}

.bar-button,
.bar-button--ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:min(100%, 560px);
  min-height:50px;
  padding:0 24px;
  border:0;
  background:var(--fb-bg-soft);
  color:var(--fb-text);
  text-decoration:none;
  font-family:var(--fb-en);
  font-size:12px;
  line-height:1;
  letter-spacing:.18em;
  text-transform:uppercase;
  transition:
    background .3s ease,
    transform .3s ease,
    color .3s ease;
}

.bar-button:hover,
.bar-button--ghost:hover{
  background:var(--fb-bg);
  color:#fff;
  transform:translateY(-1px);
}


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

.bar-info{
  border-top:1px solid var(--fb-line-soft);
}

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

.bar-info__label{
  color:rgba(245,247,250,.52);
}

.bar-info__value{
  color:var(--fb-text);
  font-family:'Cormorant Garamond', serif;
  letter-spacing:.06em;
}

.bar-info__value a{
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.22);
}


/* =====================================================
  HEADER FIX
===================================================== */

.fb-header{
  background:var(--fb-bg) !important;
  border-bottom:1px solid var(--fb-line-soft) !important;
}

.fb-header__inner{
  background:transparent !important;
}

.fb-header,
.fb-header a,
.fb-menu-float,
.fb-menu-float__label{
  color:rgba(255,255,255,.82) !important;
}

.fb-menu-float__lines span{
  background:rgba(255,255,255,.82) !important;
}


/* =====================================================
  TYPOGRAPHY : CINZEL FORCE
===================================================== */

.bar-hero__title,
.bar-section-title,
.bar-drinks-card__title,
.bar-loading__title,
.bar-button,
.bar-button--ghost,
.bar-sp-fixed__btn,
.fb-sidebadge span,
.fb-eyebrow{
  font-family:var(--fb-en) !important;
}

.bar-hero__title{
  letter-spacing:.18em;
}

.bar-section-title{
  letter-spacing:.10em;
}

.bar-drinks-card__title{
  letter-spacing:.10em;
}

.bar-button,
.bar-button--ghost,
.bar-sp-fixed__btn,
.fb-sidebadge span,
.fb-eyebrow{
  letter-spacing:.18em;
  text-transform:uppercase;
}


/* =====================================================
  CINZEL WEIGHT BALANCE
===================================================== */

.bar-section-title{
  font-weight:500;
}

.bar-sp-fixed__btn{
  font-weight:500;
}

.fb-eyebrow{
  font-weight:400;
}


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

.fb-sidebadges{
  position:fixed;
  top:50%;
  right:0;
  transform:translateY(-50%);
  z-index:130;
  display:flex;
  flex-direction:column;
  gap:0;
}

.fb-sidebadge{
  width:44px;
  min-height:180px;
  padding:16px 4px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  text-decoration:none;
  box-shadow:none;
  background-image:none !important;
  overflow:hidden;
  border:0 !important;
  background:var(--fb-bg-soft) !important;
  background-color:var(--fb-bg-soft) !important;
  color:#fff !important;
}

.fb-sidebadge + .fb-sidebadge{
  border-top:1px solid var(--fb-line-soft) !important;
}

.fb-sidebadge:hover{
  background:var(--fb-bg) !important;
  background-color:var(--fb-bg) !important;
}

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


/* =====================================================
  SP FIXED BAR
===================================================== */

.bar-sp-fixed{
  display:none;
}


/* =====================================================
  RESPONSIVE
===================================================== */

@media (max-width: 991px){

  .bar-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .bar-gallery-grid{
    grid-template-columns:repeat(6, minmax(0,1fr));
    gap:12px;
  }

  .bar-gallery-item--1,
  .bar-gallery-item--2,
  .bar-gallery-item--3,
  .bar-gallery-item--4,
  .bar-gallery-item--5{
    grid-column:span 3;
    aspect-ratio:1 / 1;
  }

  .bar-gallery-item--6{
    grid-column:span 6;
    aspect-ratio:1.6 / 1;
  }

  .bar-info__row{
    grid-template-columns:1fr;
    gap:6px;
  }
}

@media (max-width: 767px){

  html,
  body,
  .bar-main,
  .fb-footer{
    background:var(--fb-bg) !important;
  }

  .bar-hero{
    height:100svh;
    min-height:100svh;
  }

  .bar-hero__title{
    font-size:clamp(24px, 9vw, 42px);
    letter-spacing:.14em;
  }

  .bar-hero__scroll{
    bottom:34px;
  }

  .bar-gallery-grid{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .bar-gallery-item{
    grid-column:span 1 !important;
    aspect-ratio:1 / 1 !important;
  }

  .bar-gallery-item--3{
    grid-column:1 / -1 !important;
    aspect-ratio:1.6 / 1 !important;
  }

  .bar-gallery-item--6{
    grid-column:1 / -1 !important;
    aspect-ratio:1.6 / 1 !important;
  }

  .bar-cta__buttons{
    flex-direction:column;
    gap:12px;
  }

  .bar-button,
  .bar-button--ghost{
    width:100%;
    min-height:50px;
  }

  .fb-sidebadges{
    display:none !important;
  }

  /* =====================================
    SP FIXED CTA
  ===================================== */

  .bar-sp-fixed{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:140;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:stretch;

    height:calc(56px + env(safe-area-inset-bottom, 0));
    padding-bottom:env(safe-area-inset-bottom, 0);

    background:var(--fb-bg-soft) !important;
    border:0 !important;
    box-shadow:none !important;
    margin:0 !important;

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
  }

  .bar-sp-fixed::before,
  .bar-sp-fixed::after{
    content:none !important;
    display:none !important;
  }

  .bar-sp-fixed__btn{
    width:100%;
    height:56px;
    min-height:0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 12px;

    background:transparent !important;
    color:var(--fb-text) !important;
    text-decoration:none;
    text-align:center;
    border:0 !important;
    box-shadow:none !important;

    font-family:var(--fb-en);
    font-size:11px;
    line-height:1;
    letter-spacing:.16em;
    text-transform:uppercase;
    font-weight:500;
  }

  .bar-sp-fixed__btn + .bar-sp-fixed__btn{
    border-left:0 !important;
  }

  body{
    padding-bottom:0 !important;
  }

  .bar-section--access{
    padding-bottom:calc(56px + env(safe-area-inset-bottom, 0)) !important;
  }

  .fb-footer,
  .fb-footer__inner,
  .bar-main{
    margin-bottom:0 !important;
    border-bottom:0 !important;
    padding-bottom:0 !important;
  }
}

/* =====================================================
  FINAL TYPO FIX（Cormorant 完全適用版）
===================================================== */

/* =========================
  FONT FORCE
========================= */
.bar-hero__title,
.bar-section-title,
.bar-drinks-card__title,
.bar-loading__title,
.bar-button,
.bar-button--ghost,
.bar-sp-fixed__btn,
.fb-sidebadge span,
.fb-eyebrow{
  font-family:'Cormorant Garamond', serif !important;
}

/* =========================
  HERO
========================= */
.bar-hero__title{
  font-weight:400 !important;
  letter-spacing:.06em !important;
  line-height:1.02;
}

/* =========================
  SECTION
========================= */
.bar-section-title{
  font-weight:400 !important;
  letter-spacing:.04em !important;
  line-height:1.18;
  opacity:.88;
}

/* =========================
  DRINKS
========================= */
.bar-drinks-card__title{
  font-weight:400 !important;
  letter-spacing:.04em !important;
  line-height:1.4;
  opacity:.88;
}

/* =========================
  BUTTON
========================= */
.bar-button,
.bar-button--ghost,
.bar-sp-fixed__btn,
.fb-sidebadge span{
  font-weight:400 !important;
  letter-spacing:.10em !important;
  text-transform:uppercase;
}

/* =========================
  EYEBROW / LOADING
========================= */
.fb-eyebrow,
.bar-loading__title{
  font-weight:400 !important;
  letter-spacing:.12em !important;
  text-transform:uppercase;
  opacity:.82;
}

/* =========================
  SP 微調整
========================= */
@media (max-width: 767px){
  .bar-hero__title{
    letter-spacing:.08em !important;
  }
}