:root {
  --bg: #ffffff;
  --text: #101010;
  --muted: #6e6e6e;
  --line: #d8d8d8;
  --lime: #c7df32;
  --dark: #0b0b0b;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  line-break: strict;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-logo {
  width: min(58vw, 360px);
  max-height: 180px;
  object-fit: contain;
  animation: logoIntro 0.9s ease both;
}

@keyframes logoIntro {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.mobile-br {
  display: none;
}

.mobile-line {
  display: inline;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: grid;
  grid-template-columns: 190px 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 84px;
}

.logo-wrap {
  display: block;
}

.logo-image {
  width: 174px;
  max-width: 100%;
  max-height: 76px;
  height: auto;
  object-fit: contain;
}

.menu-toggle {
  display: none;
}

.global-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  font-size: 0.9rem;
}

.reserve-link {
  justify-self: end;
}

.btn-primary {
  background: var(--lime);
  color: var(--dark);
  border: 1px solid #90a117;
  font-weight: 700;
  letter-spacing: 0;
  border-radius: 4px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  color: #fff;
  background: #101010;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.02) 55%, rgba(0, 0, 0, 0.06) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
}

.concept {
  padding: 0;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.concept-text {
  background: #f8f8f8;
  padding: 72px 56px;
  min-width: 0;
}

.concept-text p {
  margin: 0;
  max-width: 34em;
  font-size: 0.95rem;
  line-height: 2;
  word-break: keep-all;
  overflow-wrap: normal;
}

.concept-text p + p {
  margin-top: 16px;
}

.script-title {
  margin: 0 0 18px;
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  letter-spacing: 0;
  color: var(--lime);
  text-wrap: balance;
}

.script-title.dark {
  color: #1a1a1a;
}

.concept-image {
  position: relative;
  min-height: clamp(620px, 58vw, 760px);
  overflow: hidden;
  background: #101010;
  opacity: 0;
  transform: translateX(56px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.concept-image.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.concept-image img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.menu-band {
  background: var(--lime);
  border-top: 1px solid #aec11e;
  border-bottom: 1px solid #aec11e;
}

.menu-inner {
  display: grid;
  grid-template-columns: 0.9fr repeat(4, 1fr);
}

.menu-intro,
.menu-item-card {
  padding: 34px 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.menu-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.menu-intro .script-title {
  margin-bottom: 0;
}

.menu-intro p {
  margin: 0;
  max-width: 18em;
  font-size: 0.9rem;
  line-height: 1.85;
  font-weight: 500;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.menu-item-card:last-child {
  border-right: none;
}

.menu-item-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  background: rgba(255, 255, 255, 0.16);
}

.menu-item-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.menu-item-body {
  display: grid;
  align-content: start;
  gap: 7px;
}

.menu-label {
  width: fit-content;
  margin: 0;
  padding: 3px 9px;
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
}

.menu-item-card h3 {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  font-size: 1.12rem;
  line-height: 1.45;
}

.menu-sub {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.22);
  font-weight: 700;
}

.menu-item-card .price {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
}

.menu-item-card p {
  margin: 0;
  max-width: 18em;
  font-size: 0.86rem;
  line-height: 1.9;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.55);
  padding: 10px 18px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  font-size: 0.86rem;
  cursor: pointer;
  white-space: nowrap;
}

.gallery-section {
  padding: 0;
}

.seo-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.seo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.seo-summary {
  max-width: 42em;
}

.seo-lead {
  font-size: 1.05rem;
  font-weight: 700;
}

.seo-summary p {
  margin: 0;
  line-height: 2;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.seo-summary p + p {
  margin-top: 14px;
}

.quick-facts {
  border-top: 1px solid var(--line);
}

.quick-facts dl {
  margin: 0;
}

.quick-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.quick-facts dt {
  font-weight: 700;
}

.quick-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr repeat(4, 1fr);
}

.gallery-images {
  grid-column: 2 / 6;
  overflow: hidden;
  background: #101010;
}

.gallery-intro {
  background: #f6f6f6;
  padding: 40px 30px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.gallery-track {
  display: flex;
  width: max-content;
  animation: gallerySlide 42s linear infinite;
}

.gallery-images:hover .gallery-track,
.gallery-images.is-paused .gallery-track {
  animation-play-state: paused;
}

.gallery-track img {
  width: clamp(280px, 24vw, 420px);
  height: 320px;
  object-fit: cover;
  flex: 0 0 auto;
  border-right: 1px solid #fff;
}

.gallery-track img:nth-child(4),
.gallery-track img:nth-child(10) {
  object-position: center center;
}

@keyframes gallerySlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    animation: none;
  }
}

.news-section {
  padding: 26px 0 38px;
  border-bottom: 1px solid var(--line);
}

.news-grid {
  display: grid;
  grid-template-columns: 0.95fr 2fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.news-left {
  padding-top: 6px;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-row {
  display: grid;
  grid-template-columns: 120px 70px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.news-row p,
.news-row time {
  margin: 0;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.badge {
  display: inline-flex;
  justify-content: center;
  padding: 3px 9px;
  border-radius: 999px;
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
  background: var(--lime);
  width: fit-content;
}

.insta-card {
  border: 1px solid var(--line);
  padding: 14px;
  background: #fcfcfc;
}

.insta-title {
  margin: 0 0 6px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.insta-card p {
  margin: 0 0 12px;
}

.insta-card img {
  height: 140px;
  object-fit: cover;
}

.recruit-section {
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.recruit-grid {
  display: grid;
  grid-template-columns: 0.95fr 2fr 1.15fr;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.recruit-heading,
.recruit-copy,
.recruit-action {
  padding: 28px 0;
}

.recruit-heading .script-title {
  margin-bottom: 0;
}

.recruit-lead {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.8;
}

.recruit-copy p {
  margin: 0;
  line-height: 1.9;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.recruit-action {
  display: grid;
  gap: 8px;
}

.recruit-action p {
  margin: 0;
  font-size: 0.9rem;
}

.shop-info {
  padding: 0;
  background: #f3f3f3;
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1fr;
  align-items: stretch;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.shop-brand,
.shop-detail,
.footer-cta,
.map-panel {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.map-panel {
  border-right: none;
  padding: 0;
  min-height: 230px;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.logo-footer {
  width: 154px;
}

.shop-detail h3 {
  margin: 0 0 10px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
}

.shop-detail {
  font-style: normal;
}

.shop-detail p {
  margin: 6px 0;
  overflow-wrap: anywhere;
}

.phone-link {
  font-weight: 700;
}

.footer-cta {
  display: grid;
  gap: 12px;
  align-content: center;
}

.btn-outline.wide {
  width: 100%;
  background: #fff;
}

.site-footer {
  background: var(--dark);
  color: #fff;
}

.footer-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  font-size: 0.84rem;
}

.footer-inner nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-family: "Oswald", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0;
}

.sns-link {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 0.75rem;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    border: 1px solid var(--line);
    padding: 8px 12px;
    background: #fff;
  }

  .global-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    display: none;
  }

  .global-nav.open {
    display: flex;
  }

  .reserve-link {
    margin-left: auto;
  }

  .concept-grid,
  .menu-inner,
  .seo-grid,
  .gallery-grid,
  .news-grid,
  .recruit-grid,
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .menu-intro,
  .menu-item-card,
  .gallery-intro,
  .recruit-heading,
  .recruit-copy,
  .recruit-action,
  .shop-brand,
  .shop-detail,
  .footer-cta,
  .map-panel {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .gallery-images {
    display: block;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 14px 0;
    justify-items: center;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 26px));
  }

  .mobile-br {
    display: block;
  }

  .mobile-line {
    display: block;
  }

  .loading-logo {
    width: min(72vw, 280px);
    max-height: 140px;
  }

  .header-inner {
    grid-template-columns: minmax(92px, 1fr) auto auto;
    min-height: 72px;
    gap: 10px;
  }

  .logo-image {
    width: 112px;
    max-height: 58px;
  }

  .global-nav {
    top: 72px;
  }

  .btn-primary {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 0;
  }

  .hero-bg {
    position: relative;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }

  .concept-text {
    padding: 40px 22px;
  }

  .concept-text p {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.9;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .concept-image {
    aspect-ratio: 1045 / 1132;
    min-height: 0;
    transform: translateX(34px);
  }

  .concept-image.is-visible {
    transform: translateX(0);
  }

  .menu-intro,
  .menu-item-card,
  .gallery-intro,
  .shop-brand,
  .shop-detail,
  .footer-cta {
    padding: 30px 18px;
  }

  .menu-intro p,
  .menu-item-card p,
  .seo-summary p,
  .quick-facts dd,
  .recruit-copy p,
  .shop-detail p {
    line-height: 1.8;
  }

  .menu-item-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 16px;
    align-items: start;
  }

  .menu-item-card img {
    width: 64px;
    height: 64px;
    grid-row: span 2;
    margin-bottom: 0;
  }

  .menu-item-card h3 {
    font-size: 1.08rem;
    line-height: 1.45;
  }

  .menu-item-body {
    gap: 6px;
  }

  .menu-label {
    font-size: 0.7rem;
  }

  .menu-sub {
    padding-bottom: 8px;
  }

  .menu-item-card .price {
    font-size: 1.9rem;
  }

  .menu-item-card p {
    max-width: 20em;
    font-size: 0.86rem;
  }

  .gallery-grid {
    display: block;
  }

  .seo-section {
    padding: 40px 0;
  }

  .quick-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .seo-summary {
    max-width: 23em;
  }

  .gallery-intro {
    border-right: none;
  }

  .gallery-images {
    display: block;
  }

  .gallery-track img {
    width: 78vw;
    height: 220px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }

  .insta-card img {
    height: 180px;
  }

  .map-panel {
    min-height: 260px;
  }

  .footer-inner nav {
    gap: 10px 14px;
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .concept-image {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
