:root {
  --color-bg: #f7f9f4;
  --color-surface: #ffffff;
  --color-primary: #1a1f18;
  --color-accent: #1a1f18;
  --color-text: #101310;
  --color-muted: #1a1f18;
  --color-line: #d7ddd0;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --radius-1: 10px;
  --radius-2: 16px;
  --shadow-1: 0 8px 22px rgba(0, 0, 0, 0.08);
  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  font-size: 1.04rem;
  line-height: 1.7;
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 0, 0, 0.04), transparent 42%),
    linear-gradient(180deg, #ffffff, var(--color-bg));
}

a {
  color: inherit;
}

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

.section {
  padding: var(--space-6) 0;
}

.section-surface {
  background: linear-gradient(180deg, #ffffff, #f8faf4);
  border-top: 1px solid rgba(26, 31, 24, 0.14);
  border-bottom: 1px solid rgba(26, 31, 24, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(143, 195, 31, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #101310;
  line-height: 1;
  min-width: 0;
}

.header-brand-group {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand strong {
  font-size: 1.62rem;
  letter-spacing: 0.08em;
}

.brand-logo {
  height: auto;
  border: 0;
  display: block;
  max-width: 100%;
}

.brand-logo-mark {
  width: clamp(62px, 9.5vw, 84px);
  max-height: 84px;
  flex: 0 0 auto;
}

.brand-logo-wordmark {
  width: clamp(140px, 28vw, 180px);
  max-height: 56px;
  flex: 0 1 auto;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-bottom: 4px;
}

.instagram-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.instagram-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.brand-sub {
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 0.96rem;
  color: rgba(16, 19, 16, 0.74);
  letter-spacing: 0.2em;
}

.main-nav {
  display: none;
  gap: var(--space-3);
}

.main-nav a {
  color: #101310;
  text-decoration: none;
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid transparent;
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  transition: transform 120ms ease, opacity 120ms ease, background-color 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: #101310;
  background: linear-gradient(135deg, #8fc31f, #8fc31f);
  border-color: rgba(16, 19, 16, 0.24);
}

.btn-primary {
  color: #101310;
  background: linear-gradient(135deg, #8fc31f, #8fc31f);
}

.btn.btn-white {
  color: #101310;
  background: #ffffff;
  border-color: rgba(16, 19, 16, 0.24);
}

.btn.btn-white:hover {
  color: #101310;
  background: linear-gradient(135deg, #8fc31f, #8fc31f);
  border-color: rgba(16, 19, 16, 0.24);
}

.btn-outline {
  color: var(--color-primary);
  border-color: rgba(26, 31, 24, 0.24);
  background: rgba(255, 255, 255, 0.92);
}

.header-call-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  font-size: clamp(1.56rem, 3.3vw, 2.02rem);
  font-weight: 800;
  white-space: nowrap;
  color: #101310;
  margin: 0;
  line-height: 1.2;
}

.header-call-text a {
  display: inline-block;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.1em;
  text-decoration-thickness: 0.08em;
  text-decoration-color: currentColor;
  transition: transform 140ms ease;
}

.header-call-text a:hover,
.header-call-text a:focus-visible {
  transform: translateY(-1px);
}

.header-call-icon {
  font-size: 1.05em;
  line-height: 1;
}

.hero-content p,
.news-item p,
.menu-tab,
.delivery-subtab,
.shop-data dd,
.footer-inner p {
  overflow-wrap: anywhere;
}

.hero {
  padding: var(--space-6) 0;
  overflow: clip;
}

.hero-grid {
  display: grid;
  gap: var(--space-5);
  position: relative;
  isolation: isolate;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(14px, 2.4vw, 28px);
}

.hero-title-line {
  white-space: nowrap;
}

.eyebrow {
  margin: 0;
  color: #1a1f18;
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.4;
  color: var(--color-primary);
}

h1 {
  margin-bottom: var(--space-3);
  font-size: clamp(2rem, 3.3vw, 2.9rem);
}

h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

h3 {
  margin-bottom: var(--space-2);
  font-size: 1.2rem;
}

h4 {
  margin-bottom: var(--space-2);
  font-size: 1.05rem;
}

.hero-copy {
  max-width: 60ch;
  margin: 0;
}

.hero-cta {
  margin-top: var(--space-4);
}

.hero-hours {
  margin: var(--space-2) 0 0;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.hero-hours-grid {
  display: grid;
  gap: var(--space-2);
}

.hero-hours-title {
  margin: 0 0 6px;
  font-weight: 700;
}

.hero-hours-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-hours-card li + li {
  margin-top: 2px;
}

.hero-closed-day {
  margin: var(--space-2) 0 0;
  font-weight: 700;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-2);
  padding: var(--space-4);
  box-shadow: var(--shadow-1);
}

.hero-photo {
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  width: min(680px, 100%);
  justify-self: end;
  overflow: visible;
}

.hero-slides {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.4),
    0 0 20px rgba(143, 195, 31, 0.28),
    0 0 36px rgba(143, 195, 31, 0.16),
    0 0 28px rgba(0, 0, 0, 0.16);
}

.hero-photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 260ms ease;
  filter: saturate(1.03);
}

.hero-photo-image.is-active {
  opacity: 1;
}

.hero-photo-static {
  width: 100%;
  justify-self: stretch;
  align-self: stretch;
  margin: 0;
}

.hero-photo-static::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to left, rgba(247, 249, 244, 0.34) 0%, rgba(247, 249, 244, 0) 16%),
    linear-gradient(to bottom, rgba(247, 249, 244, 0.24) 0%, rgba(247, 249, 244, 0) 14%),
    linear-gradient(to top, rgba(247, 249, 244, 0.2) 0%, rgba(247, 249, 244, 0) 14%);
}

.hero-photo-static-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  cursor: pointer;
  font-size: 1.05rem;
  line-height: 1;
}

.hero-slide-btn.prev {
  left: 10px;
}

.hero-slide-btn.next {
  right: 10px;
}

.hero-slide-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.58);
  padding: 0;
}

.hero-slide-dot.is-active {
  background: #ffffff;
}

.hero-slideshow.is-single .hero-slide-btn,
.hero-slideshow.is-single .hero-slide-dots {
  display: none;
}

.grid {
  display: grid;
  gap: var(--space-3);
}

.news-list {
  display: grid;
  gap: var(--space-3);
}

.news-item {
  padding: var(--space-3);
}

.news-item p {
  margin: 0;
}

.news-item-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: center;
}

.news-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 0;
}

.news-date {
  margin-bottom: 6px;
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.menu-heading {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.menu-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.menu-tab {
  flex: 1;
  min-height: 56px;
  border-radius: var(--radius-1);
  border: 1px solid rgba(26, 31, 24, 0.2);
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-primary);
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 1.24rem;
  cursor: pointer;
}

.menu-tab.is-active,
.menu-tab[aria-selected="true"] {
  color: #101310;
  border-color: transparent;
  background: linear-gradient(120deg, #8fc31f, #8fc31f);
  box-shadow: inset 0 0 0 1px rgba(26, 31, 24, 0.24);
}

.menu-panel {
  animation: fade-in 240ms ease;
}

.panel-title {
  margin-bottom: var(--space-3);
}

.delivery-subtabs-note {
  margin: 0 0 var(--space-2);
  color: var(--color-muted);
  font-size: 0.92rem;
}

.delivery-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.delivery-subtab {
  border: 1px solid rgba(26, 31, 24, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: #101310;
  padding: 10px 16px;
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.delivery-subtab.is-active,
.delivery-subtab[aria-pressed="true"] {
  background: linear-gradient(135deg, #8fc31f, #8fc31f);
  border-color: rgba(16, 19, 16, 0.24);
}

#delivery-subtabs .delivery-subtab[data-delivery-filter="delivery-area"].is-active,
#delivery-subtabs .delivery-subtab[data-delivery-filter="delivery-area"][aria-pressed="true"],
#dinein-subtabs .delivery-subtab[data-dinein-filter="store-seats"].is-active,
#dinein-subtabs .delivery-subtab[data-dinein-filter="store-seats"][aria-pressed="true"] {
  background: linear-gradient(135deg, #f2d15c, #f2d15c);
  border-color: rgba(120, 95, 16, 0.3);
}

@media (hover: hover) and (pointer: fine) {
  .menu-tab:hover {
    color: #101310;
    background: linear-gradient(135deg, #8fc31f, #8fc31f);
    border-color: rgba(16, 19, 16, 0.24);
  }

  .delivery-subtab:hover {
    background: linear-gradient(135deg, #8fc31f, #8fc31f);
    border-color: rgba(16, 19, 16, 0.24);
  }

  #delivery-subtabs .delivery-subtab[data-delivery-filter="delivery-area"]:hover,
  #dinein-subtabs .delivery-subtab[data-dinein-filter="store-seats"]:hover {
    background: linear-gradient(135deg, #f2d15c, #f2d15c);
    border-color: rgba(120, 95, 16, 0.3);
  }
}

.menu-list {
  display: grid;
  gap: var(--space-3);
}

.menu-category {
  padding: var(--space-3);
}

.menu-flyer-placeholder {
  /* margin-top: var(--space-2); */
  min-height: 170px;
  border-radius: 12px;
  /* border: 1.5px dashed rgba(26, 31, 24, 0.3); */
  background:
    linear-gradient(135deg, rgba(26, 31, 24, 0.08), transparent),
    #f8fbf1;
  display: grid;
  place-content: center;
  text-align: center;
  /* padding: var(--space-3); */
  gap: 6px;
}

.menu-flyer-placeholder span {
  font-weight: 700;
}

.menu-flyer-placeholder small {
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--color-muted);
}

.menu-flyer-media {
  padding: 0;
  min-height: 0;
  display: block;
}

.menu-flyer-image {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  cursor: zoom-in;
}

.delivery-list {
  grid-template-columns: 1fr;
}

.dinein-list {
  grid-template-columns: 1fr;
}

.delivery-list .menu-flyer-placeholder,
.dinein-list .menu-flyer-placeholder {
  padding: 0;
  min-height: 0;
  display: block;
  aspect-ratio: auto;
  overflow: visible;
}

.delivery-list .menu-flyer-image,
.dinein-list .menu-flyer-image {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 10px;
}

.shop-grid {
  display: grid;
  gap: var(--space-4);
}

.shop-data {
  margin: 0;
}

.shop-data div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--space-2);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(26, 31, 24, 0.12);
}

.shop-data dt {
  color: var(--color-muted);
}

.shop-data dd {
  margin: 0;
}

.map-box h3 {
  margin-bottom: var(--space-3);
}

.map-embed {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 12px;
}

.site-footer {
  padding: var(--space-4) 0;
  background: #8fc31f;
  color: #101310;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.78);
  padding: 24px;
}

.lightbox.is-open {
  display: grid;
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #101310;
  font-size: 1.3rem;
  cursor: pointer;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: flex-start;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #1a1f18;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-photo-reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    /* grid-template-columns: minmax(180px, 1fr) auto minmax(240px, 1fr); */
    align-items: center;
    gap: var(--space-4);
  }

  .main-nav {
    display: flex;
    justify-self: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: clamp(440px, 54vw, 660px);
  }

  .hero-content {
    align-self: center;
    max-width: min(760px, 100%);
    padding: clamp(18px, 2.3vw, 30px);
  }

  .hero-content .hero-hours-card {
    background: transparent;
    border: 0;
    border-left: 3px solid rgba(16, 19, 16, 0.22);
    border-radius: 0;
    padding: 2px 0 2px 12px;
  }

  .hero-photo-static {
    position: absolute;
    inset: 0 0 0 auto;
    width: 58%;
    z-index: 1;
    pointer-events: none;
  }

  .hero-hours-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-photo-static-image {
    min-height: 0;
    object-position: center right;
    -webkit-mask-image: linear-gradient(
      to left,
      rgba(0, 0, 0, 1) 56%,
      rgba(0, 0, 0, 0.92) 68%,
      rgba(0, 0, 0, 0.55) 82%,
      rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
      to left,
      rgba(0, 0, 0, 1) 56%,
      rgba(0, 0, 0, 0.92) 68%,
      rgba(0, 0, 0, 0.55) 82%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .news-item-split {
    grid-template-columns: 1fr 1fr;
  }

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

  .menu-heading {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .menu-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-list {
    grid-template-columns: 1fr;
  }

  .dinein-list {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 1023px) {
  .hero {
    position: relative;
    isolation: isolate;
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(
        180deg,
        rgba(9, 12, 10, 0.52) 0%,
        rgba(9, 12, 10, 0.46) 34%,
        rgba(9, 12, 10, 0.72) 100%
      ),
      url("../img/外装.jpg") center / cover no-repeat;
    transform: scale(1.04);
  }

  .hero .container {
    position: relative;
    z-index: 1;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: var(--space-4);
  }

  .hero-content {
    max-width: 100%;
    padding: clamp(18px, 2.6vw, 24px);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.35));
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  }

  .hero-photo-static {
    display: none;
  }

  .hero-content,
  .hero-content h2,
  .hero-content h3,
  .hero-content p,
  .hero-content li,
  .hero .eyebrow {
    color: #f8fcf8;
  }

  .hero-content .hero-hours-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
    border-radius: 10px;
    padding: 10px 12px;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-hours-card ul {
    padding-left: 1rem;
  }
}

@media (max-width: 767px) {
  .hero-grid {
    gap: var(--space-3);
  }

  .hero-content {
    padding: 20px 16px 18px;
  }

  .header-inner {
    flex-wrap: nowrap;
    min-width: 0;
    gap: 6px;
    min-height: 68px;
    padding: 4px 0;
  }

  .header-inner > * {
    min-width: 0;
  }

  .header-brand-group {
    gap: 4px;
    min-width: 0;
    max-width: 100%;
  }

  .brand {
    gap: 6px;
  }

  .brand-logo-mark {
    width: clamp(38px, 11vw, 52px);
    max-height: 52px;
  }

  .brand-logo-wordmark {
    width: clamp(90px, 24vw, 116px);
    max-height: 36px;
  }

  .instagram-icon {
    width: 16px;
    height: 16px;
  }

  .header-call-text {
    gap: 4px;
    font-size: clamp(1.02rem, 4.2vw, 1.26rem);
    font-weight: 900;
    white-space: nowrap;
    text-align: right;
    line-height: 1.1;
    letter-spacing: 0.01em;
  }

  .header-call-icon {
    font-size: 0.9em;
  }

  .hero-hours-card ul {
    font-size: 1rem;
  }

  .menu-tab {
    min-height: 48px;
    font-size: 1rem;
    line-height: 1.25;
    padding: 8px 10px;
  }

  .delivery-subtab {
    padding: 8px 12px;
    font-size: 0.92rem;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
  }

  .card {
    padding: 18px;
  }

  .map-embed {
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 4px;
  }

  .header-brand-group {
    gap: 3px;
  }

  .brand {
    gap: 4px;
  }

  .brand-logo-mark {
    width: 30px;
    max-height: 30px;
  }

  .brand-logo-wordmark {
    width: 84px;
    max-height: 32px;
  }

  .instagram-icon {
    width: 14px;
    height: 14px;
  }

  .header-call-text {
    gap: 3px;
    font-size: clamp(0.92rem, 4.6vw, 1.08rem);
  }

  .shop-data div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .shop-data dt {
    font-weight: 700;
  }

  .map-embed {
    min-height: 220px;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    gap: var(--space-5);
  }

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

  .delivery-list {
    grid-template-columns: 1fr;
  }

  .dinein-list {
    grid-template-columns: 1fr;
  }

  .hero-photo-static-image {
    opacity: 0;
    animation: hero-photo-reveal 2000ms cubic-bezier(0.2, 0.72, 0.22, 1) 120ms forwards;
    will-change: opacity;
  }
}

@media (min-width: 1024px) and (prefers-reduced-motion: reduce) {
  .hero-photo-static-image {
    opacity: 1;
    animation: none;
  }
}
