/* Natural green theme */
:root {
  --color-bg: #f2f6f1;
  --color-surface: #fdfffc;
  --color-text: #2a332c;
  --color-muted: #55655a;
  --color-accent: #3d8a5c;
  --color-accent-dark: #2a5c3f;
  --color-accent-soft: #e2efe6;
  --color-line: #c9d9ce;
  --font-display: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  --shadow-sm: 0 2px 12px rgba(44, 51, 40, 0.06);
  --radius: 12px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.notice-bar {
  margin: 0;
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  border-bottom: 1px solid var(--color-line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 255, 252, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: inherit;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.85;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--color-text);
  margin: 0 auto;
  transition: transform 0.2s, opacity 0.2s;
}

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

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

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.nav-cta {
  display: flex;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-accent-dark);
  border-color: #b8cec0;
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-ghost {
  background: transparent;
  color: var(--color-muted);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--color-accent-dark);
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.btn-light {
  background: #fff;
  color: var(--color-accent-dark);
  border-color: #fff;
}

.btn-light:hover {
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
}

.hero {
  position: relative;
  min-height: min(85vh, 640px);
  display: flex;
  align-items: center;
  padding: 2rem 1.25rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(242, 246, 241, 0.96) 0%, rgba(242, 246, 241, 0.82) 45%, transparent 72%),
    radial-gradient(ellipse 85% 65% at 88% 35%, rgba(61, 138, 92, 0.18), transparent),
    linear-gradient(180deg, #e8f2eb 0%, var(--color-bg) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.top-pickup {
  padding: 1rem 1.25rem 0;
}

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

.pickup-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-sm);
}

.pickup-label {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  color: var(--color-accent-dark);
}

.pickup-text {
  margin: 0;
  font-size: 0.9rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: center;
}

.hero-visual {
  display: block;
}

.hero-photo {
  border-radius: 14px;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
}

.hero-photo-main {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.65), rgba(226, 239, 230, 0.9)),
    radial-gradient(circle at 20% 30%, rgba(61, 138, 92, 0.28), transparent 55%),
    linear-gradient(120deg, #ddeee2, #d5e6db);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-label {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}

.hero-accent {
  color: var(--color-accent);
}

.hero-lead {
  max-width: 32rem;
  margin: 0 0 2rem;
  color: var(--color-muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.section {
  padding: 4rem 1.25rem;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 720px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  text-align: center;
  margin: 0 0 1.5rem;
  line-height: 1.45;
}

.section-eyebrow {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
}

.section-note {
  text-align: center;
  margin: 0 0 1.5rem;
  color: var(--color-muted);
}

.section-note strong {
  color: var(--color-accent-dark);
}

.hours-section {
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

.table-wrap {
  overflow-x: auto;
  margin: 0 auto 1rem;
  max-width: 640px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.hours-table th,
.hours-table td {
  border: 1px solid var(--color-line);
  padding: 0.65rem 0.5rem;
  text-align: center;
}

.hours-table thead th {
  background: var(--color-accent-soft);
  font-weight: 600;
}

.hours-table tbody th {
  background: #f5f9f6;
  font-weight: 500;
  white-space: nowrap;
}

.hours-cta {
  text-align: center;
  margin: 1.75rem 0 0;
}

.about-section .prose {
  margin: 0 0 1.25rem;
  color: var(--color-muted);
}

.about-section .prose:last-child {
  margin-bottom: 0;
}

.features-section {
  background: linear-gradient(180deg, #eef4f0 0%, #e4ebe7 100%);
}

.feature-title-num {
  display: inline-block;
  font-size: 1.35em;
  line-height: 1;
  color: var(--color-accent-dark);
}

.feature-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 1.5rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  padding: 1rem 1rem 1.2rem;
}

.feature-body {
  display: block;
}

.feature-image-wrap {
  aspect-ratio: 5 / 3;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.65), rgba(226, 239, 230, 0.92)),
    linear-gradient(120deg, #ddeee2, #d5e6db);
  border: 1px solid var(--color-line);
  border-radius: 10px;
  overflow: hidden;
}

.feature-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-accent);
  margin: 0 0 0.7rem;
  line-height: 1;
}

.feature-text h3 {
  font-size: 1.28rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0.85rem 0 0.7rem;
  line-height: 1.4;
}

.feature-text p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--color-muted);
}

@media (max-width: 760px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .feature-body {
    display: block;
  }

  .feature-num {
    font-size: 1.45rem;
    margin-bottom: 0.55rem;
  }

  .feature-text h3 {
    font-size: 1.15rem;
  }
}

.menu-section {
  background: #fff;
}

.menu-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.75rem 1.25rem;
}

.menu-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background: var(--color-bg);
  border-radius: 8px;
  border: 1px solid var(--color-line);
  font-size: 0.9375rem;
}

.menu-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.menu-note {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.price-section {
  background: #e6f1ea;
}

.price-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 480px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 0.9375rem;
}

.price-list li:first-child {
  padding-top: 0;
}

.price-list strong {
  font-size: 1.125rem;
  color: var(--color-accent-dark);
  white-space: nowrap;
}

.flow-section .flow-steps {
  margin: 0 auto;
  padding: 0;
  max-width: 560px;
  list-style: none;
  counter-reset: step;
}

.flow-steps li {
  position: relative;
  padding: 0 0 1.5rem 3rem;
  border-left: 2px solid var(--color-line);
  margin-left: 0.65rem;
}

.flow-steps li:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.flow-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -0.85rem;
  top: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-list {
  margin: 0;
}

.faq-list dt {
  font-weight: 700;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
}

.faq-list dt:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.faq-list dd {
  margin: 0.5rem 0 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.cta-banner {
  background: linear-gradient(145deg, #2a5c3f 0%, #3d8a5c 100%);
  color: #fff;
  padding: 4rem 1.25rem;
}

.cta-inner {
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  margin: 0 0 2rem;
  line-height: 1.5;
}

.cta-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  text-align: left;
}

.cta-cards li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.cta-cards h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}

.cta-cards p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  opacity: 0.95;
  line-height: 1.65;
}

.cta-cards .btn {
  width: 100%;
}

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

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.access-grid .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.access-address {
  font-style: normal;
  margin: 0 0 1rem;
  line-height: 1.8;
}

.access-tel {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.access-tel a {
  color: var(--color-accent-dark);
  text-decoration: none;
}

.access-tel a:hover {
  text-decoration: underline;
}

.access-hours {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.map-placeholder {
  min-height: 280px;
  background: #f0f4f1;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-footer {
  background: #24352a;
  color: #c4d4c8;
  padding: 2.5rem 1.25rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand .logo-mark {
  color: #8fd4a8;
}

.footer-brand .logo-text {
  color: #fff;
  display: block;
  margin-top: 0.15rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.footer-nav a {
  color: #c4d4c8;
  font-size: 0.875rem;
}

.footer-nav a:hover {
  color: #fff;
  text-decoration: none;
}

.copyright {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.8;
}

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

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

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

  .access-grid .section-title {
    text-align: center;
  }

  .access-address,
  .access-tel,
  .access-hours {
    text-align: center;
  }
}

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

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(252, 255, 253, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--color-line);
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0;
    flex-direction: column;
  }

  .nav-cta .btn {
    width: 100%;
    padding: 0.85rem;
  }
}

body.nav-open {
  overflow: hidden;
}
