:root {
  --paper: #fdfbf7;
  --paper-warm: #f4efe5;
  --ink: #2b2b2b;
  --muted: #6f6a61;
  --tomato: #d93a2b;
  --tomato-dark: #af2b20;
  --green: #31533b;
  --green-light: #e4ebe3;
  --line: #06c755;
  --rule: rgba(43, 43, 43, 0.14);
  --shadow: 0 18px 50px rgba(43, 43, 43, 0.09);
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --wrap: 1180px;
  --ease: 240ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

p,
li,
dd,
blockquote {
  line-break: strict;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

h1,
h2,
h3 {
  line-break: strict;
  word-break: auto-phrase;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

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

:focus-visible {
  outline: 3px solid rgba(217, 58, 43, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: relative;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: var(--green);
}

.site-header--overlay {
  position: absolute;
  inset: 0 0 auto;
  background: linear-gradient(to bottom, rgba(24, 35, 26, 0.7), transparent);
  border-bottom: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--wrap));
  min-height: 84px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  color: inherit;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 25px;
  height: 25px;
  border: 1px solid currentColor;
  border-radius: 50% 48% 50% 45%;
  transform: rotate(-20deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 12px;
  width: 7px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(48deg);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.global-nav a {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: 44px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.global-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--ease);
}

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

.nav-cta {
  min-width: 106px;
  padding-inline: 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  transition: color var(--ease), background var(--ease);
}

.nav-cta:hover {
  color: var(--green);
  background: #fff;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 0;
  color: inherit;
  background: transparent;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  color: #fff;
  background: #273b2c;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 27, 23, 0.7) 0%, rgba(24, 27, 23, 0.35) 52%, rgba(24, 27, 23, 0.16) 100%),
    linear-gradient(0deg, rgba(24, 27, 23, 0.42), transparent 40%);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(100% - 48px), var(--wrap));
  margin: 84px auto 0;
  padding: clamp(80px, 12vh, 150px) 0 clamp(64px, 9vh, 110px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--tomato);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0.035em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 580px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.85;
  letter-spacing: 0.025em;
  text-wrap: pretty;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 54px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-decoration: none;
  transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease);
}

.button::after {
  content: "→";
  font-size: 1.12em;
  transition: transform var(--ease);
}

.button:hover {
  color: #fff;
  background: var(--ink);
  transform: translateY(-2px);
}

.button:hover::after {
  transform: translateX(4px);
}

.button--primary {
  border-color: var(--tomato);
  color: #fff;
  background: var(--tomato);
}

.button--primary:hover {
  border-color: var(--tomato-dark);
  background: var(--tomato-dark);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
}

.button--light:hover {
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.button--ghost-light:hover {
  color: var(--ink);
  background: #fff;
}

.button--line {
  border-color: var(--line);
  color: #fff;
  background: var(--line);
}

.button--line:hover {
  border-color: #05a847;
  background: #05a847;
}

.hero-scroll {
  position: absolute;
  right: max(24px, calc((100vw - var(--wrap)) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 52px;
  background: currentColor;
}

.section {
  padding: clamp(88px, 11vw, 150px) 0;
}

.section--compact {
  padding: clamp(62px, 8vw, 100px) 0;
}

.section--warm {
  background: var(--paper-warm);
}

.section--green {
  color: #fff;
  background: var(--green);
}

.section--ink {
  color: #fff;
  background: var(--ink);
}

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

.container--narrow {
  width: min(calc(100% - 48px), 820px);
}

.section-heading {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.035em;
  text-wrap: balance;
}

.section-heading--small {
  font-size: clamp(1.7rem, 3.1vw, 2.65rem);
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section--green .lead,
.section--ink .lead {
  color: rgba(255, 255, 255, 0.76);
}

.center-statement {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.center-statement .eyebrow {
  justify-content: center;
}

.center-statement .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.center-statement p:not(.eyebrow) {
  max-width: 620px;
  margin: 32px auto 0;
}

.copy-stack {
  display: grid;
  max-width: 39rem;
  gap: 0.9em;
  margin-top: 26px;
}

.copy-stack p {
  margin: 0;
}

.copy-stack--center {
  max-width: 640px;
  margin: 32px auto 0;
  text-align: left;
}

.center-statement .copy-stack p {
  max-width: none;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(46px, 8vw, 108px);
}

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

.split-media {
  position: relative;
}

.split-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: -22px;
  width: 72%;
  height: 72%;
  background: var(--paper-warm);
}

.split-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split-media--wide img {
  aspect-ratio: 5 / 4;
}

.split-body > :first-child {
  margin-top: 0;
}

.split-body p {
  color: var(--muted);
}

.split-body .copy-stack {
  max-width: 34rem;
}

.section--green .split-body p,
.section--ink .split-body p {
  color: rgba(255, 255, 255, 0.78);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: var(--rule);
}

.promise-card {
  min-height: 310px;
  padding: clamp(28px, 4vw, 50px);
  background: var(--paper);
}

.promise-number {
  display: block;
  color: var(--tomato);
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.promise-card h3 {
  margin: 38px 0 14px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.promise-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.now-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 610px;
  margin-top: 50px;
  color: #fff;
  background: var(--green);
  box-shadow: var(--shadow);
}

.now-image {
  min-height: 460px;
}

.now-image img {
  height: 100%;
  object-fit: cover;
}

.now-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
}

.status {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  margin-bottom: 28px;
  padding: 2px 13px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}

.status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

.now-label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.now-content h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.now-notes {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.now-notes div {
  display: grid;
  grid-template-columns: 5.2em 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.now-notes dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.now-notes dd {
  margin: 0;
  font-size: 0.92rem;
}

.now-reviews {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.now-review-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.now-review p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.now-review-source {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.now-updated {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.season-card {
  position: relative;
  display: grid;
  min-height: 530px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
}

.season-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.season-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(25, 27, 24, 0.82), rgba(25, 27, 24, 0.03) 72%);
}

.season-card:hover img {
  transform: scale(1.025);
}

.season-card-body {
  align-self: end;
  padding: clamp(28px, 4vw, 48px);
}

.season-name {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.season-name small {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.season-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
}

.heart-quote {
  margin: 30px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.review {
  max-width: 640px;
  margin: 52px 0 0;
  padding: 27px 30px;
  border-left: 2px solid var(--tomato);
  background: rgba(255, 255, 255, 0.06);
}

.review blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
}

.review cite {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-style: normal;
}

.award-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.award-row img {
  width: 88px;
  height: auto;
  padding: 4px;
  background: #fff;
}

.award-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 50px;
}

.link-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--rule);
  background: var(--paper);
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.link-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.link-card-label {
  color: var(--tomato);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.link-card h3 {
  margin: 32px 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 500;
}

.link-card p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 0.94rem;
}

.link-card-arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-size: 0.84rem;
}

.line-band {
  color: #fff;
  background: var(--green);
}

.line-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.line-band .section-heading {
  max-width: 720px;
}

.line-band p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: var(--green);
  isolation: isolate;
}

.page-hero--plain {
  min-height: 400px;
  background: var(--green);
}

.page-hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.page-hero-media img {
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 30, 25, 0.82), rgba(24, 30, 25, 0.16));
}

.page-hero-inner {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
  padding: 138px 0 65px;
}

.page-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.07em;
  text-wrap: balance;
}

.page-hero p:last-child {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.prose h2 {
  margin: 2.8em 0 0.8em;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.4em;
}

.definition {
  margin: 0;
  padding: clamp(32px, 5vw, 62px);
  border-left: 3px solid var(--tomato);
  background: var(--paper-warm);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  line-height: 2;
  letter-spacing: 0.045em;
}

.definition p {
  margin: 0;
}

.definition p + p {
  margin-top: 0.9em;
}

.info-list {
  margin: 0;
  border-top: 1px solid var(--rule);
}

.info-list div {
  display: grid;
  grid-template-columns: 12em minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.info-list dt {
  font-weight: 600;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.store-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--rule);
}

.store-list p {
  margin: 0;
  padding: 22px 24px;
  background: var(--paper);
}

.notice {
  margin-top: 34px;
  padding: 18px 22px;
  border: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.9rem;
}

.notice p {
  margin: 0;
}

.notice p + p {
  margin-top: 0.55em;
}

.meta-line {
  display: block;
}

.meta-line + .meta-line {
  margin-top: 0.2em;
}

.site-footer {
  color: #fff;
  background: #202722;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 80px;
  padding: clamp(68px, 9vw, 110px) 0 56px;
}

.footer-signature {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 2;
  letter-spacing: 0.05em;
}

.footer-signature strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 1.22em;
  font-weight: 500;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px 32px;
  align-content: start;
}

.footer-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.71rem;
  letter-spacing: 0.07em;
}

.footer-bottom a {
  color: inherit;
}

.fade-in {
  opacity: 1;
  transform: none;
}

.js .fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js .fade-in.is-visible {
  opacity: 1;
  transform: none;
}

.error-page {
  display: grid;
  place-items: center;
  min-height: 72vh;
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--tomato);
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 8rem);
  line-height: 1;
}

.season-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

.season-index a {
  display: grid;
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  text-decoration: none;
  transition: color var(--ease), background var(--ease);
}

.season-index a:hover {
  color: #fff;
  background: var(--green);
}

.season-index span {
  color: var(--tomato);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.season-index strong {
  align-self: end;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.season-index small {
  color: var(--muted);
  font-size: 0.78rem;
}

.season-index a:hover span,
.season-index a:hover small {
  color: rgba(255, 255, 255, 0.74);
}

.season-story {
  scroll-margin-top: 72px;
}

.season-lead {
  margin-top: 24px;
  color: var(--ink) !important;
  font-size: 1.03rem;
  font-weight: 500;
}

.season-detail-list {
  margin: 30px 0 0;
  border-top: 1px solid var(--rule);
}

.season-detail-list div {
  display: grid;
  grid-template-columns: 8.8em minmax(0, 1fr);
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
}

.season-detail-list dt {
  color: var(--tomato);
  font-size: 0.8rem;
  font-weight: 600;
}

.season-detail-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.season-transition {
  margin: 26px 0 0;
  padding: 20px 22px;
  border-left: 2px solid var(--tomato);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink) !important;
  font-size: 0.9rem;
}

.season-transition span {
  display: block;
  margin-bottom: 4px;
  color: var(--tomato);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.purchase-status {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  margin-top: 36px;
  color: #fff;
  background: var(--green);
  box-shadow: var(--shadow);
}

.purchase-status-main,
.purchase-status-detail {
  padding: clamp(34px, 5vw, 62px);
}

.purchase-status-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.purchase-status-main h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.35;
}

.purchase-status .season-updated {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.74rem;
}

.purchase-status-detail .button-row {
  margin-top: 30px;
}

.purchase-status-detail .button:not(.button--primary) {
  border-color: rgba(255, 255, 255, 0.64);
  color: #fff;
}

.purchase-status-detail .button:not(.button--primary):hover {
  color: var(--ink);
  background: #fff;
}

.shop-stack {
  display: grid;
  gap: 1px;
  margin-top: 56px;
  background: var(--rule);
}

.shop-card {
  position: relative;
  display: block;
  overflow: hidden;
  padding: clamp(34px, 5vw, 62px);
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease);
}

.shop-card:hover {
  z-index: 1;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.shop-card--primary {
  min-height: 410px;
  color: #fff;
  background: var(--green);
}

.shop-card--secondary {
  color: var(--ink);
  background: var(--paper);
}

.shop-card-kicker {
  display: block;
  margin-bottom: 48px;
  color: var(--tomato);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.shop-card--primary .shop-card-kicker {
  color: rgba(255, 255, 255, 0.66);
}

.shop-card-number {
  position: absolute;
  top: 24px;
  right: 30px;
  color: rgba(217, 58, 43, 0.28);
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 1;
}

.shop-card--primary .shop-card-number {
  color: rgba(255, 255, 255, 0.1);
}

.shop-card h3,
.shop-wait-card h3 {
  position: relative;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
}

.shop-card p {
  position: relative;
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.shop-card--primary p {
  color: rgba(255, 255, 255, 0.78);
}

.shop-card strong {
  position: relative;
  display: block;
  margin-top: 52px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.shop-secondary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1px;
  background: var(--rule);
}

.shop-wait-card {
  padding: clamp(34px, 5vw, 62px);
  color: #fff;
  background: var(--ink);
}

.shop-wait-card .shop-card-kicker,
.shop-wait-card p {
  color: rgba(255, 255, 255, 0.68);
}

.shop-wait-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.shop-wait-card .text-link {
  display: inline-block;
  margin-top: 34px;
  color: #fff;
}

.local-intro {
  max-width: 900px;
}

.local-intro > p:not(.eyebrow, .notice) {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
}

.local-purchase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: var(--rule);
}

.local-card {
  position: relative;
  padding: clamp(32px, 4.5vw, 54px);
  background: var(--paper);
}

.local-card--machine {
  color: #fff;
  background: var(--green);
}

.local-card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(217, 58, 43, 0.28);
  font-family: var(--serif);
  font-size: 4.2rem;
  line-height: 1;
}

.local-card--machine .local-card-number {
  color: rgba(255, 255, 255, 0.1);
}

.local-card-kicker {
  margin: 0 0 42px;
  color: var(--tomato);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.local-card--machine .local-card-kicker {
  color: rgba(255, 255, 255, 0.64);
}

.local-card h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
}

.local-card > p:not(.local-card-kicker) {
  color: var(--muted);
}

.local-card--machine > p:not(.local-card-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.local-detail-list {
  margin: 30px 0;
  border-top: 1px solid var(--rule);
}

.local-card--machine .local-detail-list {
  border-color: rgba(255, 255, 255, 0.18);
}

.local-detail-list div {
  display: grid;
  grid-template-columns: 7em minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
}

.local-card--machine .local-detail-list div {
  border-color: rgba(255, 255, 255, 0.18);
}

.local-detail-list dt {
  color: var(--tomato);
  font-size: 0.8rem;
  font-weight: 600;
}

.local-card--machine .local-detail-list dt {
  color: rgba(255, 255, 255, 0.62);
}

.local-detail-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.local-card--machine .local-detail-list dd {
  color: rgba(255, 255, 255, 0.84);
}

.store-list--detailed article {
  padding: 28px;
  background: var(--paper);
}

.store-list--detailed span {
  color: var(--tomato);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.store-list--detailed h3 {
  margin: 6px 0 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.store-list--detailed p {
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.86rem;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
}

.company-info div {
  grid-template-columns: 9em minmax(0, 1fr);
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--rule);
}

.legal-card {
  min-height: 290px;
  padding: 34px;
  background: var(--paper);
}

.legal-card > span {
  color: var(--tomato);
  font-family: var(--serif);
  font-size: 0.78rem;
}

.legal-card h3 {
  margin: 34px 0 12px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.legal-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  color: var(--tomato-dark); /* 明るい背景（paper-warm）でもコントラスト比4.5:1を確保する */
  font-size: 0.88rem;
  font-weight: 500;
}

.legal-card .text-link {
  display: inline-block;
  margin-top: 24px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
}

.policy-side {
  position: sticky;
  top: 104px;
}

.policy-nav {
  display: grid;
  border-top: 1px solid var(--rule);
}

.policy-nav a {
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
}

.policy-nav a:hover {
  color: var(--tomato);
}

.policy-content {
  min-width: 0;
}

.policy-intro {
  margin: 0 0 54px;
  padding: 26px 28px;
  border-left: 3px solid var(--tomato);
  color: var(--ink) !important;
  background: var(--paper-warm);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.policy-content section {
  scroll-margin-top: 100px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}

.policy-content section + section {
  margin-top: 12px;
}

.policy-content ul {
  color: var(--muted);
}

.policy-date {
  display: grid;
  gap: 3px;
  margin-top: 48px;
  color: var(--muted);
  font-size: 0.84rem;
}

.error-inner {
  padding: 110px 0;
}

.error-inner .eyebrow {
  justify-content: center;
  margin-top: 22px;
}

.error-inner .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.error-inner .lead {
  margin-inline: auto;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.error-help {
  margin-top: 36px;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 860px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: 72px;
  }

  .global-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0 16px;
    padding-bottom: 14px;
  }

  .js .header-inner {
    flex-wrap: nowrap;
  }

  .js .menu-button {
    display: block;
  }

  .js .global-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    width: auto;
    gap: 0;
    padding: 20px 24px 28px;
    color: #fff;
    background: var(--green);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--ease), transform var(--ease);
  }

  .js .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .global-nav a {
    justify-content: start;
    min-height: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .global-nav a:not(.nav-cta)::after {
    display: none;
  }

  .js .nav-cta {
    justify-content: center !important;
    margin-top: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.74) !important;
  }

  .hero {
    min-height: 790px;
  }

  .hero-inner {
    margin-top: 72px;
  }

  .split,
  .now-panel,
  .line-band-inner,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

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

  .promise-card {
    min-height: 0;
  }

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

  .purchase-status,
  .shop-secondary-grid,
  .local-purchase-grid,
  .company-layout,
  .legal-card-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .purchase-status-main {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .policy-side {
    position: static;
  }

  .policy-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
  }

  .legal-card {
    min-height: 0;
  }

  .now-image {
    min-height: 420px;
  }

  .line-band-inner {
    gap: 30px;
  }

  .footer-main {
    gap: 50px;
  }
}

@media (max-width: 640px) {
  body {
    line-height: 1.85;
  }

  .header-inner,
  .hero-inner,
  .container,
  .container--narrow,
  .page-hero-inner {
    width: min(calc(100% - 36px), var(--wrap));
  }

  .brand {
    font-size: 1.08rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(24, 27, 23, 0.79), rgba(24, 27, 23, 0.22) 74%);
  }

  .hero-media img {
    object-position: center 44%;
  }

  .hero-inner {
    justify-content: end;
    margin-top: 72px;
    padding: 130px 0 54px;
  }

  .hero h1 {
    max-width: 13em;
    font-size: clamp(1.78rem, 8vw, 2.45rem);
    line-height: 1.48;
    letter-spacing: 0.025em;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .hero-actions,
  .button-row {
    display: grid;
    margin-top: 28px;
  }

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

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section--compact {
    padding: 58px 0;
  }

  .section-heading {
    font-size: clamp(1.7rem, 7.8vw, 2.3rem);
    line-height: 1.48;
    letter-spacing: 0.025em;
  }

  .season-detail-list div,
  .local-detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .season-index a {
    min-height: 132px;
    padding: 18px;
  }

  .shop-card--primary {
    min-height: 360px;
  }

  .shop-card-kicker,
  .local-card-kicker {
    margin-bottom: 34px;
  }

  .purchase-status-main,
  .purchase-status-detail,
  .shop-card,
  .shop-wait-card,
  .local-card {
    padding: 30px 24px;
  }

  .policy-nav {
    grid-template-columns: 1fr;
  }

  .error-actions {
    display: grid;
  }

  .error-actions .button {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .split {
    gap: 42px;
  }

  .copy-stack,
  .copy-stack--center {
    gap: 0.78em;
    margin-top: 22px;
  }

  .copy-stack--center {
    text-align: left;
  }

  .split-media img {
    aspect-ratio: 4 / 4.8;
  }

  .split-media::after {
    right: -12px;
    bottom: -12px;
  }

  .now-panel {
    margin-inline: -18px;
  }

  .now-image {
    min-height: 330px;
  }

  .now-content {
    padding: 36px 24px 42px;
  }

  .now-notes div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .season-grid,
  .link-cards,
  .store-list {
    grid-template-columns: 1fr;
  }

  .season-card {
    min-height: 450px;
  }

  .link-card {
    min-height: 300px;
  }

  .award-row {
    align-items: flex-start;
  }

  .page-hero {
    min-height: 440px;
  }

  .page-hero--plain {
    min-height: 340px;
  }

  .page-hero-inner {
    padding: 120px 0 48px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* --- 検収修正 2026-07-15: FV所在地・LINE2ボタン --- */
.hero-location {
  margin: 6px 0 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}
.button-row--line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- ブラッシュアップ 2026-07-16: 季節のうつろい・地図リンク・配信導線 --- */

/* 季節ごとのアクセント色・背景温度の微調整。
   data-season は season.js が付与。JS無効・取得失敗時は :root の既定値（夏）にフォールバック。
   彩度は抑え、静けさを保つ。LINEの緑（--line）は季節で変えない。 */
body[data-season="spring"] {
  --tomato: #c8492f;
  --tomato-dark: #a2381f;
  --paper-warm: #f0efe1;
}
body[data-season="summer"] {
  /* 既定（トマトの赤と深緑）を維持 */
}
body[data-season="autumn"] {
  --tomato: #b8492a;
  --tomato-dark: #96371f;
  --paper: #fdfaf3;
  --paper-warm: #f2ebdc;
}
body[data-season="winter"] {
  --tomato: #a9483d;
  --tomato-dark: #883830;
  --paper: #fbfbfb;
  --paper-warm: #ecefef;
}

/* 四季の移ろいを示す帯（春→夏→秋→冬→春の循環）。控えめ・アニメーションなし。 */
.season-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px clamp(12px, 2.2vw, 20px);
  margin-top: clamp(40px, 5vw, 58px);
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}

.season-flow-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.02rem;
  letter-spacing: 0.14em;
}

.season-flow-item::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dot, var(--muted));
}

.season-flow-item[data-s="spring"] { --dot: #86a86b; }
.season-flow-item[data-s="summer"] { --dot: #d93a2b; }
.season-flow-item[data-s="autumn"] { --dot: #b8672c; }
.season-flow-item[data-s="winter"] { --dot: #96a7b4; }

.season-flow-item--loop {
  color: var(--muted);
}

.season-flow-arrow {
  color: var(--muted);
  font-size: 0.78rem;
}

/* 現在の季節を静かに強調（JS有効時のみ。無効時は全季節フラット） */
body[data-season="spring"] .season-flow-item:not(.season-flow-item--loop)[data-s="spring"],
body[data-season="summer"] .season-flow-item:not(.season-flow-item--loop)[data-s="summer"],
body[data-season="autumn"] .season-flow-item:not(.season-flow-item--loop)[data-s="autumn"],
body[data-season="winter"] .season-flow-item:not(.season-flow-item--loop)[data-s="winter"] {
  color: var(--tomato);
}

/* 地図リンク（直売所カード内） */
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--tomato);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}

.local-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
}

/* 取扱店カード：カード全体をクリックで地図表示 */
.store-list--detailed .store-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  text-decoration: none;
  transition: box-shadow var(--ease), background var(--ease);
}

.store-list--detailed .store-card:hover,
.store-list--detailed .store-card:focus-visible {
  z-index: 1;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.store-card-map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.store-card:hover .store-card-map,
.store-card:focus-visible .store-card-map {
  text-decoration: underline;
}

/* 販売機カード（深緑背景）の地図リンクは白系で可読性を確保 */
.local-card--machine .map-link {
  color: rgba(255, 255, 255, 0.9);
}

.local-card--machine .map-link:hover {
  color: #fff;
}

/* --- 読みもの（BLOG）ページ --- */
.blog-list {
  margin: clamp(44px, 5vw, 56px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.blog-entry {
  border-bottom: 1px solid var(--rule);
}

.blog-entry > a {
  display: grid;
  gap: 12px;
  padding: 26px 6px;
  text-decoration: none;
  transition: background var(--ease);
}

.blog-entry > a:hover {
  background: var(--paper-warm);
}

.blog-entry-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.blog-entry-date {
  color: var(--muted);
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}

.blog-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 1px 11px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.blog-badge--tabechoku {
  color: var(--tomato);
}

.blog-badge--note,
.blog-badge--substack {
  color: var(--green);
}

.blog-entry-title {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.blog-entry-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-entry-go {
  color: var(--tomato);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.blog-entry > a:hover .blog-entry-go {
  text-decoration: underline;
}

.blog-sources {
  margin-top: clamp(56px, 7vw, 84px);
}

/* --- ブラッシュアップ 2026-07-17: 販売機の地図リンク・ブログ「読みもの」 --- */

/* 販売機カード（緑背景）では地図リンクを白に */
.local-card--machine .map-link {
  color: #fff;
}

/* 「読みもの」：外部記事へのリスト（本文は複製せず、タイトル・日付・一言＋外部リンク） */
.post-list {
  margin: clamp(40px, 5vw, 56px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.post-item {
  border-bottom: 1px solid var(--rule);
}

.post-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "meta arrow"
    "title arrow"
    "note arrow";
  align-items: start;
  gap: 8px 24px;
  padding: 26px 6px;
  text-decoration: none;
  transition: background var(--ease);
}

/* 背景が section--warm のページ（トップ）でも手応えが出るよう、ホバーは紙色より明るく置く */
.post-link:hover,
.post-link:focus-visible {
  background: rgba(255, 255, 255, 0.72);
}

.post-meta {
  grid-area: meta;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.post-date {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

.post-source {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 1px 11px;
  border: 1px solid var(--tomato);
  border-radius: 999px;
  color: var(--tomato);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.post-title {
  grid-area: title;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.post-link:hover .post-title,
.post-link:focus-visible .post-title {
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.post-note {
  grid-area: note;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.post-arrow {
  grid-area: arrow;
  align-self: center;
  color: var(--tomato);
  font-size: 1.05rem;
}

/* --- 2026-07-17: 直売所・販売機カードの実物写真 --- */
.local-card-media {
  margin: 0 0 26px;
  overflow: hidden;
}

.local-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.section--ink .photo-note {
  color: rgba(255, 255, 255, 0.6);
}
