@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 {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !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);
  -webkit-backdrop-filter: blur(12px);
          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;
  -o-object-fit: contain;
     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;
    -o-object-fit: contain;
       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;
  -o-object-fit: contain;
     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);
  -webkit-animation: fvLogoFadeIn 1.8s ease-out 0.35s forwards;
          animation: fvLogoFadeIn 1.8s ease-out 0.35s forwards;
}
.fv__logo img {
  width: 100%;
  height: auto;
  display: block;
}

@-webkit-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);
  }
}

@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;
  -o-object-fit: cover;
     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;
  -o-object-fit: cover;
     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;
  -o-object-fit: cover;
     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;
  -o-object-fit: cover;
     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;
  -o-object-fit: cover;
     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;
  -o-object-fit: cover;
     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 {
  /* =========================
  color
  ========================= */
  --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;
  /* =========================
  layout
  ========================= */
  --container: 1200px;
  /* =========================
  shadow
  ========================= */
  --shadow:
    0 18px 40px rgba(0, 0, 0, 0.12);
  /* =========================
  transition
  ========================= */
  --transition:
    0.35s ease;
}
:root :root {
  --radius: 8px;
  --header-height: 72px;
  --section-padding:
    120px;
}
/*# sourceMappingURL=style.css.map */