@charset "UTF-8";
 :root {
    --gold: #EAC36D;
    --gold-light: #D6BB4A;
    --black: #0a0a0a;
    --dark: #111111;
    --off-white: #f5f0e8;
    --text-light: #e8e2d6;
    --text-muted: #888;
    --border: rgba(201,168,76,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Yu Gothic P', 'YuGothic P', 'Yu Gothic', 'YuGothic', sans-serif;
    background: var(--black);
    color: var(--off-white);
    overflow-x: hidden;
}

/* ─── LOADER ─── */
#loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}
.loader-logo img {
    max-width: 129px;
}
.loader-logo-text {
    font-size: 22px;
    letter-spacing: 0.08em;
    color: var(--off-white);
    line-height: 1.1;
}
.loader-logo-text span { display: block; font-size: 28px; color: var(--gold); }

.loader-bar-wrap {
    width: 200px;
    height: 1px;
    background: rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.6s forwards;
}
.loader-bar {
    position: absolute;
    left: 0; top: 0; height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 0.05s linear;
}
.loader-pct {

    font-size: 12px;
    letter-spacing: 0.2em;
    color: #999999;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.7s forwards;
}

/* ─── HEADER ─── */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transition: padding 0.3s ease;
}
header.scrolled {
    padding: 12px 40px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}
.header-logo img { 
    max-width: 129px;
}
.header-logo-text {

    font-size: 18px;
    letter-spacing: 0.06em;
    color: black;
    line-height: 1.1;
}
.header-logo-text span { display: block; font-size: 22px; color: var(--gold); }

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}
.lang-sep {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999999;
    pointer-events: none;
}
.lang-btn {
    appearance: none;
    -webkit-appearance: none;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #bbbbbb;
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: color 0.2s;
    line-height: 1;
}
.lang-btn:hover { color: #555555; }
.lang-btn.active {
    color: #111111;
    font-weight: 700;
}
.header-ig {
    color: #333333;
    opacity: 0.7;
    transition: opacity 0.2s;
    display: flex;
}
.header-ig img{max-width: 24px}
.header-ig:hover { opacity: 1; color: var(--gold); }

/* ─── MV / HERO ─── */
.mv-wrapper {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.mv-video-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: 0;
    pointer-events: none;
}
.mv-video-bg video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.mv-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.35) 0%,
    rgba(10,10,10,0.15) 40%,
    rgba(10,10,10,0.55) 80%,
    rgba(10,10,10,0.85) 100%
    );
}

.mv-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 40px;
}

.mv-logo-mark {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
    margin-bottom: 16px;
}
.mv-logo-mark img {
    max-width: 300px;
}
@media (max-width: 599px) {
    .mv-logo-mark img {
        width: 60vw
    }
}
.mv-brand {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
    margin-bottom: 8px;
}
.mv-brand-goodbeer {

    font-size: clamp(22px, 4vw, 38px);
    font-weight: 300;
    letter-spacing: 0.25em;
    color: white;
    text-transform: uppercase;
}
.mv-brand-faucets {

    font-size: clamp(52px, 9vw, 96px);
    letter-spacing: 0.08em;
    color: white;
    line-height: 0.9;
    text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.mv-sub {
    opacity: 0;
    transform: translateY(24px);
    animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.5s forwards;
    margin-bottom: 48px;
}
.mv-sub p {

    font-size: clamp(11px, 1.5vw, 14px);
    letter-spacing: 0.28em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    line-height: 2;
}

.mv-divider {
    width: 1px;
    height: 0;
    background: var(--gold);
    margin: 0 auto 36px;
    animation: growLine 0.8s ease 0.65s forwards;
}

.mv-open {
    opacity: 0;
    transform: translateY(24px);
    animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.75s forwards;
}

.mv-open-year,
.mv-open-text { font-size: clamp(46px, 7vw, 50px); }

.mv-open-year {
    margin-top: 30px;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: white;
    line-height: 1.2;
}
.mv-open-text {
    font-weight: bold;
    letter-spacing: 0.05em;
    color: white;
    line-height: 1.2;
}

.mv-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
    z-index: 2;
}
.mv-scroll-hint span {

    font-size: 10px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}
.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── MAIN CONTENT (scrolls over fixed video) ─── */
.main-content {
    position: relative;
    z-index: 10;
    background: transparent;
}

/* Coming Back Banner */
.banner-coming {
    background: var(--dark);
    position: relative;
    z-index: 11;
    padding: 20px 20px;
    text-align: center;
    flex-shrink: 0;
}
.banner-coming h2 {

    font-size: clamp(18px, 3vw, 28px);
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.banner-coming p {
    font-size: clamp(12px,3vw,13px);
    color:white;
    letter-spacing: 0.05em;
}


/* Renovation Section */
.section-renovation {
    padding: 80px 20px;
    text-align: center;
    background: rgba(255,255,255,0.8);
    position: relative;
}

.renovation-badge {
    display: inline-block;
    border: 2px solid #111111;
    background: white;
    color: black;
    font-family: 'Inter', 'Yu Gothic P', 'YuGothic P', 'Yu Gothic', 'YuGothic', sans-serif;
    font-size: 17px;
    letter-spacing: 0.18em;
    padding: 5px 20px;
    margin-bottom: 32px;
    font-weight: bold;
}

.renovation-date {
    font-size: clamp(18px, 2.6vw, 24px);
    font-weight: bold;
    color: black;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.renovation-sub {
    font-size: clamp(18px, 2.6vw, 24px);
    font-weight: bold;
    color: black;
    letter-spacing: 0.06em;
    margin-bottom: 48px;
}

/* Instagram Section */
.section-instagram {
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ig-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.ig-handle img {max-width: 32px;}
.ig-handle a {
    font-size: 13px;
    letter-spacing: 0.1em;
    color: #666666;
    text-decoration: none;
    transition: color 0.2s;
}
.ig-handle a:hover { color: var(--gold); }

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    margin-bottom: 24px;
}
.ig-item {
    aspect-ratio: 1;
    background: #1a1a1a;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.ig-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(20%);
}
.ig-item:hover img { transform: scale(1.05); filter: grayscale(0%); }
.ig-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    color: white;
    letter-spacing: 0.05em;
}
.ig-item:hover .ig-item-overlay { background: rgba(10,10,10,0.5); }

/* Placeholder IG items */
.ig-placeholder {
    background: #1a1616;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
}
.ig-placeholder-badge {
    font-size: 9px;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;

}
.ig-placeholder-text {
    font-size: 8px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}
.ig-placeholder-notice {

    font-size: 11px;
    color: var(--off-white);
    letter-spacing: 0.08em;
}
.ig-placeholder-sub {
    font-size: 8px;
    color: var(--text-muted);
    line-height: 1.5;
}

.ig-latest-tag {
    display: inline-block;
    border: 1px solid var(--gold);
    background: white;
    font-size: 15px;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding: 6px 20px;
    margin-bottom: 14px;
    margin-top: 20px;
}
.ig-latest-note {
    font-size: 15px;
    color: black;
    letter-spacing: 0.04em;
}

/* Opening Soon */
.section-opening-wrap {
    background: #ffffff;
    position: relative;
    z-index: 1;
}
.section-opening {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}
.opening-title {
    font-size: clamp(35px, 4vw, 40px);
    color: black;
    white-space: nowrap;
    font-weight: 500;
}
.opening-info {
    list-style: none;
    padding-left: 40px;
}
.opening-info li {
    font-size: 15px;
    color: black;
    letter-spacing: 0.04em;
    padding: 6px 0;
    position: relative;
}
.opening-info li::before {
    content: '·';
    position: absolute;
    left: -12px;
    color: var(--gold);
}

/* GBF Shibuya */
.section-location-wrap {
    background: #ffffff;
    position: relative;
    z-index: 1;
}
.section-location {
    padding: 0 0 80px;
    max-width: 900px;
    margin: 0 auto;
}
.section-location-bordertop{
    border-top: 1px solid rgba(0,0,0,0.10);
}
.location-header {
    padding: 48px 0 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.location-title {
    font-size: clamp(35px, 4vw, 40px);
    letter-spacing: 0.08em;
    color: black;
    font-weight: 500;
}
.location-address {
    font-size: 15px;
    color: black;
    letter-spacing: 0.06em;
}
.map-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.map-container iframe {
    width: 100%; height: 100%;
    border: none;
}
.map-container:hover iframe {
    filter: grayscale(20%) contrast(1.0) brightness(1.0);
}

/* Footer */
footer {
    border-top: 1px solid rgba(0,0,0,0.10);
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #ffffff;
    position: relative;
    z-index: 1;
}
footer span {

    font-size: 11px;
    letter-spacing: 0.15em;
    color: #999999;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes growLine {
    to { height: 60px; }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 0.8; transform: scaleY(1); }
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
    header { padding: 14px 20px; }
    header.scrolled { padding: 10px 20px; }

    .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }

    .section-opening {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 60px 24px;
    }
    .opening-info { padding-left: 20px; }

    .section-location { padding: 0 24px 60px; }

    footer { padding: 20px 24px; }
}

/* Scroll fade-in for content sections */
.fade-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}




.inner{
    width: 100%;
    max-width: var(--max-window);
    padding: 0 2%;
    margin: auto;
}
.overflow-h{
    overflow: hidden;
}
@media (max-width: 1200px) {
    .inner{
        padding: 0 4rem;
    }
}
@media (max-width: 767px) {
    .inner{
        padding: 0 4vw;
    }
}
a {
  text-decoration: none; 
  color: var(--acc-color); }
a:hover {opacity: var(--opacity); }
a:active {color:var(--acc-color); }
a.link-ul {
  text-decoration: underline; }
a.link-ul:hover {
  text-decoration: none; 
  opacity: 0.7;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

@media (max-width: 767px) {
  img {
    width: 100%;
    height: auto; } }

img.img_sp {
  max-width: 100%;
  height: auto;
  zoom: 1; }

.bold {font-weight: bold; }
.normal {font-weight: normal; }
.ta-c {text-align: center; }
.ta-r {text-align: right; }
.ta-l {text-align: left; }
.mt-1em {margin-top: 1em !important; }
.mt-2em {margin-top: 2em !important; }
.mt-3em {margin-top: 3em !important; }
.mt-4em {margin-top: 4em !important; }
.mb-0_4em {margin-bottom: 0.4em !important; }
.mb-1em {margin-bottom: 1em !important; }
.mb-2em {margin-bottom: 2em !important; }
.txt-in-1em {text-indent: 1em; }

.br-sp {
  display: none; }
  @media (max-width: 767px) {
    .br-sp {
      display: block; } }

.br-tbsp {
  display: none; }
  @media (max-width: 1100px) {
    .br-tbsp {
      display: block; } }

.br-tb {
  display: block; }
  @media (max-width: 1100px) {
    .br-tb {
      display: none; } }

.br-pc {
  display: block; }
  @media (max-width: 767px) {
    .br-pc {
      display: none; } }

.bdr_none {
  border-bottom: none !important; }
.bdr_btm{
  border-bottom: solid 1px #ccc;
  padding-bottom: 3.5em;
}
.white{color: var(--wh-color)!important;}
.blue{color: var(--acc-color)!important;}
.pink{color:var(--pjt02-color)!important;}
.red{color: var(--red-color)!important;}
.bg-li-blue{background:var(--bg-color-light);}
.bg-li-blue-2{background:#ECF0F5;}
.bg-li-pink{background:var(--bg-color-lightp);}

.fs-130 {  font-size: 13rem;}
.fs-125 {  font-size: 12.5rem;}
.fs-120 {  font-size: 12rem;}
.fs-110 {  font-size: 11rem;}
.fs-90 {  font-size: 9rem;}
.fs-80 {  font-size: 8rem;}
.fs-70 {  font-size: 7rem;}
.fs-60 {  font-size: 6rem;}
.fs-50 {  font-size: 5rem;}
.fs-45 {font-size: 4.5rem}
.fs-40 {  font-size: 4rem;}
.fs-36 {  font-size: 3.6rem;}
.fs-32{font-size: 32px}
.fs-30 {  font-size: 3rem;}
.fs-26 {  font-size: 2.6rem;}
.fs-24 {  font-size: 2.4rem;}
.fs-22 {  font-size: 2.2rem;}
.fs-20 {  font-size: 2rem;}
.fs-18 {  font-size: 1.8rem;}
.fs-16 {  font-size: 1.6rem;}
.fs-14 {  font-size: 1.4rem;}
.fs-13 {  font-size: 1.3rem;}
.fs-12 {  font-size: 1.2rem;}

@media (max-width: 767px) {
    .fs-130 { 
        font-size: calc(4.4rem + ((1vw - 0.375rem) * 10.4242));
        min-height: 0vw;
    }
    .fs-125 {  
        font-size: calc(4.4rem + ((1vw - 0.375rem) * 9.8182));
        min-height: 0vw;
    }
    .fs-120 { 
         font-size: calc(4rem + ((1vw - 0.375rem) * 9.697));
        min-height: 0vw;
    }
    .fs-110 { 
         font-size: calc(3.8rem + ((1vw - 0.375rem) * 8.7273));
        min-height: 0vw;
    }
    .fs-90 { 
        font-size: calc(3.6rem + ((1vw - 0.375rem) * 6.5455));
        min-height: 0vw;
    }
    .fs-80 { 
       font-size: calc(3.4rem + ((1vw - 0.375rem) * 6.5455));
        min-height: 0vw;
    }
    .fs-70 {
        font-size: calc(3.2rem + ((1vw - 0.375rem) * 4.6061));
        min-height: 0vw;
    }
    .fs-60 {
        font-size: calc(3.1rem + ((1vw - 0.375rem) * 3.6364));
        min-height: 0vw;
    }
    .fs-50 {
        font-size: calc(3rem + ((1vw - 0.234375rem) * 4.2431));
        min-height: 0vw;
    }
    .fs-45 {
        font-size: calc(2.9rem + ((1vw - 0.48rem) * 2.8472));
        min-height: 0vw;
    }
    .fs-40 {
        font-size: calc(2.8rem + ((1vw - 0.375rem) * 1.697));
        min-height: 0vw;
    }
    .fs-36 {
        font-size: calc(2.6rem + ((1vw - 0.375rem) * 1.4545));
        min-height: 0vw;
    }

    .fs-32 {
        font-size: calc(2.5rem + ((1vw - 0.375rem) * 1.2121));
        min-height: 0vw;
    }
    .fs-30 {
        font-size: calc(2.4rem + ((1vw - 0.375rem) * 1.2121));
        min-height: 0vw;
    }
    .fs-26 {
        font-size: calc(2.1rem + ((1vw - 0.375rem) * 0.9697));
        min-height: 0vw;
    }
    .fs-24 {
        font-size: calc(2.0rem + ((1vw - 0.375rem) * 0.9697));
        min-height: 0vw;
    }
    .fs-22 {
        font-size: calc(1.9rem + ((1vw - 0.375rem) * 0.7273));
        min-height: 0vw;
    }
    .fs-20 {
        font-size: calc(1.8rem + ((1vw - 0.375rem) * 0.4848));
        min-height: 0vw;
    }
    .fs-18 {
        font-size: calc(1.6rem + ((1vw - 0.375rem) * 0.3636));
        min-height: 0vw;
    }
    .fs-16 {
        font-size: calc(1.5rem + ((1vw - 0.375rem) * 0.3636));
        min-height: 0vw;
    }
    .fs-14 {
        font-size: calc(1.35rem + ((1vw - 0.375rem) * 0.1212));
        min-height: 0vw;
    }
    .fs-13 {
        font-size: calc(1.2rem + ((1vw - 0.375rem) * 0.1212));
        min-height: 0vw;
    }
}


.list-dot li{
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
}
.list-dot li:before{
  content: "・";
  top:0;
  left: 0;
  position: absolute;
}
.lh1 {line-height: 1; }
.flex{display: flex}
.flex-wrap{flex-wrap: wrap;}
.arrow-s{position: relative;}
.arrow-s::after{
    content: '>';
    position: relative;
    display: inline-block;
    font-size: 1.2rem;
    top: calc(50% - 2em);
    right: 0;
    width: 1.8em;
    height: 1.8em;
    margin: 0.9em 0 0 0.8em;
    color: #fff;
    border-radius: 1em;
    background: var(--acc-color);
    padding: 0 0.4em;
    line-height: 1.75;
    text-align: center;
}
a.arrow-s:hover{
    text-decoration: none;
    opacity: 1;
}
a.arrow-s:hover::after{
    animation:arrow-move 0.5s cubic-bezier(0.22,0.89,0.35,1.08) forwards;
}
a.arrow-s:hover span{
    opacity:0.8;
}

    
/* アニメーション */
.anime:hover {
  transition: 0.2s; }

.pr {
  position: relative; }

/* 角丸 */
.rad {
  border-radius: 6px; }

.radL {
  border-radius: 12px; }

.boxSdw {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1); }


.clear {
  clear: both; }

.container {
  width: 100%; }

.wrapper {
  width:100%;
  margin: 0 auto;
  padding: 6rem 8rem; 
}
@media (max-width: 1200px) {
    .wrapper{
        padding: 5rem 4rem;
    }
}
@media (max-width: 767px) {
    .wrapper {
        padding: 5rem 4rem; 
    }
}
@media (max-width: 599px) {
    .arrow-s::after{
        top:-1px;
    }
}
