@charset "UTF-8";
/* =========================
reset
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  line-height: 1.7;
  text-rendering: optimizeSpeed;
  font-family: "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}

ul,
ol {
  list-style: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

iframe {
  border: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* =========================
reduce motion
========================= */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  height: 72px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  display: block;
  width: 52px;
  line-height: 0;
  z-index: 1100;
}
.site-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hamburger {
  width: 34px;
  height: 24px;
  position: relative;
  z-index: 1100;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 11px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.is-active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  bottom: 11px;
  transform: rotate(-45deg);
}

.global-nav {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 1050;
  width: 82%;
  max-width: 360px;
  height: 100vh;
  padding: 120px 32px 40px;
  background: #050505;
  transition: right 0.4s ease;
}
.global-nav.is-active {
  right: 0;
}

.global-nav__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.global-nav__list a {
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-decoration: none;
}

/* 左下固定アイコン */
.fixed-sns {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fixed-sns__item {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.fixed-sns__item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* PC */
@media screen and (min-width: 768px) {
  .site-header__inner {
    height: 86px;
    padding: 0 48px;
  }
  .site-header__logo {
    width: 64px;
  }
  .hamburger {
    display: none;
  }
  .global-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    background: transparent;
  }
  .global-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 34px;
  }
  .global-nav__list a {
    font-size: 13px;
    color: #ffffff;
    transition: color 0.3s ease;
  }
  .global-nav__list a:hover {
    color: var(--color-gold);
  }
  .fixed-sns {
    left: 28px;
    bottom: 28px;
    gap: 14px;
  }
  .fixed-sns__item {
    width: 54px;
    height: 54px;
  }
  .fixed-sns__item img {
    width: 26px;
    height: 26px;
  }
}
body.is-nav-open {
  overflow: hidden;
}

.global-nav.is-active {
  right: 0;
}

.site-footer {
  padding: 64px 0 24px;
  background: #050505;
  color: #fff;
}

.site-footer__inner {
  width: min(100% - 32px, 1200px);
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.site-footer__logo {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.site-footer__address,
.site-footer__tel,
.site-footer__time {
  font-size: 14px;
  line-height: 1.9;
  color: #ddd;
}

.site-footer__tel {
  margin-top: 12px;
}
.site-footer__tel a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__nav-title {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #aaa;
}

.site-footer__nav-list {
  display: grid;
  gap: 14px;
}
.site-footer__nav-list a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
}

.site-footer__sns {
  display: none;
}

.site-footer__copy {
  width: min(100% - 32px, 1200px);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #888;
}

@media screen and (min-width: 768px) {
  .site-footer {
    padding-top: 88px;
  }
  .site-footer__inner {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: start;
    gap: 72px;
  }
  .site-footer__sns {
    display: flex;
    gap: 16px;
  }
  .site-footer__sns a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
  }
  .site-footer__sns a:hover {
    background: #d4af37;
    border-color: #d4af37;
  }
  .site-footer__sns img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
}
.floating_sns {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating_sns_link img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.fv {
  min-height: 100svh;
  background: var(--color-black);
  display: grid;
  place-items: center;
  padding: 96px 24px 40px;
  overflow: hidden;
}

.fv__logo {
  width: min(78vw, 420px);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: fvLogoFadeIn 1.8s ease-out 0.35s forwards;
}
.fv__logo img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes fvLogoFadeIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@media screen and (min-width: 768px) {
  .fv {
    padding-top: 120px;
  }
  .fv__logo {
    width: min(42vw, 560px);
  }
}
.home-about {
  padding: 120px 0;
  background: var(--color-bg);
  overflow: hidden;
}

.home-about__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.home-about__heading {
  text-align: center;
}

.home-about__sub {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #222;
}

.home-about__title {
  margin-bottom: 28px;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.06em;
  color: var(--color-text);
}

.home-about__text {
  max-width: 760px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
}

.home-about__content {
  margin-top: 72px;
  display: grid;
  gap: 40px;
}

.home-about__image {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.home-about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.home-about__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-about__catch {
  margin-bottom: 28px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.4;
  color: #222;
}

.home-about__desc {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
}

.home-about__btn {
  width: 180px;
  height: 56px;
  background: var(--color-black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: var(--transition);
}
.home-about__btn:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

@media screen and (min-width: 768px) {
  .home-about {
    padding: 180px 0;
  }
  .home-about__sub {
    font-size: 18px;
  }
  .home-about__text {
    font-size: 16px;
  }
  .home-about__content {
    margin-top: 96px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }
  .home-about__image img {
    aspect-ratio: 4/5;
  }
  .home-about__catch {
    font-size: clamp(42px, 4vw, 64px);
  }
  .home-about__desc {
    font-size: 16px;
  }
}
.home-food {
  padding: 120px 0;
  background: var(--color-bg);
  overflow: hidden;
}

.home-food__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.home-food__content {
  display: grid;
  gap: 48px;
}

.home-food__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-food__sub {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #777;
}

.home-food__title {
  margin-bottom: 28px;
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-text);
}

.home-food__text {
  margin-bottom: 42px;
  font-size: 14px;
  line-height: 2;
  color: var(--color-text);
}

.home-food__btn {
  width: 220px;
  height: 58px;
  background: var(--color-black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: var(--transition);
}
.home-food__btn:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

.home-food__image {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.home-food__image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.home-food__image:hover img {
  transform: scale(1.04);
}

@media screen and (min-width: 768px) {
  .home-food {
    padding: 180px 0;
  }
  .home-food__content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }
  .home-food__body {
    padding-left: 24px;
  }
  .home-food__text {
    max-width: 520px;
    font-size: 16px;
  }
  .home-food__image img {
    aspect-ratio: 1/1;
  }
}
.home-drink {
  padding: 120px 0;
  background: var(--color-black-light);
  overflow: hidden;
}

.home-drink__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.home-drink__content {
  display: grid;
  gap: 48px;
}

.home-drink__image {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.home-drink__image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.home-drink__image:hover img {
  transform: scale(1.04);
}

.home-drink__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-drink__sub {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #999;
}

.home-drink__title {
  margin-bottom: 28px;
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
}

.home-drink__text {
  margin-bottom: 42px;
  font-size: 14px;
  line-height: 2;
  color: #ddd;
}

.home-drink__btn {
  width: 220px;
  height: 58px;
  background: #fff;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: var(--transition);
}
.home-drink__btn:hover {
  background: var(--color-gold);
  color: var(--color-black);
}

@media screen and (min-width: 768px) {
  .home-drink {
    padding: 180px 0;
  }
  .home-drink__content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }
  .home-drink__body {
    padding-right: 24px;
  }
  .home-drink__text {
    max-width: 520px;
    font-size: 16px;
  }
}
.home-info {
  padding: 120px 0;
  background: var(--color-bg);
}

.home-info__inner {
  width: min(100% - 32px, 1080px);
  margin: 0 auto;
}

.home-info__heading {
  margin-bottom: 64px;
  text-align: center;
}

.home-info__sub {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #777;
}

.home-info__title {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-text);
}

.home-info__content {
  background: #fff;
  border-radius: 8px;
  padding: 32px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.home-info__list {
  display: flex;
  flex-direction: column;
}

.home-info__item {
  display: grid;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid #e5e5e5;
}
.home-info__item:first-child {
  padding-top: 0;
}
.home-info__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.home-info__item dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #777;
}
.home-info__item dd {
  font-size: 15px;
  line-height: 2;
  color: #222;
}
.home-info__item a {
  transition: var(--transition);
}
.home-info__item a:hover {
  color: var(--color-gold);
}

.home-info__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.home-info__links a {
  position: relative;
  font-weight: 700;
}
.home-info__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
}

@media screen and (min-width: 768px) {
  .home-info {
    padding: 180px 0;
  }
  .home-info__content {
    padding: 56px 56px;
  }
  .home-info__item {
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
  }
  .home-info__item dt {
    font-size: 14px;
  }
  .home-info__item dd {
    font-size: 16px;
  }
}
.home-access {
  padding: 120px 0;
  background: var(--color-bg);
}

.home-access__inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.home-access__heading {
  margin-bottom: 64px;
  text-align: center;
}

.home-access__sub {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #777;
}

.home-access__title {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-text);
}

.home-access__content {
  display: grid;
  gap: 56px;
}

.home-access__map {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.home-access__map iframe {
  width: 100%;
  height: 340px;
  display: block;
  border: 0;
}

.home-access__body {
  text-align: center;
}

.home-access__logo {
  width: 220px;
  margin: 0 auto 32px;
}
.home-access__logo img {
  width: 100%;
  height: auto;
}

.home-access__name {
  margin-bottom: 24px;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.home-access__address {
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
}

.home-access__list {
  display: grid;
  gap: 18px;
  text-align: left;
}
.home-access__list div {
  display: grid;
  gap: 6px;
}
.home-access__list dt {
  font-size: 13px;
  font-weight: 700;
  color: #777;
}
.home-access__list dd {
  font-size: 15px;
  line-height: 1.8;
  color: #222;
}
.home-access__list a {
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (min-width: 768px) {
  .home-access {
    padding: 180px 0;
  }
  .home-access__content {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 90px;
  }
  .home-access__map iframe {
    height: 430px;
  }
  .home-access__logo {
    width: 280px;
  }
  .home-access__list {
    max-width: 420px;
    margin: 0 auto;
  }
  .home-access__list div {
    grid-template-columns: 90px 1fr;
    gap: 24px;
  }
  .home-access__list dt,
  .home-access__list dd {
    font-size: 16px;
  }
}
.about-fv {
  min-height: 60svh;
  background: var(--color-black);
  display: grid;
  place-items: center;
  padding: 120px 24px 80px;
}

.about-fv__logo {
  width: min(78vw, 420px);
}
.about-fv__logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* =======================
intro
======================= */
.about-intro {
  padding: 120px 0 80px;
  background: var(--color-bg);
}

.about-intro__inner {
  width: min(100% - 32px, 920px);
  margin: 0 auto;
}

.about-intro__heading {
  text-align: center;
}

.about-intro__sub {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #777;
}

.about-intro__title {
  margin-bottom: 32px;
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-text);
}

.about-intro__text {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text);
}

/* =======================
seat
======================= */
.about-seat {
  padding-bottom: 120px;
  background: var(--color-bg);
}

.about-seat__inner {
  width: min(100% - 32px, 1080px);
  margin: 0 auto;
  display: grid;
  gap: 80px;
}

.about-seat__item {
  display: grid;
  gap: 32px;
}

.about-seat__image {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.about-seat__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-seat__title {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-text);
}
.about-seat__title span {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  color: #666;
}

.about-seat__text {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
}

/* =======================
company
======================= */
.about-company {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #fff;
}

.about-company__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.76)), url("../images/company-bg.jpg") center/cover;
}

.about-company__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 1000px);
  margin: 0 auto;
}

.about-company__heading {
  margin-bottom: 56px;
  text-align: center;
}

.about-company__sub {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #aaa;
}

.about-company__title {
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 900;
}

.about-company__table {
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.about-company__table dl {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.about-company__table dl:last-child {
  border-bottom: none;
}
.about-company__table dt,
.about-company__table dd {
  padding: 18px 16px;
  font-size: 14px;
  line-height: 2;
}
.about-company__table dt {
  font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: #ddd;
}
.about-company__table dd {
  color: #fff;
}
.about-company__table a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-company__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* =======================
pc
======================= */
@media screen and (min-width: 768px) {
  .about-fv {
    min-height: 100svh;
  }
  .about-fv__logo {
    width: min(34vw, 520px);
  }
  .about-intro {
    padding: 180px 0 120px;
  }
  .about-intro__text {
    font-size: 17px;
  }
  .about-seat {
    padding-bottom: 180px;
  }
  .about-seat__item {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }
  .about-seat__item:nth-child(even) .about-seat__image {
    order: 2;
  }
  .about-seat__title {
    font-size: 42px;
  }
  .about-seat__text {
    font-size: 16px;
  }
  .about-company {
    padding: 180px 0;
  }
  .about-company__table dl {
    grid-template-columns: 220px 1fr;
  }
  .about-company__table dt,
  .about-company__table dd {
    padding: 24px 28px;
    font-size: 16px;
  }
}
.food-fv {
  padding: 150px 0 80px;
  background: #050505;
  color: #fff;
  text-align: center;
}

.food-fv__inner {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
}

.food-fv__sub {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #aaa;
}

.food-fv__title {
  margin-bottom: 28px;
  font-size: clamp(64px, 14vw, 140px);
  font-weight: 900;
  line-height: 0.9;
}

.food-fv__text {
  font-size: 15px;
  line-height: 2;
  color: #ddd;
}

.food-menu {
  padding: 80px 0 120px;
  background: var(--color-bg);
}

.food-menu__inner {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.food-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 64px;
  border: 1px solid var(--color-black-light);
}

.food-tabs__btn {
  height: 58px;
  background: #fff;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.food-tabs__btn.is-active {
  background: var(--color-black-light);
  color: #fff;
}

.food-tab-panel {
  display: none;
}
.food-tab-panel.is-active {
  display: block;
}

.food-menu__group {
  margin-bottom: 72px;
}
.food-menu__group:last-child {
  margin-bottom: 0;
}

.food-menu__group-title {
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 6px solid var(--color-black-light);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-text);
}

.food-menu__grid {
  display: grid;
  gap: 24px;
}

.food-menu__card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

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

.food-menu__body {
  padding: 22px;
}

.food-menu__name {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
}

.food-menu__desc {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.food-menu__price {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-text);
}

.course-list {
  display: grid;
  gap: 28px;
}

.course-card {
  padding: 32px 24px;
  background: #fff;
  border-radius: 8px;
  border-top: 6px solid var(--color-black-light);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.course-card__price {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 900;
  color: var(--color-text);
}

.course-card__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 900;
  color: var(--color-text);
}

.course-card__text {
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

.course-card__menu {
  display: grid;
  gap: 10px;
}
.course-card__menu li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #222;
}
.course-card__menu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  background: var(--color-black-light);
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .food-fv {
    padding: 190px 0 120px;
  }
  .food-menu {
    padding: 120px 0 180px;
  }
  .food-tabs {
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: 90px;
  }
  .food-menu__group-title {
    font-size: 36px;
  }
  .food-menu__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .course-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .course-card {
    padding: 40px;
  }
}
.drink-fv {
  padding: 150px 0 80px;
  background: #050505;
  color: #fff;
  text-align: center;
}

.drink-fv__inner {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
}

.drink-fv__sub {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #aaa;
}

.drink-fv__title {
  margin-bottom: 28px;
  font-size: clamp(64px, 14vw, 140px);
  font-weight: 900;
  line-height: 0.9;
}

.drink-fv__text {
  font-size: 15px;
  line-height: 2;
  color: #ddd;
}

.drink-intro {
  padding: 80px 0;
  background: var(--color-bg);
}

.drink-intro__inner {
  width: min(100% - 32px, 1100px);
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.drink-intro__image {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
.drink-intro__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.drink-intro__sub {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #777;
}

.drink-intro__title {
  margin-bottom: 24px;
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-text);
}

.drink-intro__text {
  font-size: 15px;
  line-height: 2;
  color: var(--color-text);
}

.drink-menu {
  padding: 80px 0 120px;
  background: var(--color-bg);
}

.drink-menu__inner {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.drink-menu__group {
  padding: 28px 22px;
  background: #fff;
  border-radius: 8px;
  border-top: 5px solid var(--color-black-light);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.drink-menu__title {
  margin-bottom: 18px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--color-text);
}

.drink-menu__note {
  margin-top: -8px;
  margin-bottom: 18px;
  font-size: 13px;
  color: #777;
}

.drink-menu__list {
  display: grid;
}

.drink-menu__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #e8e8e8;
}
.drink-menu__item:last-child {
  border-bottom: none;
}
.drink-menu__item span {
  font-size: 14px;
  line-height: 1.6;
  color: #222;
}
.drink-menu__item em {
  font-style: normal;
  font-size: 14px;
  font-weight: 900;
  color: #b47a25;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .drink-fv {
    padding: 190px 0 120px;
  }
  .drink-intro {
    padding: 120px 0;
  }
  .drink-intro__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
  }
  .drink-intro__text {
    font-size: 16px;
  }
  .drink-menu {
    padding: 120px 0 180px;
  }
  .drink-menu__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .drink-menu__group {
    padding: 36px;
  }
  .drink-menu__title {
    font-size: 32px;
  }
  .drink-menu__item span,
  .drink-menu__item em {
    font-size: 15px;
  }
}
@media screen and (min-width: 1080px) {
  .drink-menu__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.recruit-fv {
  padding: 150px 0 90px;
  background: #050505;
  color: #fff;
  text-align: center;
}

.recruit-fv__inner {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
}

.recruit-fv__sub,
.recruit-message__sub,
.recruit-job__sub,
.recruit-entry__sub {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #aaa;
}

.recruit-fv__title {
  margin-bottom: 28px;
  font-size: clamp(60px, 14vw, 140px);
  font-weight: 900;
  line-height: 0.9;
}

.recruit-fv__text {
  margin: 0 auto 40px;
  max-width: 640px;
  font-size: 15px;
  line-height: 2;
  color: #ddd;
}

.recruit-fv__buttons,
.recruit-entry__buttons {
  display: grid;
  gap: 14px;
}
.recruit-fv__buttons a,
.recruit-entry__buttons a {
  min-height: 56px;
  padding: 16px 24px;
  background: #fff;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: var(--transition);
}
.recruit-fv__buttons a:hover,
.recruit-entry__buttons a:hover {
  background: var(--color-gold);
}

.recruit-message {
  padding: 100px 0;
  background: var(--color-bg);
}

.recruit-message__inner,
.recruit-entry__inner {
  width: min(100% - 32px, 880px);
  margin: 0 auto;
  text-align: center;
}

.recruit-message__sub,
.recruit-entry__sub {
  color: #777;
}

.recruit-message__title,
.recruit-entry__title {
  margin-bottom: 28px;
  font-size: clamp(38px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.25;
  color: var(--color-text);
}

.recruit-message__text,
.recruit-entry__text {
  font-size: 15px;
  line-height: 2.1;
  color: var(--color-text);
}

.recruit-job {
  padding: 100px 0;
  background: #fff;
}

.recruit-job--dark {
  background: var(--color-black-light);
  color: #fff;
}
.recruit-job--dark .recruit-job__title {
  color: #fff;
}
.recruit-job--dark .recruit-job__sub {
  color: #aaa;
}
.recruit-job--dark .recruit-job__table {
  border-color: rgba(255, 255, 255, 0.2);
}
.recruit-job--dark .recruit-job__table div {
  border-color: rgba(255, 255, 255, 0.16);
}
.recruit-job--dark .recruit-job__table dt {
  color: #aaa;
  border-color: rgba(255, 255, 255, 0.16);
}
.recruit-job--dark .recruit-job__table dd {
  color: #fff;
}

.recruit-job__inner {
  width: min(100% - 32px, 1000px);
  margin: 0 auto;
}

.recruit-job__heading {
  margin-bottom: 48px;
  text-align: center;
}

.recruit-job__title {
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 900;
  color: var(--color-text);
}

.recruit-job__sub {
  color: #777;
}

.recruit-job__table {
  border: 1px solid #ddd;
}
.recruit-job__table div {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid #ddd;
}
.recruit-job__table div:last-child {
  border-bottom: none;
}
.recruit-job__table dt,
.recruit-job__table dd {
  padding: 18px 16px;
  font-size: 14px;
  line-height: 2;
}
.recruit-job__table dt {
  font-weight: 900;
  color: #777;
  border-right: 1px solid #ddd;
}
.recruit-job__table dd {
  color: #222;
}

.recruit-entry {
  padding: 100px 0 120px;
  background: var(--color-bg);
}

.recruit-entry__text {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .recruit-fv {
    padding: 190px 0 120px;
  }
  .recruit-fv__buttons,
  .recruit-entry__buttons {
    display: flex;
    justify-content: center;
  }
  .recruit-fv__buttons a,
  .recruit-entry__buttons a {
    min-width: 240px;
  }
  .recruit-message,
  .recruit-job,
  .recruit-entry {
    padding: 160px 0;
  }
  .recruit-message__text,
  .recruit-entry__text {
    font-size: 16px;
  }
  .recruit-job__table div {
    grid-template-columns: 220px 1fr;
  }
  .recruit-job__table dt,
  .recruit-job__table dd {
    padding: 24px 28px;
    font-size: 16px;
  }
}
.reserve-fv {
  padding: 150px 0 90px;
  background: #050505;
  color: #fff;
  text-align: center;
}

.reserve-fv__inner {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
}

.reserve-fv__sub,
.reserve-contact__sub {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #aaa;
}

.reserve-fv__title {
  margin-bottom: 28px;
  font-size: clamp(64px, 14vw, 140px);
  font-weight: 900;
  line-height: 0.9;
}

.reserve-fv__text {
  font-size: 15px;
  line-height: 2;
  color: #ddd;
}

.reserve-info {
  padding: 80px 0;
  background: var(--color-bg);
}

.reserve-info__inner {
  width: min(100% - 32px, 1100px);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.reserve-info__card {
  padding: 36px 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.reserve-info__card--dark {
  background: var(--color-black-light);
  color: #fff;
}
.reserve-info__card--dark .reserve-info__sub {
  color: #aaa;
}
.reserve-info__card--dark .reserve-info__title,
.reserve-info__card--dark .reserve-info__text,
.reserve-info__card--dark .reserve-info__list li {
  color: #fff;
}

.reserve-info__sub {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: #777;
}

.reserve-info__title {
  margin-bottom: 22px;
  font-size: clamp(30px, 6vw, 48px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-text);
}

.reserve-info__text {
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 2;
  color: #333;
}

.reserve-info__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 60px;
  padding: 16px 28px;
  background: var(--color-black-light);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.reserve-info__note {
  margin-top: 18px;
  font-size: 13px;
  color: #777;
}

.reserve-info__list {
  display: grid;
  gap: 14px;
}
.reserve-info__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.reserve-info__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.reserve-contact {
  padding: 100px 0 120px;
  background: #fff;
}

.reserve-contact__inner {
  width: min(100% - 32px, 1000px);
  margin: 0 auto;
}

.reserve-contact__heading {
  margin-bottom: 56px;
  text-align: center;
}

.reserve-contact__title {
  margin-bottom: 24px;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 900;
  color: var(--color-text);
}

.reserve-contact__text {
  font-size: 15px;
  line-height: 2;
  color: #555;
}

.reserve-form {
  display: grid;
  gap: 24px;
}

.reserve-form__group {
  display: grid;
  gap: 10px;
}
.reserve-form__group label {
  font-size: 14px;
  font-weight: 700;
  color: #222;
}
.reserve-form__group input,
.reserve-form__group textarea,
.reserve-form__group select {
  width: 100%;
  min-height: 58px;
  padding: 16px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 15px;
  border-radius: 4px;
}
.reserve-form__group textarea {
  min-height: 220px;
  resize: vertical;
}

.reserve-form__submit {
  min-height: 60px;
  margin-top: 12px;
  background: var(--color-black-light);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  transition: var(--transition);
}
.reserve-form__submit:hover {
  background: var(--color-gold);
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .reserve-fv {
    padding: 190px 0 120px;
  }
  .reserve-info {
    padding: 120px 0;
  }
  .reserve-info__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .reserve-contact {
    padding: 160px 0 180px;
  }
  .reserve-form {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .reserve-form__group--full {
    grid-column: 1/-1;
  }
  .reserve-form__submit {
    grid-column: 1/-1;
    max-width: 320px;
    width: 100%;
    margin-inline: auto;
  }
}
.contact_form {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 20px;
}
.contact_form p {
  margin-bottom: 24px;
  line-height: 1.8;
  color: #333;
}
.contact_form label {
  display: block;
  margin-bottom: 22px;
  font-size: 14px;
  color: #222;
  letter-spacing: 0.04em;
}
.contact_form input,
.contact_form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-size: 15px;
  color: #222;
  background: #fff;
}
.contact_form textarea {
  min-height: 180px;
  resize: vertical;
}
.contact_form input:focus,
.contact_form textarea:focus {
  outline: none;
  border-color: #111;
}
.contact_form input[type=submit] {
  width: auto;
  min-width: 180px;
  padding: 14px 32px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.contact_form input[type=submit]:hover {
  background: #fff;
  color: #111;
}
.contact_form .contact_note {
  margin-top: 28px;
  font-size: 13px;
  color: #666;
  line-height: 1.8;
}

:root {
  --gb-black: #0d0d0d;
  --gb-black-deep: #000;
  --gb-paper: #ebe1d2;
  --gb-paper-face: #ebe1d2 url("../images/section-bg.webp") top left / 627px auto repeat;
  --gb-paper-dark: #dde1e2;
  --gb-red: #931615;
  --gb-red-light: #b32320;
  --gb-text: #15171a;
  --gb-text-muted: #5d646a;
  --gb-white: #fff;
  --gb-white-soft: rgba(255, 255, 255, 0.76);
  --gb-line: rgba(255, 255, 255, 0.18);
  --gb-line-dark: rgba(21, 23, 26, 0.15);
  --gb-font-display: "Anton", "Impact", sans-serif;
  --gb-font-script: "Yellowtail", cursive;
  --gb-font-jp: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --gb-fs-hero: clamp(44px, 6vw, 86px);
  --gb-fs-en: clamp(34px, 4.2vw, 60px);
  --gb-fs-catch: clamp(19px, 1.9vw, 27px);
  --gb-fs-text: 14px;
  --gb-fs-small: 12px;
  --gb-section: clamp(64px, 7vw, 110px);
  --gb-container: 1160px;
  --gb-header-h: 68px;
}

@media screen and (max-width: 768px) {
  :root {
    --gb-header-h: 58px;
    --gb-fs-text: 13px;
  }
}
body.gb-page {
  font-family: var(--gb-font-jp);
  font-size: var(--gb-fs-text);
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--gb-text);
  background: var(--gb-black);
  overflow-x: hidden;
}

.gb-inner {
  width: min(100% - 48px, var(--gb-container));
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .gb-inner {
    width: calc(100% - 40px);
  }
}

.gb-heading {
  display: flex;
  flex-direction: column;
}
.gb-heading_script {
  margin: 0;
  color: var(--gb-red);
  font-family: var(--gb-font-script);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 400;
  line-height: 1.2;
  transform: rotate(-4deg);
  transform-origin: left center;
}
.gb-heading_en {
  margin: 0;
  font-family: var(--gb-font-display);
  font-size: var(--gb-fs-en);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
.gb-heading_sub {
  margin: 8px 0 0;
  font-size: var(--gb-fs-small);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.gb-heading--under .gb-heading_script {
  order: 2;
  margin-top: 6px;
}
.gb-heading--under .gb-heading_en {
  order: 1;
}
.gb-heading--under .gb-heading_sub {
  order: 3;
}
.gb-heading--invert {
  color: var(--gb-white);
}

.gb-catch {
  margin: clamp(18px, 2vw, 28px) 0 0;
  font-size: var(--gb-fs-catch);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.gb-text {
  margin: clamp(14px, 1.6vw, 20px) 0 0;
  font-size: var(--gb-fs-text);
  line-height: 2.1;
}
@media screen and (max-width: 768px) {
  .gb-text br {
    display: none;
  }
}

.gb-text--invert {
  color: var(--gb-white-soft);
}

.gb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-width: 190px;
  padding: 14px 22px;
  background: var(--gb-red);
  color: var(--gb-white);
  font-size: var(--gb-fs-small);
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: 0.3s;
}
.gb-btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  transition: 0.3s;
}
.gb-btn:hover {
  background: var(--gb-red-light);
}
.gb-btn:hover::after {
  transform: rotate(45deg) translate(2px, -2px);
}
.gb-btn--line {
  background: transparent;
  border: 1px solid var(--gb-text);
  color: var(--gb-text);
}
.gb-btn--line:hover {
  background: var(--gb-text);
  color: var(--gb-paper);
}
.gb-btn--line-invert {
  background: transparent;
  border: 1px solid var(--gb-white);
  color: var(--gb-white);
}
.gb-btn--line-invert:hover {
  background: var(--gb-white);
  color: var(--gb-black);
}
.gb-btn--wide {
  min-width: min(100%, 320px);
}

.gb-ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c9cdcf;
  overflow: hidden;
}
.gb-ph[data-img]::after {
  content: attr(data-img);
  padding: 6px 10px;
  color: #464b4e;
  font-family: var(--gb-font-jp);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: pre-wrap;
}
.gb-ph--dark {
  background: #2a2926;
}
.gb-ph:has(> img) {
  background: transparent;
}

.gb-ph--dark[data-img]::after {
  color: #9a968d;
}
.gb-ph > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gb-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.gb-watermark {
  position: absolute;
  z-index: 0;
  font-family: var(--gb-font-display);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
}

.gb-sns {
  position: fixed;
  right: clamp(12px, 1.4vw, 22px);
  bottom: clamp(16px, 2.4vw, 34px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.gb-sns.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
.gb-sns a {
  display: block;
  width: clamp(46px, 3.6vw, 56px);
  transition: var(--gb-transition);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.3));
}
.gb-sns a:hover {
  transform: translateY(-4px);
}
.gb-sns a img {
  width: 100%;
  height: auto;
  border-radius: 22%;
}
@media screen and (max-width: 768px) {
  .gb-sns {
    right: 10px;
    bottom: 12px;
    gap: 9px;
  }
  .gb-sns a {
    width: 44px;
  }
}

.gb-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--gb-header-h);
  background: var(--gb-black-deep);
  color: var(--gb-white);
}
.gb-header_inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: clamp(16px, 2vw, 28px);
}
.gb-header_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.gb-header_logo img {
  width: auto;
  height: 38px;
}
.gb-header_logo span {
  font-family: var(--gb-font-display);
  font-size: 17px;
  letter-spacing: 0.04em;
}
.gb-header_nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  margin-right: clamp(18px, 2.4vw, 34px);
}
.gb-header_nav a {
  font-size: var(--gb-fs-small);
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: 0.3s;
}
.gb-header_nav a:hover {
  color: var(--gb-red-light);
}
.gb-header_nav a[aria-current=page] {
  color: var(--gb-red-light);
}
.gb-header_cta {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 clamp(20px, 2.6vw, 40px);
  background: var(--gb-red);
  color: var(--gb-white);
  font-size: var(--gb-fs-small);
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: 0.3s;
}
.gb-header_cta:hover {
  background: var(--gb-red-light);
}
.gb-header_cta--sp {
  display: none;
}
.gb-header_toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 30px;
  height: 20px;
  margin-right: clamp(16px, 2vw, 24px);
}
.gb-header_toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gb-white);
  transition: 0.3s;
}
.gb-header_toggle span:nth-child(1) {
  top: 0;
}
.gb-header_toggle span:nth-child(2) {
  top: 9px;
}
.gb-header_toggle span:nth-child(3) {
  top: 18px;
}
.gb-header_toggle[aria-expanded=true] span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.gb-header_toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.gb-header_toggle[aria-expanded=true] span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}
.gb-header_overlay {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.gb-header_overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .gb-header_logo img {
    height: 30px;
  }
  .gb-header_toggle {
    display: block;
    margin-left: auto;
  }
  .gb-header > .gb-header_inner > .gb-header_cta {
    display: none;
  }
  .gb-header_nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(82vw, 360px);
    margin: 0;
    padding: calc(var(--gb-header-h) + 26px) 26px 60px;
    background: var(--gb-black-deep);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .gb-header_nav.is-open {
    transform: translateX(0);
  }
  .gb-header_nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 2px;
    border-bottom: 1px solid var(--gb-line);
    font-size: 14px;
  }
  .gb-header_nav a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
  }
  .gb-header_cta--sp {
    display: flex;
    justify-content: center;
    height: auto;
    margin-top: 26px;
    padding: 16px 20px;
  }
  .gb-header_cta--sp::after {
    content: none;
  }
}

body.is-nav-open {
  overflow: hidden;
}

.gb-footer {
  padding: clamp(48px, 5vw, 72px) 0 26px;
  background: var(--gb-black-deep);
  color: var(--gb-white);
}
.gb-footer_layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
}
.gb-footer_info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.gb-footer_logo img {
  width: 62px;
  height: auto;
}
.gb-footer_name {
  margin: 0;
  font-family: var(--gb-font-display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.gb-footer_address {
  margin: 8px 0 0;
  color: var(--gb-white-soft);
  font-size: var(--gb-fs-small);
  line-height: 2;
}
.gb-footer_nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 18px;
}
.gb-footer_nav a {
  display: block;
  padding: 6px 0;
  color: var(--gb-white-soft);
  font-size: var(--gb-fs-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: 0.3s;
}
.gb-footer_nav a:hover {
  color: var(--gb-red-light);
}
.gb-footer_bottom {
  margin-top: clamp(30px, 3.4vw, 48px);
  padding-top: 20px;
  border-top: 1px solid var(--gb-line);
  text-align: center;
}
.gb-footer_copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .gb-footer_layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .gb-footer_nav {
    gap: 0 18px;
  }
  .gb-footer_nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gb-line);
  }
  .gb-footer_nav a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
  }
}

.gb-fv {
  min-height: 100svh;
  padding: calc(var(--gb-header-h) + 40px) 24px 40px;
  display: grid;
  place-items: center;
  background: var(--gb-black-deep);
  overflow: hidden;
}
.gb-fv_logo {
  width: min(78vw, 420px);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: gbFvFadeIn 1.8s ease-out 0.35s forwards;
}
.gb-fv_logo img {
  width: 100%;
  height: auto;
}
.gb-fv_catch {
  margin: clamp(18px, 2.4vw, 30px) 0 0;
  color: var(--gb-white-soft);
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: 0.14em;
  text-align: center;
  opacity: 0;
  animation: gbFvFadeIn 1.6s ease-out 0.9s forwards;
}
.gb-fv--sub {
  min-height: clamp(280px, 44svh, 440px);
  padding: calc(var(--gb-header-h) + 26px) 24px 32px;
}
.gb-fv--sub .gb-fv_logo {
  width: min(56vw, 290px);
}
@media screen and (max-width: 768px) {
  .gb-fv--sub {
    min-height: clamp(240px, 38svh, 340px);
  }
  .gb-fv--sub .gb-fv_logo {
    width: min(62vw, 240px);
  }
}

@keyframes gbFvFadeIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.gb-about {
  position: relative;
  background: var(--gb-paper-face);
  overflow: hidden;
}
.gb-about_layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}
.gb-about_photo {
  min-height: clamp(420px, 42vw, 620px);
}
.gb-about_body {
  position: relative;
  padding: clamp(48px, 5vw, 84px) clamp(24px, 4vw, 64px) clamp(84px, 9vw, 130px);
}
.gb-about_shots {
  position: absolute;
  top: clamp(40px, 5vw, 70px);
  right: 0;
  z-index: 2;
  width: clamp(200px, 23vw, 310px);
}
.gb-about_shot {
  padding: 8px;
  background: var(--gb-white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.gb-about_shot:nth-child(1) {
  transform: rotate(-2.5deg);
}
.gb-about_shot:nth-child(2) {
  margin-top: -14px;
  margin-left: 26px;
  transform: rotate(2deg);
}
.gb-about_shot .gb-ph {
  aspect-ratio: 4/3;
}
.gb-about_stamp {
  position: absolute;
  right: clamp(16px, 3vw, 54px);
  bottom: clamp(20px, 3vw, 46px);
  z-index: 3;
  width: clamp(92px, 9vw, 128px);
  opacity: 0.34;
  transform: rotate(-8deg);
}
.gb-about_stamp img {
  width: 100%;
  height: auto;
}
.gb-about_button {
  margin-top: clamp(24px, 2.6vw, 34px);
}
@media screen and (max-width: 1024px) {
  .gb-about_layout {
    grid-template-columns: 1fr;
  }
  .gb-about_photo {
    min-height: clamp(240px, 32vw, 320px);
  }
  .gb-about_shots {
    position: static;
    width: min(88%, 420px);
    margin-top: 28px;
  }
  .gb-about_stamp {
    position: static;
    width: 96px;
    margin: 20px 0 0 auto;
    transform: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .gb-about_body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(240px, 32vw, 330px);
    column-gap: clamp(24px, 4vw, 48px);
    align-items: start;
    padding-bottom: clamp(48px, 6vw, 76px);
  }
  .gb-about_main {
    grid-column: 1;
    grid-row: 1;
  }
  .gb-about_shots {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    margin-top: 6px;
  }
  .gb-about_stamp {
    grid-column: 2;
    grid-row: 2;
    width: 104px;
    margin: 14px 8px 0 auto;
  }
}

.gb-menu {
  position: relative;
  padding: var(--gb-section) 0;
  overflow: hidden;
}
.gb-menu_layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.5fr);
  grid-template-rows: auto auto;
  gap: clamp(18px, 2vw, 26px) clamp(24px, 3vw, 54px);
  align-items: center;
}
.gb-menu_body {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
}
.gb-menu_button {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}
.gb-menu_photos {
  grid-column: 2;
  grid-row: 1/3;
}
.gb-menu_photos {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  height: clamp(320px, 34vw, 470px);
}
.gb-menu_item {
  min-height: 0;
}
.gb-menu_item--main {
  grid-row: 1/3;
}
.gb-menu_photo {
  height: 100%;
  max-width: 100%;
}
.gb-menu_caption {
  display: none;
}
.gb-menu--dark {
  background: var(--gb-black);
  color: var(--gb-white);
}
.gb-menu--dark .gb-watermark {
  right: clamp(-10px, 1vw, 30px);
  bottom: clamp(20px, 4vw, 70px);
  color: rgba(255, 255, 255, 0.07);
  text-align: right;
}
.gb-menu--light {
  background: var(--gb-paper-face);
}
.gb-menu--light .gb-watermark {
  right: clamp(-10px, 1vw, 24px);
  bottom: clamp(20px, 4vw, 60px);
  color: rgba(28, 26, 24, 0.07);
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .gb-menu_layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 26px;
  }
  .gb-menu_body, .gb-menu_button, .gb-menu_photos {
    grid-column: 1;
    grid-row: auto;
  }
  .gb-menu_photos {
    order: 2;
    height: clamp(300px, 46vw, 420px);
  }
  .gb-menu_button {
    order: 3;
  }
}
@media screen and (max-width: 768px) {
  .gb-menu_photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 16px 12px;
    height: auto;
  }
  .gb-menu_item--main {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .gb-menu_photo {
    height: auto;
    aspect-ratio: 4/3;
  }
  .gb-menu_item--main .gb-menu_photo {
    aspect-ratio: 16/10;
  }
  .gb-menu_caption {
    display: none;
  }
  .gb-menu_button {
    display: flex;
  }
  .gb-menu_button .gb-btn {
    width: 100%;
  }
  .gb-menu .gb-watermark {
    display: none;
  }
}

.gb-instagram {
  padding: var(--gb-section) 0;
  background: var(--gb-black);
  color: var(--gb-white);
}
.gb-instagram_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.gb-instagram_account {
  margin: 10px 0 0;
  color: var(--gb-white-soft);
  font-size: var(--gb-fs-small);
  letter-spacing: 0.1em;
}
.gb-instagram_list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.gb-instagram_item {
  aspect-ratio: 1;
}
.gb-instagram_button {
  display: flex;
  justify-content: center;
  margin-top: clamp(26px, 3vw, 40px);
}
@media screen and (max-width: 1024px) {
  .gb-instagram_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .gb-instagram_head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .gb-instagram_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
}

.gb-recruit {
  position: relative;
  background: var(--gb-black-deep);
  color: var(--gb-white);
  overflow: hidden;
}
.gb-recruit_layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}
.gb-recruit_photo {
  min-height: clamp(360px, 34vw, 500px);
}
.gb-recruit_body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5vw, 84px) clamp(24px, 4vw, 64px);
}
.gb-recruit_stamp {
  position: absolute;
  right: clamp(14px, 3vw, 58px);
  top: 50%;
  z-index: 0;
  width: clamp(160px, 19vw, 270px);
  transform: translateY(-50%);
  pointer-events: none;
}
.gb-recruit_stamp img {
  width: 100%;
  height: auto;
}
.gb-recruit_body > *:not(.gb-recruit_stamp) {
  position: relative;
  z-index: 1;
}
.gb-recruit_button {
  margin-top: clamp(24px, 2.6vw, 34px);
}
@media screen and (max-width: 1024px) {
  .gb-recruit_layout {
    grid-template-columns: 1fr;
  }
  .gb-recruit_photo {
    min-height: 260px;
  }
  .gb-recruit_stamp {
    top: clamp(16px, 3vw, 34px);
    right: clamp(10px, 2vw, 28px);
    width: clamp(124px, 26vw, 210px);
    transform: none;
  }
}
@media screen and (max-width: 599px) {
  .gb-recruit_stamp {
    top: auto;
    bottom: clamp(26px, 7vw, 44px);
    right: clamp(16px, 5vw, 26px);
    width: clamp(126px, 35vw, 160px);
  }
}

.gb-info {
  padding: var(--gb-section) 0;
  background: var(--gb-paper-face);
}
.gb-info_layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
}
.gb-info_layout--single {
  grid-template-columns: minmax(0, 1fr);
}
.gb-info_access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 34px);
  align-items: start;
}
.gb-info_title {
  grid-column: 1/-1;
  margin: 0 0 clamp(16px, 2vw, 24px);
  font-family: var(--gb-font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.gb-info_name {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.gb-info_list {
  margin: 0;
  font-size: var(--gb-fs-small);
  line-height: 1.9;
}
.gb-info_row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 8px;
  padding: 6px 0;
}
.gb-info_row dt {
  font-weight: 700;
  letter-spacing: 0.1em;
}
.gb-info_row dd {
  margin: 0;
  color: var(--gb-text-muted);
}
.gb-info_map {
  aspect-ratio: 4/3;
}
.gb-info_map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.gb-info_news {
  padding-left: clamp(0px, 2vw, 34px);
  border-left: 1px solid var(--gb-line-dark);
}
.gb-info_newshead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(14px, 1.8vw, 22px);
}
.gb-info_newslist {
  border-top: 1px solid var(--gb-line-dark);
}
.gb-info_newsitem {
  border-bottom: 1px solid var(--gb-line-dark);
}
.gb-info_newslink {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 12px;
  align-items: center;
  gap: 10px;
  padding: 13px 2px;
  transition: 0.3s;
}
.gb-info_newslink:hover {
  color: var(--gb-red);
}
.gb-info_newslink::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.gb-info_newsdate {
  display: block;
  color: var(--gb-text-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.gb-info_newstitle {
  display: block;
  font-size: var(--gb-fs-small);
  line-height: 1.7;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 1024px) {
  .gb-info_layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .gb-info_news {
    padding-left: 0;
    border-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .gb-info {
    padding-bottom: 0;
  }
  .gb-info_access {
    grid-template-columns: 1fr;
  }
  .gb-info_news {
    margin-inline: -20px;
    padding: 40px 20px;
    background: var(--gb-black);
    color: var(--gb-white);
  }
  .gb-info_newslist, .gb-info_newsitem {
    border-color: var(--gb-line);
  }
  .gb-info_newsdate {
    color: var(--gb-white-soft);
  }
  .gb-info_newslink:hover {
    color: var(--gb-red-light);
  }
  .gb-info_newsbutton {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }
}
.gb-info_newsbutton {
  display: none;
}

.gb-contact {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(340px, 34vw, 460px);
  padding: var(--gb-section) 0;
  color: var(--gb-white);
  overflow: hidden;
}
.gb-contact_bg {
  position: absolute;
  inset: 0;
}
.gb-contact_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.75);
}
.gb-contact_bg::after {
  align-self: flex-start;
  margin-top: 26px;
}
.gb-contact_inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.gb-contact_script {
  margin: 0 0 6px;
  color: var(--gb-white);
  font-family: var(--gb-font-script);
  font-size: clamp(15px, 1.6vw, 20px);
}
.gb-contact_title {
  margin: 0;
  font-family: var(--gb-font-display);
  font-size: var(--gb-fs-hero);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}
.gb-contact_lead {
  margin: 14px 0 0;
  color: var(--gb-white-soft);
  font-size: var(--gb-fs-text);
}
.gb-contact_buttons {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 24px);
  margin-top: clamp(26px, 3vw, 40px);
}
@media screen and (max-width: 768px) {
  .gb-contact_buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

.gb-pagefv--about .gb-pagefv_shots {
  position: absolute;
  right: clamp(26px, 5vw, 96px);
  bottom: clamp(22px, 3vw, 52px);
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: clamp(10px, 1.2vw, 18px);
  width: clamp(280px, 34%, 460px);
}
.gb-pagefv--about .gb-pagefv_shot {
  flex: 1 1 0;
  padding: 7px;
  background: var(--gb-white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45);
}
.gb-pagefv--about .gb-pagefv_shot:nth-child(1) {
  transform: rotate(-2.5deg);
}
.gb-pagefv--about .gb-pagefv_shot:nth-child(2) {
  margin-bottom: clamp(12px, 1.6vw, 26px);
  transform: rotate(2deg);
}
.gb-pagefv--about .gb-pagefv_shot .gb-ph {
  aspect-ratio: 4/3;
}
.gb-pagefv--about .gb-pagefv_wanted {
  position: absolute;
  right: clamp(-34px, -1.5vw, -6px);
  bottom: clamp(12px, 2vw, 44px);
  z-index: 4;
  width: clamp(150px, 17vw, 250px);
  opacity: 0.92;
  pointer-events: none;
}
.gb-pagefv--about .gb-pagefv_wanted img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .gb-pagefv--about .gb-pagefv_shots,
  .gb-pagefv--about .gb-pagefv_wanted {
    display: none;
  }
}

.gb-story {
  padding: var(--gb-section) 0;
  background: var(--gb-black);
  color: var(--gb-white);
}
.gb-story_layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 4vw, 64px);
  align-items: start;
}
.gb-story_title {
  margin: 0;
  font-family: var(--gb-font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.gb-story_stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: clamp(14px, 1.8vw, 22px) 0 0;
}
.gb-story_stars span {
  width: 9px;
  height: 9px;
  background: var(--gb-red-light);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.gb-story_stars::after {
  content: "";
  width: clamp(40px, 6vw, 90px);
  height: 1px;
  margin-left: 8px;
  background: var(--gb-red-light);
}
.gb-story_photos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
}
.gb-story_photo {
  aspect-ratio: 4/3;
  border: 2px solid var(--gb-white);
}
.gb-story_photo--main {
  grid-column: 1/-1;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 1024px) {
  .gb-story_layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.gb-store {
  padding: 0 0 var(--gb-section);
  background: var(--gb-black);
  color: var(--gb-white);
}
.gb-store_label {
  display: inline-block;
  margin: 0;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gb-red-light);
  font-size: var(--gb-fs-small);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.gb-store_title {
  margin: clamp(12px, 1.4vw, 18px) 0 0;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.gb-store_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  margin: clamp(24px, 3vw, 40px) 0 0;
}
.gb-store_item {
  position: relative;
}
.gb-store_photo {
  aspect-ratio: 3/2;
}
.gb-store_badge {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 6px 12px;
  background: var(--gb-red);
  font-size: var(--gb-fs-small);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.gb-store_party {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 3vw, 46px);
  align-items: center;
  margin-top: clamp(24px, 3vw, 40px);
}
.gb-store_partyphoto {
  aspect-ratio: 4/3;
}
.gb-store_partylabel {
  margin: 0;
  font-family: var(--gb-font-display);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 400;
  letter-spacing: 0.06em;
}
.gb-store_partytitle {
  margin: clamp(10px, 1.2vw, 16px) 0 0;
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.gb-store_features {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
  margin: clamp(18px, 2.2vw, 28px) 0 0;
}
.gb-store_features li {
  position: relative;
  padding-left: 1.3em;
  font-size: var(--gb-fs-text);
  font-weight: 500;
  line-height: 1.9;
}
.gb-store_features li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gb-red-light);
}
@media screen and (max-width: 768px) {
  .gb-store_list {
    grid-template-columns: minmax(0, 1fr);
  }
  .gb-store_party {
    grid-template-columns: minmax(0, 1fr);
  }
}

.gb-points {
  padding: var(--gb-section) 0;
  background: var(--gb-paper-face);
}
.gb-points_list {
  --point-gap: clamp(20px, 3vw, 48px);
  --point-rowgap: clamp(26px, 6vw, 40px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--point-gap);
  row-gap: var(--point-rowgap);
}
.gb-points_list > li {
  position: relative;
}
.gb-points_list > li + li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--point-gap) / -2);
  width: 1px;
  background: var(--gb-line-dark);
}
.gb-points_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  transition: var(--gb-transition);
}
.gb-points_item:hover {
  transform: translateY(-4px);
}
.gb-points_item:hover .gb-points_name {
  color: var(--gb-red-light);
}
.gb-points_item:hover .gb-points_more {
  background: var(--gb-red);
  color: var(--gb-white);
}
.gb-points_item:hover .gb-points_more::after {
  transform: rotate(45deg) translate(2px, -2px);
}
.gb-points_item:active {
  transform: translateY(-1px);
}
.gb-points_item:active .gb-points_more {
  background: var(--gb-red-light);
  border-color: var(--gb-red-light);
  color: var(--gb-white);
}
.gb-points_more {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding: 9px 15px;
  border: 1px solid var(--gb-red);
  color: var(--gb-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  transition: var(--gb-transition);
}
.gb-points_more::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  transition: var(--gb-transition);
}
.gb-points_icon {
  display: block;
  width: clamp(54px, 5vw, 74px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.gb-points_icon > img {
  object-fit: contain;
}
.gb-points_name {
  margin: clamp(12px, 1.4vw, 18px) 0 0;
  color: var(--gb-red);
  font-family: var(--gb-font-display);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.gb-points_text {
  margin: clamp(8px, 1vw, 12px) 0 clamp(14px, 1.8vw, 22px);
  color: var(--gb-text-muted);
  font-size: var(--gb-fs-small);
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .gb-points_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gb-points_list > li:nth-child(odd)::before {
    content: none;
  }
  .gb-points_list > li:nth-child(n+3)::after {
    content: "";
    position: absolute;
    top: calc(var(--point-rowgap) / -2);
    height: 1px;
    background: var(--gb-line-dark);
  }
  .gb-points_list > li:nth-child(odd)::after {
    left: 0;
    right: calc(var(--point-gap) / -2);
  }
  .gb-points_list > li:nth-child(even)::after {
    left: calc(var(--point-gap) / -2);
    right: 0;
  }
  .gb-points_text br {
    display: none;
  }
}

.gb-pagefv {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 44vw, 620px);
  padding: calc(var(--gb-header-h) + clamp(40px, 5vw, 70px)) 0 clamp(40px, 5vw, 70px);
  background: var(--gb-black-deep);
  color: var(--gb-white);
  overflow: hidden;
}
.gb-pagefv_photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 68%;
}
.gb-pagefv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(95deg, var(--gb-black-deep) 24%, rgba(5, 5, 5, 0.82) 37%, rgba(5, 5, 5, 0.12) 58%, rgba(5, 5, 5, 0.3) 100%);
  pointer-events: none;
}
.gb-pagefv_inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, var(--gb-container));
  margin-inline: auto;
}
.gb-pagefv_body {
  position: relative;
  max-width: 540px;
}
.gb-pagefv .gb-heading_en {
  font-size: var(--gb-fs-hero);
}
.gb-pagefv .gb-heading_sub {
  color: var(--gb-red-light);
}
.gb-pagefv_text {
  margin: clamp(14px, 1.6vw, 20px) 0 0;
  color: var(--gb-white-soft);
  font-size: var(--gb-fs-small);
  line-height: 2.1;
}
.gb-pagefv_stamp {
  position: absolute;
  right: clamp(-40px, -2vw, 0px);
  bottom: clamp(-30px, -2vw, -10px);
  width: clamp(86px, 8.5vw, 124px);
  opacity: 0.5;
  filter: invert(1);
}
.gb-pagefv_stamp img {
  width: 100%;
  height: auto;
}
.gb-pagefv_neon {
  position: absolute;
  top: clamp(90px, 12vw, 150px);
  right: clamp(20px, 3vw, 60px);
  z-index: 2;
  margin: 0;
  color: #ffdcd5;
  font-family: var(--gb-font-display);
  font-size: clamp(24px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-align: right;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.9), 0 0 12px rgba(255, 90, 70, 0.95), 0 0 26px rgba(224, 40, 30, 0.85), 0 0 52px rgba(200, 20, 15, 0.7);
  pointer-events: none;
  user-select: none;
}
@media screen and (max-width: 1024px) {
  .gb-pagefv {
    min-height: clamp(380px, 52vw, 460px);
  }
  .gb-pagefv_photo {
    width: 100%;
  }
  .gb-pagefv::before {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.72) 45%, rgba(5, 5, 5, 0.88) 100%);
  }
  .gb-pagefv_body {
    max-width: 620px;
  }
  .gb-pagefv_neon {
    top: auto;
    bottom: clamp(16px, 3vw, 30px);
  }
}
@media screen and (max-width: 768px) {
  .gb-pagefv {
    padding-bottom: clamp(56px, 12vw, 80px);
  }
  .gb-pagefv_text br {
    display: none;
  }
  .gb-pagefv_stamp {
    right: -6px;
    bottom: -30px;
    width: 64px;
    opacity: 0.38;
  }
  .gb-pagefv_neon {
    top: calc(var(--gb-header-h) + 12px);
    right: 14px;
    bottom: auto;
    font-size: 15px;
    opacity: 0.9;
  }
}

.gb-food {
  background: var(--gb-black);
}
.gb-food_layout {
  display: grid;
  grid-template-columns: clamp(212px, 21vw, 292px) minmax(0, 1fr);
  align-items: stretch;
}
.gb-food_side {
  padding: clamp(34px, 4vw, 56px) clamp(18px, 2vw, 30px) clamp(40px, 5vw, 70px) clamp(20px, 2.4vw, 34px);
  color: var(--gb-white);
}
.gb-food_sidein {
  position: sticky;
  top: calc(var(--gb-header-h) + 20px);
}
.gb-food_stars {
  display: flex;
  gap: 5px;
  margin: 0 0 8px;
}
.gb-food_stars span {
  width: 9px;
  height: 9px;
  background: var(--gb-red-light);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.gb-food_sidetitle {
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: var(--gb-red-light);
  font-family: var(--gb-font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}
.gb-food_cats {
  display: flex;
  flex-direction: column;
}
.gb-food_cats > li + li {
  border-top: 1px solid var(--gb-line);
}
.gb-food_cat {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  background: transparent;
  border: 0;
  color: var(--gb-white);
  text-align: left;
  cursor: pointer;
  transition: 0.25s;
}
.gb-food_cat::after {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-left: auto;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  opacity: 0.6;
  transform: rotate(45deg);
  transition: 0.25s;
}
.gb-food_cat:hover {
  background: rgba(255, 255, 255, 0.07);
}
.gb-food_cat:hover::after {
  opacity: 1;
  transform: rotate(45deg) translate(2px, -2px);
}
.gb-food_cat.is-current {
  background: var(--gb-red);
}
.gb-food_cat.is-current::after {
  opacity: 1;
}
.gb-food_catname {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gb-food_caten {
  font-family: var(--gb-font-display);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.gb-food_catjp {
  color: var(--gb-white-soft);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.gb-food_takeout {
  margin-top: clamp(20px, 2.4vw, 30px);
  padding: clamp(16px, 1.8vw, 22px) clamp(12px, 1.4vw, 18px);
  border: 1px solid var(--gb-line);
  text-align: center;
}
.gb-food_takeouttitle {
  margin: 0;
  color: var(--gb-red-light);
  font-family: var(--gb-font-display);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.04em;
}
.gb-food_takeouttext {
  margin: 10px 0 0;
  color: var(--gb-white-soft);
  font-size: 11px;
  line-height: 1.9;
}
.gb-food_main {
  padding: clamp(24px, 2.6vw, 34px) clamp(22px, 3vw, 46px) clamp(40px, 5vw, 70px);
  background: var(--gb-paper-face);
}
.gb-food_tools {
  display: flex;
  justify-content: flex-end;
}
.gb-food_viewall {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--gb-line-dark);
  color: var(--gb-text);
  font-family: var(--gb-font-jp);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: 0.25s;
}
.gb-food_viewall:hover {
  background: var(--gb-text);
  color: var(--gb-paper);
}
.gb-food_group {
  display: grid;
  grid-template-columns: clamp(148px, 15vw, 202px) minmax(0, 1fr);
  gap: clamp(16px, 2.2vw, 34px);
  padding: clamp(20px, 2.4vw, 32px) 0;
  border-top: 1px solid var(--gb-line-dark);
}
.gb-food_group.is-first {
  border-top: 0;
}
.gb-food_group.is-hidden {
  display: none;
}
.gb-food_groupen {
  margin: 0;
  font-family: var(--gb-font-display);
  font-size: clamp(19px, 2.1vw, 27px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.gb-food_groupjp {
  margin: 6px 0 0;
  color: var(--gb-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.gb-food_grouptext {
  margin: clamp(10px, 1.2vw, 14px) 0 0;
  color: var(--gb-text-muted);
  font-size: 11px;
  line-height: 1.9;
}
.gb-food_list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.gb-food_item {
  padding: clamp(20px, 2.2vw, 30px) 0;
  border-bottom: 1px solid var(--gb-line-dark);
}
.gb-food_item:first-child {
  padding-top: 0;
}
.gb-food_item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.gb-food_photo {
  width: 36%;
  max-width: 360px;
  aspect-ratio: 4/3;
}
.gb-food_body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "name name" "desc price";
  column-gap: clamp(16px, 2vw, 32px);
  align-items: baseline;
  padding: clamp(12px, 1.4vw, 18px) 0 0;
}
.gb-food_name {
  grid-area: name;
  margin: 0 0 8px;
  color: var(--gb-text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
}
.gb-food_desc {
  grid-area: desc;
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}
.gb-food_price {
  grid-area: price;
  margin: 0;
  color: var(--gb-text);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}
.gb-food_empty {
  margin: clamp(20px, 3vw, 34px) 0 0;
  color: var(--gb-text-muted);
  font-size: var(--gb-fs-text);
  text-align: center;
}
.gb-food_note {
  margin: clamp(18px, 2vw, 26px) 0 0;
  color: var(--gb-text-muted);
  font-size: 11px;
  line-height: 1.8;
}
.gb-food_select {
  position: relative;
  display: none;
  max-width: 460px;
}
.gb-food_selectbtn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: var(--gb-red);
  border: 0;
  color: var(--gb-white);
  text-align: left;
  cursor: pointer;
  transition: 0.25s;
}
.gb-food_selectbtn::after {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: 0.25s;
}
.gb-food_selectbtn:hover {
  background: var(--gb-red-light);
}
.gb-food_selectlabel {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.gb-food_select.is-open .gb-food_selectbtn::after {
  transform: translateY(2px) rotate(-135deg);
}
.gb-food_selectpanel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 95;
  max-height: min(58vh, 420px);
  background: var(--gb-black-deep);
  border: 1px solid var(--gb-line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.gb-food_selectpanel .gb-food_cat {
  width: 100%;
  padding: 11px 12px;
}
.gb-food_selectpanel .gb-food_cat::after {
  content: none;
}
.gb-food_selectpanel > * + * {
  border-top: 1px solid var(--gb-line);
}
.gb-food_float {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  padding: 10px clamp(14px, 4vw, 26px);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(5, 5, 5, 0.94);
  border-top: 1px solid var(--gb-line);
  opacity: 0;
  visibility: hidden;
  transform: translateY(110%);
  transition: transform 0.32s ease, opacity 0.32s ease, visibility 0.32s;
}
.gb-food_float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.gb-food_float .gb-food_select {
  display: block;
  max-width: none;
}
.gb-food_float .gb-food_selectpanel {
  top: auto;
  bottom: calc(100% + 6px);
}
@media screen and (max-width: 1024px) {
  .gb-food_layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .gb-food_select--inline {
    display: block;
  }
  .gb-food.is-enhanced .gb-food_cats {
    display: none;
  }
  .gb-food_float {
    display: block;
  }
  .gb-food_side {
    padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 40px) clamp(24px, 4vw, 34px);
  }
  .gb-food_sidein {
    position: static;
  }
  .gb-food_cats {
    flex-direction: row;
    margin-inline: calc(clamp(20px, 4vw, 40px) * -1);
    padding-inline: clamp(20px, 4vw, 40px);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .gb-food_cats::-webkit-scrollbar {
    display: none;
  }
  .gb-food_cats > li {
    flex: 0 0 auto;
  }
  .gb-food_cats > li + li {
    border-top: 0;
    border-left: 1px solid var(--gb-line);
  }
  .gb-food_cat {
    width: auto;
    padding: 9px 14px;
  }
  .gb-food_cat::after {
    content: none;
  }
  .gb-food_takeout {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 18px);
    padding: 14px 16px;
    text-align: left;
  }
  .gb-food_takeouttitle {
    flex: 0 0 auto;
    margin: 0;
  }
  .gb-food_takeouttext {
    margin: 0;
  }
  .gb-food_takeouttext br {
    display: none;
  }
  .gb-food_main {
    padding: clamp(22px, 4vw, 32px) clamp(20px, 4vw, 40px) clamp(40px, 7vw, 64px);
  }
}
@media screen and (max-width: 768px) {
  .gb-food_group {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0 0 clamp(18px, 4vw, 26px);
    border-top: 0;
  }
  .gb-food_group + .gb-food_group {
    margin-top: clamp(24px, 6vw, 34px);
  }
  .gb-food_grouphead {
    margin: 0 calc(clamp(20px, 4vw, 40px) * -1) 18px;
    padding: 13px clamp(20px, 4vw, 40px) 15px;
    background: var(--gb-black);
    color: var(--gb-white);
  }
  .gb-food_groupen {
    color: var(--gb-white);
    font-size: 22px;
  }
  .gb-food_groupjp {
    margin-top: 3px;
    color: var(--gb-red-light);
  }
  .gb-food_grouptext {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.7);
  }
  .gb-food_item {
    padding: 18px 0;
  }
  .gb-food_photo {
    width: 52%;
    max-width: none;
  }
  .gb-food_body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "name" "desc" "price";
    row-gap: 5px;
    padding-top: 12px;
  }
  .gb-food_name {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
  }
  .gb-food_desc {
    font-size: 13px;
    line-height: 1.7;
  }
  .gb-food_price {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  body.has-foodfloat .gb-sns {
    bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  }
}
.gb-food--drink .gb-food_body {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "name price" "desc desc";
  row-gap: 6px;
}
.gb-food--drink .gb-food_name {
  margin: 0;
}
.gb-food--drink .gb-food_desc {
  max-width: 60ch;
}
@media screen and (max-width: 768px) {
  .gb-food--drink .gb-food_body {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "name price" "desc desc";
    column-gap: 14px;
    row-gap: 5px;
  }
}

.gb-pagefv_links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 2.4vw, 30px);
}

.gb-msg {
  padding: var(--gb-section) 0;
  background: var(--gb-paper-face);
}
.gb-msg_layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
}
.gb-msg_label {
  display: inline-block;
  margin: 0;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gb-red);
  font-size: var(--gb-fs-small);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.gb-msg_title {
  margin: clamp(14px, 1.8vw, 22px) 0 0;
  font-size: var(--gb-fs-catch);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
}
.gb-msg_movie {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.gb-msg_movie video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .gb-msg_layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.gb-job {
  padding: var(--gb-section) 0;
  background: var(--gb-black);
  color: var(--gb-white);
  scroll-margin-top: calc(var(--gb-header-h) + 16px);
}
.gb-job_layout {
  display: grid;
  grid-template-columns: clamp(190px, 22vw, 300px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.gb-job_script {
  margin: 0;
  color: var(--gb-red-light);
  font-family: var(--gb-font-script);
  font-size: clamp(17px, 1.7vw, 23px);
  font-weight: 400;
  line-height: 1.2;
  transform: rotate(-4deg);
  transform-origin: left center;
}
.gb-job_en {
  margin: 6px 0 0;
  font-family: var(--gb-font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.gb-job_title {
  margin: clamp(10px, 1.2vw, 14px) 0 0;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.gb-job_table {
  display: grid;
}
.gb-job_row {
  display: grid;
  grid-template-columns: clamp(96px, 11vw, 140px) minmax(0, 1fr);
  gap: clamp(10px, 2vw, 24px);
  padding: clamp(12px, 1.4vw, 16px) 0;
  border-bottom: 1px solid var(--gb-line);
}
.gb-job_row:first-child {
  border-top: 1px solid var(--gb-line);
}
.gb-job_label {
  margin: 0;
  color: var(--gb-red-light);
  font-size: var(--gb-fs-small);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}
.gb-job_value {
  margin: 0;
  font-size: var(--gb-fs-text);
  line-height: 2;
}
.gb-job_note {
  margin: clamp(14px, 1.8vw, 20px) 0 0;
  color: var(--gb-white-soft);
  font-size: var(--gb-fs-small);
  line-height: 1.9;
}
.gb-job--light {
  background: var(--gb-paper-face);
  color: var(--gb-text);
}
.gb-job--light .gb-job_row {
  border-color: var(--gb-line-dark);
}
.gb-job--light .gb-job_label {
  color: var(--gb-red);
}
.gb-job--light .gb-job_note {
  color: var(--gb-text-muted);
}
@media screen and (max-width: 768px) {
  .gb-job_layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .gb-job_row {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }
  .gb-job_label {
    line-height: 1.6;
  }
  .gb-job_value {
    line-height: 1.9;
  }
}

.gb-call {
  padding: var(--gb-section) 0 clamp(30px, 4vw, 48px);
  background: var(--gb-paper-face);
  text-align: center;
}
.gb-call_label {
  margin: 0;
  color: var(--gb-red);
  font-family: var(--gb-font-script);
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.2;
}
.gb-call_number {
  display: inline-block;
  margin: clamp(8px, 1.2vw, 14px) 0 0;
  color: var(--gb-text);
  font-family: var(--gb-font-display);
  font-size: clamp(38px, 6.6vw, 82px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  transition: 0.25s;
}
.gb-call_number:hover {
  color: var(--gb-red);
}
.gb-call_hours {
  margin: clamp(10px, 1.4vw, 16px) 0 0;
  color: var(--gb-text-muted);
  font-size: var(--gb-fs-text);
  line-height: 1.9;
}
.gb-call_button {
  margin-top: clamp(18px, 2.2vw, 26px);
}
@media screen and (max-width: 768px) {
  .gb-call_button .gb-btn {
    width: 100%;
  }
}

.gb-ways {
  padding: 1px 0 var(--gb-section);
  margin-top: -1px;
  background: var(--gb-paper-face);
}
.gb-ways_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}
.gb-ways_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(24px, 3vw, 36px) clamp(16px, 2vw, 24px);
  background: #fff;
  border: 1px solid var(--gb-line-dark);
  text-align: center;
}
.gb-ways_icon {
  width: clamp(46px, 4.4vw, 60px);
  aspect-ratio: 1;
}
.gb-ways_icon > img {
  object-fit: contain;
}
.gb-ways_en {
  margin: clamp(12px, 1.4vw, 18px) 0 0;
  color: var(--gb-red);
  font-family: var(--gb-font-display);
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 400;
  letter-spacing: 0.04em;
}
.gb-ways_title {
  margin: 6px 0 0;
  font-size: var(--gb-fs-text);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.gb-ways_text {
  margin: clamp(8px, 1vw, 12px) 0 0;
  color: var(--gb-text-muted);
  font-size: var(--gb-fs-small);
  line-height: 1.9;
}
.gb-ways_text a {
  color: var(--gb-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gb-ways_text a:hover {
  color: var(--gb-red-light);
}
@media screen and (max-width: 768px) {
  .gb-ways_list {
    grid-template-columns: minmax(0, 1fr);
  }
  .gb-ways_item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    padding: 16px 18px;
    text-align: left;
  }
  .gb-ways_icon {
    grid-row: 1/4;
    width: 44px;
  }
  .gb-ways_en, .gb-ways_title, .gb-ways_text {
    margin: 0;
  }
  .gb-ways_title {
    margin-top: 2px;
  }
  .gb-ways_text {
    margin-top: 4px;
  }
}

.gb-shop {
  padding: var(--gb-section) 0;
  background: var(--gb-black);
  color: var(--gb-white);
}
.gb-shop_layout {
  display: grid;
  grid-template-columns: clamp(190px, 22vw, 300px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.gb-shop_en {
  margin: 0;
  font-family: var(--gb-font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.1;
}
.gb-shop_title {
  margin: clamp(10px, 1.2vw, 14px) 0 0;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.gb-shop_row {
  display: grid;
  grid-template-columns: clamp(96px, 11vw, 140px) minmax(0, 1fr);
  gap: clamp(10px, 2vw, 24px);
  padding: clamp(12px, 1.4vw, 16px) 0;
  border-bottom: 1px solid var(--gb-line);
}
.gb-shop_row:first-child {
  border-top: 1px solid var(--gb-line);
}
.gb-shop_label {
  margin: 0;
  color: var(--gb-red-light);
  font-size: var(--gb-fs-small);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}
.gb-shop_value {
  margin: 0;
  font-size: var(--gb-fs-text);
  line-height: 2;
}
.gb-shop_value a:hover {
  color: var(--gb-red-light);
}
@media screen and (max-width: 768px) {
  .gb-shop_layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .gb-shop_row {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }
  .gb-shop_label {
    line-height: 1.6;
  }
}

:root {
  --color-black: #050505;
  --color-black-light: #111111;
  --color-white: #ffffff;
  --color-bg: #f5f5f3;
  --color-border: #d9d9d9;
  --color-text: #222222;
  --color-text-light: #666666;
  --color-gold: #c8a86b;
  --color-gold-dark: #a8864f;
  --container: 1200px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.35s ease;
  --radius: 8px;
  --header-height: 72px;
  --section-padding: 120px;
}

.gb-contact_mascot {
  position: absolute;
  right: clamp(-10px, 1vw, 40px);
  bottom: 0;
  z-index: 2;
  width: clamp(180px, 20vw, 280px);
  pointer-events: none;
}
.gb-contact_mascot img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .gb-contact_mascot {
    display: none;
  }
}

.gb-store_name {
  margin: clamp(12px, 1.4vw, 18px) 0 0;
  font-size: var(--gb-fs-text);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.gb-store_text {
  margin: 8px 0 0;
  color: var(--gb-white-soft);
  font-size: var(--gb-fs-small);
  line-height: 1.9;
}

.gb-company {
  padding: var(--gb-section) 0;
  background: var(--gb-paper-face);
}
.gb-company .gb-info_list {
  margin-top: clamp(22px, 2.6vw, 34px);
}
@media screen and (min-width: 769px) {
  .gb-company .gb-info_list {
    max-width: 760px;
  }
}

.gb-food_nameen {
  display: block;
  margin-top: 4px;
  color: var(--gb-text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.gb-food_price {
  white-space: normal;
}
.gb-food_price span {
  display: block;
}
.gb-food_price span:not(:first-child) {
  margin-top: 2px;
  color: var(--gb-text-muted);
  font-size: 13px;
  font-weight: 700;
}

.gb-food_tabs {
  display: flex;
  gap: 0;
  margin: 0 0 clamp(22px, 2.6vw, 34px);
  border: 1px solid var(--gb-line-dark);
}
.gb-food_tab {
  flex: 1 1 0;
  padding: 14px 10px;
  background: transparent;
  border: none;
  color: var(--gb-text-muted);
  font-family: var(--gb-font-jp);
  font-size: var(--gb-fs-text);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.gb-food_tab:hover {
  color: var(--gb-text);
}
.gb-food_tab.is-current {
  background: var(--gb-black);
  color: var(--gb-white);
}
.gb-food_panel[hidden] {
  display: none;
}

.gb-food_courses {
  display: grid;
  gap: clamp(22px, 3vw, 40px);
}
.gb-food_course {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  padding-bottom: clamp(22px, 3vw, 40px);
  border-bottom: 1px solid var(--gb-line-dark);
}
.gb-food_course:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.gb-food_course .gb-food_photo {
  aspect-ratio: 4/3;
}
@media screen and (min-width: 769px) {
  .gb-food_course {
    grid-template-columns: clamp(220px, 26vw, 320px) minmax(0, 1fr);
    align-items: start;
  }
}
.gb-food_courseitems {
  display: grid;
  gap: 6px;
  margin: clamp(14px, 1.8vw, 20px) 0 0;
}
.gb-food_courseitems li {
  position: relative;
  padding-left: 16px;
  color: var(--gb-text);
  font-size: var(--gb-fs-text);
  line-height: 1.8;
}
.gb-food_courseitems li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  background: var(--gb-red);
  border-radius: 50%;
}

.gb-food_empty--static {
  margin-top: 0;
  padding: clamp(28px, 4vw, 48px) 0;
  line-height: 2;
}
.gb-food_empty--static a {
  color: var(--gb-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gb-food_takeoutlink {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
}
.gb-food_takeoutlink a {
  color: var(--gb-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gb-drinklead {
  padding: var(--gb-section) 0 clamp(30px, 4vw, 48px);
  background: var(--gb-black);
  color: var(--gb-white);
}
.gb-drinklead_label {
  margin: 0;
  color: var(--gb-red-light);
  font-size: var(--gb-fs-small);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.gb-drinklead_title {
  margin: clamp(12px, 1.6vw, 18px) 0 clamp(16px, 2vw, 24px);
  font-size: var(--gb-fs-catch);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.gb-party {
  padding: var(--gb-section) 0;
  background: var(--gb-black);
  color: var(--gb-white);
}
.gb-party .gb-shop_table {
  margin-top: clamp(18px, 2.4vw, 28px);
}

.gb-form {
  padding: var(--gb-section) 0;
  background: var(--gb-paper-face);
}
.gb-form_body {
  max-width: 720px;
  margin: clamp(22px, 3vw, 34px) 0 0;
}
.gb-form p {
  margin: 0 0 clamp(14px, 1.8vw, 20px);
  font-size: var(--gb-fs-text);
  line-height: 1.9;
}
.gb-form label {
  display: block;
  font-size: var(--gb-fs-small);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.gb-form input[type=text],
.gb-form input[type=email],
.gb-form input[type=tel],
.gb-form input[type=number],
.gb-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--gb-white);
  border: 1px solid var(--gb-line-dark);
  color: var(--gb-text);
  font-family: var(--gb-font-jp);
  font-size: var(--gb-fs-text);
}
.gb-form input[type=text]:focus,
.gb-form input[type=email]:focus,
.gb-form input[type=tel]:focus,
.gb-form input[type=number]:focus,
.gb-form textarea:focus {
  outline: 2px solid var(--gb-red);
  outline-offset: 1px;
}
.gb-form textarea {
  min-height: 180px;
  resize: vertical;
}
.gb-form input[type=submit] {
  min-width: 240px;
  padding: 16px 28px;
  background: var(--gb-red);
  border: 1px solid var(--gb-red);
  color: var(--gb-white);
  font-family: var(--gb-font-jp);
  font-size: var(--gb-fs-text);
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.25s ease;
}
.gb-form input[type=submit]:hover {
  background: var(--gb-red-light);
}

.gb-article {
  padding: var(--gb-section) 0;
  background: var(--gb-paper-face);
}
.gb-article_photo {
  margin-bottom: clamp(24px, 3vw, 40px);
  aspect-ratio: 16/9;
}
.gb-article_body {
  max-width: 760px;
}
.gb-article_body h2 {
  margin: clamp(30px, 3.6vw, 48px) 0 clamp(12px, 1.4vw, 18px);
  font-size: var(--gb-fs-catch);
  font-weight: 700;
  line-height: 1.6;
}
.gb-article_body h3 {
  margin: clamp(24px, 3vw, 36px) 0 clamp(10px, 1.2vw, 14px);
  font-size: 18px;
  font-weight: 700;
}
.gb-article_body p {
  margin: 0 0 clamp(16px, 1.8vw, 22px);
  font-size: var(--gb-fs-text);
  line-height: 2;
}
.gb-article_body ul,
.gb-article_body ol {
  margin: 0 0 clamp(16px, 1.8vw, 22px);
  padding-left: 1.4em;
  list-style: disc;
}
.gb-article_body ol {
  list-style: decimal;
}
.gb-article_body li {
  font-size: var(--gb-fs-text);
  line-height: 1.9;
}
.gb-article_body a {
  color: var(--gb-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gb-article_body img {
  height: auto;
}
.gb-article_body blockquote {
  margin: 0 0 clamp(16px, 1.8vw, 22px);
  padding-left: clamp(14px, 1.6vw, 20px);
  border-left: 3px solid var(--gb-red);
  color: var(--gb-text-muted);
}
.gb-article_none {
  margin: 0;
  font-size: var(--gb-fs-text);
  line-height: 2;
  text-align: center;
}
.gb-article_none a {
  color: var(--gb-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gb-article_back {
  margin: clamp(30px, 4vw, 48px) 0 0;
  text-align: center;
}
.gb-article_nav {
  margin: clamp(30px, 4vw, 48px) 0 0;
}
.gb-article_nav .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  color: var(--gb-text);
  font-size: var(--gb-fs-small);
  font-weight: 700;
}
.gb-article_nav .page-numbers.current {
  background: var(--gb-black);
  color: var(--gb-white);
}
.gb-article_nav .nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.gb-article_nav .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
