:root {
  --black: #070707;
  --ink: #231f20;
  --muted: #6b665f;
  --gold: #a98242;
  --cream: #f7f3ec;
  --line: rgba(35, 31, 32, 0.18);
  --navy: #162438;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream) url('/restaurants/assets/common/bg.webp') center top / 1200px auto fixed;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.top-strip {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 40px;
  padding: 8px 16px;
  overflow: hidden;
  color: #fff;
  background: #171717;
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.site-header {
  position: fixed;
  inset: 40px 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  height: 52px;
  background: #000;
}

.brand {
  display: flex;
  align-items: center;
  width: 132px;
  padding-left: 16px;
}

.brand img {
  width: 96px;
}

.site-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  height: 100%;
}

.site-nav a,
.access-link {
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.lang-switch {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 0 16px;
  color: #fff;
  font-size: 13px;
}

.lang-switch a {
  opacity: 0.45;
  text-decoration: none;
}

.lang-switch .active {
  opacity: 1;
}

.access-link {
  align-self: stretch;
  background: var(--navy);
}

.menu-toggle {
  display: none;
}

main {
  padding-top: 92px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 92px));
  overflow: hidden;
  background: #000;
}

.hero--restaurant {
  min-height: 620px;
}

.hero picture,
.hero > img,
.hero-slider,
.hero-slider img {
  width: 100%;
  height: 100%;
}

.hero > img,
.hero picture img,
.hero-slider img {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.hero-slider img {
  opacity: 0;
  animation: fadeHero 18s infinite;
}

.hero-slider img:nth-child(2) {
  animation-delay: 6s;
}

.hero-slider img:nth-child(3) {
  animation-delay: 12s;
}

@keyframes fadeHero {
  0%, 29% { opacity: 1; }
  35%, 100% { opacity: 0; }
}

.hero-copy {
  position: absolute;
  inset: auto auto 12% 7%;
  width: min(520px, 86vw);
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-copy img {
  max-width: 260px;
  max-height: 110px;
  object-fit: contain;
  margin-bottom: 24px;
}

.hero-copy p {
  margin: 0;
  font-size: clamp(20px, 3vw, 38px);
  line-height: 1.55;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.narrow {
  width: min(820px, calc(100% - 48px));
}

.section-title {
  margin-bottom: 32px;
}

.section-title span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1;
  color: var(--gold);
}

.section-title small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 26px;
}

.card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.news-card a {
  display: block;
  text-decoration: none;
}

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

.news-card span,
.news-card h3 {
  display: block;
  margin: 0;
  padding: 0 18px;
}

.news-card span {
  padding-top: 16px;
  color: var(--gold);
  font-size: 13px;
}

.news-card h3 {
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 1.55;
}

.align-right {
  text-align: right;
}

.text-link {
  color: var(--gold);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.restaurant-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.restaurant-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 380px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.restaurant-card:nth-child(even) .restaurant-card__image {
  order: 2;
}

.restaurant-card__image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.restaurant-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 60px);
}

.restaurant-logo {
  width: auto;
  max-width: 240px;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
}

.restaurant-card h3,
.split-section h1 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  color: #fff;
  background: var(--black);
  border: 1px solid var(--black);
  text-decoration: none;
  cursor: pointer;
}

.button--ghost {
  color: var(--black);
  background: transparent;
}

.chef-band,
.info-band {
  padding: 90px 24px;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65)), url("/assets/toppage_pc/chef's_introduction.webp") center / cover;
}

.chef-band > div {
  width: min(960px, 100%);
  margin: 0 auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 54px;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 0;
}

.split-section > div {
  padding: 46px;
  background: #111;
  color: #fff;
}

.split-section img,
.feature-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.info-band {
  background: #111;
}

.info-band dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px 22px;
}

.page-hero {
  display: flex;
  align-items: end;
  min-height: 300px;
  padding: 70px max(24px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.64)), url('/restaurants/assets/common/news_big.jpg') center / cover;
}

.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1;
}

.text-page {
  font-size: 18px;
}

.map-img {
  margin-top: 28px;
  border: 1px solid var(--line);
}

.article-page {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 88px;
}

.article-main-img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-body {
  padding: 42px 0 0;
}

.article-body time {
  color: var(--gold);
}

.article-body h1 {
  margin: 12px 0 28px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.32;
}

.rich-text img {
  height: auto;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.notice,
.empty {
  padding: 18px 20px;
  margin-bottom: 26px;
  background: rgba(255, 255, 255, 0.8);
  border-left: 4px solid var(--gold);
}

.activity {
  padding: 88px 24px;
}

.activity__inner {
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 54px;
  color: #fff;
  background: rgba(0, 0, 0, 0.66);
}

.activity__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.activity__grid a {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.activity__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.activity__grid span {
  position: absolute;
  inset: auto 0 0;
  padding: 40px 18px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  font-size: 20px;
}

.activity__grid a:hover img {
  transform: scale(1.05);
}

.site-footer {
  position: relative;
  color: #fff;
  background: #050505;
}

.return-top {
  position: absolute;
  top: -25px;
  right: 36px;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.social {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  background: #000;
}

.social p {
  margin: 0 20px 0 0;
  font-size: 14px;
}

.social img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-main {
  display: grid;
  gap: 16px;
  place-items: center;
  padding: 58px 24px 44px;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)), url('/restaurants/assets/common/footer_bg_pc.jpg') center / cover;
}

.footer-main > img {
  width: 150px;
}

.footer-main a {
  color: #fff;
}

.footer-main p {
  margin: 0;
}

.footer-main p a {
  font-size: 30px;
  text-decoration: none;
}

.footer-main .small a {
  font-size: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  font-size: 13px;
}

.floating-reserve {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  padding: 12px 20px;
  color: #fff;
  background: var(--gold);
  text-decoration: none;
}

@media (max-width: 1020px) {
  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 52px;
    height: 52px;
    margin-left: auto;
    padding: 16px 13px;
    border: 0;
    background: #000;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
  }

  .site-nav {
    position: fixed;
    inset: 92px 0 auto;
    display: none;
    height: auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.94);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
    padding: 8px 0;
  }

  .access-link {
    display: none;
  }
}

@media (max-width: 760px) {
  .lang-switch {
    padding: 0 10px;
  }

  .hero,
  .hero--restaurant {
    min-height: calc(100vh - 92px);
  }

  .hero-copy {
    left: 24px;
    bottom: 9%;
  }

  .hero-copy img {
    max-width: 190px;
  }

  .container,
  .narrow,
  .split-section,
  .article-page {
    width: calc(100% - 32px);
  }

  .container {
    padding: 58px 0;
  }

  .card-grid--3,
  .restaurant-card,
  .split-section,
  .feature-row,
  .activity__grid {
    grid-template-columns: 1fr;
  }

  .restaurant-card:nth-child(even) .restaurant-card__image {
    order: 0;
  }

  .restaurant-card__image img {
    min-height: 250px;
  }

  .split-section {
    gap: 0;
  }

  .split-section > div {
    padding: 30px 22px;
  }

  .info-band dl {
    grid-template-columns: 1fr;
  }

  .activity__inner {
    padding: 34px 20px;
  }

  .social {
    flex-wrap: wrap;
  }

  .social p {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .floating-reserve {
    display: inline-flex;
  }
}
