@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@600;700&display=swap");

:root {
  --bg: #F8F6EE;
  --surface: #DDE9DD;
  --main: #2F6B4F;
  --deep: #1E4D38;
  --text: #1F2D24;
  --accent: #A55325;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.site-name {
  font-family: "Noto Serif JP", serif;
  line-height: 1.45;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

h2 {
  margin-bottom: 24px;
  color: var(--deep);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p:last-child {
  margin-bottom: 0;
}

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

.section {
  padding-block: 80px;
}

.section-surface {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading p {
  max-width: 680px;
}

.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.note {
  font-size: 14px;
}

.demo-banner {
  position: relative;
  z-index: 30;
  padding: 10px 24px;
  background: var(--text);
  color: var(--white);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 20;
  background: var(--bg);
}

.header-inner {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
}

.site-name {
  display: block;
  color: var(--deep);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.site-tagline {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.global-nav ul,
.footer-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav ul {
  align-items: center;
  gap: 22px;
}

.global-nav a {
  position: relative;
  display: inline-block;
  padding-block: 12px;
  font-size: 14px;
  font-weight: 600;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--main);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: opacity .2s ease, transform .2s ease;
}

.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--deep);
  border-radius: 12px;
  background: var(--bg);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--deep);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border: 2px solid var(--main);
  border-radius: 12px;
  background: var(--main);
  color: var(--white);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.button:hover {
  background: var(--deep);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 9px 18px;
  font-size: 14px;
}

.button-outline {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}

.button-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--deep);
}

.button-light {
  border-color: var(--main);
  background: var(--bg);
  color: var(--main);
}

.button-disabled {
  border-color: var(--surface);
  background: var(--surface);
  color: var(--text);
  cursor: not-allowed;
  opacity: .72;
}

.button-disabled:hover {
  background: var(--surface);
  transform: none;
}

.announcement {
  padding: 9px 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: var(--white);
  place-items: center;
}

.hero {
  /* 高さ固定だと低いウィンドウでコンテンツが切れるため、最小値のみ指定して中身に合わせて伸ばす */
  min-height: min(620px, 46vh);
}

.page-hero {
  height: min(360px, 34vh);
  max-height: 46vh;
}

.hero::before,
.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(30, 45, 36, .68);
  content: "";
}

.hero-content,
.page-hero-content {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: 64px;
}

.hero-content {
  text-align: center;
}

.hero h1,
.page-hero h1 {
  margin-bottom: 20px;
  color: var(--white);
}

.hero .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow,
.takeout-content .eyebrow {
  color: var(--white);
}
.hero-lead {
  max-width: 660px;
  margin: 0 auto 32px;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.assumption-card {
  padding: 40px;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(30, 77, 56, .12);
}

.assumption-card h2 {
  margin-bottom: 20px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.assumption-list {
  display: grid;
  margin: 0 0 20px;
  padding: 0;
  gap: 10px 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.assumption-list li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--main);
}

.assumption-list strong {
  color: var(--deep);
}

.news-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--main);
  list-style: none;
}

.news-list li {
  display: grid;
  padding: 18px 8px;
  border-bottom: 1px solid var(--main);
  align-items: center;
  gap: 16px;
  grid-template-columns: 120px 88px 1fr;
}

.news-list time {
  font-variant-numeric: tabular-nums;
}

.tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 12px;
  background: var(--surface);
  color: var(--deep);
  font-size: 14px;
  font-weight: 700;
}

.split {
  display: grid;
  align-items: center;
  gap: 56px;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.split.reverse .split-media {
  order: 2;
}

.split-media img {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.feature-grid,
.card-grid,
.scene-grid,
.value-grid {
  display: grid;
  gap: 24px;
}

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

.feature-grid {
  margin-top: 48px;
}

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

.card,
.feature-card,
.value-card {
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(30, 77, 56, .12);
}

.card img,
.feature-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body,
.feature-body,
.value-card {
  padding: 24px;
}

.card h3,
.feature-card h3,
.value-card h3 {
  color: var(--deep);
}

.price {
  display: block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
}

/* 濃緑背景(テイクアウト帯)上ではアクセント色が沈むため白にする */
.takeout-content .price {
  color: var(--white);
}

.section-action {
  margin-top: 40px;
  text-align: center;
}

.scene-section {
  background: var(--deep);
  color: var(--white);
}

.scene-section h2 {
  color: var(--white);
  text-align: center;
}

.scene-item {
  padding: 28px 20px;
  text-align: center;
}

.scene-item svg {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  stroke: var(--white);
}

.scene-item h3 {
  color: var(--white);
}

.info-list {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.info-list li {
  display: grid;
  padding: 12px 0;
  border-bottom: 1px solid var(--main);
  gap: 16px;
  grid-template-columns: 112px 1fr;
}

.info-list strong {
  color: var(--deep);
}

.cta-band {
  padding-block: 64px;
  background: var(--deep);
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
}

.site-footer {
  padding: 64px 0 24px;
  background: var(--text);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1.2fr 1fr;
}

.site-footer .site-name {
  color: var(--white);
}

.footer-nav ul {
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-nav a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-note {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--surface);
  font-size: 14px;
  text-align: center;
}

.intro-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.anchor-nav {
  position: sticky;
  z-index: 10;
  top: 0;
  padding: 16px 0;
  background: var(--bg);
  box-shadow: 0 14px 36px rgba(30, 77, 56, .12);
}

.anchor-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 12px;
  list-style: none;
}

.anchor-nav a {
  display: block;
  padding: 8px 18px;
  border: 1px solid var(--main);
  border-radius: 12px;
  color: var(--main);
  font-size: 14px;
  font-weight: 700;
}

.featured-menu {
  display: grid;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(30, 77, 56, .12);
  grid-template-columns: 1.2fr 1fr;
}

.featured-menu img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.featured-menu-content {
  display: flex;
  padding: 48px;
  flex-direction: column;
  justify-content: center;
}

.takeout-band {
  display: grid;
  overflow: hidden;
  border-radius: 12px;
  background: var(--deep);
  color: var(--white);
  grid-template-columns: 1fr 1fr;
}

.takeout-band img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.takeout-content {
  display: flex;
  padding: 48px;
  flex-direction: column;
  justify-content: center;
}

.takeout-content h2 {
  color: var(--white);
}

.notice-box {
  padding: 28px;
  border-left: 5px solid var(--accent);
  border-radius: 12px;
  background: var(--surface);
}

.notice-box + .notice-box {
  margin-top: 20px;
}

.contact-scope {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.contact-scope li {
  padding: 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(30, 77, 56, .12);
  font-weight: 700;
  text-align: center;
}

.reservation-switch {
  display: grid;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reservation-item {
  display: flex;
  min-height: 220px;
  padding: 36px;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.reservation-item + .reservation-item {
  border-left: 1px solid var(--main);
}

.form-wrap {
  max-width: 760px;
  margin-inline: auto;
  padding: 48px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(30, 77, 56, .12);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label,
.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--deep);
  font-weight: 700;
}

.required {
  margin-left: 8px;
  color: var(--accent);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--main);
  border-radius: 12px;
  background: var(--bg);
  font-size: 16px;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-row input {
  width: 20px;
  height: 20px;
  margin-top: 5px;
  flex: 0 0 auto;
}

.form-actions {
  margin-top: 32px;
  text-align: center;
}

.form-status {
  padding: 40px;
  border-radius: 12px;
  background: var(--surface);
  text-align: center;
}

.form-status[hidden] {
  display: none;
}

.message-layout {
  display: grid;
  align-items: start;
  gap: 56px;
  grid-template-columns: .8fr 1.2fr;
}

.message-photo img {
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  object-fit: cover;
}

.data-table {
  width: 100%;
  overflow: hidden;
  border-collapse: collapse;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(30, 77, 56, .12);
}

.data-table th,
.data-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--surface);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  width: 30%;
  background: var(--surface);
  color: var(--deep);
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.value-card {
  border-top: 5px solid var(--main);
}

.map-placeholder {
  display: grid;
  min-height: 380px;
  padding: 32px;
  border: 2px dashed var(--main);
  border-radius: 12px;
  background: var(--surface);
  place-items: center;
  text-align: center;
}

.map-placeholder svg {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  fill: var(--main);
}

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

.route-list {
  margin: 20px 0 0;
  padding-left: 1.4em;
}

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

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
}

.gallery-grid figcaption {
  margin-top: 8px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-wrap {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 120px);
    padding: 24px;
    overflow-y: auto;
    background: var(--bg);
    box-shadow: 0 14px 36px rgba(30, 77, 56, .12);
    align-items: stretch;
    flex-direction: column;
  }

  .nav-wrap.is-open {
    display: flex;
  }

  .global-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .global-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--surface);
  }

  .header-phone {
    width: 100%;
  }

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

@media (max-width: 760px) {
  .container,
  .hero-content,
  .page-hero-content {
    width: min(100% - 32px, 1120px);
  }

  .section {
    padding-block: 48px;
  }

  .header-inner {
    min-height: 82px;
  }

  .site-name {
    font-size: 1.35rem;
  }

  .site-tagline {
    font-size: 14px;
  }

  .demo-banner,
  .announcement {
    padding-inline: 16px;
  }

  .hero-content {
    padding-block: 24px;
  }

  .hero h1 {
    margin-bottom: 12px;
  }

  .hero-lead {
    margin-bottom: 16px;
  }

  .assumption-card,
  .form-wrap {
    padding: 28px 20px;
  }

  .assumption-list,
  .feature-grid,
  .card-grid.three,
  .card-grid.four,
  .scene-grid,
  .value-grid,
  .contact-scope,
  .access-grid,
  .message-layout,
  .split,
  .featured-menu,
  .takeout-band,
  .reservation-switch,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .news-list li {
    gap: 8px 12px;
    grid-template-columns: auto 1fr;
  }

  .news-list li > span:last-child {
    grid-column: 1 / -1;
  }

  .featured-menu img,
  .takeout-band img {
    min-height: 260px;
  }

  .featured-menu-content,
  .takeout-content,
  .reservation-item {
    padding: 28px 20px;
  }

  .reservation-item + .reservation-item {
    border-top: 1px solid var(--main);
    border-left: 0;
  }

  .anchor-nav {
    overflow-x: auto;
  }

  .anchor-nav ul {
    width: max-content;
    min-width: 100%;
    padding-inline: 16px;
  }

  .anchor-nav a {
    white-space: nowrap;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }

  .data-table th,
  .data-table td {
    min-width: 120px;
    padding: 15px 16px;
  }

  .gallery-grid {
    gap: 12px;
  }

  .gallery-grid figcaption {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .hero-actions,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
