/*
 * "YujiSyuku-Regular" is lisenced under the SIL Open Font License 1.1
 * by https://fonts.google.com/specimen/Yuji+Syuku/about?query=yuji
 */
@font-face {
  font-display: swap;
  font-family: "MyFont";
  src: url(../fonts/YujiSyuku-Regular.ttf) format("truetype");
}

:root {
  --fs-xxs: 0.75rem;
  /* 12px */
  --fs-xs: 0.875rem;
  /* 14px */
  --fs-s: 1rem;
  /* 16px */
  --fs-m: 1.125rem;
  /* 18px */
  --fs-l: 1.25rem;
  /* 20px */
  --fs-xl: 1.5rem;
  /* 24px */
  --fs-display: clamp(1.75rem, 3.4vw, 2.625rem);
  --fs-body: var(--fs-m);
  --fs-lead: clamp(1.125rem, 0.9vw + 0.95rem, 1.375rem);
  --fs-lead-lg: clamp(1.25rem, 1.3vw + 0.95rem, 1.75rem);
  --fs-note: var(--fs-xs);

  --lh-tight: 1.25;
  --lh-heading: 1.35;
  --lh-body: 1.9;
  --lh-loose: 2.0;

  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 1.5rem;
  --space-l: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;

  --page-gutter: 2rem;
  --page-max: 1100px;

  --section-py: 8rem;
  --section-py-lg: 10rem;
  --section-py-sm: 6.4rem;

  --section-head-mb: 4rem;
  --section-head-mb-lg: 4.2rem;

  --stack-1: 0.4rem;
  --stack-2: 0.6rem;
  --stack-3: 1rem;
  --stack-4: 1.4rem;
  --stack-5: 1.8rem;
  --stack-6: 2.2rem;
  --stack-7: 2.8rem;
  --stack-8: 3rem;
  --stack-9: 3.8rem;

  --grid-gap: 2rem;
  --grid-gap-lg: 2.4rem;
  --grid-gap-xl: 3rem;

  --card-radius: 16px;
  --card-pad: 2.2rem;

  --border-subtle: 1px solid rgba(0, 0, 0, 0.14);
  --border-subtle-light: 1px solid rgba(255, 255, 255, 0.18);

  --hero-pt: 10rem;
  --hero-pb: 10rem;
  --hero-px: 2rem;
}

@media (max-width: 520px) {
  :root {
    --hero-pt: 6rem;
    --hero-pd: 4rem;
    --page-gutter: 1.6rem;
    --section-py-sm: 5.6rem;
    --card-pad: 1.8rem;
    --grid-gap: 1.6rem;
    --grid-gap-lg: 2.0rem;
  }
}

html {
  font-size: 16px;
}

@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
}

body {
  font-size: var(--fs-s);
  line-height: var(--lh-body);
  width: 100%;
  overflow-x: hidden;
  font-family: "MyFont", serif;
}

/* body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  overflow: hidden;
} */

h1 {
  font-weight: normal;
}

p {
  margin: 0;
  font-size: var(--fs-body);
}

/********************
**オプションクラス
********************/

.none {
  display: none;
}

/* Animation helpers */
.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 800ms;
  transition-delay: var(--anim-delay, 0ms);
}

.fadein.screenin {
  opacity: 1;
  transform: translateY(0);
}

.leftin {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 700ms;
  transition-delay: var(--anim-delay, 0ms);
}

.leftin.screenin {
  opacity: 1;
  transform: translateX(0);
}

.rightin {
  opacity: 0;
  transform: translateX(100%);
  transition: all 700ms;
  transition-delay: var(--anim-delay, 0ms);
}

.rightin.screenin {
  opacity: 1;
  transform: translateX(0);
}


.anim {
  will-change: transform, opacity;
}

.anim--fade {
  opacity: 0;
  transform: none;
  transition: opacity var(--anim-duration, 700ms) ease;
  transition-delay: var(--anim-delay, 0ms);
}

.anim--fade.is-inview {
  opacity: 1;
}

.anim--fade-up {
  opacity: 0;
  transform: translateY(var(--anim-distance, 30px));
  transition: opacity var(--anim-duration, 800ms) ease, transform var(--anim-duration, 800ms) ease;
  transition-delay: var(--anim-delay, 0ms);
}

.anim--fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.anim--slide-left {
  opacity: 0;
  transform: translateX(calc(var(--anim-distance, 40px) * -1));
  transition: opacity var(--anim-duration, 700ms) ease, transform var(--anim-duration, 700ms) ease;
  transition-delay: var(--anim-delay, 0ms);
}

.anim--slide-left.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.anim--slide-right {
  opacity: 0;
  transform: translateX(var(--anim-distance, 40px));
  transition: opacity var(--anim-duration, 700ms) ease, transform var(--anim-duration, 700ms) ease;
  transition-delay: var(--anim-delay, 0ms);
}

.anim--slide-right.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.anim--zoom {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity var(--anim-duration, 800ms) ease, transform var(--anim-duration, 800ms) ease;
  transition-delay: var(--anim-delay, 0ms);
}

.anim--zoom.is-inview {
  opacity: 1;
  transform: scale(1);
}

.sp-only {
  display: none;
}

@media screen and (max-width: 800px) {
  .sp-only {
    display: block;
  }
}

.point-spacing {
  letter-spacing: -0.5em;
}

.btn-underline {
  padding-inline: 0 var(--space-s);
  color: rgba(51, 51, 51, 1);
  font-size: var(--fs-s);
  border-bottom: 1px solid currentColor;
  transition: opacity 0.3s ease;
}

.btn-underline:hover {
  opacity: 0.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-s);
  padding: var(--stack-3) var(--stack-6);
  color: #fff;
  background-color: #d88035;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.25s ease, opacity 0.25s ease;
}

.btn-primary:hover {
  background-color: #bf6e2e;
}

.btn-primary:active {
  opacity: 0.85;
}

/********************
**標準クラス
********************/
/*********************
**loading
***********/
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9990;
  background-color: #f0cdae;
}

.loading>img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  animation: blink 1s ease-in-out infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*********************
**header
***********/
.header__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: var(--space-s);
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__logo-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: calc(var(--space-s) - 0.6rem) var(--space-s);
}

.header__logo-image {
  height: 3rem;
  aspect-ratio: 50 / 19;
}

.header__menu-icon-wrapper {
  display: none;
  cursor: pointer;
}

.open-nav .header__menu-icon {
  transform: rotate(180deg);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-m);
}

.header__nav-list-text {
  font-size: var(--fs-m);
  font-weight: 400;
  color: #fff;
  transition: color 0.3s ease;
}

.header__nav-list-text:hover {
  color: #d88035;
}

@media screen and (max-width: 800px) {
  .header__inner {
    display: grid;
    grid-template-areas:
      "logo icon"
      "nav nav";
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    justify-content: space-between;
    padding-right: 0;
    overflow: hidden;
  }

  .header__logo {
    grid-area: logo;
  }

  .header__menu-icon-wrapper {
    grid-area: icon;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs);
  }

  .header__menu-icon {
    display: inline-block;
    width: 2.6rem;
    height: 2.6rem;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease;
  }

  .i-menu {
    mask-image: url('../img/icon/menu.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: #fff;
  }

  .i-unfold_less {
    mask-image: url('../img/icon/unfold_less.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: #fff;
  }

  .header__nav {
    grid-area: nav;
    display: none;
    height: 0;
    width: 100%;
    transition: height 0.3s ease;
  }

  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-m);
  }

  .header__nav-list-text {
    display: inline-flex;
    align-items: center;
    height: 4rem;
  }

  .header__cta {
    width: 100%;
  }
}

/*********************
**main
***********/
.main__container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: auto;
  padding: var(--hero-pt) var(--page-gutter) var(--hero-pb);
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2)), url(../img/hero.jpg);
  background-size: cover;
}

.hero__title {
  font-size: clamp(1.8rem, 2.2vw, 2.8rem);
  letter-spacing: 0.1em;
  color: #fefefe;
  margin-bottom: var(--stack-6);
}

.hero__image {
  width: 100%;
  height: auto;
  aspect-ratio: 50 / 19;
}

.hero__subtitle {
  font-size: clamp(1.4rem, 3vw, 3.6rem);
  color: #fefefe;
  margin-bottom: var(--stack-3);
}

.hero__text-wrapper {
  display: flex;
  flex-direction: row;
  gap: var(--space-m);
  margin-top: var(--stack-6);
  margin-bottom: var(--stack-9);
}

.hero__text {
  font-size: clamp(1rem, 2vw, 2rem);
  color: #fefefe;
  margin: 0;
}

.hero__cta-wrapper {
  display: flex;
  gap: var(--space-s);
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero__tel-button,
.hero__map-link {
  color: #f5f5f5;
}


.quickinfo {
  position: relative;
}

.quickinfo__inner {
  max-width: var(--page-max);
  margin-inline: auto;
}

.quickinfo__grid {
  padding: var(--stack-4);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-s);
  border-radius: 14px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .14);
}

.quickinfo__item {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-xs);
  row-gap: var(--space-xxs);
  align-items: start;
  padding: var(--stack-2) var(--stack-3);
  color: #fff;
}

.quickinfo__icon {
  grid-row: 1 / 3;
  align-self: center;
  width: 2rem;
  height: 2rem;
  aspect-ratio: 1 / 1;
}

.i-subway_walk {
  mask-image: url('../img/icon/subway_walk.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #fff;
}

.i-payments {
  mask-image: url('../img/icon/payments.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #fff;
}

.i-chair {
  mask-image: url('../img/icon/chair.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #fff;
}

.i-smoking_rooms {
  mask-image: url('../img/icon/smoking_rooms.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #fff;
}


.quickinfo__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.quickinfo__value {
  grid-column: 2 / 3;
  font-size: var(--fs-s);
  margin-top: 0.2rem;
}

.quickinfo__note {
  margin: var(--stack-3) 0 0;
  text-align: center;
  font-size: var(--fs-note);
  color: rgba(255, 255, 255, .85);
}

@media (max-width: 900px) {
  .quickinfo__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero__inner {
    padding-top: 6.5rem;
  }

  .quickinfo__grid {
    padding: var(--stack-3);
  }
}

.specialty {
  padding: var(--section-py) var(--page-gutter);
  background: #f5f5f5;
}

.specialty__inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.specialty__head {
  text-align: center;
  margin-bottom: var(--section-head-mb);
}

.specialty__kicker {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  padding: var(--stack-2) var(--stack-3);
  border-radius: 999px;
  background: rgba(216, 128, 53, 0.12);
  color: #d88035;
  margin: 0 0 var(--stack-4);
}

.specialty__title {
  font-size: var(--fs-display);
  color: #333;
  margin: 0 0 var(--stack-3);
  line-height: var(--lh-heading);
}

.specialty__lead {
  font-size: var(--fs-lead);
  color: #555;
  margin: 0 auto;
  max-width: 52ch;
}

.specialty__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: var(--stack-8);
}

.specialty-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  display: grid;
  grid-template-rows: auto 1fr;
}

.specialty-card__media {
  aspect-ratio: 16 / 10;
  background: #eee;
}

.specialty-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.specialty-card__body {
  display: flex;
  flex-direction: column;
  padding: var(--card-pad);
  text-align: left;
}

.specialty-card__title {
  font-size: var(--fs-xl);
  margin-bottom: var(--stack-3);
  color: #333;
}

.specialty-card__text {
  font-size: var(--fs-body);
  margin: 0 0 var(--stack-3) 0;
  color: #666;
}

.specialty-card__meta {
  font-size: var(--fs-s);
  color: #d88035;
  margin-top: auto;
}

.specialty__cta {
  margin-top: var(--stack-7);
  display: flex;
  gap: var(--stack-3);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .specialty__grid {
    grid-template-columns: 1fr;
  }

  .specialty-card__body {
    text-align: center;
  }
}

.about {
  padding: var(--section-py) var(--page-gutter);
  background: #f5f5f5;
}

.about__inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--grid-gap-xl);
  align-items: center;
}

.about__media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
  background: #eee;
  aspect-ratio: 3 / 4;
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__content {
  text-align: start;
}

.about__kicker {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  padding: var(--stack-2) var(--stack-3);
  border-radius: 999px;
  background: rgba(216, 128, 53, 0.12);
  color: #d88035;
  margin: 0 0 var(--stack-4);
}

.about__title {
  font-size: var(--fs-display);
  color: #333;
  margin: 0 0 var(--stack-4);
  line-height: var(--lh-heading);
  text-align: left;
}

.about__text {
  font-size: var(--fs-body);
  color: #555;
  margin: 0 0 var(--stack-6);
  text-align: left;
  max-width: 60ch;
}

.about__points {
  margin: 0 0 var(--stack-6);
  padding-left: 1.2em;
  color: #333;
  font-size: var(--fs-body);
}

.about__points li {
  margin-bottom: var(--stack-2);
  list-style: disc;
}

.about__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__content {
    text-align: center;
  }

  .about__title,
  .about__text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about__points {
    text-align: left;
    max-width: 42ch;
    margin-left: auto;
    margin-right: auto;
  }

  .about__cta {
    justify-content: center;
  }

  .about__cta-button {
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

.feature__container {
  padding: var(--section-py) var(--page-gutter);
  background: linear-gradient(180deg, #2b2b2b 0%, #1f1f1f 100%);
}

.feature__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  text-align: center;
}

.feature__kicker {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  padding: var(--stack-2) var(--stack-3);
  border-radius: 999px;
  background: rgba(216, 128, 53, 0.12);
  color: #d88035;
  margin: 0 0 var(--stack-4);
}

.feature__title {
  font-size: var(--fs-display);
  color: #fefefe;
  text-align: center;
  margin: 0 0 var(--section-head-mb);
  line-height: var(--lh-heading);
}

.feature__steps {
  display: flex;
  flex-direction: column;
  gap: clamp(3.2rem, 5vw, 6.4rem);
}

.feature__step {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 4.8rem);
  align-items: center;
  padding: var(--card-pad);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.feature__media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.feature__media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature__body {
  display: flex;
  flex-direction: column;
  gap: var(--stack-3);
  text-align: left;
}

.feature__step-title {
  font-size: var(--fs-xl);
  color: #fefefe;
  margin: 0;
  letter-spacing: 0.06em;
}

.feature__step-text {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.feature__step--reverse .feature__media {
  order: 2;
}

.feature__step--reverse .feature__body {
  order: 1;
}

@media (max-width: 900px) {
  .feature__step {
    grid-template-columns: 1fr;
  }

  .feature__step--reverse .feature__media,
  .feature__step--reverse .feature__body {
    order: unset;
  }

  .feature__body {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .feature__step {
    border-radius: 16px;
  }
}


.menu {
  width: 100%;
  padding: var(--section-py) var(--page-gutter);
  background: #f5f5f5;
}

.menu__inner {
  max-width: var(--page-max);
  margin: 0 auto;
}

.menu__head {
  text-align: center;
  margin-bottom: var(--section-head-mb-lg);
}

.menu__kicker {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  padding: var(--stack-2) var(--stack-3);
  border-radius: 999px;
  background: rgba(216, 128, 53, 0.12);
  color: #d88035;
  margin: 0 0 var(--stack-4);
}

.menu__title {
  font-size: var(--fs-display);
  color: #333;
  margin: 0 0 var(--stack-3);
  line-height: var(--lh-heading);
}

.menu__lead {
  font-size: var(--fs-lead);
  color: #555;
  margin: 0 auto;
  max-width: 56ch;
}

.menu__note {
  font-size: var(--fs-note);
  color: rgba(0, 0, 0, 0.65);
  margin-top: var(--stack-4);
}

.menu__nav {
  margin-top: var(--stack-6);
  display: inline-flex;
  gap: var(--space-m);
  flex-wrap: wrap;
  justify-content: center;
}

.menu__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--stack-4);
}

.menu__nav-link:hover {}

.menu__section {
  margin-top: var(--section-py-sm);
}

.menu__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--stack-3);
  margin-bottom: var(--stack-6);
}

.menu__section-title {
  font-size: var(--fs-xl);
  color: #333;
  margin: 0;
}

.menu__section-note {
  font-size: var(--fs-note);
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
}

.menu__section-note--light {
  color: rgba(255, 255, 255, 0.70);
}

.menu__recommend {
  margin-top: var(--stack-8);
}

.menu__recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.menu__recommend-card {
  position: relative;
  text-align: left;
  background: #fff;
  border-radius: var(--card-radius);
  padding: var(--card-pad);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.menu__recommend-badge {
  position: absolute;
  top: var(--stack-4);
  right: var(--stack-4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.0rem;
  padding: 0 var(--stack-3);
  border-radius: 999px;
  font-size: 1.3rem;
  letter-spacing: 0.10em;
  background: rgba(216, 128, 53, 0.14);
  color: #d88035;
}

.menu__recommend-title {
  font-size: var(--fs-l);
  color: #333;
  margin: 0 0 var(--stack-2);
}

.menu__recommend-text {
  font-size: var(--fs-body);
  color: #666;
  margin: 0 0 var(--stack-4);
}

.menu__price {
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #d88035;
  font-size: var(--fs-s);
}

.menu__price-label {
  font-size: inherit;
  color: inherit;
}

.menu__price-value {
  font-size: inherit;
  color: inherit;
}

.menu__recommend-prices {
  display: flex;
  flex-direction: column;
  gap: var(--stack-2);
  margin-top: auto;
}

.menu__grid {
  column-count: 2;
  column-gap: var(--grid-gap-lg);
}

.menu-card {
  display: block;
  break-inside: avoid;
  padding: var(--stack-4) 0;
  border-bottom: var(--border-subtle);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-left: none;
  border-right: none;
  border-top: none;
  min-height: unset;
}

.menu-card--light {
  border-bottom: var(--border-subtle-light);
}

.menu-card__title {
  font-size: var(--fs-l);
  color: #333;
  margin: 0;
}

.menu-card__title--light {
  color: #fefefe;
}

.menu-card__text {
  font-size: var(--fs-body);
  color: #666;
  margin: var(--stack-2) 0 0;
}

.menu-card__text--light {
  color: rgba(255, 255, 255, 0.88);
}

.menu-card__meta {
  margin-top: var(--stack-2);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

/* Recommend media for menu__recommend */
.menu__recommend-media {
  border-radius: 14px;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 16 / 10;
  margin: 0 0 var(--stack-4);
}

.menu__recommend-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card__price {
  font-size: var(--fs-s);
  color: #d88035;
  margin: 0;
}

.menu-card__price--light {
  color: #bf6e2e;
}

.menu-card__tax {
  font-size: var(--fs-xs);
  color: rgba(0, 0, 0, 0.55);
  margin-left: var(--space-xxs);
}

.menu-card__tax--light {
  color: rgba(255, 255, 255, 0.70);
}

.menu-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.0rem;
  padding: 0 1.1rem;
  border-radius: 999px;
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.70);
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.10);
  white-space: nowrap;
}


.menu-card__groups {
  display: flex;
  flex-direction: column;
  gap: var(--stack-8);
}

.menu-card__group {
  display: flex;
  flex-direction: column;
}

.menu-card__category {
  font-size: var(--fs-m);
  color: #333;
  margin: 0 0 var(--stack-3);
  letter-spacing: 0.08em;
}

.menu-card__category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: var(--grid-gap-lg);
}

.menu__takeout {
  margin-top: var(--section-py-sm);
  border-radius: 18px;
  padding: var(--stack-8);
  background: linear-gradient(180deg, #2b2b2b 0%, #1f1f1f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.menu__takeout-head {
  text-align: center;
  margin-bottom: var(--stack-6);
}

.menu__section-title--light {
  color: #fefefe;
}

.menu__section-lead {
  font-size: var(--fs-lead);
  color: #333;
  margin: var(--stack-3) 0 0;
}

.menu__section-lead--light {
  color: rgba(255, 255, 255, 0.88);
}

#food,
#drink,
#takeout {
  scroll-margin-top: 6rem;
}

.menu__takeout-cta {
  margin-top: var(--stack-6);
  text-align: center;
}


.menu__takeout-note {
  font-size: var(--fs-note);
  color: rgba(255, 255, 255, 0.80);
  margin: var(--stack-3) 0 0;
}

@media (max-width: 900px) {
  .menu__recommend-grid {
    grid-template-columns: 1fr;
  }

  .menu__section-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .menu__grid {
    column-count: 2;
    column-gap: 2.0rem;
  }

  .menu-card__category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.0rem;
  }
}

@media (max-width: 520px) {
  .menu__grid {
    column-count: 1;
    column-gap: 0;
  }

  .menu-card__category-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .menu__takeout-list {
    column-count: 1;
    column-gap: 0;
  }

  .menu__takeout {
    padding: 2.2rem;
  }
}

.access__container {
  width: 100%;
  padding: var(--section-py) var(--page-gutter);
  background-color: #f5f5f5;
}

.access__title {
  font-size: var(--fs-display);
  line-height: var(--lh-heading);
  color: #333;
  text-align: center;
  margin-bottom: var(--section-head-mb);
}

.access__content {
  max-width: var(--page-max);
  margin: 0 auto;
  font-size: 2.4rem;
  color: #333;
}

.access__info {
  margin-bottom: var(--stack-7);
}

.shop__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 var(--stack-7);
}

.shop__info-row {
  display: flex;
  flex-direction: column;
  gap: var(--stack-2);
  padding: var(--stack-4) 0;
  border-bottom: var(--border-subtle);
}

.shop__info-row:last-child {
  border-bottom: none;
}

.shop__info dt {
  font-weight: 700;
  font-size: var(--fs-s);
  color: rgba(0, 0, 0, 0.75);
  margin: 0;
}

.shop__info dd {
  margin: 0;
  font-size: var(--fs-body);
  color: #333;
}

.shop__info address {
  font-style: normal;
}

.access__map-link a {
  font-size: var(--fs-s);
  color: #333;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  padding-bottom: 0.2em;
  transition: opacity 0.25s ease;
}

.access__map-link a:hover {
  opacity: 0.6;
}

.access__map {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact__container {
  width: 100%;
  padding: var(--section-py) var(--page-gutter);
  background-color: #333;
}

.contact__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fefefe;
}

.contact__title {
  font-size: var(--fs-display);
  line-height: var(--lh-heading);
  text-align: center;
  margin-bottom: var(--section-head-mb);
}

.contact__lead {
  font-size: var(--fs-lead-lg);
  margin-bottom: var(--stack-7);
}

.contact__cta,
.takeout__cta {
  margin-bottom: var(--stack-7);
}


.contact__note,
.takeout__note {
  font-size: var(--fs-note);
  margin-top: var(--stack-3);
}

.contact__rules {
  font-size: var(--fs-body);
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.contact__rule-row {
  display: flex;
  align-items: flex-start;
  gap: var(--stack-4);
  padding: var(--stack-4) 0;
  border-bottom: var(--border-subtle-light);
}

.contact__rule-row:last-child {
  border-bottom: none;
}

.contact__rule-row dt {
  width: 12rem;
  flex-shrink: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.contact__rule-row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.contact__reserve {
  margin-top: var(--section-head-mb);
  font-size: var(--fs-s);
  color: #fefefe;
  text-align: center;
}

.footer__container {
  width: 100%;
  padding: var(--stack-9) var(--page-gutter) var(--stack-7);
  background: linear-gradient(180deg, #222 0%, #1a1a1a 100%);
  text-align: center;
}

.footer__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  font-size: 1.6rem;
  color: #aaa;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--stack-6);
  align-items: start;
}

.footer__shop-info {
  text-align: left;
}

.footer__shop-name {
  font-weight: 700;
  font-size: var(--fs-s);
  color: #f1f1f1;
}

.footer__address {
  margin-top: var(--stack-2);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.78);
}

.footer__map-link {
  margin-top: var(--stack-3);
}

.footer__tel {
  margin-top: var(--stack-3);
  font-size: 1.6rem;
}

.footer__map-link a,
.footer__tel a {
  color: rgba(255, 255, 255, 0.78);
}

.footer__nav {
  text-align: right;
}

.footer__nav-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: var(--stack-3) var(--stack-6);
  margin: 0;
  padding: 0;
}

.footer__nav-list-text {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 0.3rem 0;
}

.footer__nav-list-text:hover {
  color: #d88035;
}

.footer__copyright {
  margin-top: var(--stack-7);
  padding-top: var(--stack-5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--fs-xxs);
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__shop-info {
    text-align: center;
  }

  .footer__nav {
    text-align: center;
  }

  .footer__nav-list {
    justify-content: center;
  }

  .footer__map-link a,
  .footer__tel a {
    padding-inline: var(--space-s);
  }
}