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

:root {
  --bg: #fff8dc;
  --accent: #6b8e23;
  --ink: #1f262b;
  --muted: #495057;
  --panel: rgba(255, 255, 255, 0.82);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 14px;
}

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

body {
  margin: 0;
  font-family: "Manrope", "Noto Sans JP", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}
a:link {
 color: #6b8e23;
font-weight: bold;
}

a:visited {
 color: #6b8e23;
 font-weight: bold;
}

a:hover {}

a:active {
 color: #6b8e23;
 font-weight: bold;
}
img {
  max-width: 100%;
  display: block;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 220, 0.92);
  border-bottom: 1px solid rgba(107, 142, 35, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6b8e23, #5a731c);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-nav a {
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(107, 142, 35, 0.1);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid rgba(107, 142, 35, 0.3);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: var(--shadow);
  color: var(--accent);
}

.page-hero {
  padding: 80px 5vw 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(240px, 60vw, 520px);
  border-radius: var(--radius);
  padding: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-image > div {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1));
  color: #fff;
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius);
}

.hero-title {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 14px;
  color: var(--accent);
}

.hero-lead {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero-panel {
  display: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(107, 142, 35, 0.12);
  color: var(--accent);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 13px;
}

.section {
  padding: 40px 5vw;
}

.section + .section {
  padding-top: 0;
}

.section h2 {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: clamp(22px, 3vw, 30px);
}

.muted {
  color: var(--muted);
  margin: 8px 0;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: grid;
  gap: 10px;
  transition: none;
}

.card:hover,
.card:focus-within {
  transform: none;
  box-shadow: none;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--accent);
}

.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(107, 142, 35, 0.25);
  background: #6b8e23;
  font-weight: 700;
  color: #fff;
  transition: border 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.pill:link,
.pill:visited {
  color: #fff;
}

.pill:hover,
.pill:focus-visible {
  border-color: #6b8e23;
  color: #fff;
  background: #5e7d1e;
}

.card .pill {
  display: inline-block;
  margin: 12px auto 18px;
}

.content-page .card h3 {
  margin: 0 0 4px;
}

.content-page .card .muted {
  margin: 2px 0 0;
}

.about-page .card h2 {
  margin: 0 0 2px;
}

.about-page .card .muted {
  margin: 0;
}

.about-page .card {
  gap: 6px;
}

.link-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.link-stack a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 700;
}

.link-stack a:hover,
.link-stack a:focus-visible {
  color: var(--ink);
}

.slider {
  display: grid;
  gap: 12px;
}

.slide {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: auto;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #6b8e23, rgba(107, 142, 35, 0.2));
  color: #fff;
  box-shadow: var(--shadow);
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.25), transparent 35%);
  mix-blend-mode: screen;
  z-index: 1;
}

.slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.slide-inner {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  z-index: 2;
}

.slide b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.slide span {
  opacity: 0.9;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.slider .pill {
  align-self: flex-start;
  padding: 6px 12px;
  font-size: 12px;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
}

.slider .pill:hover,
.slider .pill:focus-visible {
  border-color: #fff;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}

.image-wall {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.image-wall .wall-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.image-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(107, 142, 35, 0.3);
  border: none;
  cursor: pointer;
}

.dot.active {
  background: var(--accent);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.text-block {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: grid;
  gap: 10px;
}

.image-placeholder {
  width: 100%;
  min-height: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.content-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: start;
}

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

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-weight: 700;
  color: var(--accent);
}

.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(107, 142, 35, 0.3);
  background: #fff;
  font: inherit;
  color: var(--ink);
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(107, 142, 35, 0.35);
}

.contact-note {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  color: var(--muted);
}

.form-embed {
  margin-top: 10px;
}

.form-embed iframe {
  width: 100%;
  max-width: 100%;
  border: none;
  height: 1600px;
}

.policy-list {
  background: transparent;
  border-radius: 0;
  border: none;
  padding: 0;
  box-shadow: none;
  counter-reset: policy;
  display: grid;
  gap: 18px;
}

.policy-list li {
  list-style: none;
  position: relative;
  padding-left: 54px;
  color: var(--muted);
}

.policy-list li::before {
  counter-increment: policy;
  content: counter(policy, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.site-footer {
  margin-top: auto;
  padding: 24px 5vw 32px;
  color: var(--muted);
  border-top: 1px solid rgba(107, 142, 35, 0.14);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .site-nav {
    position: absolute;
    top: 64px;
    right: 5vw;
    flex-direction: column;
    background: var(--panel);
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(107, 142, 35, 0.16);
    box-shadow: var(--shadow);
    min-width: 220px;
    display: none;
  }

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

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .header-inner {
    align-items: flex-start;
  }

  .page-hero {
    padding-top: 60px;
  }

  .image-wall {
    grid-template-columns: repeat(3, 1fr);
  }
}
