:root {
  --paper: #f7f5ef;
  --white: #fff;
  --ink: #1a1a1a;
  --black: #111;
  --lime: #c6e84c;
  --lime-deep: #a9d02a;
  --field: #3e7a3a;
  /* 生産者カードのプレースホルダー地色。社長確定=若稲（2026-08-06。明るい地色のため文字は墨黒に切替） */
  --soil: #AAB49B;
  --muted: #69675f;
  --line: rgba(26, 26, 26, .18);
  --shadow: 0 14px 35px rgba(17, 17, 17, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font-gothic), system-ui, sans-serif; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .19; background-image: radial-gradient(rgba(17,17,17,.2) .55px, transparent .65px); background-size: 5px 5px; }
a { color: inherit; }
button, input { font: inherit; }
svg { display: block; }
img { max-width: 100%; }
h1, h2, h3 { overflow-wrap: normal; word-break: auto-phrase; line-break: strict; text-wrap: balance; }
.visually-hidden {
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

@keyframes page-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes map-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pin-drop { from { opacity: 0; transform: translate(var(--x, 0), calc(var(--y, 0) - 20px)); } to { opacity: 1; } }
@keyframes stroke-in { from { background-size: 0 100%; } to { background-size: 100% 100%; } }

.site-header { position: absolute; inset: 0 0 auto; z-index: 50; padding: 23px 38px; }
.header-inner { width: min(1500px, 100%); min-height: 72px; margin: 0 auto; display: flex; align-items: center; }
.brand { display: grid; gap: 0; text-decoration: none; line-height: 1; }
.brand-name { font-family: var(--font-gothic), sans-serif; font-size: 25px; letter-spacing: .04em; }
.brand small { margin-top: 10px; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: clamp(22px, 3vw, 52px); font-size: 12px; font-weight: 900; }
.desktop-nav a { text-decoration: none; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 3px; background: var(--lime); transition: right .2s ease; }
.desktop-nav a:hover::after { right: 0; }
.desktop-nav a.nav-cta { padding: 13px 19px; border: 1px solid var(--black); background: var(--lime); box-shadow: 4px 4px 0 var(--black); }
.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary { width: 44px; height: 44px; display: grid; place-items: center; list-style: none; color: #fff; background: var(--black); border-radius: 50%; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav { position: absolute; right: 0; top: 52px; width: 250px; padding: 10px; display: grid; background: var(--white); border: 2px solid var(--black); box-shadow: 7px 7px 0 var(--black); }
.mobile-menu nav a { padding: 13px; text-decoration: none; font-weight: 800; }

/* noukano.jp journal navigation */
.face-noukano .journal-site-header .header-inner { gap: clamp(18px, 2vw, 34px); }
.face-noukano .journal-site-header .brand { flex: none; }
.face-noukano .desktop-nav.journal-desktop-nav {
  min-width: 0;
  margin-left: 0;
  gap: clamp(13px, 1.35vw, 24px);
  font-size: 10px;
  white-space: nowrap;
}
.journal-news-menu { position: relative; }
.journal-news-trigger { display: inline-flex; align-items: center; gap: 5px; }
.journal-news-trigger span { font-size: 7px; transition: transform .18s ease; }
.journal-news-trigger[aria-expanded="true"] span { transform: rotate(180deg); }
.journal-news-list {
  min-width: 210px;
  margin: 0;
  padding: 8px;
  position: absolute;
  left: 0;
  top: calc(100% + 18px);
  z-index: 70;
  display: grid;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
  background: var(--paper);
  border: 2px solid var(--black);
  box-shadow: 6px 7px 0 rgba(17,17,17,.13);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.journal-news-trigger[aria-expanded="true"] + .journal-news-list {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.desktop-nav .journal-news-list a {
  padding: 10px 11px;
  display: block;
  font-size: 12px;
}
.desktop-nav .journal-news-list a::after { bottom: 4px; left: 11px; }
.journal-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  flex: none;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 900;
}
.journal-login-link,
.journal-logout-link { text-underline-offset: 4px; }
.journal-member-link { max-width: 190px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.journal-logout-link { color: var(--muted); font-size: 11px; }
.journal-premium-button {
  min-height: 36px;
  padding: 0 16px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--black);
  box-shadow: none;
  letter-spacing: .13em;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease;
}
.journal-premium-button::after { content: ""; height: 2px; position: absolute; left: 0; right: 100%; bottom: -5px; background: var(--lime); transition: right .18s ease; }
.journal-premium-button:hover,
.journal-premium-button:focus-visible { color: var(--white); background: var(--black); }
.journal-premium-button:hover::after,
.journal-premium-button:focus-visible::after { right: 0; }
.journal-mobile-menu { display: none; }
.journal-mobile-actions { display: grid; }
.journal-mobile-actions .journal-login-link,
.journal-mobile-actions .journal-logout-link { padding: 13px; }
.journal-mobile-actions .journal-member-link { max-width: none; }
.journal-mobile-actions .journal-logout-link { padding-top: 4px; }
.journal-mobile-actions .journal-premium-button { margin: 8px 10px 10px; padding: 0 12px; color: var(--black); }
.journal-mobile-actions .journal-premium-button:hover,
.journal-mobile-actions .journal-premium-button:focus-visible { color: var(--white); }

@media (max-width: 1180px) {
  .face-noukano .journal-desktop-nav,
  .face-noukano .journal-header-actions { display: none; }
  .face-noukano .mobile-menu.journal-mobile-menu { margin-left: auto; display: block; }
}

.login-page { width: min(1040px, calc(100% - 64px)); }
.login-page-heading { margin-bottom: 45px; }
.login-page-heading h1 { margin: 0; font-size: clamp(52px, 7vw, 88px); font-weight: 400; line-height: 1.15; }
.login-page-heading h1::after { content: ""; width: min(260px, 55%); height: 12px; margin-top: -8px; display: block; background: var(--lime); clip-path: polygon(0 42%, 100% 0, 96% 70%, 8% 100%); }
.login-page-heading .page-lead { margin-bottom: 0; }
.login-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.login-option { min-height: 330px; padding: clamp(28px, 4vw, 46px); display: flex; align-items: flex-start; flex-direction: column; border: 2px solid var(--black); background: var(--paper); box-shadow: 7px 7px 0 rgba(17,17,17,.12); }
.login-option-company { background: var(--lime); box-shadow: 7px 7px 0 var(--black); }
.login-option h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); font-weight: 500; line-height: 1.35; }
.login-option > p:not(.eyebrow) { margin: 20px 0 28px; line-height: 1.9; }
.login-option .button { margin-top: auto; }
.login-registration { margin: 54px 0 0; padding-top: 25px; border-top: 1px solid var(--black); font-weight: 700; }
.login-registration a { display: inline-flex; align-items: center; gap: 6px; font-weight: 900; text-underline-offset: 4px; }
.login-registration svg { width: 17px; }

@media (max-width: 700px) {
  .login-page { width: min(100% - 32px, 560px); }
  .login-options { grid-template-columns: 1fr; }
  .login-option { min-height: 0; }
}

.site-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: min(900px, calc(100dvh - 32px));
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--black);
  border-radius: 0;
  box-shadow: 10px 10px 0 var(--lime);
}
.site-dialog::backdrop { background: rgba(17,17,17,.66); }
.site-dialog-inner { padding: clamp(24px, 5vw, 52px); position: relative; }
.site-dialog-close {
  width: 42px;
  height: 42px;
  padding: 0;
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}
.site-dialog-close:hover,
.site-dialog-close:focus-visible { background: var(--lime); }
.auth-entry-panel { width: 100%; }
.login-page .auth-entry-panel {
  width: min(760px, 100%);
  margin-inline: auto;
  padding: clamp(26px, 5vw, 56px);
  border: 2px solid var(--black);
  background: var(--white);
  box-shadow: 8px 8px 0 var(--lime);
}
.auth-entry-heading { padding-right: 44px; }
.auth-entry-heading h1,
.auth-entry-heading h2 { margin: 0; font-size: clamp(34px, 6vw, 56px); font-weight: 500; line-height: 1.2; }
.auth-entry-heading > p:last-child { margin: 18px 0 28px; color: var(--muted); line-height: 1.8; }
.auth-provider-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.auth-provider {
  min-height: 54px;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--black);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}
.auth-provider:hover,
.auth-provider:focus-visible { background: var(--lime); }
.auth-provider-icon { width: 23px; height: 23px; flex: 0 0 23px; display: grid; place-items: center; }
.auth-provider-icon svg { width: 100%; height: 100%; }
.auth-divider { margin: 26px 0; display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 12px; font-weight: 800; }
.auth-divider::before,
.auth-divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.auth-email-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.auth-field { min-width: 0; display: grid; gap: 7px; }
.auth-email-form label { grid-column: 1 / -1; font-size: 12px; font-weight: 900; }
.auth-email-form input { min-width: 0; padding: 14px 15px; border: 2px solid var(--black); background: var(--white); }
.auth-email-form .button { min-height: 52px; grid-column: 1 / -1; box-shadow: 0 3px 0 var(--lime); }
.auth-email-form .button:disabled { cursor: wait; opacity: .6; }
.auth-form-error { min-height: 1.5em; margin: 0; grid-column: 1 / -1; color: #a12616; font-size: 12px; font-weight: 700; }
.auth-legal-links { margin-top: 13px; display: flex; gap: 18px; font-size: 11px; font-weight: 700; }
.auth-legal-links a,
.auth-reissue-link { text-underline-offset: 3px; }
.auth-existing { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--black); }
.auth-existing h3 { margin: 0 0 13px; font-size: 18px; }
.auth-existing-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.auth-existing-links > a { padding: 14px; display: grid; gap: 5px; border: 1px solid var(--black); text-decoration: none; }
.auth-existing-links > a:hover,
.auth-existing-links > a:focus-visible { background: var(--lime); }
.auth-existing-links span { color: var(--muted); font-size: 11px; line-height: 1.5; }
.auth-reissue-link { margin-top: 13px; display: inline-block; font-size: 11px; font-weight: 700; }
.mini-dialog { width: min(540px, calc(100% - 32px)); }
.mini-dialog h2 { margin: 0 44px 14px 0; font-size: clamp(28px, 5vw, 40px); font-weight: 500; line-height: 1.3; }
.mini-dialog p:not(.eyebrow) { margin: 0 0 26px; line-height: 1.9; }

@media (max-width: 620px) {
  .site-dialog { max-height: calc(100dvh - 20px); }
  .site-dialog-inner { padding: 54px 20px 26px; }
  .auth-entry-heading { padding-right: 0; }
  .auth-provider-list,
  .auth-existing-links { grid-template-columns: 1fr; }
  .auth-email-form { grid-template-columns: 1fr; }
  .auth-email-form label { grid-column: auto; }
  .auth-email-form .button { width: 100%; }
  .auth-legal-links { flex-wrap: wrap; }
}

.section-shell, .page-shell { width: min(1380px, calc(100% - 64px)); margin-inline: auto; }
.home-page { animation: page-in .45s ease both; }
.eyebrow { margin: 0 0 14px; font-size: 10px; font-weight: 900; letter-spacing: .19em; }
.marker {
  position: relative;
  z-index: 0;
  display: inline-block;
  isolation: isolate;
  background: none;
}
.marker::after {
  content: "";
  position: absolute;
  left: -.035em;
  right: -.09em;
  bottom: .03em;
  height: .19em;
  z-index: -1;
  background: var(--lime);
  clip-path: polygon(0 44%, 2% 29%, 7% 36%, 13% 19%, 22% 31%, 31% 13%, 41% 28%, 52% 10%, 64% 25%, 74% 15%, 86% 29%, 94% 18%, 100% 42%, 98% 73%, 90% 62%, 82% 82%, 69% 67%, 57% 88%, 43% 71%, 30% 91%, 19% 70%, 8% 86%, 1% 69%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2.2%, #000 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 2.2%, #000 97%, transparent 100%);
  transform: rotate(-1.2deg);
  transform-origin: left center;
}
.muted { color: var(--muted); }

/* Top hero. Photo: Chris Robert / Unsplash License, stored locally. */
.hero { min-height: 760px; padding: 118px 0 48px; position: relative; display: grid; align-items: center; overflow: hidden; background: url('/images/hero-field.jpg') center 64% / cover no-repeat; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,245,239,.98) 0%, rgba(247,245,239,.76) 40%, rgba(101,183,222,.1) 68%, rgba(17,17,17,.07) 100%); }
.hero-wash { position: absolute; inset: auto 0 0; z-index: 2; height: 30%; background: linear-gradient(transparent, rgba(40,87,33,.25)); }
.hero-inner { width: min(1500px, calc(100% - 76px)); margin: auto; position: relative; z-index: 3; display: grid; grid-template-columns: 56% 44%; align-items: center; }
.hero-copy { padding: 20px 0 0 38px; }
.hero h1 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(62px, 7vw, 112px); font-weight: 400; line-height: 1.08; letter-spacing: .015em; }
.hero-lead { margin: 30px 0 34px; font-size: 14px; font-weight: 700; line-height: 2; text-shadow: 0 1px 10px rgba(255,255,255,.9); }
.hero-map { height: 560px; padding: 35px 56px 0 0; display: grid; place-items: center; }
.hero-side-link { position: absolute; z-index: 5; right: 14px; top: 245px; width: 54px; min-height: 250px; padding: 18px 10px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; color: #fff; background: var(--black); text-decoration: none; font-family: var(--font-gothic), sans-serif; clip-path: polygon(9% 2%, 90% 0, 100% 96%, 4% 100%, 0 9%); }
.hero-side-link span { writing-mode: vertical-rl; letter-spacing: .14em; }
.hero-side-link svg { width: 28px; height: 28px; padding: 6px; color: var(--black); background: var(--lime); border-radius: 50%; }

.stats { max-width: 660px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(17,17,17,.42); }
.stats article { padding: 14px 23px 0 0; position: relative; }
.stats article + article { padding-left: 23px; border-left: 1px solid rgba(17,17,17,.3); }
.stats p { margin: 0 0 3px; font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.stats strong { font-family: var(--font-gothic), sans-serif; font-size: 38px; font-weight: 400; line-height: 1; }
.stats small { margin-left: 5px; font-size: 11px; font-weight: 900; }

.japan-map { width: 100%; height: 100%; display: grid; place-items: center; }
.japan-map svg { width: 100%; height: 100%; overflow: visible; }
.japan-map path { cursor: pointer; transform-box: fill-box; transform-origin: center; transition: transform .2s ease, fill .2s ease, filter .2s ease; animation: map-in .4s ease both; }
.map-hero svg { filter: drop-shadow(0 12px 13px rgba(0,0,0,.18)); }
.map-hero > svg > a > path { fill: rgba(255,255,255,.96); stroke: rgba(17,17,17,.65); stroke-width: .32; }
.map-hero > svg > a:hover > path { fill: var(--lime); transform: translateY(-2px); }
.map-badge { opacity: 0; animation: map-in .45s ease forwards; }
.map-badge > path { fill: var(--black); stroke: #fff; stroke-width: 1; cursor: default; }
.map-badge circle { fill: #fff; stroke: none; }
.map-badge text { display: none; }

/* Area search */
.region-section { position: relative; background: var(--white); }
.region-section::before, .business-band::before, .business-band::after, .listing-cta::before { content: ""; position: absolute; left: 0; right: 0; height: 14px; z-index: 2; background: var(--white); clip-path: polygon(0 50%, 5% 22%, 10% 58%, 16% 30%, 22% 63%, 29% 25%, 35% 55%, 42% 21%, 49% 64%, 55% 28%, 62% 59%, 69% 24%, 76% 62%, 83% 29%, 90% 59%, 96% 27%, 100% 50%, 100% 100%, 0 100%); }
.region-section::before { top: -13px; }
.region-layout { padding: 82px 0 92px; display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(330px, .72fr); gap: 64px; }
.region-map-wrap { min-height: 680px; position: relative; }
.brush-heading p, .section-heading p, .listing-cta p, .business-copy > p { margin: 0 0 6px; font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.brush-heading h2, .section-heading h2 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(37px, 4vw, 58px); font-weight: 400; line-height: 1.25; }
.brush-heading small { margin-left: 110px; font-size: 10px; font-weight: 800; }
.brush-heading.centered { text-align: center; }
.map-regions { position: absolute; inset: 118px 30px 10px 20px; }
.map-regions > svg > a > path {
  stroke: rgba(255,255,255,.72);
  stroke-width: .62;
  stroke-linejoin: round;
  opacity: .9;
  mix-blend-mode: multiply;
}
.map-regions .region-hokkaido { fill: #a8bf76; }
.map-regions .region-tohoku { fill: #778fad; }
.map-regions .region-kanto { fill: #d5bc68; }
.map-regions .region-chubu { fill: #d3a36f; }
.map-regions .region-kinki { fill: #79a69d; }
.map-regions .region-chugoku-shikoku { fill: #bd8fa4; }
.map-regions .region-kyushu { fill: #d27d73; }
.map-regions > svg > a:hover > path { fill: var(--black); transform: scale(1.04); filter: url(#watercolor-regions) drop-shadow(0 4px 4px rgba(0,0,0,.18)); }
.region-label { position: absolute; min-width: 98px; padding: 10px 13px; z-index: 3; border: 1px solid currentColor; border-radius: 50%; background: rgba(255,255,255,.9); text-align: center; font-family: var(--font-gothic), sans-serif; font-size: 14px; line-height: 1.35; }
.label-hokkaido { right: 3%; top: 34%; color: #2c8556; }
.label-kanto { right: 8%; top: 62%; color: #bb8200; }
.label-chubu { right: 24%; top: 76%; color: #c16d27; }
.label-kinki { left: 36%; bottom: 2%; color: #2a8b87; }
.label-chugoku { left: 7%; top: 58%; color: #a74478; }
.label-kyushu { left: -1%; bottom: 3%; color: #c93d39; }

.pickup-list { padding-left: 38px; border-left: 1px dashed rgba(17,17,17,.3); }
.pickup-title { margin-bottom: 20px; display: flex; align-items: end; justify-content: space-between; }
.pickup-title p { margin: 0 0 5px; font-size: 9px; letter-spacing: .16em; font-weight: 900; }
.pickup-title h3 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: 27px; font-weight: 400; }
.pickup-title a, .section-heading > a { display: inline-flex; align-items: center; gap: 5px; text-decoration: none; font-size: 10px; font-weight: 900; }
.pickup-title a svg, .section-heading > a svg { width: 14px; }
.pickup-list .producer-card { min-height: 0; margin-bottom: 15px; padding: 0; grid-template-columns: 108px 1fr; border: 0; box-shadow: none; background: var(--paper); }
.pickup-list .producer-avatar { min-height: 100px; border: 0; }
.pickup-list .producer-content { padding: 13px 13px 10px; }
.pickup-list .producer-card h2 { font-size: 17px; }
.pickup-list .producer-card .chips { margin: 4px 0; }
.pickup-list .producer-card .producer-content > p:not(.producer-location), .pickup-list .producer-card .button { display: none; }

/* Three ways to connect */
.connect-section { padding: 76px 0 92px; }
.connect-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.connect-card { min-height: 285px; padding: 30px 32px; position: relative; overflow: hidden; border: 1px solid rgba(17,17,17,.14); background: var(--white); box-shadow: 0 7px 16px rgba(17,17,17,.05); transition: transform .25s ease, box-shadow .25s ease; }
.connect-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.connect-card > svg:not(.choco-mascot) { position: absolute; right: 30px; top: 26px; width: 36px; height: 36px; }
.connect-kicker { font-size: 10px; font-weight: 900; }
.connect-card h3 { width: fit-content; margin: 28px 0 12px; position: relative; z-index: 0; isolation: isolate; font-family: var(--font-gothic), sans-serif; font-size: 41px; font-weight: 400; background: none; }
.connect-card h3::after {
  content: "";
  position: absolute;
  left: -.06em;
  right: -.12em;
  bottom: .03em;
  height: .18em;
  z-index: -1;
  background: var(--lime);
  clip-path: polygon(0 39%, 4% 24%, 12% 35%, 23% 16%, 37% 31%, 52% 13%, 67% 29%, 82% 18%, 100% 38%, 97% 73%, 84% 61%, 69% 84%, 54% 68%, 38% 87%, 22% 70%, 7% 84%, 1% 67%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  transform: rotate(-1.5deg);
}
.connect-card p { max-width: 275px; margin: 0 0 28px; font-size: 12px; line-height: 1.9; font-weight: 500; }
.connect-card a, .coming-soon { display: inline-flex; align-items: center; gap: 5px; color: var(--ink); text-decoration: none; font-size: 11px; font-weight: 900; }
.connect-card a svg { width: 15px; }
.coming-soon { padding: 6px 8px; border: 1px solid var(--ink); }
.connect-learn::after { content: ""; position: absolute; width: 140px; height: 170px; right: -22px; bottom: -42px; background: url('/images/leafy-field.jpg') center / cover; clip-path: polygon(48% 0, 100% 24%, 90% 100%, 0 87%, 9% 22%); opacity: .9; }
.connect-choco { padding-right: 150px; }
.connect-choco p { max-width: 250px; }
.connect-choco > a { color: #07913e; }
.choco-mascot { position: absolute; width: 150px; height: 145px; right: -5px; bottom: -5px; }

/* Black partner band */
.business-band { padding: 58px 0; position: relative; color: #fff; background: var(--black); }
.business-band::before { top: -13px; background: var(--black); }
.business-band::after { bottom: -13px; transform: rotate(180deg); background: var(--black); }
.business-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .72fr); align-items: center; gap: 34px; }
.business-copy h2 { margin: 4px 0 12px; font-family: var(--font-gothic), sans-serif; font-size: 34px; font-weight: 400; }
.business-copy span { display: block; color: #cfcfcf; font-size: 11px; line-height: 1.9; }
.business-copy a { margin-top: 22px; padding: 10px 15px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid #fff; text-decoration: none; font-size: 11px; font-weight: 800; }
.business-copy a svg { width: 15px; }
.business-benefit { min-height: 130px; display: grid; justify-items: center; align-content: center; gap: 15px; text-align: center; border-left: 1px solid rgba(255,255,255,.25); }
.business-benefit svg { width: 48px; height: 48px; stroke-width: 1.2; }
.business-benefit b { font-size: 11px; }

.journal-section { padding: 90px 0; }
.section-heading { margin-bottom: 25px; display: flex; align-items: end; justify-content: space-between; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px; }
.home-articles { grid-template-columns: repeat(4, 1fr); }
.article-card { overflow: hidden; background: transparent; transition: transform .25s ease; }
.article-card:hover { transform: translateY(-6px); }
.article-card > a { height: 100%; display: block; text-decoration: none; }
.article-visual { height: 210px; position: relative; overflow: hidden; background-position: center; background-size: cover; filter: saturate(.82) contrast(1.04); }
.article-visual > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.article-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, transparent 38%, rgba(17,17,17,.28)); }
.visual-orb { position: absolute; z-index: 2; right: 14px; top: 14px; width: 46px; height: 46px; display: grid; place-items: center; color: #fff; background: var(--black); }
.visual-orb svg { width: 23px; }
.visual-line { display: none; }
.article-card-copy { padding: 14px 2px 0; }
.tag { width: fit-content; padding: 4px 8px; display: inline-flex; color: #fff; background: var(--black); font-size: 9px; font-weight: 800; }
.article-card h3 { margin: 10px 0 8px; font-size: 17px; line-height: 1.55; }
.article-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.article-card-meta { margin-top: 13px; display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; }
.article-card-meta svg { width: 15px; }

.listing-cta { padding: 47px 0; position: relative; overflow: hidden; background: var(--lime-deep); }
.listing-cta::before { top: -2px; background: var(--paper); }
.listing-cta::after { content: ""; position: absolute; inset: 0; opacity: .22; background: repeating-linear-gradient(170deg, transparent 0 14px, rgba(255,255,255,.55) 15px 16px); }
.listing-cta-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 42px; }
.listing-cta h2 { margin: 0 0 8px; font-family: var(--font-gothic), sans-serif; font-size: clamp(34px, 4vw, 54px); font-weight: 400; }
.listing-cta span { font-size: 11px; font-weight: 700; }
.cta-icon { width: 85px; height: 85px; display: grid; place-items: center; border: 2px solid var(--black); border-radius: 50%; transform: rotate(-7deg); }
.cta-icon svg { width: 45px; height: 45px; }
.listing-cta a { min-height: 50px; padding: 0 24px; display: inline-flex; align-items: center; gap: 9px; color: #fff; background: var(--black); text-decoration: none; font-size: 12px; font-weight: 900; box-shadow: 5px 5px 0 rgba(255,255,255,.75); }
.listing-cta a svg { width: 17px; }

/* Shared lower pages */
.page-shell { min-height: 72vh; padding: 155px 0 110px; animation: page-in .4s ease both; }
.page-shell > h1, .article-detail > h1, .pref-hero h1 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(48px, 6vw, 82px); font-weight: 400; line-height: 1.18; letter-spacing: .01em; }
.page-shell > h1::after, .pref-hero h1::after { content: ""; width: min(320px, 64%); height: 12px; margin-top: -9px; display: block; background: var(--lime); clip-path: polygon(0 42%, 100% 0, 96% 70%, 8% 100%); }
.page-lead { max-width: 720px; margin: 22px 0 48px; color: var(--muted); font-size: 15px; line-height: 2; }
.page-lead.wide { max-width: 900px; }
.button { min-height: 47px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--black); color: #fff; background: var(--black); text-decoration: none; font-size: 12px; font-weight: 900; box-shadow: 4px 4px 0 var(--lime); transition: transform .2s ease, box-shadow .2s ease; }
.button:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--lime); }
.button svg { width: 16px; }
.button-small { min-height: 38px; padding: 0 13px; font-size: 10px; }
.button-outline { color: var(--ink); background: var(--white); box-shadow: 4px 4px 0 var(--ink); }

/* ノウカノ公式LINE導線（共通パーツ officialLineCta）。inline=1行ボタンの余白のみ。 */
.official-line-inline { margin: 16px 0 0; }
.footer-brand .official-line-inline { margin-top: 14px; }

.directory-search { max-width: 760px; height: 58px; padding: 0 18px; display: flex; align-items: center; gap: 12px; border: 2px solid var(--black); background: var(--white); box-shadow: 6px 6px 0 var(--lime); }
.directory-search svg { width: 21px; }
.directory-search input { width: 100%; border: 0; outline: 0; background: transparent; }
.result-count { margin: 22px 0 16px; font-family: var(--font-gothic), sans-serif; font-size: 22px; }
.producer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.producer-card { min-height: 274px; padding: 0; display: grid; grid-template-columns: 1fr; gap: 0; overflow: hidden; border: 2px solid var(--black); border-radius: 0; background: var(--white); box-shadow: 5px 5px 0 rgba(17,17,17,.08); cursor: pointer; transition: transform .22s ease, box-shadow .22s ease; }
.producer-card:hover { transform: translateY(-4px); box-shadow: 7px 9px 0 var(--lime); }
.producer-card:focus-visible, .home-pickup-card:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.producer-avatar { min-height: 0; aspect-ratio: 3 / 1; padding: 14px; position: relative; overflow: hidden; display: grid; place-items: center; align-content: center; gap: 10px; color: #fff; background: linear-gradient(155deg, rgba(17,17,17,.03), rgba(17,17,17,.36)), url('/images/green-field.jpg') center / cover; border-bottom: 1px solid rgba(17,17,17,.16); text-align: center; }
.producer-avatar::after { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(255,255,255,.7); }
.producer-avatar-ogp { padding: 0; display: block; background: none; }
.producer-avatar-ogp::after { content: none; }
.producer-avatar-ogp img { width: 100%; height: 100%; display: block; object-fit: cover; }
.producer-avatar.producer-avatar-ogp > span { padding: 4px 9px; position: absolute; left: 14px; top: 14px; z-index: 2; color: #fff; background: var(--black); border-radius: 999px; font-family: inherit; font-size: 10px; font-weight: 900; line-height: 1.2; letter-spacing: 0; }
.producer-avatar svg { width: 38px; height: 38px; position: relative; z-index: 2; }
.producer-avatar span { position: relative; z-index: 2; font-family: var(--font-gothic), sans-serif; font-size: 18px; }
.producer-content { min-width: 0; padding: 16px 18px 18px; }
.producer-card h2 { margin: 2px 0 4px; font-family: var(--font-gothic), sans-serif; font-size: 23px; font-weight: 400; line-height: 1.35; }
.producer-card p { margin: 7px 0; font-size: 11px; line-height: 1.65; }
.producer-link-gate { margin: 7px 0 9px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.producer-link-gate small { color: var(--muted); font-size: 9px; line-height: 1.45; }
.producer-gate-link { padding: 3px 8px; display: inline-flex; align-items: center; color: var(--ink); background: var(--lime); border: 1px solid rgba(17,17,17,.35); border-radius: 999px; font-size: 8px; font-weight: 900; text-decoration: none; white-space: nowrap; }
.producer-link-gate-compact { margin: 4px 0; gap: 4px; }
.producer-link-gate-compact small { font-size: 7px; }
.producer-link-gate-compact .producer-gate-link { padding: 2px 6px; font-size: 7px; }
.producer-location { display: flex; align-items: center; gap: 4px; color: var(--muted); }
.producer-location svg { width: 13px; height: 13px; }
.chips { display: flex; flex-wrap: wrap; gap: 5px; }
.chips span, .chip-outline { padding: 4px 8px; color: var(--black); background: var(--lime); border: 1px solid rgba(17,17,17,.18); font-size: 9px; font-weight: 900; }
.empty-state { min-height: 330px; padding: 45px 24px; display: grid; justify-items: center; align-content: center; text-align: center; border: 2px dashed var(--black); background: var(--white); }
.empty-state h2 { margin: 15px 0 8px; font-family: var(--font-gothic), sans-serif; font-size: 30px; font-weight: 400; }
.empty-state p { margin: 0 0 23px; color: var(--muted); }
.empty-mark { padding: 5px 10px; color: var(--black); background: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: .08em; }

.producer-join-dialog { width: min(620px, 90vw); max-height: 90vh; padding: 0; overflow: auto; color: var(--ink); background: var(--paper); border: 2px solid var(--black); border-radius: 0; box-shadow: 10px 10px 0 var(--lime); }
.producer-join-dialog::backdrop { background: rgba(17,17,17,.62); }
.producer-join-dialog-inner { padding: clamp(28px, 5vw, 48px); position: relative; }
.producer-join-dialog h2 { margin: 8px 46px 18px 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(28px, 5vw, 42px); font-weight: 400; line-height: 1.3; }
.producer-join-dialog p { line-height: 1.8; }
.producer-join-dialog ul { margin: 22px 0 28px; padding: 18px 18px 18px 38px; border: 2px solid var(--black); background: var(--white); line-height: 1.8; }
.producer-join-close { width: 42px; height: 42px; padding: 0; position: absolute; top: 16px; right: 16px; display: grid; place-items: center; color: var(--white); background: var(--black); border: 2px solid var(--black); border-radius: 0; cursor: pointer; font-size: 27px; line-height: 1; }
.producer-join-close:hover, .producer-join-close:focus-visible { color: var(--black); background: var(--lime); outline: 0; }

/* Prefecture pages */
.pref-page { padding-top: 135px; }
.pref-hero { min-height: 300px; padding: 28px 0 35px; display: grid; grid-template-columns: 320px 1fr; align-items: center; gap: 40px; border-bottom: 2px solid var(--black); }
.pref-silhouette { width: 250px; height: 220px; margin: auto; overflow: visible; }
.pref-silhouette path { fill: var(--black); filter: drop-shadow(11px 11px 0 var(--lime)); }
.pref-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: 12px; }
.pref-summary > span { display: inline-flex; align-items: center; gap: 5px; }
.pref-summary svg { width: 19px; }
.pref-summary i { width: 1px; height: 24px; background: var(--black); }
.chip-outline { background: var(--white); border: 1px solid var(--black); }
.filter-row { margin: 34px 0 22px; padding: 12px; display: flex; flex-wrap: wrap; gap: 7px; border: 1px solid var(--black); background: var(--white); }
.filter-row button { padding: 7px 11px; border: 1px solid rgba(17,17,17,.25); background: var(--paper); cursor: pointer; font-size: 10px; font-weight: 800; }
.filter-row button.active { color: #fff; background: var(--black); box-shadow: 3px 3px 0 var(--lime); }
.filter-divider { width: 1px; background: var(--black); }
.pref-related { margin-top: 50px; padding: 28px; display: flex; align-items: center; gap: 20px; color: #fff; background: var(--black); }
.pref-related > svg { width: 38px; }
.pref-related h2, .pref-related p { margin: 0; }
.pref-related h2 { font-family: var(--font-gothic), sans-serif; font-size: 27px; font-weight: 400; }
.pref-related p { color: #ccc; font-size: 11px; }

/* About, partners and listing */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.value-grid article { min-height: 240px; padding: 30px; border: 1px solid var(--black); background: var(--white); box-shadow: 6px 6px 0 var(--lime); }
.value-grid svg { width: 38px; height: 38px; }
.value-grid h2 { margin: 24px 0 9px; font-family: var(--font-gothic), sans-serif; font-size: 29px; font-weight: 400; }
.value-grid p { color: var(--muted); font-size: 12px; line-height: 1.9; }
.partners-page { width: 100%; padding-inline: max(32px, calc((100% - 1380px) / 2)); color: #fff; background: linear-gradient(var(--lime) 0 112px, var(--black) 112px); }
.partners-page .page-lead { color: #c6c6c6; }
.partners-page .value-grid article, .partners-page .notice-panel { color: var(--ink); }
.partners-page .contact-panel { color: var(--ink); box-shadow: 9px 9px 0 var(--lime); }
.story-panel, .notice-panel, .contact-panel, .operator { margin-top: 45px; padding: 40px; border: 1px solid var(--black); background: var(--white); }
.story-panel { color: #fff; background: var(--black); box-shadow: 9px 9px 0 var(--lime); }
.story-panel h2, .notice-panel h2, .contact-panel h2, .operator h2, .policy-list h2 { margin: 4px 0 10px; font-family: var(--font-gothic), sans-serif; font-size: 34px; font-weight: 400; }
.notice-panel > span { padding: 5px 10px; color: var(--black); background: var(--lime); font-size: 10px; font-weight: 900; }
.contact-panel { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.contact-actions { display: flex; gap: 15px; }
.line-button { background: #08a94a; border-color: #08a94a; }
.listing-page { width: min(1380px, calc(100% - 64px)); max-width: none; position: relative; }
.listing-page::before { content: ""; position: absolute; inset: 112px -80px auto; height: 240px; z-index: -1; background: var(--lime); clip-path: polygon(0 8%, 97% 0, 100% 88%, 4% 100%); opacity: .32; }
.listing-free-banner { margin-bottom: 32px; padding: 24px 30px; display: flex; align-items: center; gap: 20px; color: #fff; background: var(--black); box-shadow: 8px 8px 0 var(--lime); }
.listing-free-banner > svg { width: 42px; height: 42px; flex: none; color: var(--lime); stroke-width: 1.6; }
.listing-free-banner strong { font-family: var(--font-gothic), sans-serif; font-size: 29px; font-weight: 400; }
.listing-free-banner p { margin: 4px 0 0; color: #d7d7d2; font-size: 12px; font-weight: 700; line-height: 1.8; }
.listing-entries { display: grid; gap: 24px; }
.listing-entry { padding: clamp(26px, 4vw, 46px); border: 2px solid var(--black); background: var(--white); }
.listing-entry-primary { box-shadow: 11px 11px 0 var(--lime); }
.entry-heading { display: flex; align-items: center; gap: 16px; }
.entry-heading > svg { width: 34px; height: 34px; flex: none; stroke-width: 1.5; }
.entry-heading .eyebrow { margin-bottom: 3px; }
.entry-heading h2, .listing-purpose h2 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(30px, 3.2vw, 43px); font-weight: 400; line-height: 1.3; }
.entry-number { min-width: 52px; padding: 8px 10px; color: var(--lime); background: var(--black); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-align: center; }
.listed-message { margin: 28px 0 24px; padding: 24px 27px; border-left: 9px solid var(--lime); background: var(--paper); }
.listed-message p { margin: 0; font-size: 13px; line-height: 1.9; }
.listed-message .listed-callout { margin-bottom: 6px; font-family: var(--font-gothic), sans-serif; font-size: 28px; line-height: 1.5; }
.consent-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.consent-option { min-height: 142px; padding: 20px; display: grid; grid-template-columns: 27px 1fr; align-content: start; gap: 13px; border: 2px solid var(--black); background: var(--paper); cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.consent-option:hover { transform: translateY(-2px); box-shadow: 5px 5px 0 rgba(17,17,17,.15); }
.consent-option.selected { background: color-mix(in srgb, var(--lime) 42%, var(--white)); box-shadow: 5px 5px 0 var(--black); }
.consent-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.consent-option input:focus-visible + .checkbox-visual { outline: 3px solid var(--field); outline-offset: 3px; }
.checkbox-visual { width: 26px; height: 26px; display: grid; place-items: center; border: 2px solid var(--black); background: var(--white); }
.checkbox-visual svg { width: 19px; height: 19px; stroke-width: 3; }
.consent-option strong { display: block; font-size: 14px; line-height: 1.6; }
.consent-option small { margin-top: 7px; display: block; color: var(--muted); font-size: 11px; line-height: 1.75; }
.selection-note { margin: 14px 0 0; color: var(--muted); font-size: 10px; font-weight: 700; }
.listing-actions { margin-top: 20px; flex-wrap: wrap; }
.listing-actions .button { min-height: 48px; }
.listing-secondary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.listing-secondary-grid .listing-entry { display: flex; flex-direction: column; }
.listing-secondary-grid .listing-entry > p { font-size: 12px; line-height: 1.9; }
.listing-secondary-grid .listing-actions { margin-top: auto; padding-top: 16px; }
.listing-entry-removal { color: #fff; background: var(--black); box-shadow: 9px 9px 0 var(--lime); }
.listing-entry-removal .entry-number { color: var(--black); background: var(--lime); }
.listing-entry-removal .button-outline { color: #fff; border-color: #fff; box-shadow: 4px 4px 0 var(--lime); }
.removal-promise { margin-top: 26px; padding: 17px 19px; display: flex; align-items: flex-start; gap: 10px; color: var(--black); background: var(--lime); font-weight: 900; }
.removal-promise svg { width: 21px; height: 21px; flex: none; }
.listing-purpose { margin: 48px 0 100px; padding: 35px 40px; display: grid; grid-template-columns: auto 1fr; gap: 24px; border-top: 2px solid var(--black); border-bottom: 2px solid var(--black); }
.listing-purpose > svg { width: 46px; height: 46px; color: var(--field); stroke-width: 1.5; }
.listing-purpose .eyebrow { margin-bottom: 4px; }
.listing-purpose h2 { font-size: 31px; }
.listing-purpose div > p:last-child { margin: 12px 0 0; color: var(--muted); font-size: 12px; line-height: 2; }

/* Producer website service */
.hp-service-page, .partners-page-v2 { animation: page-in .4s ease both; }
.hp-hero { min-height: 720px; padding: 145px 0 72px; position: relative; overflow: hidden; display: grid; align-items: center; background: var(--paper); }
.hp-hero::before { content: ""; position: absolute; width: 54vw; height: 54vw; right: -12vw; top: -17vw; border: 2px solid var(--black); border-radius: 50%; box-shadow: 0 0 0 54px var(--lime), 0 0 0 56px var(--black); opacity: .88; }
.hp-hero::after { content: "UPDATE BY LINE"; position: absolute; right: 3vw; bottom: 30px; color: rgba(17,17,17,.1); font-family: var(--font-gothic), sans-serif; font-size: clamp(40px, 7vw, 96px); letter-spacing: .05em; transform: rotate(-5deg); }
.hp-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 430px; align-items: center; gap: clamp(50px, 8vw, 130px); }
.hp-hero-copy h1 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(62px, 7vw, 108px); font-weight: 400; line-height: 1.08; }
.hp-hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 28px 0; font-size: 14px; font-weight: 700; line-height: 2; }
.hp-hero-actions { display: flex; align-items: center; gap: 24px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 900; }
.text-link svg { width: 16px; }
.hp-price-card { min-height: 390px; padding: 42px 40px; position: relative; color: #fff; background: var(--black); border: 2px solid var(--black); box-shadow: 15px 15px 0 var(--lime); transform: rotate(1.5deg); }
.hp-price-card > p { margin: 0 0 28px; color: var(--lime); font-size: 10px; font-weight: 900; letter-spacing: .2em; }
.hp-price-card > div { display: grid; grid-template-columns: 72px 1fr auto; align-items: end; gap: 7px; }
.hp-price-card span { padding-bottom: 10px; font-size: 12px; font-weight: 900; }
.hp-price-card strong { font-family: var(--font-gothic), sans-serif; font-size: clamp(65px, 7vw, 91px); font-weight: 400; line-height: .9; text-align: right; }
.hp-price-card b { padding-bottom: 8px; font-size: 14px; }
.hp-price-card hr { margin: 28px 0; border: 0; border-top: 1px dashed rgba(255,255,255,.35); }
.hp-price-card small { margin-top: 18px; display: block; text-align: right; font-size: 11px; font-weight: 700; }
.hp-line-update { padding: 72px 0; position: relative; color: var(--black); background: var(--lime-deep); }
.hp-line-update::before, .hp-line-update::after { content: ""; position: absolute; left: 0; right: 0; height: 12px; background: var(--paper); clip-path: polygon(0 35%, 7% 75%, 15% 20%, 23% 70%, 32% 24%, 41% 73%, 50% 18%, 60% 72%, 69% 26%, 78% 68%, 88% 18%, 100% 60%, 100% 100%, 0 100%); }
.hp-line-update::before { top: -1px; }
.hp-line-update::after { bottom: -1px; transform: rotate(180deg); }
.hp-line-update-inner { display: grid; grid-template-columns: 155px 1fr; align-items: center; gap: 50px; }
.line-icon { width: 144px; height: 144px; display: grid; place-items: center; color: #fff; background: #08a94a; border: 3px solid var(--black); border-radius: 50%; box-shadow: 10px 10px 0 var(--black); transform: rotate(-6deg); }
.line-icon svg { width: 72px; height: 72px; stroke-width: 1.5; }
.hp-line-update h2 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(40px, 5vw, 67px); font-weight: 400; line-height: 1.25; }
.hp-line-update h2 .marker { background-image: linear-gradient(transparent 61%, rgba(255,255,255,.78) 61%); }
.hp-line-update-inner > div:last-child > p:last-child { max-width: 800px; margin: 18px 0 0; font-size: 13px; font-weight: 700; line-height: 2; }
.hp-content { padding: 95px 0 110px; }
.hp-content > section + section { margin-top: 100px; }
.hp-section-heading h2, .partners-section-heading h2 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(40px, 5vw, 62px); font-weight: 400; line-height: 1.25; }
.hp-audience-grid { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.hp-audience-grid article { min-height: 300px; padding: 38px; position: relative; overflow: hidden; border: 2px solid var(--black); background: var(--white); box-shadow: 9px 9px 0 var(--lime); }
.hp-audience-grid article > span { padding: 6px 10px; color: var(--lime); background: var(--black); font-size: 10px; font-weight: 900; }
.hp-audience-grid article > svg { position: absolute; width: 105px; height: 105px; right: 28px; top: 30px; stroke-width: 1; opacity: .18; }
.hp-audience-grid h3 { margin: 45px 0 10px; font-family: var(--font-gothic), sans-serif; font-size: 37px; font-weight: 400; line-height: 1.35; }
.hp-audience-grid p { max-width: 460px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.9; }
.hp-included-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 2px solid var(--black); border-left: 2px solid var(--black); }
.hp-included-grid article { min-height: 130px; padding: 26px; display: grid; grid-template-columns: 44px 1fr 25px; align-items: center; gap: 18px; border-right: 2px solid var(--black); border-bottom: 2px solid var(--black); background: var(--white); }
.hp-included-grid article:last-child { grid-column: 1 / -1; }
.hp-included-grid article > svg:first-child { width: 39px; height: 39px; stroke-width: 1.5; }
.hp-included-grid article > svg:last-child { width: 25px; height: 25px; padding: 4px; background: var(--lime); border-radius: 50%; stroke-width: 3; }
.hp-included-grid h3 { margin: 0 0 5px; font-family: var(--font-gothic), sans-serif; font-size: 24px; font-weight: 400; }
.hp-included-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.hp-trust { padding: 48px; display: grid; grid-template-columns: 90px 1fr; gap: 34px; color: #fff; background: var(--black); box-shadow: 12px 12px 0 var(--lime); }
.hp-trust > svg { width: 84px; height: 84px; color: var(--lime); stroke-width: 1.2; }
.hp-trust h2 { margin: 0 0 24px; font-family: var(--font-gothic), sans-serif; font-size: clamp(35px, 4vw, 54px); font-weight: 400; }
.hp-trust-points { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.hp-trust-points p { margin: 0; display: flex; align-items: flex-start; gap: 12px; color: #cfcfca; font-size: 12px; line-height: 1.9; }
.hp-trust-points svg { width: 21px; height: 21px; padding: 4px; flex: none; color: var(--black); background: var(--lime); border-radius: 50%; stroke-width: 3; }
.hp-trust-points strong { display: block; color: #fff; font-size: 15px; }
.hp-example { display: grid; grid-template-columns: 1fr minmax(350px, .8fr); align-items: center; gap: 70px; }
.hp-example h2 { margin: 0 0 18px; font-family: var(--font-gothic), sans-serif; font-size: clamp(38px, 4.5vw, 57px); font-weight: 400; line-height: 1.35; }
.hp-example div:first-child > p:last-child { max-width: 650px; color: var(--muted); font-size: 12px; line-height: 2; }
.journal-sample { min-height: 300px; padding: 26px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; border: 2px solid var(--black); background: var(--white); box-shadow: 11px 11px 0 var(--lime); transform: rotate(2deg); }
.journal-sample::after { content: ""; position: absolute; width: 240px; height: 240px; right: -70px; bottom: -85px; border: 42px solid var(--lime); border-radius: 50%; }
.journal-sample span { font-family: var(--font-gothic), sans-serif; font-size: 21px; }
.journal-sample b { position: relative; z-index: 2; font-family: var(--font-gothic), sans-serif; font-size: 36px; font-weight: 400; line-height: 1.25; }
.journal-sample i { width: 70%; height: 7px; position: relative; z-index: 2; background: var(--black); transform: rotate(-2deg); }
.hp-contact { padding: 52px; display: flex; align-items: center; justify-content: space-between; gap: 45px; border: 2px solid var(--black); background: var(--lime-deep); }
.hp-contact h2 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(38px, 4vw, 56px); font-weight: 400; line-height: 1.3; }
.hp-contact div:first-child > p:last-child { margin: 14px 0 0; font-size: 12px; font-weight: 700; }
.hp-contact-actions { display: grid; gap: 14px; flex: none; }

/* Partner products */
.partners-page-v2 { color: #fff; background: var(--black); }
.partners-hero { min-height: 650px; padding: 150px 0 82px; position: relative; overflow: hidden; display: grid; align-items: center; background: linear-gradient(164deg, var(--lime-deep) 0 31%, var(--black) 31.2%); }
.partners-hero::after { content: ""; position: absolute; inset: 31% -2% auto; height: 17px; background: var(--lime-deep); clip-path: polygon(0 15%, 7% 82%, 15% 20%, 24% 74%, 33% 23%, 42% 80%, 52% 20%, 62% 75%, 72% 26%, 81% 77%, 91% 18%, 100% 73%, 100% 0, 0 0); }
.partners-hero-inner { width: min(1380px, calc(100% - 64px)); margin: auto; display: grid; grid-template-columns: 1fr 420px; align-items: end; gap: 75px; position: relative; z-index: 2; }
.partners-hero h1 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(60px, 7vw, 102px); font-weight: 400; line-height: 1.1; }
.partners-hero .eyebrow { color: var(--lime); }
.partners-hero .page-lead { margin-bottom: 0; color: #cacac5; }
.partners-data { padding: 33px; border: 2px solid #fff; background: var(--black); box-shadow: 12px 12px 0 var(--lime); }
.partners-data > p { margin: 0 0 18px; color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .2em; }
.partners-data > div { padding: 12px 0; display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.25); }
.partners-data strong { font-family: var(--font-gothic), sans-serif; font-size: 55px; font-weight: 400; line-height: 1; }
.partners-data span { font-size: 11px; font-weight: 700; }
.partners-data small { margin-top: 11px; display: block; color: #989894; font-size: 9px; }
.partners-content { padding: 95px 0 110px; }
.partners-content > section + section { margin-top: 100px; }
.partners-section-heading > p:last-child { max-width: 720px; margin: 16px 0 0; color: #b5b5b0; font-size: 12px; line-height: 1.9; }
.target-tags { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.target-tags span { min-height: 62px; padding: 15px 18px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.35); font-size: 11px; font-weight: 800; }
.target-tags svg { width: 18px; height: 18px; flex: none; color: var(--lime); }
.partner-product-grid { margin-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 19px; }
.partner-product-grid article { min-height: 350px; padding: 31px; display: flex; flex-direction: column; color: var(--ink); background: var(--white); border: 2px solid var(--black); box-shadow: 8px 8px 0 var(--lime); }
.product-topline { display: flex; align-items: center; justify-content: space-between; }
.product-topline span { padding: 6px 9px; color: var(--lime); background: var(--black); font-size: 10px; font-weight: 900; }
.product-topline svg { width: 43px; height: 43px; stroke-width: 1.3; }
.partner-product-grid h3 { margin: 45px 0 12px; font-family: var(--font-gothic), sans-serif; font-size: 31px; font-weight: 400; line-height: 1.3; }
.partner-product-grid p { margin: 0 0 25px; color: var(--muted); font-size: 12px; line-height: 1.9; }
.partner-product-grid strong { width: fit-content; margin-top: auto; padding: 7px 9px; border-bottom: 5px solid var(--lime); font-size: 10px; }
.partners-ethics { padding: 50px; display: grid; grid-template-columns: 130px 1fr; gap: 45px; color: var(--ink); background: var(--lime-deep); border: 2px solid #fff; box-shadow: 13px 13px 0 #fff; }
.ethics-mark { width: 125px; height: 125px; display: grid; justify-items: center; align-content: center; gap: 8px; color: #fff; background: var(--black); border-radius: 50%; transform: rotate(-6deg); }
.ethics-mark svg { width: 51px; height: 51px; stroke-width: 1.4; }
.ethics-mark span { font-size: 8px; font-weight: 900; letter-spacing: .12em; }
.partners-ethics h2 { margin: 0 0 25px; font-family: var(--font-gothic), sans-serif; font-size: clamp(38px, 4vw, 54px); font-weight: 400; }
.partners-ethics p { line-height: 1.9; }
.ethics-free { margin: 0 0 11px; font-size: 14px; }
.ethics-free strong { margin-right: 7px; font-size: 18px; }
.ethics-consent { margin: 0; padding: 20px 22px; color: #fff; background: var(--black); font-size: 13px; }
.ethics-consent strong { color: var(--lime); }
.ethics-stop { margin: 15px 0 0; display: flex; align-items: flex-start; gap: 9px; font-size: 11px; font-weight: 700; }
.ethics-stop svg { width: 19px; height: 19px; flex: none; }
.partners-contact { padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-top: 1px solid rgba(255,255,255,.38); border-bottom: 1px solid rgba(255,255,255,.38); }
.partners-contact h2 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(37px, 4vw, 54px); font-weight: 400; line-height: 1.35; }
.partners-contact div:first-child > p:last-child { margin: 15px 0 0; display: flex; align-items: center; gap: 8px; color: #aaa; font-size: 11px; }
.partners-contact div:first-child > p:last-child svg { width: 16px; }
.partners-contact .button-outline { color: #fff; border-color: #fff; background: transparent; box-shadow: 4px 4px 0 var(--lime); }

/* Article detail */
.articles-page .article-grid { margin-top: 25px; }
.article-page-shell { width: min(1240px, calc(100% - 64px)); min-height: 75vh; margin: 0 auto; padding: 155px 0 110px; display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 68px; }
.article-detail > h1 { margin-top: 15px; font-size: clamp(44px, 5vw, 70px); }
.article-tag { background: var(--lime); color: var(--black); }
.article-meta { margin: 22px 0; display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: 11px; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-meta svg { width: 15px; }
.article-meta i { width: 1px; height: 18px; background: var(--black); }
.article-hero-visual { height: 460px; border: 2px solid var(--black); }
.article-intro { margin: 28px 0; padding: 25px 28px; border-left: 9px solid var(--lime); background: var(--white); font-size: 15px; font-weight: 700; line-height: 2; }
.article-answer-box { margin: 28px 0 42px; padding: 26px 28px; min-width: 0; border: 2px solid var(--black); border-radius: 12px; background: var(--white); box-shadow: 8px 8px 0 var(--lime); }
.article-answer-box .eyebrow { margin-bottom: 5px; color: var(--muted); }
.article-answer-box h2, .article-howto h2, .article-sources h2, .article-related-links h2 { margin: 0 0 18px; font-family: var(--font-gothic), sans-serif; font-size: 30px; font-weight: 400; }
.article-answer-box dl { margin: 0; }
.article-answer-box dl > div { padding: 12px 0; display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 18px; border-top: 1px solid var(--line); }
.article-answer-box dt { font-weight: 900; }
.article-answer-box dd { margin: 0; color: var(--muted); line-height: 1.8; }
.article-body section { margin: 44px 0; }
.article-body p, .article-body li { font-size: 14px; line-height: 2; }
/* 小見出しはh2（検索エンジンが見出しとして読む）。見た目は従来のp表示と同一に固定する＝18px/700/上8px下18px。 */
.article-label { margin: 8px 0 18px; font-size: 18px !important; font-weight: 700; line-height: 2; }
.article-label strong { padding: 0 4px; background: linear-gradient(transparent 55%, var(--lime) 55%); font-family: var(--font-gothic), sans-serif; font-size: 25px; font-weight: 400; }
.article-howto ol { margin: 20px 0 0; padding: 0; list-style: none; }
.article-howto li { padding: 18px 0; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 15px; border-top: 1px solid var(--line); }
.article-howto li > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--black); border-radius: 50%; font-weight: 900; }
.article-howto h3 { margin: 0 0 4px; font-size: 17px; }
.article-howto p { margin: 0; }
.article-inline-links { margin: 36px 0; padding: 20px 22px; min-width: 0; border-left: 7px solid var(--lime); background: var(--white); }
.article-inline-links strong { font-size: 15px; }
.article-inline-links ul { margin: 10px 0 0; padding-left: 20px; }
.article-inline-links a { color: var(--black); font-weight: 800; }
.related-producers { margin-top: 55px; padding: 28px; border: 1px solid var(--black); background: var(--white); }
.related-producers h2 { font-family: var(--font-gothic), sans-serif; font-size: 30px; font-weight: 400; }
.related-empty a { display: inline-flex; align-items: center; gap: 5px; font-weight: 900; }
.related-empty svg { width: 16px; }
.article-line-cta { margin-top: 35px; padding: 24px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 4px 18px; color: #fff; background: #08a94a; text-decoration: none; }
.article-line-cta .line-bubble { grid-row: 1 / 3; width: 56px; height: 56px; display: grid; place-items: center; color: #08a94a; background: #fff; border-radius: 50%; font-size: 10px; font-weight: 900; }
.article-line-cta strong { font-size: 17px; }
.article-line-cta small { grid-column: 2; }
.article-line-cta > svg { grid-row: 1 / 3; grid-column: 3; }
.article-sidebar { padding-top: 70px; }
.article-sidebar section { margin-bottom: 26px; padding: 24px; border: 1px solid var(--black); background: var(--white); box-shadow: 5px 5px 0 var(--lime); }
.article-sidebar h2 { margin: 0 0 16px; font-family: var(--font-gothic), sans-serif; font-size: 27px; font-weight: 400; }
.article-sidebar ol { margin: 0; padding: 0; list-style: none; }
.article-sidebar li { padding: 12px 0; display: grid; grid-template-columns: 28px 1fr; gap: 7px; border-top: 1px solid var(--line); }
.article-sidebar li > span { font-family: var(--font-gothic), sans-serif; font-size: 24px; }
.article-sidebar li a { text-decoration: none; font-size: 11px; font-weight: 700; line-height: 1.6; }
.article-sidebar li small { margin-top: 5px; display: block; color: var(--muted); font-size: 9px; }
.map-widget .japan-map { height: 240px; }
.map-compact > svg > a > path { fill: var(--black); stroke: #fff; stroke-width: .6; }

.message-page { text-align: center; }
.message-page .button { margin-top: 20px; }

/* Footer */
.site-footer { color: #fff; background: var(--black); }
.footer-inner { width: min(1380px, calc(100% - 64px)); margin: auto; padding: 55px 0 26px; display: grid; grid-template-columns: 1fr 2.7fr auto; gap: 45px; align-items: start; }
.footer-brand strong { font-family: var(--font-gothic), sans-serif; font-size: 25px; font-weight: 400; }
.footer-brand p { font-size: 9px; letter-spacing: .1em; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-nav div { display: grid; align-content: start; gap: 9px; }
.footer-nav b { margin-bottom: 4px; font-size: 10px; }
.footer-nav a { color: #aaa; text-decoration: none; font-size: 9px; }
.footer-nav a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; color: inherit; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.footer-social a:hover, .footer-social a:focus-visible { color: var(--black); background: var(--lime); border-color: var(--lime); }
.footer-social svg { width: 22px; }
.footer-legal { grid-column: 1 / -1; padding-top: 18px; display: flex; flex-wrap: wrap; gap: 10px 24px; border-top: 1px solid rgba(255,255,255,.2); color: #888; }
.footer-legal p { margin: 0; font-size: 9px; }
.footer-legal a { color: #fff; }

@media (max-width: 1120px) {
  .desktop-nav { gap: 17px; font-size: 11px; }
  .hero-inner { grid-template-columns: 58% 42%; }
  .hero h1 { font-size: clamp(56px, 7.5vw, 82px); }
  .region-layout { grid-template-columns: 1.45fr .75fr; gap: 35px; }
  .producer-grid { grid-template-columns: repeat(2, 1fr); }
  .home-articles { grid-template-columns: repeat(2, 1fr); }
  .business-grid { grid-template-columns: 1.2fr repeat(3, .8fr); gap: 15px; }
  .article-page-shell { grid-template-columns: minmax(0, 1fr) 280px; gap: 35px; }
  .hp-hero-inner { grid-template-columns: minmax(0, 1fr) 360px; gap: 55px; }
  .partners-hero-inner { grid-template-columns: 1fr 350px; gap: 50px; }
}

@media (max-width: 860px) {
  .site-header { padding: 15px 20px; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: 900px; padding-top: 105px; }
  .hero-inner { width: min(100% - 38px, 720px); grid-template-columns: 1fr; }
  .hero-copy { padding-left: 0; }
  .hero-map { height: 420px; padding: 0 35px; }
  .hero-side-link { display: none; }
  .region-layout { grid-template-columns: 1fr; }
  .region-map-wrap { min-height: 650px; }
  .pickup-list { padding: 30px 0 0; border-left: 0; border-top: 1px dashed var(--black); }
  .connect-grid, .value-grid { grid-template-columns: 1fr; }
  .business-grid { grid-template-columns: 1fr 1fr; }
  .business-copy { grid-column: 1 / -1; }
  .listing-cta-inner { grid-template-columns: 1fr auto; }
  .listing-cta a { grid-column: 1 / -1; width: fit-content; }
  .article-page-shell { grid-template-columns: 1fr; }
  .article-sidebar { padding-top: 0; }
  .consent-options { grid-template-columns: 1fr; }
  .listing-secondary-grid { grid-template-columns: 1fr; }
  .hp-hero-inner, .partners-hero-inner { grid-template-columns: 1fr; }
  .hp-hero { min-height: 0; }
  .hp-price-card { width: min(100%, 460px); }
  .hp-line-update-inner { grid-template-columns: 120px 1fr; gap: 35px; }
  .line-icon { width: 115px; height: 115px; }
  .line-icon svg { width: 57px; height: 57px; }
  .hp-example { grid-template-columns: minmax(0, 1fr); }
  .hp-example > * { min-width: 0; }
  .partners-data { width: min(100%, 450px); }
  .target-tags { grid-template-columns: repeat(2, 1fr); }
  .partner-product-grid { grid-template-columns: 1fr; }
  .partner-product-grid article { min-height: 280px; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-nav { grid-column: 1 / -1; grid-row: 2; }
  .footer-legal { grid-row: 3; }
}

@media (max-width: 620px) {
  .section-shell, .page-shell, .article-page-shell, .footer-inner { width: min(100% - 32px, 560px); }
  .article-answer-box dl > div { grid-template-columns: minmax(0, 1fr); gap: 5px; }
  .brand-name { font-size: 21px; }
  .brand small { font-size: 8px; }
  .hero { min-height: 790px; }
  .hero h1 { font-size: clamp(47px, 15vw, 68px); }
  .hero-lead br { display: none; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stats article, .stats article + article { padding: 12px 7px 0; }
  .stats strong { font-size: 30px; }
  .hero-map { height: 330px; padding: 0 15px; }
  .region-layout { padding-top: 62px; }
  .region-map-wrap { min-height: 535px; }
  .map-regions { inset: 120px 0 15px; }
  .region-label { min-width: 75px; padding: 7px; font-size: 11px; }
  .label-hokkaido { right: -3%; }.label-kanto { right: -2%; }.label-chubu { right: 18%; }.label-chugoku { left: -3%; }.label-kyushu { left: -3%; }
  .connect-choco { padding-right: 115px; }
  .choco-mascot { width: 125px; }
  .business-grid { grid-template-columns: 1fr; }
  .business-benefit { border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .home-articles, .article-grid, .producer-grid { grid-template-columns: 1fr; }
  .article-card { display: grid; grid-template-columns: 42% 58%; }
  .article-card > a { grid-column: 1 / -1; display: grid; grid-template-columns: 42% 58%; }
  .article-visual { height: 100%; min-height: 190px; }
  .article-card-copy { padding: 12px; }
  .listing-cta-inner { grid-template-columns: 1fr; }
  .cta-icon { display: none; }
  .page-shell { padding-top: 130px; }
  .pref-hero { grid-template-columns: 1fr; text-align: center; }
  .pref-summary { justify-content: center; }
  .pref-silhouette { width: 180px; height: 150px; }
  .contact-panel { align-items: flex-start; flex-direction: column; }
  .contact-actions { width: 100%; flex-direction: column; }
  .listing-free-banner { align-items: flex-start; }
  .listing-entry { padding: 24px 20px; }
  .entry-heading { align-items: flex-start; flex-wrap: wrap; }
  .entry-heading > div { width: calc(100% - 68px); }
  .entry-heading > svg + div { width: 100%; }
  .consent-option { min-height: 0; }
  .listing-purpose { margin-bottom: 72px; padding: 28px 20px; grid-template-columns: 1fr; }
  .hp-hero { padding: 126px 0 62px; }
  .hp-hero::before { width: 100%; height: auto; aspect-ratio: 1; right: -55%; top: -18vw; }
  .hp-hero::after { display: none; }
  .hp-hero-inner, .partners-hero-inner { width: min(100% - 32px, 560px); }
  .hp-hero-copy, .hp-price-card { min-width: 0; max-width: 100%; }
  .hp-hero-copy h1 { font-size: clamp(51px, 15vw, 76px); }
  .hp-hero-actions { min-width: 0; max-width: 100%; align-items: flex-start; flex-direction: column; flex-wrap: wrap; }
  .hp-price-card { min-height: 0; padding: 31px 25px; box-shadow: 9px 9px 0 var(--lime); }
  .hp-price-card > div { grid-template-columns: 60px 1fr auto; }
  .hp-line-update { padding: 62px 0; }
  .hp-line-update-inner { grid-template-columns: 1fr; }
  .hp-line-update h2 .marker { display: inline; }
  .line-icon { width: 95px; height: 95px; box-shadow: 7px 7px 0 var(--black); }
  .line-icon svg { width: 47px; height: 47px; }
  .hp-content, .partners-content { padding: 72px 0 85px; }
  .hp-content > section + section, .partners-content > section + section { margin-top: 72px; }
  .hp-audience-grid, .hp-included-grid { grid-template-columns: 1fr; }
  .hp-audience-grid article { min-height: 260px; padding: 29px; }
  .hp-included-grid article:last-child { grid-column: auto; }
  .hp-included-grid article { grid-template-columns: 35px 1fr 24px; padding: 21px 17px; }
  .hp-trust { padding: 30px 23px; grid-template-columns: 1fr; }
  .hp-trust > svg { width: 65px; height: 65px; }
  .hp-trust-points { grid-template-columns: 1fr; }
  .hp-example { gap: 30px; }
  .journal-sample { min-height: 260px; }
  .hp-contact, .partners-contact { padding: 31px 23px; align-items: flex-start; flex-direction: column; }
  .hp-contact-actions { width: 100%; }
  .hp-contact-actions .button { width: 100%; }
  .partners-hero { min-height: 0; padding: 132px 0 72px; background: linear-gradient(164deg, var(--lime-deep) 0 22%, var(--black) 22.2%); }
  .partners-hero::after { left: 0; right: 0; top: 22%; }
  .partners-hero h1 { font-size: clamp(50px, 14vw, 73px); }
  .partners-hero h1 .marker { display: inline; }
  .target-tags { grid-template-columns: 1fr; }
  .partner-product-grid, .partner-product-grid article, .product-topline { min-width: 0; }
  .partner-product-grid article { max-width: 100%; }
  .product-topline { flex-wrap: wrap; }
  .partner-product-grid h3, .partner-product-grid p, .partner-product-grid strong { overflow-wrap: anywhere; }
  .partners-ethics { padding: 30px 23px; grid-template-columns: 1fr; gap: 25px; box-shadow: 8px 8px 0 #fff; }
  .ethics-mark { width: 100px; height: 100px; }
  .partners-contact .contact-actions { width: 100%; }
  .article-hero-visual { height: 280px; }
  .article-meta { flex-wrap: wrap; }
  .article-line-cta { grid-template-columns: auto 1fr; }
  .article-line-cta > svg { display: none; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-social { grid-row: auto; }
  .footer-legal { grid-row: auto; }
}

/* R3: keep the complete 375:490 archipelago and its labels in one fitted stage. */
.faithful-home:not(.company-home) .region-map-stage,
.company-home .company-area-map .region-map-stage {
  width: min(80%, 390px);
  aspect-ratio: 375 / 490;
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: visible;
  transform: translate(-50%, -50%);
}
.faithful-home:not(.company-home) .region-map-stage {
  top: 94px;
  transform: translateX(-50%);
}
.company-home .company-area-map .region-map-stage {
  width: min(100%, 390px);
}
.faithful-home:not(.company-home) .region-map-stage > .map-regions,
.company-home .company-area-map .region-map-stage > .map-regions {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
  transform: none;
}

/* 2026-08-06: unified Journal list and dialog design (approved mock 001-004). */
.lower-page-hero.journal-list-hero {
  min-height: 0;
  margin: 0 0 42px;
  padding: 24px 0 0;
  overflow: visible;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 48px;
  color: var(--black);
  background: transparent;
}
.lower-page-hero.journal-list-hero::before,
.lower-page-hero.journal-list-hero::after { content: none; }
.journal-list-hero > div:first-child { min-width: 0; flex: 1 1 520px; }
.journal-list-hero .eyebrow { margin-bottom: 16px; color: var(--muted); }
.journal-list-hero h1 {
  margin: 0;
  font-family: var(--font-gothic), sans-serif;
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .035em;
}
.lower-page-hero.journal-list-hero h1 .marker {
  display: inline;
  color: var(--black) !important;
  -webkit-text-fill-color: var(--black) !important;
  background-image: linear-gradient(transparent 80%, var(--lime) 80%);
  background-repeat: no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.journal-list-hero h1 .marker::after { content: none; }
.journal-list-hero .journal-hero-context { margin-inline-start: .65em; color: var(--muted); font-size: .5em; font-weight: 700; letter-spacing: .08em; }
.journal-list-hero .page-lead { max-width: 390px; margin: 0 0 8px; flex: 0 1 390px; color: var(--muted); font-size: 12px; line-height: 1.9; }

.directory-page .directory-search {
  width: min(100%, 970px);
  max-width: none;
  height: 56px;
  margin: 0 auto 28px;
  padding: 0 0 0 18px;
  gap: 0;
  border: 1px solid var(--black);
  box-shadow: none;
}
.directory-page .directory-search button {
  width: 58px;
  height: 54px;
  padding: 0;
  flex: none;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--white);
  border: 0;
  cursor: pointer;
}
.directory-page .directory-search button:hover,
.directory-page .directory-search button:focus-visible { background: var(--lime); }
.directory-page .directory-search button svg { width: 24px; }
.directory-crop-filter {
  max-width: 970px;
  margin: 0 auto 34px;
  border: 0;
  box-shadow: none;
}
.directory-crop-filter .filter-title,
.directory-crop-filter .filter-label { display: none; }
.directory-crop-filter .filter-group {
  padding: 0;
  justify-content: flex-start;
  gap: 10px;
  background: transparent;
  border: 0;
}
.directory-crop-filter .filter-group > a,
.directory-crop-filter .filter-group > button,
.directory-crop-filter .filter-group > span.active {
  min-width: 74px;
  min-height: 40px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid var(--black);
  font-size: 12px;
  font-weight: 700;
}
.directory-crop-filter .filter-group > :is(a, button, span).active { color: var(--black); background: var(--lime); }
.directory-page .result-count { margin: 0 0 18px; padding: 0; border: 0; font-size: 18px; font-weight: 700; }
.company-gate-benefit { border: 1px solid var(--black); box-shadow: none; }

.directory-page .producer-grid,
.pref-page .producer-grid { align-items: start; gap: 28px 30px; }
.directory-page .producer-card,
.pref-page .producer-card {
  min-height: 0;
  border: 1px solid var(--black);
  box-shadow: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.directory-page .producer-card:hover,
.pref-page .producer-card:hover { transform: translateY(-3px); box-shadow: 5px 5px 0 var(--lime); }
.directory-page .producer-card--text,
.pref-page .producer-card--text { border-top: 4px solid var(--lime); background: var(--white); }
.directory-page .producer-avatar,
.pref-page .producer-avatar {
  aspect-ratio: 4 / 3;
  padding: 18px;
  gap: 8px;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  background-image: none;
}
.directory-page .producer-avatar::after,
.pref-page .producer-avatar::after { content: none; }
.directory-page .producer-avatar svg,
.pref-page .producer-avatar svg { width: 34px; height: 34px; }
/* 案Eの極大文字(.producer-monument)は対象外にする。
   このルールは要素セレクタ分だけ詳細度が高く、除外しないと184pxの指定を11pxへ潰す（2026-08-06実害）。 */
.directory-page .producer-avatar span:not(.producer-monument),
.pref-page .producer-avatar span:not(.producer-monument) { font-family: inherit; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.directory-page .producer-avatar-ogp,
.pref-page .producer-avatar-ogp { padding: 0; }
.directory-page .producer-avatar.producer-avatar-ogp > span,
.pref-page .producer-avatar.producer-avatar-ogp > span { display: none; }
.directory-page .producer-content,
.pref-page .producer-content { padding: 16px 17px 19px; }
.directory-page .producer-card--text .producer-content,
.pref-page .producer-card--text .producer-content { padding: 22px 20px 24px; }
.directory-page .producer-card h2,
.pref-page .producer-card h2 { margin: 0 0 4px; font-size: 21px; font-weight: 700; }
.directory-page .producer-card--text h2,
.pref-page .producer-card--text h2 { font-size: 24px; }
.directory-page .producer-location,
.pref-page .producer-location { margin: 0 0 8px; color: var(--black); font-size: 11px; }
.directory-page .producer-content > p:last-child,
.pref-page .producer-content > p:last-child {
  min-height: 3.4em;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.directory-page .producer-card--text .producer-content > p:last-child,
.pref-page .producer-card--text .producer-content > p:last-child {
  min-height: 0;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.directory-page .chips span,
.pref-page .chips span { padding: 3px 7px; border: 0; font-size: 9px; }

.pref-page { width: min(1380px, calc(100% - 64px)); padding-top: 155px; }
.pref-list-hero .pref-copy { text-align: left; }
.pref-list-hero .pref-summary { margin: 0 0 10px; padding: 0; border: 0; }
.pref-list-hero .pref-summary strong { font-size: 24px; font-weight: 700; }
.pref-list-hero .chip-outline { background: var(--lime); }
.pref-page > .filter-row { border: 1px solid var(--black); box-shadow: none; }
.pref-page > .filter-row .filter-title { min-height: 42px; }
.pref-page > .filter-row button.active { color: var(--black); background: var(--lime); box-shadow: none; }

.journal-category-tabs {
  margin: 0 0 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}
.journal-category-tabs a {
  min-height: 42px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--black);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.journal-category-tabs a.active,
.journal-category-tabs a:hover,
.journal-category-tabs a:focus-visible { background: var(--lime); }
.articles-page .article-grid { gap: 28px 30px; }
.articles-page .article-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--black);
}
.articles-page .article-card:hover { transform: translateY(-3px); }
.articles-page .article-card > a { display: flex; flex-direction: column; }
.articles-page .article-visual {
  height: auto;
  aspect-ratio: 4 / 3;
  flex: none;
  filter: none;
  border-bottom: 1px solid var(--black);
}
.articles-page .article-visual::after,
.articles-page .visual-orb { display: none; }
.articles-page .portal-article-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #ece8de;
}
.articles-page .portal-article-placeholder span { position: relative; z-index: 1; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.articles-page .article-card-copy { padding: 17px 16px 16px; }
.articles-page .article-card-topline { justify-content: flex-start; }
.articles-page .article-card-read,
.articles-page .article-card-copy > p,
.articles-page .article-card-meta > span { display: none; }
.articles-page .tag { padding: 4px 9px; border-radius: 999px; font-size: 9px; }
.articles-page .article-card h3 {
  min-height: 3.2em;
  margin: 13px 0 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  background: none;
  font-size: 18px;
  line-height: 1.6;
}
.articles-page .article-card-meta { margin: auto 0 0; font-size: 10px; }

.journal-pagination {
  margin: 38px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.journal-pagination > a,
.journal-pagination > span:not(.pagination-gap) {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 12px;
}
.journal-pagination > a.active { background: var(--lime); }
.journal-pagination > a:not(.active):hover,
.journal-pagination > a:not(.active):focus-visible { border-color: var(--black); }
.journal-pagination .pagination-arrow { border-color: var(--black); }
.journal-pagination .pagination-arrow svg { width: 17px; }
.journal-pagination .pagination-prev svg { transform: rotate(180deg); }
.journal-pagination .disabled { opacity: .28; }
.pagination-gap { padding: 0 3px; }

.auth-dialog { width: min(380px, calc(100% - 24px)); color: var(--black); background: var(--white); border: 1px solid var(--black); box-shadow: none; }
.auth-dialog .site-dialog-inner { padding: 42px 34px 28px; }
.auth-dialog .site-dialog-close,
.premium-dialog .site-dialog-close {
  width: 32px;
  height: 32px;
  top: 8px;
  right: 8px;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 25px;
}
.auth-dialog .auth-entry-heading { padding: 0; text-align: center; }
.auth-dialog .auth-entry-heading .eyebrow { margin-bottom: 14px; font-size: 9px; }
.auth-dialog .auth-entry-heading h2 { margin: 0 0 24px; font-size: 20px; font-weight: 700; }
.auth-dialog .auth-provider-list { grid-template-columns: 1fr; gap: 8px; }
.auth-dialog .auth-provider { min-height: 44px; padding: 8px 12px; border: 1px solid var(--black); font-size: 12px; font-weight: 500; }
.auth-dialog .auth-provider-icon { width: 19px; height: 19px; flex-basis: 19px; }
.auth-dialog .auth-provider span:last-child { flex: 1; text-align: center; transform: translateX(-9px); }
.auth-dialog .auth-divider { margin: 18px 0; font-size: 10px; font-weight: 500; }
.auth-dialog .auth-email-form { grid-template-columns: 1fr; gap: 8px; }
.auth-dialog .auth-email-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.auth-dialog .auth-email-form input { min-height: 44px; padding: 10px 12px; border: 1px solid var(--black); font-size: 16px; }
.auth-dialog .auth-email-form .button { width: 100%; min-height: 44px; border: 0; box-shadow: 0 3px 0 var(--lime); font-size: 11px; }
.auth-dialog .auth-registration-prompt { margin: 16px 0 0; text-align: center; font-size: 10px; }
.auth-dialog .auth-registration-prompt a { font-weight: 700; text-underline-offset: 3px; }
.auth-dialog .auth-existing { margin-top: 16px; padding-top: 12px; }
.auth-dialog .auth-existing-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; text-align: center; }
.auth-dialog .auth-existing-links > a { padding: 0; display: block; border: 0; font-size: 9px; text-decoration: underline; text-underline-offset: 3px; }
.auth-dialog .auth-existing-links > a:hover,
.auth-dialog .auth-existing-links > a:focus-visible { background: transparent; text-decoration-thickness: 2px; }
.auth-dialog .auth-existing-links span { margin-top: 2px; display: block; font-size: 7px; }
.auth-dialog .auth-legal-links { margin-top: 17px; justify-content: center; gap: 10px; font-size: 8px; font-weight: 500; }

.premium-dialog { width: min(420px, calc(100% - 24px)); background: var(--white); border: 1px solid var(--black); box-shadow: none; text-align: center; }
.premium-dialog .site-dialog-inner { padding: 54px 44px 48px; }
.premium-dialog .eyebrow { width: fit-content; margin: 0 auto 23px; padding-bottom: 8px; position: relative; font-size: 9px; }
.premium-dialog .eyebrow::after { content: ""; width: 58px; height: 2px; position: absolute; left: 50%; bottom: 0; background: var(--lime); transform: translateX(-50%); }
.premium-dialog h2 { margin: 0 0 20px; font-size: 22px; font-weight: 700; white-space: nowrap; }
.premium-dialog p:not(.eyebrow) { margin: 0 0 34px; font-size: 13px; line-height: 1.8; }
.premium-dialog .button { min-width: 180px; min-height: 43px; border: 0; box-shadow: 0 3px 0 var(--lime); }

@media (max-width: 860px) {
  .lower-page-hero.journal-list-hero { align-items: flex-start; flex-direction: column; gap: 18px; }
  .journal-list-hero > div:first-child { flex: 0 0 auto; }
  .journal-list-hero .page-lead { flex: 0 0 auto; }
  .journal-list-hero .page-lead { max-width: 620px; }
  .journal-list-hero h1 .marker { white-space: normal; }
  .articles-page .article-card,
  .articles-page .article-card > a { display: block; }
}

@media (max-width: 620px) {
  .page-shell.directory-page,
  .page-shell.articles-page,
  .page-shell.pref-page { width: min(100% - 32px, 560px); padding-top: 112px; }
  .lower-page-hero.journal-list-hero { margin-bottom: 32px; padding: 0; }
  .journal-list-hero h1 { font-size: clamp(38px, 11vw, 54px); }
  .journal-list-hero .eyebrow { margin-bottom: 10px; }
  .directory-crop-filter .filter-group { gap: 7px; }
  .directory-crop-filter .filter-group > a,
  .directory-crop-filter .filter-group > button,
  .directory-crop-filter .filter-group > span.active { min-width: 60px; min-height: 36px; padding: 0 12px; font-size: 10px; }
  .journal-category-tabs { margin-bottom: 32px; gap: 7px; }
  .journal-category-tabs a { min-height: 38px; padding: 0 13px; font-size: 10px; }
  .directory-page .producer-grid,
  .pref-page .producer-grid,
  .articles-page .article-grid { grid-template-columns: 1fr; }
  .auth-dialog .site-dialog-inner { padding: 42px 22px 24px; }
  .premium-dialog .site-dialog-inner { padding: 52px 20px 40px; }
  .premium-dialog h2 { font-size: 19px; white-space: normal; }
}

/* 広告枠の骨組み。最終ビジュアルは広告モック確定後に差し替える。 */
.ad-slot {
  box-sizing: border-box;
  background: #F6F6F4;
  border: 1px solid #E6E5DF;
  border-radius: 8px;
  padding: 16px;
  margin: 24px auto;
  max-width: 100%;
  text-align: left;
}

.ad-slot__label {
  display: inline-block;
  background: #070707;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 20px;
  border-radius: 999px;
  padding: 0 8px;
  margin-bottom: 8px;
  white-space: nowrap;
}

.ad-slot__link {
  display: block;
  text-decoration: none;
}
.ad-slot__link img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
}

.ad-slot__frame {
  display: block;
  width: 100%;
  border: 0;
}

.ad-overlay__script-slot {
  margin: 0;
}

.ad-home_band,
.ad-article_bottom {
  max-width: 960px;
}
.ad-list_side {
  max-width: 300px;
}

.ad-slot__snippet {
  max-width: 100%;
  overflow: hidden;
}

.ad-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .46);
}
.ad-overlay[hidden] { display: none; }
.ad-overlay__card {
  position: relative;
  width: min(100%, 448px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 40px 14px 24px;
  background: var(--white);
  border: 1px solid #E6E5DF;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .24);
  text-align: center;
}
.ad-overlay__label {
  position: absolute;
  top: 12px;
  left: 50%;
  padding: 0 8px;
  color: var(--black);
  background: #ECECE8;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  transform: translateX(-50%);
  white-space: nowrap;
}
.ad-overlay__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0 0 3px;
  color: var(--white);
  background: var(--black);
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.ad-overlay__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.ad-overlay__link img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  border-radius: 6px;
}
.ad-overlay__text {
  max-width: 100%;
  margin-top: 15px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ad-overlay__cta {
  margin-top: 9px;
  padding: 0 3px 3px;
  border-bottom: 3px solid var(--lime-deep);
  font-size: 14px;
  font-weight: 700;
}
.ad-overlay__snippet {
  max-width: 100%;
  overflow: auto;
}
.ad-overlay__snippet img { max-width: 100%; height: auto; }

@media (max-width: 640px) {
  .ad-list_side { max-width: 100%; }
  .ad-slot { margin: 16px auto; }
  .ad-overlay { padding: 16px; }
  .ad-overlay__card {
    width: min(88vw, 420px);
    max-height: 70vh;
    padding: 40px 10px 20px;
  }
  .ad-overlay__link img { max-height: calc(70vh - 170px); }
  .ad-overlay__snippet { max-height: calc(70vh - 64px); }
}
.articles-list-layout--with-ad{display:grid;grid-template-columns:minmax(0,1fr) 300px;align-items:start;gap:32px}
@media (max-width:860px){.articles-list-layout--with-ad{grid-template-columns:1fr}}
.faithful-home:not(.company-home) .region-map-stage > .map-regions > svg,
.company-home .company-area-map .region-map-stage > .map-regions > svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  transform: none;
}
.region-map-stage .map-badge { display: none; }
.faithful-home:not(.company-home) .region-map-stage .region-label,
.company-home .company-area-map .region-map-stage .region-label {
  inset: auto;
  pointer-events: none;
}
.faithful-home:not(.company-home) .region-map-stage .label-hokkaido,
.company-home .company-area-map .region-map-stage .label-hokkaido {
  right: -20%;
  top: 17%;
}
.faithful-home:not(.company-home) .region-map-stage .label-kanto,
.company-home .company-area-map .region-map-stage .label-kanto {
  right: -20%;
  top: 45%;
}
.faithful-home:not(.company-home) .region-map-stage .label-chubu,
.company-home .company-area-map .region-map-stage .label-chubu {
  right: -1%;
  top: 58%;
}
.faithful-home:not(.company-home) .region-map-stage .label-kinki,
.company-home .company-area-map .region-map-stage .label-kinki {
  left: 36%;
  top: 61%;
}
.faithful-home:not(.company-home) .region-map-stage .label-chugoku,
.company-home .company-area-map .region-map-stage .label-chugoku {
  left: -20%;
  top: 58%;
}
.faithful-home:not(.company-home) .region-map-stage .label-kyushu,
.company-home .company-area-map .region-map-stage .label-kyushu {
  left: -20%;
  top: 73%;
}

@media (max-width: 620px) {
  .faithful-home:not(.company-home) .region-map-stage,
  .company-home .company-area-map .region-map-stage {
    width: min(84%, 292px);
  }
  .faithful-home:not(.company-home) .region-map-stage {
    top: 128px;
  }
  .faithful-home:not(.company-home) .region-map-stage .label-hokkaido,
  .company-home .company-area-map .region-map-stage .label-hokkaido {
    right: -8%;
    top: 16%;
  }
  .faithful-home:not(.company-home) .region-map-stage .label-kanto,
  .company-home .company-area-map .region-map-stage .label-kanto {
    right: -8%;
    top: 45%;
  }
  .faithful-home:not(.company-home) .region-map-stage .label-chubu,
  .company-home .company-area-map .region-map-stage .label-chubu {
    right: 5%;
    top: 58%;
  }
  .faithful-home:not(.company-home) .region-map-stage .label-kinki,
  .company-home .company-area-map .region-map-stage .label-kinki {
    left: 36%;
    top: 61%;
  }
  .faithful-home:not(.company-home) .region-map-stage .label-chugoku,
  .company-home .company-area-map .region-map-stage .label-chugoku {
    left: -8%;
    top: 58%;
  }
  .faithful-home:not(.company-home) .region-map-stage .label-kyushu,
  .company-home .company-area-map .region-map-stage .label-kyushu {
    left: -8%;
    top: 73%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* v2 lower-page system: bold chapter headers, ink rules and lime marker strokes. */
.lower-page { position: relative; }
.lower-page-hero { min-height: 340px; margin-bottom: 58px; padding: 52px clamp(34px, 5vw, 76px); position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: 54px; color: #fff; background: var(--black); }
.lower-page-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .28; background: repeating-linear-gradient(173deg, transparent 0 16px, rgba(255,255,255,.12) 17px 18px); }
.lower-page-hero::after { content: ""; position: absolute; left: -1%; right: -1%; bottom: -2px; height: 15px; z-index: -1; background: var(--paper); clip-path: polygon(0 43%, 6% 13%, 12% 68%, 19% 25%, 26% 74%, 34% 18%, 42% 67%, 49% 22%, 57% 75%, 65% 20%, 73% 66%, 81% 26%, 89% 69%, 95% 19%, 100% 48%, 100% 100%, 0 100%); }
.lower-page-hero h1 { margin: 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(50px, 6vw, 84px); font-weight: 400; line-height: 1.17; letter-spacing: .01em; }
.lower-page-hero .page-lead { margin: 0 0 7px; color: #d2d2ce; font-size: 14px; }
.lower-page-hero .marker { color: #fff; }
.lower-page-hero .eyebrow { color: var(--lime); }
.marker-paper { background-image: linear-gradient(transparent 61%, rgba(255,255,255,.82) 61%); }

.articles-page .article-grid { margin-top: 0; }
.articles-page .article-card { min-height: 100%; padding-bottom: 18px; border-bottom: 2px solid var(--black); }
.article-card-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.article-card-read { font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.article-card h3 { transition: background-size .25s ease; background-image: linear-gradient(transparent 68%, var(--lime) 68%); background-repeat: no-repeat; background-size: 0 100%; }
.article-card:hover h3 { background-size: 100% 100%; }
.article-card-meta > span { display: inline-flex; align-items: center; gap: 5px; color: var(--ink); font-weight: 900; }
.article-card-meta > span svg { transition: transform .2s ease; }
.article-card:hover .article-card-meta > span svg { transform: translateX(4px); }

.directory-page .directory-search { margin-top: 0; }
.directory-page .result-count { width: fit-content; padding-bottom: 3px; border-bottom: 5px solid var(--lime); }
.directory-crop-filter { max-width: 920px; margin: 24px 0 0; }
.directory-crop-filter .filter-title { justify-content: space-between; }
.member-filter-badge { padding: 3px 7px; color: var(--black); background: var(--lime); font-size: 9px; }
.directory-crop-filter .filter-group > a,
.directory-crop-filter .filter-group > button,
.directory-crop-filter .filter-group > span.active { min-height: 32px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); background: var(--paper); border: 1px solid var(--black); font: inherit; font-size: 10px; font-weight: 900; text-decoration: none; cursor: pointer; }
.directory-crop-filter .filter-group > :is(a, button, span).active { background: var(--lime); }
.company-gate-benefit { max-width: 920px; margin: 14px 0 0; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 2px solid var(--black); background: var(--white); box-shadow: 5px 5px 0 var(--lime); }
.company-gate-benefit[hidden] { display: none; }
.company-gate-benefit strong { font-size: 13px; }
.company-gate-benefit p { max-width: 650px; margin: 5px 0 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.company-gate-benefit .button { flex: none; }

.pref-page { width: min(1380px, calc(100% - 64px)); }
.pref-hero { min-height: 390px; padding: 0 0 46px; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(38px, 6vw, 92px); border-bottom: 0; }
.pref-art { min-height: 330px; position: relative; overflow: hidden; display: grid; place-items: center; border: 2px solid var(--black); background: var(--lime); box-shadow: 12px 12px 0 var(--black); }
.pref-art::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .24; background: repeating-linear-gradient(168deg, transparent 0 13px, rgba(255,255,255,.75) 14px 15px); }
.pref-art-label { position: absolute; left: 16px; top: 14px; z-index: 2; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.pref-copy h1 { font-size: clamp(52px, 6vw, 84px); }
.pref-silhouette { width: min(76%, 285px); height: 255px; position: relative; z-index: 1; }
.pref-silhouette path { vector-effect: non-scaling-stroke; }
.pref-silhouette .pref-silhouette-echo { fill: none; stroke: rgba(255,255,255,.82); stroke-width: 5; stroke-dasharray: 2 1.5; transform: translate(5px, 7px); filter: none; }
.pref-silhouette .pref-silhouette-ink { fill: var(--black); stroke: var(--black); stroke-width: 1.4; stroke-linejoin: bevel; stroke-dasharray: 38 1.2 22 .8; filter: none; }
.pref-summary { margin-top: 24px; padding-top: 17px; border-top: 1px solid var(--black); }
.pref-summary strong { font-family: var(--font-gothic), sans-serif; font-size: 30px; font-weight: 400; }
.pref-summary .chip-outline { background: var(--lime); }
.filter-row { margin: 12px 0 18px; padding: 0; display: grid; gap: 0; border: 2px solid var(--black); box-shadow: 7px 7px 0 rgba(17,17,17,.08); }
.filter-title { min-height: 48px; padding: 0 16px; display: flex; align-items: center; gap: 8px; color: #fff; background: var(--black); font-size: 11px; letter-spacing: .08em; }
.filter-title svg, .filter-label svg { width: 16px; height: 16px; }
.filter-group { padding: 13px 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 7px; background: var(--white); border-top: 1px solid var(--line); }
.filter-label { min-width: 78px; display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 900; }
.filter-row button { min-height: 32px; }
.pref-result-count { width: fit-content; margin: 24px 0 15px; font-size: 12px; font-weight: 700; border-bottom: 5px solid var(--lime); }
.pref-result-count strong { margin-right: 4px; font-family: var(--font-gothic), sans-serif; font-size: 27px; font-weight: 400; }
.pref-related { margin-top: 64px; padding: 32px 36px; position: relative; box-shadow: 9px 9px 0 var(--lime); }
.pref-related::before { content: ""; position: absolute; inset: -7px 0 auto; height: 8px; background: var(--black); clip-path: polygon(0 60%, 8% 15%, 17% 72%, 27% 20%, 39% 68%, 50% 18%, 61% 70%, 73% 22%, 85% 66%, 94% 16%, 100% 55%, 100% 100%, 0 100%); }
.pref-related .eyebrow { margin-bottom: 4px; color: var(--lime); }

.about-page .value-grid article { position: relative; overflow: hidden; }
.about-page .value-grid article::after { content: ""; position: absolute; right: -22px; bottom: -22px; width: 78px; height: 78px; background: var(--lime); transform: rotate(24deg); }
.operator { border-left: 10px solid var(--lime); box-shadow: none; }

.listing-page::before { display: none; }
.listing-hero { color: var(--black); background: var(--lime-deep); }
.listing-hero::before { opacity: .2; background: repeating-linear-gradient(173deg, transparent 0 16px, rgba(255,255,255,.7) 17px 18px); }
.listing-hero .eyebrow, .listing-hero .page-lead, .listing-hero .marker { color: var(--black); }
.listing-hero::after { background: var(--paper); }
.policy-list { box-shadow: 10px 10px 0 var(--lime); }
.sample-wrap { background: rgba(255,255,255,.45); }

.article-page-shell { position: relative; }
.article-heading { padding: 28px 30px 34px; position: relative; overflow: hidden; color: #fff; background: var(--black); }
.article-heading::after { content: ""; position: absolute; left: -1%; right: -1%; bottom: -1px; height: 10px; background: var(--paper); clip-path: polygon(0 55%, 9% 16%, 18% 72%, 28% 20%, 38% 68%, 49% 15%, 60% 72%, 72% 20%, 83% 67%, 93% 14%, 100% 58%, 100% 100%, 0 100%); }
.article-heading .eyebrow { color: var(--lime); }
.article-heading h1 { margin: 15px 0 0; font-family: var(--font-gothic), sans-serif; font-size: clamp(42px, 5vw, 68px); font-weight: 400; line-height: 1.25; }
.article-detail .article-tag { background: var(--lime); }
.article-hero-visual { box-shadow: 10px 10px 0 var(--lime); }
.article-section { padding-top: 9px; border-top: 2px solid var(--black); }
.article-label { margin-top: 8px; font-weight: 700; }
.article-label strong { background-repeat: no-repeat; }
.article-table-wrap { margin-top: 14px; overflow-x: auto; }
.article-section-image { margin: 18px 0 0; }
.article-section-image img { width: 100%; height: auto; display: block; border-radius: 12px; }
.article-section-image figcaption { margin-top: 6px; font-size: 13px; color: var(--muted, #666); }
.article-table-caption { margin-bottom: 6px; font-size: 13px; color: var(--muted, #666); }
.article-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.article-table th, .article-table td { padding: 8px 12px; border: 1px solid var(--black); text-align: left; }
.article-table th { background: var(--lime); font-weight: 700; }
/* 行見出しの表（特商法の法定表示など）。幅を決めないとスマホ幅で見出しが1文字ずつ縦に潰れる（実測） */
.article-table th[scope="row"] { width: 7.5em; min-width: 7.5em; vertical-align: top; }
.article-sources { margin-top: 24px; padding-top: 12px; border-top: 2px solid var(--black); }
.article-sources ul { margin-top: 8px; padding-left: 18px; font-size: 13px; color: var(--muted, #666); }
.article-sources li { margin-top: 4px; word-break: break-all; }
.article-sources li small { margin-top: 3px; display: block; color: var(--muted); }
.article-source-date { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.article-related-links { margin-top: 38px; padding: 26px 28px; min-width: 0; border: 2px solid var(--black); border-radius: 12px; background: var(--white); }
.article-related-links ul { margin: 0; padding: 0; list-style: none; }
.article-related-links li { border-top: 1px solid var(--line); }
.article-related-links a { padding: 13px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 800; text-decoration: none; }
.article-related-links svg { width: 18px; flex: none; }
.related-producers { border-width: 2px; box-shadow: 8px 8px 0 var(--lime); }
.related-producers .eyebrow { margin-bottom: 0; }
.article-sidebar section { border-width: 2px; }
.article-sidebar section > .eyebrow { margin-bottom: 5px; }
.article-sidebar .map-widget { color: #fff; background: var(--black); box-shadow: 6px 6px 0 var(--lime); }
.article-sidebar .map-widget > p:not(.eyebrow) { color: #c8c8c8; font-size: 11px; line-height: 1.8; }
.article-sidebar .map-widget .eyebrow { color: var(--lime); }
.map-widget .button-outline { border-color: #fff; box-shadow: 4px 4px 0 var(--lime); }

.message-page { max-width: 900px; display: grid; justify-items: center; }
.message-page .error-mark { margin-bottom: -28px; color: transparent; font-family: var(--font-gothic), sans-serif; font-size: clamp(130px, 23vw, 260px); line-height: .78; -webkit-text-stroke: 2px var(--black); opacity: .12; }
.message-page h1 { max-width: 820px; }
.message-page h1::after { display: none; }
.message-page > p:not(.eyebrow) { color: var(--muted); }

@media (max-width: 860px) {
  .lower-page-hero { min-height: 0; grid-template-columns: 1fr; gap: 24px; }
  .pref-hero { grid-template-columns: 1fr; }
  .pref-art { min-height: 280px; }
  .pref-copy { text-align: center; }
  .pref-summary { justify-content: center; }
}

@media (max-width: 620px) {
  .lower-page-hero { margin-bottom: 42px; padding: 38px 24px 44px; }
  .lower-page-hero h1 { font-size: clamp(42px, 13vw, 60px); }
  .directory-page .directory-search input { min-width: 0; }
  .company-gate-benefit { align-items: flex-start; flex-direction: column; }
  .pref-page { width: min(100% - 32px, 560px); }
  .pref-art { min-height: 245px; }
  .pref-silhouette { height: 195px; }
  .pref-copy h1 { font-size: clamp(44px, 13vw, 64px); }
  .filter-group { align-items: flex-start; }
  .filter-label { width: 100%; }
  .article-heading { padding: 24px 21px 30px; }
  .article-heading h1 { font-size: clamp(36px, 11vw, 51px); }
  .article-card-meta > span { font-size: 0; }
  .article-card-meta > span svg { width: 18px; }
  .message-page .error-mark { margin-bottom: -12px; }
}
/* Worker SSR compatibility: declarations above are copied from the current UI stylesheet. */
:root { --font-gothic: "Zen Kaku Gothic New"; }
.pref-link-map { width: 100%; height: auto; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 7px; align-content: center; }
.pref-link-map > a { min-height: 50px; padding: 7px; display: grid; place-items: center; gap: 2px; color: var(--ink); background: rgba(255,255,255,.94); border: 1px solid rgba(17,17,17,.35); text-decoration: none; font-size: 10px; transition: transform .2s, background .2s; }
.pref-link-map > a:hover { transform: translateY(-2px); background: var(--lime); }
.pref-link-map > a.is-empty { opacity: .55; }
.pref-link-map > a span { font-size: 9px; font-weight: 900; }
.hero-map .pref-link-map { padding: 15px; grid-template-columns: repeat(5, minmax(0, 1fr)); background: rgba(247,245,239,.7); border: 1px solid rgba(17,17,17,.18); box-shadow: 10px 12px 0 rgba(17,17,17,.12); transform: rotate(-1deg); }
.pref-code-art { width: 250px; height: 220px; margin: auto; display: grid; place-items: center; color: var(--black); background: var(--lime); border: 3px solid var(--black); border-radius: 48% 52% 45% 55%; box-shadow: 11px 11px 0 var(--black); font-family: var(--font-gothic), sans-serif; font-size: 78px; transform: rotate(-4deg); }
.producer-source { color: var(--muted); overflow-wrap: anywhere; }
.directory-search button { min-height: 38px; padding: 0 16px; color: #fff; background: var(--black); border: 0; cursor: pointer; font-weight: 900; }
@media (max-width: 900px) { .pref-link-map, .hero-map .pref-link-map { grid-template-columns: repeat(4, minmax(0, 1fr)); transform: none; } }
@media (max-width: 560px) { .pref-link-map, .hero-map .pref-link-map { grid-template-columns: repeat(3, minmax(0, 1fr)); } .pref-code-art { width: 190px; height: 160px; font-size: 58px; } }

/* 2026 faithful portal home: cream, field green, lime and brush lettering. */
.faithful-home {
  --paper: #f6f6f4;
  --black: #070707;
  --lime: #cad432;
  --muted: #6c6c6c;
  color: #000;
  background: #f6f6f4;
}
.faithful-home :where(h1, h2, h3, p, a, b, strong, span) {
  overflow-wrap: normal;
  word-break: auto-phrase;
}
.faithful-home :where(h1, h2, h3),
.face-noukano :where(.brand-name, .footer-brand strong, .region-label, .stats strong) {
  font-family: var(--font-gothic), sans-serif;
  font-weight: 400;
  letter-spacing: .045em;
}
.faithful-home .hero h1 { letter-spacing: .035em; }
.faithful-home :where(.eyebrow, .brush-heading > p, .pickup-title p, .business-copy > p, .section-heading p, .listing-cta p) {
  font-family: var(--font-gothic), sans-serif;
  font-size: 7px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: .25em;
}
.faithful-home .heading-phrase { display: inline-block; white-space: nowrap; }
.face-noukano .desktop-nav a.nav-cta { background: #cad432; }
.face-noukano .desktop-nav a.nav-cta,
.face-noukano .mobile-menu nav a.nav-cta,
.faithful-home .area-filter-button,
.faithful-home .business-copy a,
.faithful-home .listing-cta a {
  border-radius: 999px;
}
.faithful-hero {
  background: #f6f6f4;
}
.faithful-hero::after {
  background: linear-gradient(90deg, rgba(246,246,244,.99) 0 43%, rgba(246,246,244,.76) 61%, rgba(246,246,244,.1) 100%);
}
.faithful-hero h1 { font-size: clamp(54px, 6.3vw, 96px); }
.faithful-hero .hero-map {
  margin: 42px 56px 18px 16px;
  padding: 32px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(17,17,17,.15);
  border-radius: 48% 52% 45% 55% / 5% 6% 4% 5%;
  box-shadow: 12px 14px 0 rgba(17,17,17,.2);
  position: relative;
  isolation: isolate;
}
.faithful-hero .map-hero {
  position: relative;
  z-index: 1;
}
.faithful-hero .map-hero .map-badge { display: none; }
.faithful-hero .map-hero svg {
  filter: drop-shadow(0 9px 10px rgba(17,17,17,.13));
}
.faithful-hero .map-hero > svg > a > path {
  fill: #fff;
  stroke: rgba(17,17,17,.48);
  stroke-width: .42;
}
.hero-map-pins {
  position: absolute;
  inset: 32px;
  z-index: 3;
  pointer-events: none;
}
.hero-map-pin {
  width: 19px;
  height: 19px;
  position: absolute;
  display: block;
  background: #070707;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 1px 2px 0 rgba(17,17,17,.24);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.hero-map-pin::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: 5px;
  top: 5px;
  background: #fff;
  border-radius: 50%;
}
.pin-hokkaido { left: 77%; top: 14%; }
.pin-tohoku-north { left: 68%; top: 36%; }
.pin-tohoku-south { left: 65%; top: 47%; }
.pin-kanto { left: 68%; top: 57%; }
.pin-chubu { left: 55%; top: 59%; }
.pin-kansai { left: 48%; top: 68%; }
.pin-chugoku { left: 37%; top: 72%; }
.pin-kyushu { left: 28%; top: 84%; }

.faithful-home .region-layout {
  padding-top: 68px;
  padding-bottom: 72px;
}
.faithful-home .region-section { overflow: hidden; }
.faithful-home .region-map-wrap {
  min-height: 590px;
}
.faithful-home .region-map-wrap .map-regions { overflow: hidden; }
.faithful-home .connect-section {
  position: relative;
  z-index: 2;
  background: #f6f6f4;
}
.hero-area-badge {
  width: 68px;
  min-height: 218px;
  padding: 21px 11px 15px;
  position: absolute;
  z-index: 5;
  right: clamp(12px, 2vw, 28px);
  top: 190px;
  bottom: auto;
  display: flex;
  flex-direction: column;
  place-items: center;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  background: #050505;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  clip-path: polygon(12% 1%, 86% 0, 95% 5%, 91% 14%, 100% 24%, 94% 36%, 99% 49%, 93% 61%, 98% 75%, 91% 88%, 87% 100%, 12% 98%, 6% 89%, 10% 76%, 3% 64%, 9% 51%, 2% 38%, 8% 24%, 4% 11%);
  text-align: center;
  text-decoration: none;
  font-family: var(--font-gothic), sans-serif;
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .12em;
  transform: rotate(2deg);
}
.hero-area-badge span { writing-mode: vertical-rl; }
.hero-area-badge span br { display: none; }
.hero-area-badge svg {
  width: 29px;
  height: 29px;
  padding: 7px;
  flex: none;
  color: #050505;
  background: var(--lime);
  border-radius: 50%;
  stroke-width: 3;
}
.area-filter-button {
  width: fit-content;
  min-height: 42px;
  margin-top: 20px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--black);
  box-shadow: 4px 4px 0 var(--lime);
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
}
.area-filter-button svg { width: 16px; }
.faithful-home .region-map-wrap .map-regions { top: 156px; }
.faithful-home .connect-card { border-radius: 12px; }
.faithful-home .pickup-list .producer-card { overflow: hidden; border-radius: 0; }
.faithful-home .pickup-list .producer-card .producer-content > p:not(.producer-location) {
  margin: 5px 0 0;
  display: block;
  color: #6c6c6c;
  font-size: 10px;
  line-height: 1.55;
}
.faithful-home .pickup-list .producer-source { display: none; }
.faithful-home .choco-mascot {
  width: 156px;
  height: 156px;
  right: -4px;
  bottom: -4px;
  object-fit: cover;
  object-position: center;
  border: 6px solid #cad432;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #070707;
}
.connect-choco h3 { font-size: 36px; }
.portal-article-placeholder {
  display: grid;
  place-items: center;
  color: var(--article-placeholder-ink);
  background-color: var(--article-placeholder-base);
  background-image:
    radial-gradient(ellipse at 12% 22%, color-mix(in srgb, var(--article-placeholder-wash) 78%, transparent) 0 18%, transparent 54%),
    radial-gradient(ellipse at 88% 76%, color-mix(in srgb, var(--article-placeholder-wash) 68%, transparent) 0 16%, transparent 52%),
    linear-gradient(155deg, color-mix(in srgb, var(--article-placeholder-base) 88%, #f4eddb) 0%, var(--article-placeholder-base) 72%);
  filter: none;
}
.portal-article-placeholder::after { background: radial-gradient(circle at 68% 30%, rgba(255,255,255,.14), transparent 42%); }
.portal-article-placeholder > span {
  max-width: 80%;
  position: relative;
  z-index: 2;
  font-family: var(--font-gothic), sans-serif;
  font-size: clamp(25px,3vw,42px);
  line-height: 1.3;
  letter-spacing: .08em;
  text-align: center;
}
.story-cta { background: #c4d135; color: #070707; }
.story-cta::before { background: var(--paper); }
.story-cta .cta-icon { color: #070707; background: rgba(255,255,255,.42); border-color: #070707; }
.story-cta a { color: #fff; background: #070707; box-shadow: 5px 5px 0 rgba(255,255,255,.8); }

.face-noukano .site-footer {
  color: #141414;
  background: #f6f6f4;
  border-top: 1px solid rgba(17,17,17,.14);
}
.face-noukano .footer-nav a { color: #575750; }
.face-noukano .footer-nav a:hover { color: #111; }
.face-noukano .footer-legal { color: #66635c; border-top-color: rgba(17,17,17,.18); }
.face-noukano .footer-legal a { color: #111; }

@media (max-width: 860px) {
  .faithful-hero { min-height: 980px; background: #f6f6f4; }
  .faithful-hero .hero-map { margin: 0 45px 35px; padding: 25px; }
  .hero-area-badge { right: 22px; top: auto; bottom: 34px; }
}

@media (min-width: 861px) {
  .faithful-home .region-map-wrap { min-height: 700px; }
  .faithful-home .region-map-wrap .map-regions > svg {
    transform: translateY(-240px) scale(.75);
    transform-origin: 50% 52%;
  }
}

@media (max-width: 620px) {
  .faithful-hero { min-height: 850px; padding-bottom: 32px; }
  .faithful-hero h1 { font-size: clamp(35px, 11vw, 46px); }
  .faithful-hero .hero-copy { padding-right: 0; }
  .faithful-hero .hero-lead { font-size: 12px; }
  .faithful-hero .stats p { min-height: 28px; line-height: 1.35; }
  .faithful-hero .stats small { display: block; margin: 5px 0 0; }
  .faithful-hero .hero-map { height: 310px; margin: 0 52px 18px 0; padding: 18px; }
  .hero-map-pins { inset: 18px; }
  .hero-map-pin { width: 15px; height: 15px; border-width: 1.5px; }
  .hero-map-pin::after { width: 4px; height: 4px; left: 4px; top: 4px; }
  .hero-area-badge { width: 54px; min-height: 176px; right: 9px; bottom: 20px; padding: 16px 8px 10px; font-size: 11px; }
  .hero-area-badge svg { width: 25px; height: 25px; padding: 6px; }
  .region-map-wrap .brush-heading { padding-right: 0; }
  .area-filter-button { margin-top: 15px; }
  .faithful-home .region-map-wrap { min-height: 535px; }
  .faithful-home .map-regions { inset: 174px 0 15px; }
  .faithful-home .connect-card { min-height: 290px; }
  .faithful-home .connect-choco { padding-right: 112px; }
  .faithful-home .connect-choco h3 { font-size: 31px; }
  .faithful-home .choco-mascot { width: 106px; height: 106px; right: 6px; }
  .story-cta { padding-inline: 16px; }
  .story-cta .listing-cta-inner { width: 100%; }
}

/* Noukato company home: the same paper, brush and watercolor world as Noukano. */
.face-noukato {
  --paper: #f6f6f4;
  --white: #fff;
  --black: #070707;
  --ink: #070707;
  --lime: #cad432;
  --lime-deep: #c4d135;
  --muted: #6c6c6c;
}
.face-noukato :where(.brand-name, .footer-brand strong, .company-home h1, .company-home h2, .company-home h3, .company-home .stats strong) {
  font-family: var(--font-gothic), sans-serif;
  font-weight: 400;
  letter-spacing: .045em;
}
.face-noukato .desktop-nav a.nav-cta { background: #cad432; }
.face-noukato .desktop-nav a.nav-cta,
.face-noukato .mobile-menu nav a.nav-cta,
.company-home :where(.button, .listing-cta a) {
  border-radius: 999px;
}
.face-noukato .site-footer {
  color: #141414;
  background: #f6f6f4;
  border-top: 1px solid rgba(7,7,7,.14);
}
.face-noukato .footer-nav a { color: #575750; }
.face-noukato .footer-nav a:hover { color: #070707; }
.face-noukato .footer-social a { border-color: rgba(7,7,7,.28); }
.face-noukato .footer-legal { color: #66635c; border-top-color: rgba(7,7,7,.18); }
.face-noukato .footer-legal a { color: #070707; }

.company-home {
  min-height: 72vh;
  padding: 146px 0 104px;
  color: #070707;
  background: #f6f6f4;
}
.company-home > section:not(.company-contact) {
  width: min(1380px, calc(100% - 64px));
  margin-inline: auto;
}
.company-home > section + section { margin-top: 88px; }
.company-home .heading-phrase { display: inline-block; white-space: nowrap; }
.company-home :where(.eyebrow, .brush-heading > p, .connect-kicker, .listing-cta p) {
  font-family: var(--font-gothic), sans-serif;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .22em;
}

.company-intro {
  min-height: 480px;
  padding: clamp(38px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  align-items: center;
  gap: clamp(38px, 6vw, 92px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(7,7,7,.06);
}
.company-intro h1 {
  margin: 0;
  font-size: clamp(46px, 5.3vw, 76px);
  line-height: 1.16;
}
.company-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.company-primary-button {
  color: #fff;
  background: #070707;
  box-shadow: 4px 4px 0 #cad432;
}
.company-metrics {
  max-width: none;
  grid-template-columns: repeat(2, 1fr);
  border-color: rgba(7,7,7,.32);
}
.company-metrics article + article { border-color: rgba(7,7,7,.22); }
.company-metrics strong { font-size: clamp(44px, 5vw, 68px); }

.company-area { padding-top: 10px; }
.company-area .brush-heading { text-align: center; }
.company-area .brush-heading small {
  margin: 10px 0 0;
  display: block;
  color: #6c6c6c;
}
.company-home .company-area-map {
  width: 100%;
  min-width: 0;
  min-height: 620px;
  margin-top: 28px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(7,7,7,.05);
}
.company-home .company-area-map .map-regions {
  width: min(100%, 880px);
  height: 550px;
  margin: 0 auto;
  position: relative;
  inset: auto;
  overflow: visible;
}
.company-home .company-area-map .map-regions > svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  transform: none;
}
.company-area-map .map-regions .region-hokkaido { fill: #a7c924; }
.company-area-map .map-regions .region-tohoku { fill: #7796c4; }
.company-area-map .map-regions .region-kanto { fill: #e7be3e; }
.company-area-map .map-regions .region-chubu { fill: #f59f4d; }
.company-area-map .map-regions .region-kinki { fill: #8acbbd; }
.company-area-map .map-regions .region-chugoku-shikoku { fill: #e0aecc; }
.company-area-map .map-regions .region-kyushu { fill: #ef5e59; }

.company-group-route {
  margin-top: 30px;
  padding: 30px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(7,7,7,.06);
}
.company-group-route h3 {
  margin: 4px 0 8px;
  font-size: 31px;
}
.company-group-route p:last-child {
  margin: 0;
  color: #6c6c6c;
  font-size: 12px;
}

.company-services { padding: 0; background: #f6f6f4; }
.company-service-grid { margin-top: 34px; }
.company-service-card {
  min-height: 310px;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(7,7,7,.05);
}
.company-service-card h3 { font-size: 37px; }
.company-service-note {
  margin-top: 22px;
  padding: 22px 25px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: #fff;
  background: #070707;
}
.company-service-note > svg { width: 30px; }
.company-service-note p { margin: 0; font-size: 12px; line-height: 1.9; }
.company-service-note a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #cad432;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}
.company-service-note a svg { width: 16px; }

.company-contact {
  padding-inline: max(32px, calc((100vw - 1380px) / 2));
}
.company-membership {
  color: #070707;
  background: #c4d135;
}
.company-membership::before { background: #f6f6f4; }
.company-membership .listing-cta-inner {
  width: min(1380px, 100%);
  margin: auto;
}
.company-membership .cta-icon {
  color: #070707;
  background: rgba(255,255,255,.38);
  border-color: #070707;
}
.company-membership a {
  color: #fff;
  background: #070707;
  box-shadow: 5px 5px 0 rgba(255,255,255,.78);
}

.company-principles {
  padding: 34px 38px;
  display: grid;
  grid-template-columns: minmax(260px, .75fr) 1.25fr;
  gap: 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(7,7,7,.05);
}
.company-principles h2 { margin: 4px 0 0; font-size: 31px; }
.company-principles ul {
  margin: 0;
  padding-left: 1.25em;
  display: grid;
  gap: 11px;
  color: #6c6c6c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
}

@media (max-width: 860px) {
  .company-home > section + section { margin-top: 68px; }
  .company-intro { grid-template-columns: 1fr; }
  .company-service-note { grid-template-columns: auto 1fr; }
  .company-service-note a { grid-column: 2; }
  .company-group-route { align-items: flex-start; flex-direction: column; }
  .company-principles { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .company-home { padding: 124px 0 78px; }
  .company-home > section:not(.company-contact) { width: min(100% - 32px, 560px); }
  .company-home > section + section { margin-top: 54px; }
  .company-intro { min-height: 0; padding: 32px 22px; }
  .company-intro h1 { font-size: clamp(36px, 11vw, 49px); }
  .company-actions { align-items: stretch; flex-direction: column; }
  .company-actions .button { width: 100%; }
  .company-metrics article { padding-right: 12px; }
  .company-metrics article + article { padding-left: 12px; }
  .company-metrics strong { font-size: clamp(35px, 12vw, 48px); }
  .company-home .company-area-map { min-height: 430px; padding: 18px 8px; }
  .company-home .company-area-map .map-regions { height: 390px; }
  .company-service-note { padding: 20px; grid-template-columns: 1fr; }
  .company-service-note a { grid-column: auto; }
  .company-group-route { padding: 23px 20px; }
  .company-group-route .button { width: 100%; }
  .company-contact { padding-inline: 16px; }
  .company-principles { padding: 25px 20px; }
}

/* Noukano top — canonical 2026 mock proportions and material treatment. */
.faithful-home:not(.company-home) {
  --paper: #f6f6f4;
  --white: #fff;
  --black: #070707;
  --ink: #070707;
  --lime: #cad432;
  --lime-deep: #c4d135;
  --muted: #6c6c6c;
  --home-hero-image: url('/images/articles/rice-ripening-saturated-water-management.webp');
  --connect-community-image: url('/images/articles/edamame-harvest-to-precooling.webp');
  --connect-learn-image: url('/images/articles/soil-building-basics.webp');
}

.canonical-lettering {
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}
.hero-lettering {
  width: clamp(420px, 46vw, 650px);
  max-width: 100%;
  object-position: left center;
}
.area-lettering {
  width: clamp(235px, 27vw, 420px);
  object-position: left center;
}
.connect-lettering {
  width: clamp(290px, 36vw, 510px);
  margin-inline: auto;
}
.connect-card-lettering {
  width: clamp(112px, 12vw, 185px);
  margin: 23px 0 10px;
  position: relative;
  z-index: 2;
  object-position: left center;
}
.connect-card-lettering-short { width: clamp(72px, 8vw, 122px); }
.connect-talk-lettering { width: clamp(145px, 15vw, 220px); }
.business-lettering {
  width: clamp(220px, 25vw, 370px);
  margin: 3px 0 8px;
  object-position: left center;
}
.latest-lettering {
  width: clamp(145px, 17vw, 240px);
  object-position: left center;
}
.story-lettering {
  width: clamp(330px, 40vw, 600px);
  margin-bottom: 6px;
  object-position: left center;
}

.face-noukano .site-header {
  padding: 22px clamp(25px, 3.5vw, 56px);
}
.face-noukano .header-inner {
  width: min(1480px, 100%);
  min-height: 58px;
}
.face-noukano .brand-name {
  font-family: var(--font-gothic), sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .08em;
}
.face-noukano .brand small {
  margin-top: 8px;
  font-size: 8px;
  letter-spacing: .13em;
}
.face-noukano .desktop-nav {
  margin-left: 0;
  gap: clamp(25px, 3.1vw, 48px);
  font-size: 10px;
}
.face-noukano .desktop-nav a.nav-cta {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.face-noukano .mobile-menu {
  margin-left: clamp(22px, 3vw, 42px);
}
.face-noukano .mobile-menu summary {
  width: 44px;
  height: 44px;
  color: #fff;
  background: #070707;
}
.face-noukano .mobile-menu summary svg {
  width: 24px;
}
.face-noukano .mobile-menu nav {
  width: min(330px, calc(100vw - 32px));
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  border: 2px solid var(--black);
  border-radius: 0;
  background: var(--paper);
  box-shadow: 7px 7px 0 rgba(7,7,7,.18);
}
.face-noukano .journal-mobile-nav > a { border-bottom: 1px solid var(--line); }
.face-noukano .journal-mobile-nav .journal-news-menu { border-bottom: 1px solid var(--line); }
.face-noukano .journal-mobile-nav .journal-news-trigger { width: 100%; justify-content: space-between; }
.face-noukano .journal-mobile-nav .journal-news-list {
  min-width: 0;
  padding: 0 9px 9px 22px;
  position: static;
  display: none;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  border: 0;
  border-left: 2px solid var(--black);
  box-shadow: none;
}
.face-noukano .journal-mobile-nav .journal-news-trigger[aria-expanded="true"] + .journal-news-list { display: grid; }
.face-noukano .journal-mobile-nav .journal-news-list a { padding: 9px 10px; font-size: 12px; }

.faithful-home:not(.company-home) .marker::after,
.faithful-home:not(.company-home) .connect-card h3::after {
  bottom: -.01em;
  height: .17em;
  background: #cad432;
  clip-path: polygon(0 47%, 3% 26%, 8% 37%, 15% 20%, 24% 34%, 33% 15%, 43% 30%, 53% 12%, 64% 28%, 75% 17%, 86% 31%, 94% 20%, 100% 43%, 98% 75%, 89% 63%, 81% 82%, 69% 68%, 57% 87%, 44% 71%, 31% 90%, 20% 70%, 8% 85%, 1% 69%);
  transform: rotate(-1.5deg) skewX(-5deg);
}

.faithful-home:not(.company-home) .faithful-hero {
  min-height: 810px;
  padding: 102px 0 42px;
  background-image: var(--home-hero-image);
  background-position: center 54%;
  background-size: cover;
}
.faithful-home:not(.company-home) .faithful-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(246,246,244,.08) 0 55%, rgba(48,83,31,.08) 78%, rgba(35,66,25,.28) 100%),
    linear-gradient(90deg, rgba(246,246,244,.98) 0%, rgba(246,246,244,.91) 27%, rgba(246,246,244,.6) 43%, rgba(246,246,244,.05) 72%);
}
.faithful-home:not(.company-home) .faithful-hero::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,.25), transparent 32%);
}
.faithful-home:not(.company-home) .faithful-hero .hero-wash {
  z-index: 1;
  height: 24%;
  background: linear-gradient(transparent, rgba(34,74,27,.24));
}
.faithful-home:not(.company-home) .faithful-hero .hero-inner {
  width: min(1480px, calc(100% - 80px));
  grid-template-columns: 52% 48%;
}
.faithful-home:not(.company-home) .faithful-hero .hero-copy {
  padding: 46px 0 0 50px;
}
.faithful-home:not(.company-home) .faithful-hero .eyebrow {
  display: none;
}
.faithful-home:not(.company-home) .faithful-hero h1 {
  font-size: clamp(62px, 6.3vw, 94px);
  line-height: 1.16;
  letter-spacing: .06em;
  text-shadow: 0 2px 14px rgba(255,255,255,.78);
}
.faithful-home:not(.company-home) .faithful-hero .hero-lead {
  margin: 26px 0 28px;
  font-size: 12px;
  line-height: 2.05;
}
.faithful-home:not(.company-home) .faithful-hero .stats {
  max-width: 600px;
  border-top-color: rgba(7,7,7,.35);
}
.faithful-home:not(.company-home) .faithful-hero .stats article {
  padding-top: 13px;
}
.faithful-home:not(.company-home) .faithful-hero .stats p {
  font-size: 8px;
}
.faithful-home:not(.company-home) .faithful-hero .stats strong {
  font-size: 38px;
  letter-spacing: .04em;
}
.faithful-home:not(.company-home) .faithful-hero .hero-map {
  height: 570px;
  margin: 8px 32px 0 0;
  padding: 30px 24px 0 40px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.faithful-home:not(.company-home) .faithful-hero .map-hero svg {
  filter: drop-shadow(0 6px 7px rgba(7,7,7,.18));
}
.faithful-home:not(.company-home) .faithful-hero .map-hero > svg > a > path {
  fill: rgba(255,255,255,.86);
  stroke: rgba(255,255,255,.9);
  stroke-width: .75;
  filter: url(#watercolor-hero);
}
.faithful-home:not(.company-home) .hero-map-pins {
  inset: 30px 24px 0 40px;
}
.faithful-home:not(.company-home) .hero-map-pin {
  width: 18px;
  height: 18px;
}
.faithful-home:not(.company-home) .hero-area-badge {
  right: 23px;
  top: 205px;
  width: 62px;
  min-height: 211px;
  font-size: 13px;
}

.faithful-home:not(.company-home) .region-section {
  overflow: visible;
  background: #fff;
}
.faithful-home:not(.company-home) .region-layout {
  padding: 68px 0 76px;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, .62fr);
  gap: 50px;
}
.faithful-home:not(.company-home) .region-map-wrap {
  min-height: 620px;
}
.faithful-home:not(.company-home) .brush-heading h2,
.faithful-home:not(.company-home) .section-heading h2 {
  font-size: clamp(31px, 3vw, 45px);
  line-height: 1.28;
}
.faithful-home:not(.company-home) .brush-heading > p,
.faithful-home:not(.company-home) .section-heading p,
.faithful-home:not(.company-home) .pickup-title p,
.faithful-home:not(.company-home) .business-copy > p,
.faithful-home:not(.company-home) .listing-cta p {
  display: none;
}
.faithful-home:not(.company-home) .area-filter-button {
  width: 92px;
  height: 92px;
  min-height: 92px;
  margin: 26px 0 0 38px;
  padding: 15px;
  display: grid;
  place-items: center;
  gap: 3px;
  color: #fff;
  background: #070707;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  text-align: center;
  font-size: 9px;
  line-height: 1.5;
}
.faithful-home:not(.company-home) .connect-community {
  --connect-image: var(--connect-community-image);
}
.faithful-home:not(.company-home) .connect-learn {
  --connect-image: var(--connect-learn-image);
}
.faithful-home:not(.company-home) .area-filter-button svg:first-child {
  width: 21px;
}
.faithful-home:not(.company-home) .area-filter-button svg:last-child {
  width: 13px;
}
.faithful-home:not(.company-home) .region-map-wrap .map-regions {
  inset: 94px 8px 24px 38px;
  overflow: visible;
}
.faithful-home:not(.company-home) .region-map-wrap .map-regions > svg {
  transform: none;
  overflow: visible;
  filter: drop-shadow(0 4px 4px rgba(7,7,7,.06));
}
.faithful-home:not(.company-home) .map-regions > svg > a > path {
  stroke: rgba(255,255,255,.48);
  stroke-width: .76;
  opacity: .9;
  filter: url(#watercolor-regions);
}
.faithful-home:not(.company-home) .map-regions .region-hokkaido { fill: #a7c924; }
.faithful-home:not(.company-home) .map-regions .region-tohoku { fill: #7796c4; }
.faithful-home:not(.company-home) .map-regions .region-kanto { fill: #e7be3e; }
.faithful-home:not(.company-home) .map-regions .region-chubu { fill: #f59f4d; }
.faithful-home:not(.company-home) .map-regions .region-kinki { fill: #8acbbd; }
.faithful-home:not(.company-home) .map-regions .region-chugoku-shikoku { fill: #e0aecc; }
.faithful-home:not(.company-home) .map-regions .region-kyushu { fill: #ef5e59; }
.faithful-home:not(.company-home) .region-label {
  min-width: 90px;
  padding: 8px 11px;
  border-width: 1px;
  background: rgba(255,255,255,.82);
  font-size: 12px;
}
.faithful-home:not(.company-home) .label-hokkaido { right: 2%; top: 30%; }
.faithful-home:not(.company-home) .label-kanto { right: 2%; top: 64%; }
.faithful-home:not(.company-home) .label-chubu { right: 20%; top: 76%; }
.faithful-home:not(.company-home) .label-kinki { left: 40%; bottom: 5%; }
.faithful-home:not(.company-home) .label-chugoku { left: 7%; top: 65%; }
.faithful-home:not(.company-home) .label-kyushu { left: -2%; bottom: 8%; }

.faithful-home:not(.company-home) .pickup-list {
  padding-left: 35px;
  border-left-color: rgba(7,7,7,.17);
}
.faithful-home:not(.company-home) .pickup-title {
  margin-bottom: 18px;
  align-items: center;
}
.faithful-home:not(.company-home) .pickup-title h3 {
  font-size: 24px;
}
.faithful-home:not(.company-home) .home-pickup-card {
  min-height: 104px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 44% 56%;
  overflow: hidden;
  background: #f6f6f4;
  border: 2px solid var(--black);
  border-radius: 0;
  cursor: pointer;
  transition: box-shadow .2s ease, transform .2s ease;
}
.faithful-home:not(.company-home) .home-pickup-card:hover { transform: translateY(-2px); box-shadow: 5px 6px 0 var(--lime); }
.faithful-home:not(.company-home) .home-pickup-visual {
  width: 100%;
  height: 100%;
  min-height: 104px;
  aspect-ratio: auto;
  border-bottom: 0;
}
.faithful-home:not(.company-home) .home-pickup-visual > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home-pickup-visual.producer-avatar-ogp > span {
  display: none;
}
.faithful-home:not(.company-home) .home-pickup-card > .home-pickup-content {
  min-width: 0;
  padding: 12px 13px;
}
.faithful-home:not(.company-home) .home-pickup-card > .home-pickup-content > span {
  padding: 3px 7px;
  display: inline-block;
  border: 1px solid rgba(7,7,7,.25);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}
.faithful-home:not(.company-home) .home-pickup-card > .home-pickup-content > h4 {
  margin: 8px 0 4px;
  font-size: 12px;
  line-height: 1.4;
}
.faithful-home:not(.company-home) .home-pickup-card > .home-pickup-content > p {
  margin: 0;
  color: #6c6c6c;
  font-size: 9px;
  line-height: 1.55;
}

.faithful-home:not(.company-home) .connect-section {
  padding: 48px 0 66px;
}
.faithful-home:not(.company-home) .connect-grid {
  margin-top: 22px;
  gap: 17px;
}
.faithful-home:not(.company-home) .connect-card {
  min-height: 250px;
  padding: 25px 27px;
  border: 0;
  border-radius: 11px;
  box-shadow: 0 5px 18px rgba(7,7,7,.07);
}
.faithful-home:not(.company-home) .connect-kicker {
  font-size: 9px;
}
.faithful-home:not(.company-home) .connect-card > svg {
  display: none;
}
.faithful-home:not(.company-home) .connect-card h3 {
  margin: 23px 0 10px;
  font-size: 36px;
}
.faithful-home:not(.company-home) .connect-card p {
  max-width: 61%;
  margin-bottom: 22px;
  font-size: 10px;
  line-height: 1.75;
}
.faithful-home:not(.company-home) .connect-card::after {
  content: "";
  width: 39%;
  height: 78%;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--connect-image) center / cover no-repeat;
  clip-path: polygon(18% 5%, 100% 0, 100% 100%, 0 100%, 7% 59%);
  opacity: .95;
}
.faithful-home:not(.company-home) .connect-learn::after {
  width: 34%;
  height: 88%;
  right: 0;
  bottom: -8%;
  clip-path: polygon(44% 0, 100% 7%, 100% 100%, 0 100%, 10% 25%);
}
.faithful-home:not(.company-home) .connect-choco {
  padding-right: 124px;
}
.faithful-home:not(.company-home) .connect-choco::after {
  display: none;
}
.faithful-home:not(.company-home) .connect-choco h3 {
  font-size: 31px;
}
.faithful-home:not(.company-home) .connect-choco p {
  max-width: 100%;
}
.faithful-home:not(.company-home) .choco-mascot {
  width: 118px;
  height: 118px;
  right: 8px;
  bottom: 9px;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.faithful-home:not(.company-home) .business-band {
  padding: 44px 0;
  background: #070707;
}
.faithful-home:not(.company-home) .business-grid {
  grid-template-columns: 1.32fr repeat(3, .7fr);
  gap: 24px;
}
.faithful-home:not(.company-home) .business-copy h2 {
  margin: 3px 0 8px;
  font-size: 29px;
}
.faithful-home:not(.company-home) .business-copy span {
  font-size: 9px;
}
.faithful-home:not(.company-home) .business-copy a {
  margin-top: 16px;
  padding: 8px 14px;
  font-size: 9px;
}
.faithful-home:not(.company-home) .business-benefit {
  min-height: 105px;
}
.faithful-home:not(.company-home) .business-benefit svg {
  width: 43px;
  height: 43px;
}
.faithful-home:not(.company-home) .business-benefit b {
  font-size: 9px;
}

.faithful-home:not(.company-home) .journal-section {
  padding: 60px 0 66px;
}
.faithful-home:not(.company-home) .section-heading {
  margin-bottom: 19px;
}
.faithful-home:not(.company-home) .home-articles {
  gap: 17px;
}
.faithful-home:not(.company-home) .home-articles .article-visual {
  height: 155px;
  border-radius: 7px;
}
.faithful-home:not(.company-home) .home-articles .visual-orb {
  display: none;
}
.faithful-home:not(.company-home) .home-articles .article-card-copy {
  padding-top: 10px;
}
.faithful-home:not(.company-home) .home-articles .article-card-topline {
  min-height: 19px;
}
.faithful-home:not(.company-home) .home-articles .article-card-read,
.faithful-home:not(.company-home) .home-articles .article-card p {
  display: none;
}
.faithful-home:not(.company-home) .home-articles .article-card h3 {
  margin: 7px 0 4px;
  font-size: 13px;
  line-height: 1.55;
}
.faithful-home:not(.company-home) .home-articles .tag {
  padding: 3px 7px;
  font-size: 7px;
}
.faithful-home:not(.company-home) .home-articles .article-card-meta {
  margin-top: 5px;
  justify-content: flex-start;
}
.faithful-home:not(.company-home) .home-articles .article-card-meta span {
  display: none;
}

.faithful-home:not(.company-home) .story-cta {
  min-height: 165px;
  padding: 31px 0;
  background-color: #c4d135;
  background-image:
    radial-gradient(circle at 12% 38%, rgba(255,255,255,.17) 0 1px, transparent 2px),
    repeating-linear-gradient(169deg, transparent 0 17px, rgba(255,255,255,.12) 18px 19px);
}
.faithful-home:not(.company-home) .story-cta .listing-cta-inner {
  grid-template-columns: minmax(420px, 1fr) minmax(330px, .82fr) auto;
  gap: 28px;
}
.faithful-home:not(.company-home) .story-cta h2 {
  margin: 0 0 6px;
  font-size: clamp(28px, 3vw, 43px);
}
.faithful-home:not(.company-home) .story-cta span {
  font-size: 9px;
}
.faithful-home:not(.company-home) .story-collage {
  height: 104px;
  position: relative;
}
.faithful-home:not(.company-home) .story-photo {
  width: 128px;
  height: 88px;
  position: absolute;
  top: 7px;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 4px 10px rgba(7,7,7,.16);
}
.faithful-home:not(.company-home) .story-photo-1 {
  left: 8px;
  transform: rotate(-9deg);
}
.faithful-home:not(.company-home) .story-photo-2 {
  left: 102px;
  z-index: 2;
  transform: rotate(2deg);
}
.faithful-home:not(.company-home) .story-photo-3 {
  left: 205px;
  transform: rotate(10deg);
}
.faithful-home:not(.company-home) .story-cta a {
  min-height: 43px;
  padding: 0 18px;
  font-size: 9px;
  box-shadow: none;
}

.face-noukano .site-footer {
  background: #f6f6f4;
}
.face-noukano .footer-inner {
  padding: 39px 0 22px;
  grid-template-columns: .95fr 2.25fr auto;
  gap: 38px;
}
.face-noukano .footer-brand strong {
  font-size: 22px;
}
.face-noukano .footer-nav {
  gap: 20px;
}
.face-noukano .footer-social {
  gap: 8px;
}
.face-noukano .footer-social a {
  width: 30px;
  height: 30px;
  border: 0;
}
.face-noukano .footer-social svg {
  width: 18px;
}
.face-noukano .footer-legal {
  padding-top: 13px;
  gap: 7px 20px;
}
.face-noukano .footer-legal p {
  font-size: 8px;
}

.pref-article-grid {
  margin-top: 28px;
}

@media (max-width: 1120px) {
  .face-noukano .desktop-nav {
    gap: 19px;
  }
  .faithful-home:not(.company-home) .faithful-hero .hero-inner {
    grid-template-columns: 56% 44%;
  }
  .faithful-home:not(.company-home) .faithful-hero .hero-copy {
    padding-left: 18px;
  }
  .faithful-home:not(.company-home) .region-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(275px, .65fr);
    gap: 34px;
  }
  .faithful-home:not(.company-home) .story-cta .listing-cta-inner {
    grid-template-columns: minmax(360px, 1fr) 310px;
  }
  .faithful-home:not(.company-home) .story-cta a {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 860px) {
  .face-noukano .mobile-menu {
    margin-left: auto;
  }
  .faithful-home:not(.company-home) .faithful-hero {
    min-height: 920px;
    background-position: 59% center;
  }
  .faithful-home:not(.company-home) .faithful-hero::before {
    background:
      linear-gradient(180deg, rgba(246,246,244,.95) 0 42%, rgba(246,246,244,.35) 68%, rgba(34,74,27,.25) 100%);
  }
  .faithful-home:not(.company-home) .faithful-hero .hero-inner {
    width: min(100% - 40px, 720px);
    grid-template-columns: 1fr;
  }
  .faithful-home:not(.company-home) .faithful-hero .hero-copy {
    padding: 28px 0 0;
  }
  .faithful-home:not(.company-home) .faithful-hero .hero-map {
    height: 390px;
    margin: -10px 35px 0 90px;
    padding: 0;
  }
  .faithful-home:not(.company-home) .hero-map-pins {
    inset: 0;
  }
  .faithful-home:not(.company-home) .hero-area-badge {
    right: 18px;
    bottom: 35px;
    top: auto;
  }
  .faithful-home:not(.company-home) .region-layout {
    grid-template-columns: 1fr;
  }
  .faithful-home:not(.company-home) .pickup-list {
    padding: 30px 0 0;
  }
  .faithful-home:not(.company-home) .home-pickup-card {
    grid-template-columns: 150px 1fr;
  }
  .faithful-home:not(.company-home) .business-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .faithful-home:not(.company-home) .business-copy {
    grid-column: 1 / -1;
  }
  .faithful-home:not(.company-home) .story-cta .listing-cta-inner {
    grid-template-columns: 1fr;
  }
  .faithful-home:not(.company-home) .story-collage {
    width: 340px;
  }
  .face-noukano .footer-inner {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 620px) {
  .face-noukano .site-header {
    padding: 14px 16px;
  }
  .face-noukano .brand-name {
    font-size: 20px;
  }
  .face-noukano .mobile-menu summary {
    width: 40px;
    height: 40px;
  }
  .faithful-home:not(.company-home) .faithful-hero {
    min-height: 775px;
    padding-top: 94px;
    background-position: 58% center;
  }
  .faithful-home:not(.company-home) .faithful-hero .hero-inner {
    width: min(100% - 30px, 560px);
  }
  .faithful-home:not(.company-home) .faithful-hero h1 {
    font-size: clamp(39px, 12.5vw, 55px);
  }
  .faithful-home:not(.company-home) .faithful-hero .hero-lead {
    margin: 20px 0 21px;
    font-size: 10px;
    line-height: 1.8;
  }
  .faithful-home:not(.company-home) .faithful-hero .stats article,
  .faithful-home:not(.company-home) .faithful-hero .stats article + article {
    padding-inline: 7px;
  }
  .faithful-home:not(.company-home) .faithful-hero .stats strong {
    font-size: 27px;
  }
  .faithful-home:not(.company-home) .faithful-hero .stats p {
    min-height: 23px;
  }
  .faithful-home:not(.company-home) .faithful-hero .hero-map {
    height: 285px;
    margin: -6px 50px 0 78px;
  }
  .faithful-home:not(.company-home) .hero-area-badge {
    width: 49px;
    min-height: 164px;
    right: 7px;
    bottom: 22px;
    font-size: 10px;
  }
  .faithful-home:not(.company-home) .region-layout {
    padding: 51px 0 55px;
  }
  .faithful-home:not(.company-home) .region-map-wrap {
    min-height: 510px;
  }
  .faithful-home:not(.company-home) .brush-heading h2,
  .faithful-home:not(.company-home) .section-heading h2 {
    font-size: 30px;
  }
  .faithful-home:not(.company-home) .area-filter-button {
    width: 76px;
    height: 76px;
    min-height: 76px;
    margin: 20px 0 0 8px;
    padding: 10px;
    font-size: 8px;
  }
  .faithful-home:not(.company-home) .region-map-wrap .map-regions {
    inset: 128px -4px 20px;
  }
  .faithful-home:not(.company-home) .region-label {
    min-width: 70px;
    padding: 6px;
    font-size: 9px;
  }
  .faithful-home:not(.company-home) .label-hokkaido { right: -4%; top: 33%; }
  .faithful-home:not(.company-home) .label-kanto { right: -4%; top: 63%; }
  .faithful-home:not(.company-home) .label-chubu { right: 14%; top: 77%; }
  .faithful-home:not(.company-home) .label-kinki { left: 38%; bottom: 5%; }
  .faithful-home:not(.company-home) .label-chugoku { left: -3%; top: 63%; }
  .faithful-home:not(.company-home) .label-kyushu { left: -4%; bottom: 8%; }
  .faithful-home:not(.company-home) .home-pickup-card {
    grid-template-columns: 40% 60%;
  }
  .faithful-home:not(.company-home) .connect-section {
    padding: 42px 0 53px;
  }
  .faithful-home:not(.company-home) .connect-card {
    min-height: 235px;
    padding: 23px 21px;
  }
  .faithful-home:not(.company-home) .connect-card h3 {
    font-size: 33px;
  }
  .faithful-home:not(.company-home) .connect-card p {
    max-width: 60%;
  }
  .faithful-home:not(.company-home) .connect-choco {
    padding-right: 106px;
  }
  .faithful-home:not(.company-home) .connect-choco p {
    max-width: 100%;
  }
  .faithful-home:not(.company-home) .business-grid {
    grid-template-columns: 1fr;
  }
  .faithful-home:not(.company-home) .business-benefit {
    min-height: 88px;
  }
  .faithful-home:not(.company-home) .home-articles .article-card {
    display: block;
  }
  .faithful-home:not(.company-home) .home-articles .article-card > a {
    display: grid;
    grid-template-columns: 43% 57%;
  }
  .faithful-home:not(.company-home) .home-articles .article-visual {
    height: 100%;
    min-height: 120px;
  }
  .faithful-home:not(.company-home) .home-articles .article-card-copy {
    padding: 10px 12px;
  }
  .faithful-home:not(.company-home) .story-cta {
    padding-inline: 16px;
  }
  .faithful-home:not(.company-home) .story-cta .listing-cta-inner {
    width: 100%;
  }
  .faithful-home:not(.company-home) .story-collage {
    width: 100%;
    transform: scale(.88);
    transform-origin: left center;
  }
  .face-noukano .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* Dynamic headings and labels use weight—not a second typeface—for hierarchy. */
body.face-noukano h1,
body.face-noukato h1 {
  font-family: var(--font-gothic), sans-serif;
  font-weight: 900;
}
body.face-noukano :is(h2, h3),
body.face-noukato :is(h2, h3),
body .brand-name,
body .footer-brand strong,
body .stats strong {
  font-family: var(--font-gothic), sans-serif;
  font-weight: 700;
}

/* Keep later home-specific inset rules from resizing the fitted R3 map stage. */
.faithful-home:not(.company-home) .region-map-stage > .map-regions,
.company-home .company-area-map .region-map-stage > .map-regions {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
  transform: none;
}

/* Final cascade lock for the approved list-page mock. */
body.face-noukano .journal-list-hero h1 { font-weight: 500; }
.journal-list-hero .eyebrow { color: var(--muted); }
.journal-list-hero .page-lead { color: var(--muted); font-size: 12px; line-height: 1.9; }
.articles-page .article-card { min-height: 0; padding-bottom: 0; border-bottom: 1px solid var(--black); }
.directory-page .result-count { padding-bottom: 0; border-bottom: 0; }
.directory-crop-filter { max-width: 970px; margin: 0 auto 34px; }
.directory-crop-filter .filter-group > a,
.directory-crop-filter .filter-group > button,
.directory-crop-filter .filter-group > span.active {
  min-height: 40px;
  padding: 0 18px;
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}
.directory-crop-filter .filter-group > :is(a, button, span).active { background: var(--lime); }
.company-gate-benefit { border: 1px solid var(--black); box-shadow: none; }

@media (max-width: 620px) {
  .directory-crop-filter .filter-group > a,
  .directory-crop-filter .filter-group > button,
  .directory-crop-filter .filter-group > span.active { min-height: 36px; padding: 0 12px; font-size: 10px; }
}

/*
 * Unified lower-page rule (2026-08-06): every new or revised page uses the
 * shared paper / ink / lime tokens, square corners, and the light hero system.
 */
.lower-page-hero.journal-list-hero,
.lower-page-hero.journal-list-hero.listing-hero {
  min-height: 0;
  padding: 24px 0 0;
  color: var(--ink);
  background: transparent;
}
.lower-page-hero.journal-list-hero::before,
.lower-page-hero.journal-list-hero::after { content: none; }
.lower-page-hero.journal-list-hero .eyebrow,
.lower-page-hero.journal-list-hero .page-lead { color: var(--muted); }
.lower-page-hero.journal-list-hero h1 { color: var(--ink); font-size: clamp(32px, 4.2vw, 60px); }
.login-page > .auth-entry-panel .auth-entry-heading { display: none; }
.login-page > .auth-entry-panel { max-width: 760px; margin-inline: auto; padding: clamp(24px, 4vw, 42px); border: 1px solid var(--black); background: var(--white); }
.my-heading.lower-page-hero.journal-list-hero { align-items: flex-end; }
.my-heading.lower-page-hero.journal-list-hero .my-pro-badge { margin-bottom: 8px; }
.producer-grid { align-items: stretch; }
.producer-card--text { min-height: 0; border-top: 4px solid var(--lime); background: var(--white); }
.producer-card--text .producer-content { padding: 22px 20px 24px; }
.producer-card--text h2 { font-size: 24px; }
.producer-card--text .producer-content > p:last-child {
  min-height: 0;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.partners-page-v2 { color: var(--ink); background: var(--paper); }
.partners-hero { min-height: 0; padding: 155px 0 0; overflow: visible; background: transparent; }
.partners-hero::after { content: none; }
.partners-hero-inner.lower-page-hero.journal-list-hero {
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto 42px;
  padding: 24px 0 0;
  display: flex;
  align-items: flex-end;
  gap: 32px 60px;
}
.partners-hero h1,
.partners-hero-inner.lower-page-hero.journal-list-hero h1 { font-size: clamp(32px, 4.2vw, 60px); line-height: 1.25; }
.partners-hero .eyebrow,
.partners-hero .page-lead { color: var(--muted); }
.partners-data { flex: 0 1 390px; padding: 26px; color: var(--ink); background: var(--white); border: 1px solid var(--black); box-shadow: none; }
.partners-data > p { color: var(--muted); }
.partners-data > div { border-top-color: var(--line); }
.partners-data small { color: var(--muted); }
.partners-content { padding-top: 58px; }
.partners-section-heading > p:last-child,
.partners-contact div:first-child > p:last-child { color: var(--muted); }
.target-tags span { color: var(--ink); background: var(--white); border-color: var(--black); }
.partners-contact { border-color: var(--black); }
.partners-contact .button-outline { color: var(--ink); border-color: var(--black); background: var(--white); box-shadow: none; }

.hp-hero { min-height: 0; padding: 155px 0 0; overflow: visible; background: transparent; }
.hp-hero::before,
.hp-hero::after { content: none; }
.hp-hero-inner.lower-page-hero.journal-list-hero {
  margin-bottom: 42px;
  padding: 24px 0 0;
  display: flex;
  align-items: flex-end;
  gap: 32px 60px;
}
.hp-hero-copy { flex: 1 1 520px; }
.hp-hero-copy h1 { font-size: clamp(32px, 4.2vw, 60px); line-height: 1.25; }
.hp-hero-copy > p:not(.eyebrow) { max-width: 620px; margin: 20px 0; color: var(--muted); font-size: 12px; font-weight: 400; }
.hp-price-card { flex: 0 1 390px; color: var(--ink); background: var(--white); border: 1px solid var(--black); box-shadow: none; transform: none; }

.article-page-shell { grid-template-columns: minmax(0, 1fr) 300px; gap: 54px; }
.article-detail { min-width: 0; }
.article-heading { padding: 0 0 28px; overflow: visible; color: var(--ink); background: var(--paper); border-bottom: 3px solid var(--lime); }
.article-heading::after { content: none; }
.article-heading .eyebrow { color: var(--muted); }
.article-heading h1 { color: var(--ink); font-size: clamp(32px, 4.2vw, 60px); font-weight: 700; line-height: 1.35; }
.article-detail .article-tag { color: var(--ink); background: var(--lime); }
.article-hero-visual { border: 1px solid var(--black); box-shadow: none; }
.article-intro,
.article-answer-box,
.article-body,
.article-faq,
.article-sources,
.article-related-links,
.article-bottom-cta,
.related-producers { width: min(100%, 720px); }
.article-body p,
.article-body li { font-size: 15px; line-height: 2; }
.article-answer-box,
.article-related-links,
.related-producers,
.article-sidebar section { border: 1px solid var(--black); border-radius: 0; background: var(--white); box-shadow: none; }
.article-bottom-cta { margin-top: 38px; padding: 28px; overflow: visible; border: 1px solid var(--black); background: var(--white); }
.article-bottom-cta::before,
.article-bottom-cta::after { content: none; }
.article-bottom-cta .listing-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 20px; }
.article-bottom-cta .cta-icon { display: none; }
.official-line-cta { margin-top: 38px; padding: 28px; overflow: visible; border: 1px solid var(--black); background: var(--white); }
.official-line-cta::before,
.official-line-cta::after { content: none; }
.official-line-cta .listing-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 20px; }
.official-line-cta h2 { font-size: clamp(24px, 3vw, 34px); }
.official-line-cta span { display: block; margin-top: 4px; color: var(--muted); font-weight: 400; }
.article-sidebar .map-widget { color: var(--ink); background: var(--white); border-top: 4px solid var(--lime); box-shadow: none; }
.article-sidebar .map-widget .eyebrow,
.article-sidebar .map-widget > p:not(.eyebrow) { color: var(--muted); }
.article-sidebar .map-widget .button-outline { color: var(--ink); border-color: var(--black); box-shadow: none; }

@media (max-width: 860px) {
  .partners-hero-inner.lower-page-hero.journal-list-hero,
  .hp-hero-inner.lower-page-hero.journal-list-hero { align-items: flex-start; flex-direction: column; }
  .partners-data,
  .hp-price-card { width: min(100%, 520px); flex-basis: auto; }
  .article-page-shell { grid-template-columns: 1fr; }
  .article-sidebar { padding-top: 0; }
}

@media (max-width: 620px) {
  .lower-page-hero.journal-list-hero { padding: 0; }
  .lower-page-hero.journal-list-hero h1 { font-size: clamp(32px, 10vw, 44px); }
  .journal-list-hero .journal-hero-context { margin: .35em 0 0; display: block; font-size: .48em; }
  .partners-hero,
  .hp-hero { padding-top: 112px; }
  .partners-hero-inner.lower-page-hero.journal-list-hero,
  .hp-hero-inner.lower-page-hero.journal-list-hero { width: min(100% - 32px, 560px); }
  .article-page-shell { width: min(100% - 32px, 720px); padding-top: 112px; }
  .article-heading h1 { font-size: clamp(30px, 9vw, 42px); }
  .article-bottom-cta .listing-cta-inner { grid-template-columns: 1fr; }
  .official-line-cta .listing-cta-inner { grid-template-columns: 1fr; }
}

/* Case E: prefecture monument placeholders and equal-height journal cards. */
.directory-page .producer-grid,
.pref-page .producer-grid,
.articles-page .article-grid { align-items: stretch; }

.directory-page .producer-card,
.pref-page .producer-card {
  height: 412px;
  min-height: 412px;
  grid-template-rows: 190px 220px;
}

.directory-page .producer-avatar,
.pref-page .producer-avatar {
  width: 100%;
  height: 190px;
  min-height: 190px;
  aspect-ratio: auto;
}

.producer-avatar-monument {
  isolation: isolate;
  display: block;
  overflow: hidden;
  color: var(--black);
  background: var(--soil);
  border-bottom: 1px solid var(--black);
  text-align: left;
}

.producer-avatar-monument::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 5;
  display: block;
  border: 1px solid rgba(11, 11, 11, .18);
  pointer-events: none;
}

.producer-avatar.producer-avatar-monument > span {
  margin: 0;
  padding: 0;
  color: var(--black);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.producer-avatar-monument .producer-monument {
  position: absolute;
  left: -25px;
  top: -33px;
  z-index: 1;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 184px;
  font-weight: 700;
  line-height: 1;
  color: rgba(11, 11, 11, .88);
}

.producer-avatar-monument .producer-full-name {
  position: absolute;
  left: 116px;
  bottom: 19px;
  z-index: 4;
  display: flex;
  align-items: baseline;
  gap: 7px;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(246, 245, 236, .75);
  font-family: inherit;
  font-size: 17px;
  line-height: 1;
  letter-spacing: .12em;
  white-space: nowrap;
}

.producer-avatar-monument .producer-full-name b {
  font-size: 9px;
  letter-spacing: .08em;
  opacity: .62;
}
.producer-avatar-monument .producer-full-name > span {
  position: static;
  z-index: auto;
  font-family: inherit;
  font-size: inherit;
}

.producer-avatar-monument .producer-region-label {
  position: absolute;
  top: 15px;
  right: 14px;
  z-index: 6;
  height: 160px;
  color: rgba(246, 245, 236, .78);
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .15em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.directory-page .producer-content,
.pref-page .producer-content {
  height: 220px;
  padding: 16px 17px 18px;
  display: grid;
  /* 並び順: 生産者名 / 所在地 / 品目 / 紹介文 / リンク枠。
     名前は1〜2行で伸縮させ(auto)、余りは最終行(1fr)へ集める＝名前直下に空白を作らない。
     カード外形の高さは height:220px で固定されるため、文字量が違っても全カード揃う。 */
  grid-template-rows: auto 18px 20px 40px 1fr;
  /* 既定のstretchだと余剰高がauto行(生産者名)にも配分され、1行の名前の下に空白が開く。
     startにして余りは最終行(1fr)だけが受ける（2026-08-06 社長指摘の修正）。 */
  align-content: start;
  gap: 6px;
  overflow: hidden;
}

.directory-page .producer-card h2,
.pref-page .producer-card h2 {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  line-height: 1.35;
}

.producer-links-slot,
.home-pickup-links-slot { min-width: 0; overflow: hidden; }
.producer-links-slot .producer-link-gate,
.home-pickup-links-slot .producer-link-gate {
  height: 100%;
  margin: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}
.producer-links-slot .producer-link-gate small,
.home-pickup-links-slot .producer-link-gate small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.directory-page .producer-location,
.pref-page .producer-location {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.directory-page .chips,
.pref-page .chips {
  min-width: 0;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
}
.directory-page .chips span,
.pref-page .chips span { flex: 0 0 auto; }

.directory-page .producer-content > .producer-intro,
.pref-page .producer-content > .producer-intro {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.faithful-home:not(.company-home) .home-pickup-card {
  height: 194px;
  min-height: 194px;
  align-items: stretch;
}
.faithful-home:not(.company-home) .home-pickup-visual {
  height: 190px;
  min-height: 190px;
}
.faithful-home:not(.company-home) .home-pickup-visual.producer-avatar-monument .producer-monument {
  left: -34px;
  top: -22px;
  font-size: 170px;
  opacity: .92;
}
.faithful-home:not(.company-home) .home-pickup-visual.producer-avatar-monument .producer-full-name {
  left: 10px;
  right: 32px;
  bottom: 12px;
  gap: 3px;
  padding: 5px 2px;
  display: grid;
  font-size: 11px;
  letter-spacing: .06em;
}
.faithful-home:not(.company-home) .home-pickup-visual.producer-avatar-monument .producer-full-name b { font-size: 7px; }
.faithful-home:not(.company-home) .home-pickup-visual.producer-avatar-monument .producer-region-label {
  top: 14px;
  right: 10px;
  height: 162px;
  font-size: 8px;
}
.faithful-home:not(.company-home) .home-pickup-card > .home-pickup-content {
  height: 190px;
  padding: 12px 13px;
  display: grid;
  grid-template-rows: 20px 40px 26px 46px;
  gap: 7px;
  overflow: hidden;
}
.faithful-home:not(.company-home) .home-pickup-card > .home-pickup-content > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.faithful-home:not(.company-home) .home-pickup-card > .home-pickup-content > h4 {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.faithful-home:not(.company-home) .home-pickup-card > .home-pickup-content > p {
  min-height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.articles-page .article-card,
.articles-page .article-card > a { height: 100%; }
.articles-page .article-card > a { display: flex; flex-direction: column; }
.articles-page .article-visual { flex: 0 0 auto; }
.articles-page .article-card-copy {
  height: 166px;
  flex: 0 0 166px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.articles-page .article-card h3 {
  min-height: 3.2em;
  max-height: 3.2em;
  flex: 0 0 3.2em;
}
.articles-page .article-card-meta {
  min-height: 1em;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 620px) {
  .directory-page .producer-card,
  .pref-page .producer-card { height: 412px; min-height: 412px; }
  .faithful-home:not(.company-home) .home-pickup-card { height: 194px; min-height: 194px; }
  .faithful-home:not(.company-home) .home-pickup-card { grid-template-columns: 40% 60%; }
}
