:root {
  color-scheme: light;
  --forest: #20392a;
  --forest-deep: #14271c;
  --leaf: #356441;
  --moss: #74896d;
  --bud: #aebf84;
  --earth: #92724f;
  --cream: #f4efe3;
  --ivory: #fbf8ef;
  --paper: #fffdf7;
  --sun: #d6b473;
  --white: #ffffff;
  --text: #203027;
  --muted: #5f6b5e;
  --line: rgba(32, 57, 42, 0.13);
  --shadow: 0 26px 64px rgba(32, 57, 42, 0.12);
  --soft-shadow: 0 12px 30px rgba(32, 57, 42, 0.07);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, "Yu Gothic", "Yu Gothic UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 13% 0%, rgba(214, 180, 115, 0.14), transparent 27rem),
    radial-gradient(circle at 92% 18%, rgba(174, 191, 132, 0.1), transparent 24rem),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 48%, #eee7d9 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.page-shell { max-width: 1440px; margin: 0 auto; padding: 0 30px 56px; }
.site-header { padding: 10px 0 0; }
.header-top {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid rgba(32, 57, 42, 0.14);
  padding: 12px 4px 15px;
}
.brand-link { display: inline-flex; align-items: center; gap: 14px; min-width: 265px; }
.brand-mark {
  position: relative; width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 14px; background: #e8dfcb; border: 1px solid rgba(146,114,79,.22);
  color: var(--leaf); font-size: 1.45rem; font-weight: 900;
}
.brand-mark::after { content: ""; position: absolute; right: 9px; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--earth); opacity: .72; }
.brand-name { margin: 0; font-size: 1.32rem; font-weight: 800; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; letter-spacing: .035em; }
.brand-subtitle { margin: 4px 0 0; color: var(--muted); font-size: .86rem; font-weight: 600; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 10px; flex-wrap: wrap; }
.main-nav a {
  display: inline-flex; align-items: center; justify-content: center; min-height: 36px;
  padding: 0 7px; border-bottom: 1px solid transparent;
  color: var(--forest); font-size: .88rem; font-weight: 700;
  transition: color .18s ease, border-color .18s ease;
}
.main-nav a:hover { color: var(--earth); border-color: rgba(146,114,79,.48); }

.hero-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(460px, 1.04fr);
  margin-top: 22px;
  min-height: 410px;
  border-radius: 34px;
  border: 1px solid rgba(32, 57, 42, .12);
  background: rgba(255, 253, 247, .88);
  box-shadow: var(--shadow);
}
.hero-section::before {
  content: ""; position: absolute; z-index: 0; left: -120px; bottom: -170px; width: 430px; height: 430px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, transparent 0 27px, rgba(146,114,79,.07) 28px 29px);
  pointer-events: none;
}
.hero-copy {
  position: relative; z-index: 2; max-width: none; min-width: 0;
  padding: 38px 50px 34px; display: flex; flex-direction: column; justify-content: center;
}
.hero-kicker {
  display: flex; align-items: center; gap: 9px; margin: 0;
  color: var(--earth); font-size: .86rem; font-weight: 800; letter-spacing: .12em;
}
.hero-kicker span { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 4px rgba(53,100,65,.12); }
.eyebrow { margin: 0; letter-spacing: .1em; font-size: .84rem; font-weight: 800; color: var(--moss); }
.hero-copy h1 {
  margin: 16px 0 14px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  color: var(--forest-deep);
  font-size: clamp(2.7rem, 3.95vw, 3.9rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.hero-subtitle-main {
  margin: 0 0 16px;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.15rem, 1.75vw, 1.55rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.02em;
}
.hero-text { max-width: 490px; margin: 0 0 28px; color: var(--muted); line-height: 1.95; font-size: 1rem; }
.hero-subtext { max-width: 560px; margin-top: -14px; font-size: .94rem; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-waypoints {
  display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 34px; padding-top: 19px;
  border-top: 1px solid rgba(32,57,42,.12); color: var(--forest); font-size: .82rem; font-weight: 700;
}
.hero-waypoints span { display: inline-flex; align-items: center; gap: 7px; }
.hero-waypoints span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--earth); }
.hero-visual { position: relative; min-width: 0; min-height: 410px; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,39,28,.04), rgba(20,39,28,.08) 55%, rgba(20,39,28,.46)); pointer-events: none; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; }
.hero-map-note {
  position: absolute; z-index: 2; top: 24px; left: 24px; display: flex; align-items: center; gap: 12px;
  padding: 12px 15px; border-radius: 12px; border: 1px solid rgba(255,255,255,.62);
  background: rgba(255,253,247,.9); color: var(--forest); box-shadow: 0 10px 24px rgba(20,39,28,.12);
  backdrop-filter: blur(4px);
}
.hero-map-note div { display: grid; gap: 2px; }
.hero-map-note strong { font-size: .84rem; }
.hero-map-note div span { color: var(--muted); font-size: .72rem; }
.hero-map-pin { position: relative; width: 16px; height: 16px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); background: var(--leaf); }
.hero-map-pin::after { content: ""; position: absolute; width: 6px; height: 6px; left: 5px; top: 5px; border-radius: 50%; background: var(--paper); }
.hero-photo-caption { position: absolute; z-index: 2; right: 22px; bottom: 18px; margin: 0; color: rgba(255,255,255,.88); font-size: .75rem; letter-spacing: .08em; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 23px; border-radius: 10px; border: 1px solid transparent; font-weight: 800; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--leaf); color: var(--white); box-shadow: 0 10px 22px rgba(32,57,42,.16); }
.button.primary:hover { background: #2d5738; }
.button.secondary { background: transparent; color: var(--forest); border-color: rgba(32,57,42,.22); }
.button.tertiary { background: var(--ivory); color: var(--forest); border-color: var(--line); min-height: 42px; padding: 0 18px; }

.service-value {
  display: grid; grid-template-columns: .62fr 1.45fr .93fr; gap: 28px; align-items: center;
  margin-top: 24px; padding: 22px 26px;
  border-top: 1px solid rgba(32,57,42,.12); border-bottom: 1px solid rgba(32,57,42,.12);
}
.service-value-label { margin: 0; color: var(--earth); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.service-value h2 { margin: 0; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.25rem, 2vw, 1.9rem); line-height: 1.45; letter-spacing: -.025em; }
.service-value-note { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.8; }

.entry-section {
  margin-top: 16px;
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.74);
  box-shadow: var(--soft-shadow);
}
.entry-head {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 18px 28px;
  align-items: end;
  margin-bottom: 22px;
}
.entry-head h2 {
  margin: 8px 0 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  line-height: 1.2;
}
.entry-head p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.entry-card {
  display: grid;
  align-content: start;
  gap: 11px;
  min-height: 220px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(32,57,42,.1);
  background: linear-gradient(180deg, rgba(255,253,247,.96), rgba(244,239,227,.84));
}
.entry-card:first-child {
  border-color: rgba(53,100,65,.26);
  background: linear-gradient(180deg, rgba(255,253,247,.98), rgba(235,241,216,.86));
}
.entry-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(174,191,132,.24);
  color: var(--leaf);
  font-size: .86rem;
  font-weight: 900;
}
.entry-card h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.35rem;
}
.entry-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: .92rem;
}
.entry-link {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(32,57,42,.24);
  color: var(--forest);
  font-size: .88rem;
  font-weight: 900;
}
.entry-link:hover { color: var(--earth); border-color: rgba(146,114,79,.5); }

.section { margin-top: 64px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.section-head h2 { margin: 7px 0 0; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; color: var(--forest); font-size: clamp(1.45rem, 2.5vw, 2.55rem); line-height: 1.15; letter-spacing: -.03em; }
.compact-head h2 { font-size: clamp(1.2rem, 1.8vw, 1.65rem); }
.center-head { display: grid; justify-items: center; text-align: center; }
.horizontal-head { align-items: start; }
.more-link { color: var(--forest); font-weight: 800; white-space: nowrap; font-size: .88rem; border-bottom: 1px solid rgba(32,57,42,.24); padding-bottom: 3px; }
.small-note { color: var(--muted); margin: 12px 0 0; text-align: center; font-size: .9rem; }

.discovery-section { margin-top: 56px; }
.discovery-layout { display: grid; grid-template-columns: 1.04fr .96fr; gap: 34px; align-items: stretch; }
.farmers-panel, .map-panel { min-width: 0; }
.home-farm-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 18px; }
.farm-card { display: flex; flex-direction: column; overflow: hidden; border-radius: 18px; background: rgba(255,253,247,.9); border: 1px solid rgba(32,57,42,.1); box-shadow: 0 9px 24px rgba(32,57,42,.055); transition: transform .2s ease, box-shadow .2s ease; }
.farm-card:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(32,57,42,.09); }
.farm-card-image { position: relative; overflow: hidden; height: 184px; background: #d9dfcc; }
.farm-card-image::after { content: ""; position: absolute; inset: auto 0 0; height: 54px; background: linear-gradient(180deg, transparent, rgba(20,39,28,.28)); pointer-events: none; }
.farm-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.farm-card:hover img { transform: scale(1.02); }
.farm-card-region { position: absolute; z-index: 1; left: 14px; bottom: 13px; display: inline-flex; padding: 6px 9px; border-radius: 7px; background: rgba(255,253,247,.92); color: var(--forest); font-size: .75rem; font-weight: 800; box-shadow: 0 5px 14px rgba(20,39,28,.12); }
.farm-card-body { flex: 1; padding: 19px 18px 18px; display: flex; flex-direction: column; gap: 10px; }
.farm-card-body h3 { margin: 0; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; color: var(--forest); font-size: 1.52rem; line-height: 1.1; }
.farm-card-body p { margin: 0; color: var(--muted); line-height: 1.72; font-size: .88rem; }
.farm-card-body .farm-card-style { color: var(--earth); font-size: .74rem; font-weight: 800; line-height: 1.55; }
.farm-card-intro { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.farm-card-facts { display: grid; gap: 0; margin: 5px 0 0; border-top: 1px solid rgba(32,57,42,.1); }
.farm-card-facts div { display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 9px; padding: 8px 0; border-bottom: 1px solid rgba(32,57,42,.08); }
.farm-card-facts dt { color: var(--moss); font-size: .72rem; font-weight: 800; line-height: 1.55; }
.farm-card-facts dd { margin: 0; color: var(--text); font-size: .78rem; font-weight: 700; line-height: 1.55; overflow-wrap: anywhere; }
.farm-card-support { margin-top: 3px; padding: 11px 12px; border-radius: 10px; background: rgba(174,191,132,.14); }
.farm-card-support span { display: block; margin-bottom: 4px; color: var(--moss); font-size: .68rem; font-weight: 800; letter-spacing: .04em; }
.farm-card-support p { color: var(--forest); font-size: .8rem; font-weight: 800; line-height: 1.55; }
.farm-card-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: auto; padding-top: 4px; }
.farm-card-actions.single-action { grid-template-columns: 1fr; }
.farm-card-actions .button { min-height: 42px; padding: 0 10px; border-radius: 8px; font-size: .8rem; }
.farm-card-primary { background: var(--leaf); color: var(--white); }
.farm-card-secondary { background: transparent; color: var(--forest); border-color: rgba(32,57,42,.2); }
.tag-pill { display: inline-flex; width: fit-content; padding: 7px 10px; border-radius: 999px; background: rgba(111,143,95,.14); color: var(--forest); font-weight: 800; font-size: .76rem; }
.loading-text { color: var(--muted); padding: 20px; }

.map-panel .map-card { position: relative; overflow: hidden; border-radius: 18px; min-height: 380px; box-shadow: 0 10px 26px rgba(32,57,42,.07); border: 1px solid rgba(32,57,42,.1); background: #dce8cd; }
.map-panel .map-card::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.5); border-radius: 12px; pointer-events: none; }
.map-panel .map-card img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.map-panel .map-pin { position: absolute; z-index: 1; display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 8px; background: rgba(255,253,247,.9); color: var(--forest); font-weight: 800; font-size: .8rem; box-shadow: 0 8px 18px rgba(32,57,42,.11); }
.map-panel .map-pin::before { content: ""; width: 11px; height: 11px; flex: 0 0 auto; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 4px rgba(47,93,58,.15); }
.map-panel .map-pin-farmer { display: grid; grid-template-columns: auto 1fr; column-gap: 8px; row-gap: 1px; padding: 8px 10px; transition: transform .18s ease, background .18s ease; }
.map-panel .map-pin-farmer:hover { transform: translateY(-1px); background: var(--paper); }
.map-panel .map-pin-farmer::before { grid-row: 1 / span 2; align-self: center; }
.map-panel .map-pin-farmer span { color: var(--muted); font-size: .68rem; font-weight: 700; }
.map-panel .map-pin-farmer strong { color: var(--forest); font-size: .78rem; }
.map-panel .map-pin.ishioka { top: 25%; right: 12%; }
.map-panel .map-pin.mito { top: 46%; right: 14%; }
.map-panel .map-pin.kasama { top: 48%; left: 18%; }
.map-panel .map-pin.tsukuba { bottom: 24%; left: 48%; }
.map-panel .map-pin.hitachi { top: 17%; left: 43%; }

.seed-section { padding: 28px 0 4px; border-top: 1px solid rgba(32,57,42,.11); }
.seed-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.seed-card { overflow: hidden; background: transparent; }
.seed-card img { width: 100%; height: 176px; object-fit: cover; border-radius: 16px; border: 1px solid rgba(32,57,42,.1); box-shadow: 0 8px 20px rgba(32,57,42,.05); }
.seed-card-body { padding: 16px 3px 0; }
.seed-card h3 { margin: 0 0 8px; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; color: var(--forest); font-size: 1.2rem; }
.seed-card p { margin: 0; color: var(--muted); line-height: 1.75; font-size: .92rem; }

.feature-section { padding: 18px 0 4px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 22px; overflow: hidden; border: 1px solid rgba(32,57,42,.1); border-radius: 22px; background: rgba(255,253,247,.58); }
.feature-card { min-height: 210px; padding: 24px 20px; border-right: 1px solid rgba(32,57,42,.1); background: transparent; }
.feature-card:last-child { border-right: 0; }
.feature-mark { width: 34px; height: 34px; display: grid; place-items: center; color: var(--earth); font-weight: 900; font-size: 1.28rem; margin-bottom: 15px; border-bottom: 1px solid rgba(146,114,79,.34); }
.feature-card h3 { margin: 0 0 11px; color: var(--forest); font-size: 1rem; line-height: 1.45; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: .86rem; }
.feature-card a { display: inline-flex; margin-top: 14px; color: var(--forest); font-size: .82rem; font-weight: 900; border-bottom: 1px solid rgba(32,57,42,.22); }

.places-intro-section {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(32,57,42,.1);
  background: linear-gradient(135deg, rgba(255,253,247,.88), rgba(235,241,216,.54));
  box-shadow: 0 10px 26px rgba(32,57,42,.05);
}
.places-intro-section .section-intro { max-width: 900px; }
.places-intro-note {
  width: fit-content;
  max-width: 100%;
  margin-top: 14px !important;
  padding: 10px 13px;
  border-radius: 12px;
  border: 1px solid rgba(146,114,79,.16);
  background: rgba(255,253,247,.76);
  color: var(--earth) !important;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.7 !important;
}
.place-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.place-guide-grid article {
  position: relative;
  padding: 20px;
  border-radius: 17px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.78);
  box-shadow: 0 8px 20px rgba(32,57,42,.04);
}
.place-guide-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf), rgba(146,114,79,.55));
}
.place-guide-grid h3 {
  margin: 0 0 9px;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}
.place-guide-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: .9rem;
}
.place-list-section .section-head p:not(.eyebrow) {
  max-width: 660px;
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: .88rem;
}
.place-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.place-card {
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 0;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(32,57,42,.12);
  background: linear-gradient(180deg, rgba(255,253,247,.96), rgba(244,239,227,.78));
  box-shadow: var(--soft-shadow);
}
.place-card:first-child {
  border-color: rgba(53,100,65,.25);
  background: linear-gradient(180deg, rgba(255,253,247,.98), rgba(235,241,216,.74));
}
.place-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.place-kind {
  margin: 0;
  color: var(--earth);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.place-status {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(217,179,108,.2);
  color: var(--earth);
  font-size: .66rem;
  font-weight: 900;
  line-height: 1.45;
}
.place-card h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.4rem;
  line-height: 1.25;
}
.place-card-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: -4px;
}
.place-card-summary span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(111,143,95,.12);
  color: var(--forest);
  font-size: .74rem;
  font-weight: 900;
  line-height: 1.45;
}
.place-detail-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(32,57,42,.1);
}
.place-detail-list div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(32,57,42,.08);
}
.place-detail-list dt {
  color: var(--moss);
  font-size: .72rem;
  font-weight: 900;
}
.place-detail-list dd {
  margin: 0;
  color: var(--text);
  font-size: .82rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.place-detail-list a {
  color: var(--forest);
  border-bottom: 1px solid rgba(32,57,42,.24);
  font-weight: 900;
}
.place-link-placeholder { color: var(--muted); }
.place-note {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.75;
}
.place-future-button {
  width: 100%;
  margin-top: auto;
  cursor: not-allowed;
  opacity: .82;
  color: var(--forest);
  border-color: rgba(146,114,79,.24);
  background: rgba(255,253,247,.78);
}
.button:disabled:hover { transform: none; }

.advantage-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 22px; }
.advantage-card { position: relative; overflow: hidden; border-radius: 22px; min-height: 310px; box-shadow: 0 10px 26px rgba(32,57,42,.06); border: 1px solid rgba(32,57,42,.09); background: rgba(255,253,247,.82); }
.municipality-card { background: linear-gradient(135deg, rgba(255,255,255,.93), rgba(235,241,216,.96)); }
.restaurant-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.restaurant-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,58,43,.88), rgba(31,58,43,.62), rgba(31,58,43,.12)); }
.card-body { position: relative; z-index: 1; padding: 32px; display: grid; gap: 18px; }
.card-body h3 { margin: 0; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.55rem, 2.4vw, 2.15rem); line-height: 1.18; }
.card-body ul { margin: 0; padding-left: 1.1rem; color: var(--muted); line-height: 1.9; }
.overlay-body h3, .overlay-body .eyebrow, .overlay-body .light-link { color: var(--white); }
.overlay-body .eyebrow { opacity: .9; }
.mini-cards { display: flex; flex-wrap: wrap; gap: 10px; }
.mini-cards span { display: inline-flex; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.88); color: var(--forest); font-weight: 800; font-size: .85rem; }

.community-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; align-items: stretch; }
.community-copy { border-radius: 22px; padding: 32px; background: linear-gradient(135deg, var(--cream), #e9efd4); box-shadow: 0 10px 26px rgba(32,57,42,.06); border: 1px solid rgba(32,57,42,.09); }
.community-copy h2 { margin: 14px 0 16px; font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; color: var(--forest); font-size: clamp(1.65rem, 2.7vw, 2.5rem); line-height: 1.16; }
.community-copy p { color: var(--muted); line-height: 1.85; }
.community-items { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.community-item { padding: 16px 12px; border-radius: 18px; background: rgba(255,255,255,.85); color: var(--forest); font-weight: 800; text-align: center; }
.community-image { position: relative; overflow: hidden; border-radius: 22px; min-height: 330px; box-shadow: 0 10px 26px rgba(32,57,42,.06); }
.community-image img { width: 100%; height: 100%; object-fit: cover; }
.community-badge { position: absolute; right: 24px; bottom: 24px; width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center; text-align: center; background: rgba(31,58,43,.8); color: var(--white); font-weight: 800; line-height: 1.5; border: 1px solid rgba(255,255,255,.36); }

.closing-note-section {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr) auto;
  gap: 14px 24px;
  align-items: center;
  margin-top: 48px;
  padding: 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.7);
}
.closing-note-section h2 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.35;
}
.closing-note-section p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: .9rem;
}

.site-footer { margin-top: 64px; padding: 34px; border-radius: 22px; background: rgba(246,241,231,.78); border: 1px solid rgba(32,57,42,.09); }
.footer-top { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.footer-title { margin: 0 0 12px; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.45rem; font-weight: 800; }
.footer-brand p { color: var(--muted); line-height: 1.85; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.footer-links a { color: var(--forest); font-weight: 800; }
.footer-note { font-size: .9rem; }
.footer-links-minimal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}
.footer-links-minimal a { font-size: .88rem; }

/* shared legacy pages */
.logo-block { display: flex; align-items: center; gap: 15px; padding: 28px 4px 18px; border-bottom: 1px solid rgba(32,57,42,.12); }
.logo-mark { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: #e8dfcb; border: 1px solid rgba(146,114,79,.22); font-size: 1.25rem; }
.logo-block h1 { margin: 5px 0 0; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.15; }
.site-nav { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 13px 4px; border-bottom: 1px solid rgba(32,57,42,.12); }
.site-nav a { color: var(--forest); font-size: .86rem; font-weight: 800; }
.section-block { margin-top: 48px; }
.section-intro { max-width: 760px; margin-bottom: 28px; }
.section-intro h2 { margin: 8px 0 12px; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.25; }
.section-intro p:last-child { margin: 0; color: var(--muted); line-height: 1.8; }
.section-eyebrow { margin: 0; color: var(--earth); font-size: .8rem; font-weight: 800; letter-spacing: .1em; }
.map-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.map-grid .map-card { position: relative; min-height: 230px; padding: 24px; border-radius: 18px; background: rgba(255,253,247,.82); border: 1px solid rgba(32,57,42,.1); box-shadow: 0 8px 22px rgba(32,57,42,.05); }
.map-grid .map-pin { position: static; display: grid; place-items: center; width: 30px; height: 30px; margin-bottom: 18px; border-radius: 50% 50% 50% 0; background: var(--leaf); color: var(--white); font-size: .75rem; font-weight: 800; }
.map-grid .map-pin::before { content: none; }
.map-grid .map-card-kind { margin: 0 0 7px; color: var(--earth); font-size: .72rem; font-weight: 800; letter-spacing: .06em; }
.map-grid .map-card h3 { margin: 0 0 10px; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.4rem; }
.map-grid .map-card p:not(.map-card-kind) { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.75; }
.map-farmer-card { background: linear-gradient(145deg, rgba(255,253,247,.94), rgba(235,241,216,.78)) !important; }
.map-farmer-card:target { border-color: rgba(53,100,65,.46); box-shadow: 0 0 0 4px rgba(53,100,65,.09), 0 12px 28px rgba(32,57,42,.08); }
.map-card-link { display: inline-flex; margin-top: 18px; color: var(--forest); border-bottom: 1px solid rgba(32,57,42,.24); padding-bottom: 3px; font-size: .82rem; font-weight: 800; }
.profile-card, .detail-summary, .detail-support, .detail-links, .detail-notes, .content-card, .page-card { background: rgba(255,255,255,.9); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--soft-shadow); }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.profile-card { overflow: hidden; display: grid; grid-template-rows: 150px 1fr; }
.profile-image {
  display: grid;
  place-items: end start;
  padding: 18px;
  background: linear-gradient(135deg, rgba(53,100,65,.76), rgba(174,191,132,.55)), url("../assets/seedlings-cover.png") center/cover;
  color: rgba(255,255,255,.92);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.45rem;
  font-weight: 900;
}
.card-content { padding: 22px; display: grid; gap: 12px; }
.card-content h4 { margin: 0; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.45rem; }
.card-content p { margin: 0; color: var(--muted); line-height: 1.8; }
.card-tag { color: var(--earth) !important; font-size: .78rem; font-weight: 900; letter-spacing: .05em; }
.card-link { width: fit-content; color: var(--forest); border-bottom: 1px solid rgba(32,57,42,.24); padding-bottom: 3px; font-size: .86rem; font-weight: 900; }
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.info-grid article, .cta-panel {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.82);
  box-shadow: 0 8px 22px rgba(32,57,42,.05);
}
.info-grid h3, .cta-panel h3 { margin: 0 0 10px; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; }
.info-grid p, .cta-panel p { margin: 0; color: var(--muted); line-height: 1.8; }
.cta-panel { margin-top: 24px; }
.cta-panel .button { margin-top: 16px; }

.future-section {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(32,57,42,.1);
  background: linear-gradient(135deg, rgba(255,253,247,.86), rgba(235,241,216,.5));
  box-shadow: 0 10px 26px rgba(32,57,42,.05);
}
.future-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.compact-future-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.future-card {
  display: grid;
  align-content: start;
  gap: 11px;
  min-width: 0;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(32,57,42,.11);
  background: rgba(255,253,247,.86);
  box-shadow: 0 8px 20px rgba(32,57,42,.04);
}
.future-card span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(214,180,115,.2);
  color: var(--earth);
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.45;
}
.future-card h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.12rem;
  line-height: 1.45;
}
.future-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.78;
}
.future-card .button {
  width: fit-content;
  margin-top: 4px;
  cursor: pointer;
}
.subtle-future-card {
  background: rgba(255,253,247,.68);
  box-shadow: none;
}
.future-example-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.future-example-box > div {
  padding: 17px;
  border-radius: 16px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.78);
}
.future-example-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--earth);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
}
.future-example-box p {
  margin: 0;
  color: var(--text);
  font-size: .88rem;
  line-height: 1.75;
}
.future-caution {
  margin: 18px 0 0;
  padding: 13px 14px;
  border-radius: 13px;
  border: 1px solid rgba(146,114,79,.15);
  background: rgba(255,253,247,.78);
  color: var(--earth);
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.75;
}
.operator-future-section {
  padding: 24px;
  background: rgba(255,253,247,.56);
  box-shadow: none;
}

.about-page {
  display: grid;
  gap: 4px;
}
.about-hero-section {
  margin-top: 42px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(32,57,42,.1);
  background:
    radial-gradient(circle at 92% 12%, rgba(174,191,132,.28), transparent 34%),
    linear-gradient(135deg, rgba(255,253,247,.96), rgba(235,241,216,.62));
  box-shadow: var(--soft-shadow);
}
.about-hero-section h2 {
  margin: 10px 0 14px;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.12;
}
.about-hero-section p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}
.about-hero-section .about-lead {
  max-width: 860px;
  margin-bottom: 12px;
  color: var(--forest);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 800;
}
.about-text-section {
  padding-top: 8px;
}
.about-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.about-two-column > div,
.about-note-panel {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.78);
  box-shadow: 0 8px 22px rgba(32,57,42,.04);
}
.about-two-column p,
.about-note-panel p {
  margin: 0 0 13px;
  color: var(--muted);
  line-height: 1.9;
}
.about-two-column p:last-child,
.about-note-panel p:last-child {
  margin-bottom: 0;
}
.about-entry-grid,
.about-list-grid,
.about-feedback-grid,
.about-reference-list {
  display: grid;
  gap: 16px;
}
.about-entry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-card,
.about-list-grid article {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.84);
  box-shadow: 0 8px 22px rgba(32,57,42,.05);
}
.about-card {
  display: grid;
  align-content: start;
  gap: 12px;
}
.about-card-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--white);
  font-weight: 900;
}
.about-card h3,
.about-list-grid h3,
.about-note-panel h3,
.about-ai-group h3 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.4;
}
.about-card p,
.about-list-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
}
.about-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-list-grid article {
  display: grid;
  gap: 9px;
}
.about-list-grid small {
  color: var(--earth);
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.7;
}
.about-note-panel {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(255,253,247,.9), rgba(235,241,216,.48));
}
.about-note-panel h3 {
  margin-bottom: 10px;
}
.about-check-list,
.about-step-list,
.about-feedback-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.about-check-list li,
.about-feedback-grid li,
.about-step-list li {
  position: relative;
  padding: 13px 14px 13px 36px;
  border-radius: 14px;
  border: 1px solid rgba(32,57,42,.09);
  background: rgba(255,253,247,.78);
  color: var(--text);
  font-size: .9rem;
  line-height: 1.7;
}
.about-check-list li::before,
.about-feedback-grid li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 21px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
}
.about-ai-section .future-card-grid {
  margin-top: 12px;
}
.about-ai-group {
  margin-top: 24px;
}
.about-ai-group:first-of-type {
  margin-top: 0;
}
.about-ai-group h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.future-card h4 {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.08rem;
  line-height: 1.45;
}
.about-point-section .about-note-panel {
  margin-top: 0;
}
.about-caution-text {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(146,114,79,.16);
  background: rgba(255,253,247,.84);
  color: var(--earth) !important;
  font-weight: 800;
}
.about-step-list {
  counter-reset: about-step;
  display: grid;
  gap: 12px;
}
.about-step-list li {
  counter-increment: about-step;
  background: rgba(255,253,247,.84);
}
.about-step-list li::before {
  content: counter(about-step);
  position: absolute;
  left: 12px;
  top: 13px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(53,100,65,.12);
  color: var(--forest);
  font-size: .72rem;
  font-weight: 900;
}
.about-feedback-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.about-reference-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.about-reference-list a {
  padding: 17px 18px;
  border-radius: 16px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.82);
  color: var(--forest);
  font-weight: 900;
  line-height: 1.6;
  box-shadow: 0 8px 20px rgba(32,57,42,.04);
}

.mypage-hero-section {
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(32,57,42,.1);
  background: linear-gradient(135deg, rgba(255,253,247,.9), rgba(235,241,216,.58));
  box-shadow: var(--soft-shadow);
}
.mypage-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: stretch;
}
.point-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(53,100,65,.18);
  background: linear-gradient(180deg, rgba(255,253,247,.98), rgba(235,241,216,.76));
  box-shadow: 0 14px 34px rgba(32,57,42,.08);
}
.point-card-label {
  margin: 0;
  color: var(--earth);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.point-card-balance {
  margin: 0;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}
.point-card-balance span {
  font-size: clamp(4rem, 7vw, 6.8rem);
}
.point-status-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(32,57,42,.1);
}
.point-status-list div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(32,57,42,.08);
}
.point-status-list dt {
  color: var(--moss);
  font-size: .75rem;
  font-weight: 900;
}
.point-status-list dd {
  margin: 0;
  color: var(--forest);
  font-size: .86rem;
  font-weight: 900;
}
.point-card-note {
  margin: 0;
  color: var(--earth);
  font-size: .84rem;
  font-weight: 800;
  line-height: 1.75;
}
.mypage-notice {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.82);
}
.mypage-notice h3 {
  margin: 0 0 12px;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.22rem;
}
.mypage-notice ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.95;
  font-size: .9rem;
  font-weight: 700;
}
.detail-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.status-pill { display: inline-flex; width: fit-content; padding: 9px 13px; border-radius: 999px; background: rgba(217,179,108,.22); color: var(--forest); font-weight: 800; }

.farmer-detail-page .detail-section { margin-top: 28px; }
.farmer-detail-page .detail-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr); gap: 20px; align-items: start; }
.detail-back-links { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 0 3px; }
.detail-back-links a { color: var(--forest); border-bottom: 1px solid rgba(32,57,42,.22); padding-bottom: 3px; font-size: .82rem; font-weight: 800; }
.detail-hero { display: grid; grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr); overflow: hidden; border-radius: 20px; border: 1px solid rgba(32,57,42,.1); background: rgba(255,253,247,.88); box-shadow: 0 12px 30px rgba(32,57,42,.07); }
.detail-hero-image { position: relative; min-height: 430px; overflow: hidden; background: #d9dfcc; }
.detail-hero-image::after { content: ""; position: absolute; inset: auto 0 0; height: 100px; background: linear-gradient(180deg, transparent, rgba(20,39,28,.38)); pointer-events: none; }
.detail-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-region-label { position: absolute; z-index: 1; left: 18px; bottom: 17px; display: inline-flex; padding: 7px 10px; border-radius: 8px; background: rgba(255,253,247,.92); color: var(--forest); box-shadow: 0 7px 18px rgba(20,39,28,.14); font-size: .76rem; font-weight: 800; }
.farmer-detail-page .detail-summary { display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 32px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.farmer-detail-page .detail-summary h2 { margin: 0; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.1; letter-spacing: -.04em; }
.detail-philosophy { margin: 0; color: var(--earth); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.08rem; font-weight: 800; line-height: 1.6; }
.detail-summary-text { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.85; }
.detail-quick-facts { display: grid; gap: 0; margin: 5px 0 0; border-top: 1px solid rgba(32,57,42,.1); }
.detail-quick-facts div { display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(32,57,42,.08); }
.detail-quick-facts dt { color: var(--moss); font-size: .74rem; font-weight: 800; line-height: 1.6; }
.detail-quick-facts dd { margin: 0; color: var(--text); font-size: .8rem; font-weight: 700; line-height: 1.6; overflow-wrap: anywhere; }
.farmer-detail-page .detail-summary .detail-tags { margin-top: 3px; }
.farmer-detail-page .detail-summary .status-pill { padding: 7px 10px; font-size: .72rem; }

.detail-action-panel { position: sticky; top: 20px; padding: 27px; border-radius: 20px; border: 1px solid rgba(32,57,42,.1); background: linear-gradient(145deg, rgba(255,253,247,.94), rgba(235,241,216,.82)); box-shadow: 0 12px 30px rgba(32,57,42,.07); }
.detail-action-panel h2 { margin: 8px 0 12px; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(1.45rem, 2.2vw, 2rem); line-height: 1.25; }
.detail-action-panel > p:not(.section-eyebrow):not(.detail-demo-caption) { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.8; }
.detail-action-buttons { display: grid; gap: 10px; margin-top: 22px; }
.detail-action-buttons .button { width: 100%; min-height: 48px; padding: 0 14px; border-radius: 9px; cursor: pointer; font-size: .86rem; }
.detail-action-primary { background: var(--leaf); color: var(--white); box-shadow: 0 8px 18px rgba(32,57,42,.14); }
.detail-action-primary:hover { background: #2d5738; }
.detail-action-secondary { background: rgba(255,253,247,.76); color: var(--forest); border-color: rgba(32,57,42,.18); }
.detail-demo-caption { display: flex; align-items: center; gap: 7px; margin: 15px 0 0; color: var(--muted); font-size: .72rem; line-height: 1.6; }
.detail-demo-caption span { display: inline-flex; padding: 3px 6px; border-radius: 5px; background: rgba(146,114,79,.12); color: var(--earth); font-weight: 800; }

.detail-content-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.farmer-detail-page .detail-support, .farmer-detail-page .detail-links, .farmer-detail-page .detail-notes { padding: 27px; border-radius: 18px; border: 1px solid rgba(32,57,42,.1); background: rgba(255,253,247,.82); box-shadow: 0 9px 24px rgba(32,57,42,.05); }
.detail-content-grid h3 { margin: 8px 0 12px; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.3rem; line-height: 1.45; }
.detail-content-grid h4 { margin: 22px 0 9px; color: var(--earth); font-size: .82rem; letter-spacing: .04em; }
.detail-content-grid p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.85; }
.detail-content-grid ul { margin: 0; padding-left: 1.15rem; color: var(--muted); font-size: .86rem; line-height: 1.9; }
.detail-content-grid a { color: var(--forest); border-bottom: 1px solid rgba(32,57,42,.22); font-weight: 800; }
.farmer-detail-page .detail-links h3:not(:first-of-type) { margin-top: 24px; }
.farmer-detail-page .detail-notes { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; padding: 0; overflow: hidden; }
.farmer-detail-page .detail-notes > div { min-width: 0; padding: 25px; border-right: 1px solid rgba(32,57,42,.09); }
.farmer-detail-page .detail-notes > div:last-child { border-right: 0; }

.modal-open { overflow: hidden; }
.demo-modal { width: min(520px, calc(100% - 28px)); max-width: none; padding: 0; border: 0; border-radius: 20px; background: transparent; color: var(--text); box-shadow: 0 24px 70px rgba(20,39,28,.24); }
.demo-modal::backdrop { background: rgba(20,39,28,.46); backdrop-filter: blur(2px); }
.demo-modal-card { position: relative; padding: 31px; border: 1px solid rgba(32,57,42,.12); border-radius: 20px; background: var(--paper); }
.demo-modal-x { position: absolute; top: 13px; right: 13px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(32,57,42,.12); border-radius: 50%; background: transparent; color: var(--forest); cursor: pointer; font-size: 1.15rem; }
.demo-modal-farmer { margin: 0 42px 8px 0; color: var(--earth); font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.demo-modal h2 { margin: 0; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.8rem; line-height: 1.3; }
.demo-modal-message { margin: 16px 0 0; color: var(--muted); font-size: .9rem; line-height: 1.85; }
.demo-modal-note { margin-top: 20px; padding: 15px 16px; border-radius: 12px; background: rgba(174,191,132,.15); }
.demo-modal-note strong { display: block; color: var(--forest); font-size: .82rem; }
.demo-modal-note p { margin: 6px 0 0; color: var(--muted); font-size: .8rem; line-height: 1.7; }
.demo-modal-confirm { width: 100%; min-height: 46px; margin-top: 20px; background: var(--leaf); color: var(--white); cursor: pointer; }

.interest-section {
  scroll-margin-top: 22px;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(32,57,42,.1);
  background: linear-gradient(135deg, rgba(255,253,247,.86), rgba(235,241,216,.72));
  box-shadow: 0 10px 26px rgba(32,57,42,.055);
}
.interest-section .section-head { margin-bottom: 18px; }
.interest-section .section-head p:not(.eyebrow) { margin: 10px 0 0; color: var(--muted); line-height: 1.8; }
.interest-filter-options { display: flex; flex-wrap: wrap; gap: 10px; }
.interest-filter-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(32,57,42,.16);
  border-radius: 999px;
  background: rgba(255,253,247,.88);
  color: var(--forest);
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(32,57,42,.035);
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.interest-filter-button:hover { transform: translateY(-1px); border-color: rgba(53,100,65,.34); box-shadow: 0 8px 18px rgba(32,57,42,.07); }
.interest-filter-button:focus-visible { outline: 3px solid rgba(214,180,115,.55); outline-offset: 2px; }
.interest-filter-button span { overflow-wrap: anywhere; }
.interest-filter-button.is-active {
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  border-color: rgba(20,39,28,.88);
  color: var(--paper);
  box-shadow: 0 10px 22px rgba(32,57,42,.16);
}
.interest-filter-button.is-active::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 3px rgba(214,180,115,.22);
}
.interest-feedback { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; margin-top: 14px; }
.interest-filter-status {
  width: fit-content;
  max-width: 100%;
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 10px 13px;
  border-radius: 12px;
  border: 1px solid rgba(32,57,42,.09);
  background: rgba(255,253,247,.82);
  color: var(--forest);
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.7;
}
.interest-filter-status small { color: var(--muted); font-size: .78rem; font-weight: 700; line-height: 1.6; }
.interest-scroll-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(53,100,65,.24);
  background: rgba(255,253,247,.62);
  color: var(--forest);
  font-size: .8rem;
  font-weight: 900;
}
.interest-scroll-link:hover { background: var(--paper); }
.interest-scroll-link[hidden] { display: none !important; }

.farm-card-title-row { display: grid; gap: 8px; }
.farm-card-status {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(217,179,108,.2);
  color: var(--earth);
  font-size: .66rem;
  font-weight: 900;
  line-height: 1.45;
}
.farm-card-interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.interest-tag {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(111,143,95,.13);
  color: var(--forest);
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.4;
}
.interest-tag.is-matched {
  background: rgba(53,100,65,.9);
  color: var(--white);
}
.interest-match-count {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(214,180,115,.2);
  color: var(--earth) !important;
  font-size: .72rem !important;
  font-weight: 900;
}
.farm-card-match-summary {
  display: grid;
  gap: 5px;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid rgba(53,100,65,.26);
  border-left: 4px solid var(--leaf);
  background: linear-gradient(135deg, rgba(235,241,216,.64), rgba(255,253,247,.86));
  box-shadow: 0 7px 16px rgba(32,57,42,.045);
}
.farm-card-match-summary span {
  color: var(--leaf);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.farm-card-match-summary p {
  color: var(--forest) !important;
  font-size: .82rem !important;
  font-weight: 900;
  line-height: 1.55 !important;
}
.farm-card-match-summary small {
  color: var(--earth);
  font-size: .68rem;
  font-weight: 800;
}
.detail-interest-tags { margin-top: 2px; }

.farmer-ai-section {
  scroll-margin-top: 22px;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(32,57,42,.1);
  background: linear-gradient(135deg, rgba(31,58,43,.92), rgba(53,100,65,.82));
  color: var(--white);
  box-shadow: var(--shadow);
}
.farmer-ai-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: 28px; align-items: center; }
.farmer-ai-section .eyebrow { color: rgba(255,255,255,.78); }
.farmer-ai-section h2 {
  margin: 10px 0 16px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  line-height: 1.18;
}
.farmer-ai-section p { max-width: 760px; color: rgba(255,255,255,.84); line-height: 1.9; }
.farmer-ai-section .button { margin-top: 8px; background: var(--paper); color: var(--forest); cursor: pointer; }
.farmer-ai-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,253,247,.12);
}
.farmer-ai-card span { display: block; margin-bottom: 14px; color: rgba(255,255,255,.78); font-size: .8rem; font-weight: 900; letter-spacing: .08em; }
.farmer-ai-card ul { margin: 0; padding-left: 1.1rem; color: rgba(255,255,255,.9); line-height: 2; font-weight: 800; }
.farmer-ai-card-note {
  margin: 18px 0 0 !important;
  padding: 13px 14px;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,253,247,.1);
  color: rgba(255,255,255,.78) !important;
  font-size: .82rem;
  line-height: 1.75 !important;
}
.ai-before-after {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.ai-before-after-head { max-width: 780px; }
.ai-before-after-head h3 {
  margin: 9px 0 10px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.24;
}
.ai-before-after-head p { margin: 0; color: rgba(255,255,255,.78); }
.ai-before-after-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 18px; }
.ai-draft-card {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,253,247,.12);
}
.ai-draft-card span {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,253,247,.86);
  color: var(--forest);
  font-size: .74rem;
  font-weight: 900;
}
.ai-draft-card p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  line-height: 1.9;
}
.after-card {
  background: rgba(255,253,247,.18);
  border-color: rgba(255,255,255,.28);
}

.ai-demo-modal { width: min(780px, calc(100% - 28px)); }
.ai-demo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 20px; }
.ai-demo-grid section {
  padding: 17px;
  border-radius: 14px;
  background: rgba(174,191,132,.12);
  border: 1px solid rgba(32,57,42,.08);
}
.ai-demo-grid h3 { margin: 0 0 10px; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; }
.ai-demo-grid ul { margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: .86rem; line-height: 1.85; }
.ai-demo-grid p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.85; }

.seed-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 22px;
  align-items: start;
}
.seed-map-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .68fr);
  gap: 16px;
  align-items: end;
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.82);
}
.seed-map-toolbar h3 {
  margin: 7px 0 8px;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.22rem;
}
.seed-map-toolbar p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.75;
}
.seed-source-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.seed-source-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--forest);
  font-size: .76rem;
  font-weight: 900;
  line-height: 1.45;
}
.seed-source-dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 3px rgba(53,100,65,.1);
}
.source-public_database { --seed-source-color: #2f6f93; }
.source-local_material { --seed-source-color: #7a8b47; }
.source-farmer_verified { --seed-source-color: #356441; }
.source-research_needed { --seed-source-color: #b17a34; }
.seed-source-dot.source-public_database,
.seed-source-badge.source-public_database,
.seed-pin.source-public_database::before { background: #2f6f93; }
.seed-source-dot.source-local_material,
.seed-source-badge.source-local_material,
.seed-pin.source-local_material::before { background: #7a8b47; }
.seed-source-dot.source-farmer_verified,
.seed-source-badge.source-farmer_verified,
.seed-pin.source-farmer_verified::before { background: #356441; }
.seed-source-dot.source-research_needed,
.seed-source-badge.source-research_needed,
.seed-pin.source-research_needed::before { background: #b17a34; }
.seed-map-canvas {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 22px;
  border: 1px solid rgba(32,57,42,.1);
  background:
    linear-gradient(90deg, rgba(255,255,255,.34) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.34) 1px, transparent 1px),
    radial-gradient(circle at 72% 42%, rgba(104,150,167,.16), transparent 18%),
    linear-gradient(135deg, #dfeacf, #cdddbf 48%, #d8e4ca);
  background-size: 12.5% 12.5%, 12.5% 12.5%, auto, auto;
  box-shadow: 0 12px 30px rgba(32,57,42,.07);
}
.seed-map-canvas::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 16px;
  pointer-events: none;
}
.seed-map-base {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.seed-map-outline {
  position: absolute;
  left: 36%;
  top: 7%;
  width: 34%;
  height: 84%;
  border: 2px solid rgba(53,100,65,.28);
  background:
    radial-gradient(circle at 58% 28%, rgba(255,253,247,.28), transparent 22%),
    linear-gradient(180deg, rgba(255,253,247,.2), rgba(53,100,65,.08));
  clip-path: polygon(42% 0, 62% 5%, 76% 18%, 67% 32%, 80% 47%, 68% 58%, 74% 74%, 55% 88%, 46% 100%, 32% 88%, 25% 70%, 12% 56%, 21% 40%, 15% 24%, 29% 11%);
  filter: drop-shadow(0 14px 26px rgba(32,57,42,.08));
}
.seed-map-outline::after {
  content: "茨城県全域";
  position: absolute;
  left: 31%;
  top: 47%;
  color: rgba(32,57,42,.34);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: .08em;
  transform: rotate(-7deg);
}
.seed-map-area-label {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,253,247,.64);
  color: rgba(32,57,42,.72);
  font-size: .72rem;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(32,57,42,.04);
}
.label-north { left: 46%; top: 10%; }
.label-central { left: 48%; top: 42%; }
.label-south { left: 51%; bottom: 12%; }
.label-west { left: 25%; top: 55%; }
.label-east { right: 15%; top: 50%; }
.seed-pin {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  max-width: 210px;
  padding: 9px 11px;
  border: 1px solid rgba(32,57,42,.14);
  border-radius: 12px;
  background: rgba(255,253,247,.94);
  color: var(--forest);
  box-shadow: 0 10px 22px rgba(32,57,42,.12);
  cursor: pointer;
  text-align: left;
  transform: translate(-50%, -50%);
}
.seed-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 16px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  background: var(--seed-source-color, var(--leaf));
  transform: translateX(-50%) rotate(-45deg);
}
.seed-pin span { color: var(--earth); font-size: .66rem; font-weight: 900; }
.seed-pin strong { font-size: .78rem; line-height: 1.35; }
.seed-pin.is-active, .seed-pin:hover { background: var(--paper); border-color: rgba(53,100,65,.4); }
.seed-source-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--seed-source-color, var(--leaf));
  color: var(--white);
  font-size: .68rem;
  font-weight: 900;
  line-height: 1.45;
}
.seed-info-panel {
  min-height: 360px;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.9);
  box-shadow: var(--soft-shadow);
}
.seed-info-panel h3 { margin: 8px 0 16px; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.55rem; line-height: 1.35; }
.seed-detail-list { display: grid; gap: 0; margin: 0; border-top: 1px solid rgba(32,57,42,.1); }
.seed-detail-list div { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(32,57,42,.08); }
.seed-detail-list dt { color: var(--moss); font-size: .76rem; font-weight: 900; }
.seed-detail-list dd { margin: 0; color: var(--text); font-size: .86rem; line-height: 1.6; overflow-wrap: anywhere; }
.seed-detail-list a { color: var(--forest); border-bottom: 1px solid rgba(32,57,42,.24); font-weight: 900; }
.seed-note { margin: 18px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.85; }
.seed-location-note {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(214,180,115,.16);
  color: var(--earth);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.6;
}
.seed-map-attribution {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.7;
  text-align: right;
}
.seed-list-section { margin-top: 34px; }
.seed-list-section .section-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: .88rem;
}
.seed-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.seed-list-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(32,57,42,.1);
  border-radius: 16px;
  background: rgba(255,253,247,.88);
  color: var(--forest);
  text-align: left;
  box-shadow: 0 8px 20px rgba(32,57,42,.045);
}
.seed-list-card.source-public_database { border-left: 4px solid #2f6f93; }
.seed-list-card.source-local_material { border-left: 4px solid #7a8b47; }
.seed-list-card.source-farmer_verified { border-left: 4px solid #356441; }
.seed-list-card.source-research_needed { border-left: 4px solid #b17a34; }
.seed-card-select {
  display: grid;
  gap: 7px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.seed-list-card strong { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 1.12rem; }
.seed-list-card small { color: var(--muted); font-size: .8rem; line-height: 1.6; }
.seed-list-card.is-active, .seed-list-card:hover { border-color: rgba(53,100,65,.4); background: var(--paper); }
.seed-card-meta {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(32,57,42,.08);
}
.seed-card-meta div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(32,57,42,.06);
}
.seed-card-meta dt {
  color: var(--moss);
  font-size: .7rem;
  font-weight: 900;
}
.seed-card-meta dd {
  margin: 0;
  color: var(--text);
  font-size: .8rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}
.seed-card-meta a {
  color: var(--forest);
  border-bottom: 1px solid rgba(32,57,42,.24);
  font-weight: 900;
}
.seed-list-card > p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.75;
}
.seed-card-location {
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(214,180,115,.14);
  color: var(--earth) !important;
  font-size: .76rem !important;
  font-weight: 800;
}
.seed-link-placeholder { color: var(--muted); }
.seed-policy-block {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.72);
}
.seed-policy-block h3 { margin: 0 0 10px; color: var(--forest); font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; }
.seed-policy-block p { margin: 0 0 16px; color: var(--muted); line-height: 1.8; }

.next-links-section { padding-top: 8px; border-top: 1px solid rgba(32,57,42,.11); }
.next-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.next-link-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(32,57,42,.1);
  background: rgba(255,253,247,.78);
  box-shadow: var(--soft-shadow);
}
.next-link-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: 15px;
  border: 1px solid rgba(32,57,42,.1);
}
.next-link-card h3 {
  margin: 8px 0 16px;
  color: var(--forest);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 1.1rem;
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .page-shell { padding: 0 20px 40px; }
  .header-top { align-items: flex-start; }
  .main-nav { max-width: 760px; }
  .hero-section { grid-template-columns: minmax(0, .92fr) minmax(380px, 1.08fr); min-height: 400px; }
  .hero-copy { padding: 36px 38px 32px; }
  .hero-copy h1 { font-size: clamp(2.55rem, 4.4vw, 3.65rem); }
  .hero-visual { min-height: 400px; }
  .service-value { grid-template-columns: .6fr 1.4fr; }
  .service-value-note { grid-column: 2; }
  .discovery-layout, .advantage-grid, .community-layout, .farmer-ai-layout, .seed-map-layout, .closing-note-section { grid-template-columns: 1fr; }
  .map-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .place-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; overflow: visible; border: 0; border-radius: 0; background: transparent; }
  .feature-card { border: 1px solid rgba(32,57,42,.1); border-radius: 18px; background: rgba(255,253,247,.58); }
  .feature-card:last-child { border-right: 1px solid rgba(32,57,42,.1); }
  .farmer-detail-page .detail-grid { grid-template-columns: 1fr; }
  .detail-back-links, .detail-hero, .detail-action-panel, .detail-content-grid { grid-column: auto; }
  .detail-action-panel { position: static; }
}
@media (max-width: 760px) {
  .page-shell { padding: 0 14px 32px; }
  .site-header { padding-top: 6px; }
  .header-top { flex-direction: column; align-items: stretch; gap: 10px; padding: 10px 2px 10px; }
  .brand-link { min-width: 0; }
  .brand-mark { width: 42px; height: 42px; border-radius: 13px; }
  .brand-name { font-size: 1.2rem; }
  .brand-subtitle { font-size: .78rem; }
  .main-nav { justify-content: flex-start; gap: 20px; max-width: none; overflow-x: auto; flex-wrap: nowrap; padding: 0 0 4px; scrollbar-width: none; }
  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav a { flex: 0 0 auto; min-height: 30px; padding: 0; font-size: .8rem; }
  .hero-section { grid-template-columns: 1fr; margin-top: 14px; min-height: 0; border-radius: 24px; }
  .hero-section::before { left: -160px; bottom: 70px; width: 360px; height: 360px; }
  .hero-copy { padding: 27px 23px 24px; }
  .hero-kicker { font-size: .75rem; letter-spacing: .1em; }
  .hero-copy h1 { margin: 14px 0 11px; font-size: clamp(2.25rem, 10.5vw, 3rem); line-height: 1.08; letter-spacing: -.035em; }
  .hero-subtitle-main { margin-bottom: 13px; font-size: 1.16rem; line-height: 1.5; }
  .hero-text { margin-bottom: 20px; font-size: .9rem; line-height: 1.8; }
  .hero-actions { flex-wrap: wrap; gap: 10px; }
  .hero-actions .button { flex: 1 1 160px; min-height: 44px; padding: 0 10px; font-size: .86rem; }
  .hero-waypoints { gap: 7px 13px; margin-top: 22px; padding-top: 15px; font-size: .72rem; }
  .hero-visual { min-height: 210px; height: 210px; }
  .hero-visual img { object-position: 60% 45%; }
  .hero-map-note { top: 13px; left: 13px; gap: 9px; padding: 9px 11px; border-radius: 10px; }
  .hero-map-note strong { font-size: .75rem; }
  .hero-map-note div span { font-size: .66rem; }
  .hero-photo-caption { right: 13px; bottom: 11px; font-size: .66rem; }
  .service-value { display: grid; gap: 10px; margin-top: 18px; padding: 18px 5px; }
  .service-value-label, .service-value h2, .service-value-note { grid-column: auto; }
  .service-value h2 { font-size: 1.25rem; line-height: 1.5; }
  .service-value-note { font-size: .82rem; }
  .entry-section { margin-top: 18px; padding: 22px; border-radius: 20px; }
  .entry-head { grid-template-columns: 1fr; gap: 10px; margin-bottom: 18px; }
  .entry-head h2 { font-size: 1.55rem; }
  .entry-grid { grid-template-columns: 1fr; gap: 10px; }
  .entry-card { min-height: 0; padding: 18px; }
  .next-link-card { grid-template-columns: 1fr; }
  .next-link-card img { height: 150px; }
  .section { margin-top: 48px; }
  .discovery-section { margin-top: 46px; }
  .section-head, .horizontal-head { display: grid; align-items: start; }
  .home-farm-grid, .seed-grid, .feature-grid, .footer-top, .footer-links, .community-items, .ai-demo-grid, .seed-list, .card-grid, .info-grid, .ai-before-after-grid, .place-guide-grid, .place-grid, .next-link-grid, .future-card-grid, .compact-future-grid, .future-example-box, .mypage-layout, .about-two-column, .about-entry-grid, .about-list-grid, .about-check-list, .about-feedback-grid, .about-reference-list { grid-template-columns: 1fr; }
  .interest-section, .farmer-ai-section { padding: 22px; border-radius: 20px; }
  .future-section, .mypage-hero-section { padding: 22px; border-radius: 20px; }
  .point-card, .mypage-notice { padding: 20px; }
  .point-status-list div { grid-template-columns: 94px minmax(0, 1fr); }
  .place-card { padding: 18px; }
  .place-detail-list div { grid-template-columns: 92px minmax(0, 1fr); }
  .closing-note-section { gap: 10px; margin-top: 38px; padding: 20px; }
  .interest-filter-options { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .interest-filter-button { width: 100%; min-height: 40px; justify-content: flex-start; padding: 9px 12px; font-size: .78rem; line-height: 1.45; text-align: left; }
  .interest-feedback { display: grid; align-items: stretch; gap: 9px; }
  .interest-filter-status { width: 100%; }
  .interest-scroll-link { width: 100%; min-height: 42px; }
  .farm-card-image { height: 185px; }
  .map-panel .map-card, .map-panel .map-card img { min-height: 320px; }
  .map-panel .map-pin-farmer { padding: 7px 8px; }
  .map-panel .map-pin-farmer span { font-size: .62rem; }
  .map-panel .map-pin-farmer strong { font-size: .7rem; }
  .map-panel .map-pin.ishioka { right: 7%; }
  .map-panel .map-pin.mito { right: 7%; }
  .map-panel .map-pin.kasama { left: 10%; }
  .logo-block { padding-top: 20px; }
  .site-nav { flex-wrap: nowrap; overflow-x: auto; gap: 20px; scrollbar-width: none; }
  .site-nav::-webkit-scrollbar { display: none; }
  .site-nav a { flex: 0 0 auto; }
  .section-block { margin-top: 36px; }
  .map-grid { grid-template-columns: 1fr; }
  .farmer-detail-page .detail-section { margin-top: 22px; }
  .detail-back-links { align-items: flex-start; font-size: .78rem; }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero-image { min-height: 230px; height: 230px; }
  .farmer-detail-page .detail-summary { padding: 22px; }
  .farmer-detail-page .detail-summary h2 { font-size: 2.2rem; }
  .detail-philosophy { font-size: 1rem; }
  .detail-action-panel { padding: 22px; }
  .detail-action-buttons .button { min-height: 50px; font-size: .88rem; }
  .detail-content-grid { grid-template-columns: 1fr; }
  .farmer-detail-page .detail-support, .farmer-detail-page .detail-links { padding: 22px; }
  .farmer-detail-page .detail-notes { grid-template-columns: 1fr; }
  .farmer-detail-page .detail-notes > div { padding: 22px; border-right: 0; border-bottom: 1px solid rgba(32,57,42,.09); }
  .farmer-detail-page .detail-notes > div:last-child { border-bottom: 0; }
  .demo-modal-card { padding: 26px 21px 21px; }
  .demo-modal h2 { font-size: 1.55rem; }
  .seed-map-canvas { min-height: 330px; }
  .seed-map-toolbar { grid-template-columns: 1fr; padding: 16px; }
  .seed-source-legend { grid-template-columns: 1fr; }
  .seed-map-outline { left: 34%; width: 40%; }
  .seed-map-outline::after { font-size: 1.05rem; left: 23%; }
  .seed-map-area-label { font-size: .62rem; padding: 4px 6px; }
  .seed-pin { max-width: 160px; padding: 8px 9px; }
  .seed-pin strong { font-size: .7rem; }
  .seed-info-panel { min-height: 0; padding: 21px; }
  .seed-detail-list div, .seed-card-meta div { grid-template-columns: 78px minmax(0, 1fr); }
  .seed-map-attribution { text-align: left; }
  .community-image { min-height: 250px; }
  .community-badge { width: 120px; height: 120px; font-size: .86rem; right: 16px; bottom: 16px; }
  .site-footer { margin-top: 48px; }
}
