@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/lato-300.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/lato-400.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lato-700.ttf") format("truetype");
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/lato-900.ttf") format("truetype");
}

:root {
  --tea: #8cc814;
  --tea-dark: #6fa606;
  --forest: #173f32;
  --forest-2: #245846;
  --leaf: #dff2b2;
  --cream: #f7f6f0;
  --paper: #fff;
  --ink: #17201c;
  --muted: #647069;
  --line: #dce2dc;
  --sun: #f4d44d;
  --alert: #ea594f;
  --max: 1240px;
  --narrow: 780px;
  --shadow: 0 18px 50px rgba(23, 63, 50, 0.1);
  --font-ja: -apple-system, system-ui, "Helvetica Neue", "Segoe UI", Roboto, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-en: "Lato", -apple-system, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.screen-reader-text,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: #fff;
  background: var(--forest);
}

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

.site-main {
  min-height: 60vh;
}

.section-space {
  margin-top: clamp(72px, 9vw, 128px);
  margin-bottom: clamp(72px, 9vw, 128px);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--forest-2);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.4;
  font-family: var(--font-en);
}

.brand__copy small,
.topic-nav b,
.news-flash__inner time,
.editor-picks li::before,
.category-placeholder span,
.article-meta time,
.site-footer__bottom {
  font-family: var(--font-en);
}

.muted-copy {
  color: var(--muted);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--forest);
  border-radius: 2px;
  color: #fff;
  background: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--forest);
  background: var(--tea);
  transform: translateY(-2px);
}

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

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

.text-link {
  color: var(--forest);
  font-weight: 800;
}

/* Header */
.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.utility-bar {
  color: #fff;
  background: var(--forest);
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.utility-bar__inner p {
  margin: 0;
}

.utility-bar__inner a {
  color: var(--leaf);
  font-weight: 800;
  text-decoration: none;
}

.masthead {
  display: flex;
  min-height: 102px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand__mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand__copy {
  display: grid;
  gap: 1px;
}

.brand__copy strong {
  color: var(--forest);
  font-size: clamp(1.18rem, 2.2vw, 1.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.25;
}

.brand__copy small {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.custom-logo-link img {
  width: auto;
  max-height: 72px;
}

.masthead__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  min-height: 46px;
  padding: 8px 14px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 800;
}

.icon-button > span:first-child {
  margin-right: 5px;
  font-size: 1.25rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.search-drawer {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.search-drawer > div {
  padding-block: 22px;
}

.site-search-form {
  display: flex;
  max-width: 720px;
  gap: 8px;
}

.site-search-form input {
  width: 100%;
  min-height: 52px;
  padding: 11px 16px;
  border: 1px solid #bfc9c2;
  border-radius: 0;
  background: #fff;
}

.site-search-form button {
  flex: 0 0 92px;
  border: 1px solid var(--forest);
  color: #fff;
  background: var(--forest);
  cursor: pointer;
  font-weight: 800;
}

.site-nav {
  border-top: 1px solid var(--line);
}

.site-nav__inner {
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav__inner::-webkit-scrollbar {
  display: none;
}

.site-nav__list,
.site-nav ul {
  display: flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 15px 0 14px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--tea);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item a::after {
  transform: scaleX(1);
}

/* Home */
.home-intro {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.home-intro::after {
  position: absolute;
  top: -70%;
  right: -6vw;
  width: clamp(200px, 32vw, 510px);
  aspect-ratio: 1;
  border: clamp(28px, 4vw, 64px) solid rgba(140, 200, 20, 0.18);
  content: "";
  transform: rotate(45deg);
}

.home-intro__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 330px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  align-content: center;
  column-gap: 80px;
  padding-block: clamp(60px, 9vw, 110px);
}

.home-intro h1 {
  grid-column: 1;
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.7rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1.02;
}

.home-intro > div > p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 440px;
  margin: 0;
  color: #46524b;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 650;
  line-height: 2;
}

.home-intro time {
  grid-column: 2;
  align-self: end;
  margin-top: 24px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.lead-stories {
  display: grid;
  grid-template-columns: minmax(0, 1.95fr) minmax(270px, 0.8fr);
  gap: 28px;
  padding-top: 32px;
}

.lead-story {
  min-width: 0;
}

.lead-story__image {
  display: block;
  overflow: hidden;
  background: #e6ebe7;
  text-decoration: none;
}

.lead-story__image img,
img.lead-story__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.6, 0.3, 1);
}

.lead-story:hover .lead-story__image img {
  transform: scale(1.025);
}

.lead-story__body {
  max-width: 900px;
  padding: 22px 0 0;
}

.lead-story__body h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.lead-story__body h2 a,
.article-card__title a,
.article-row__title a {
  text-decoration: none;
}

.lead-story__body h2 a:hover,
.article-card__title a:hover,
.article-row__title a:hover {
  color: var(--forest-2);
  text-decoration: underline;
}

.lead-story__body > p {
  margin: 0;
  color: var(--muted);
}

.lead-stories__side {
  display: grid;
  align-content: start;
  gap: 26px;
}

.demo-side {
  border-bottom: 1px solid var(--line);
}

.demo-side img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.demo-side > div {
  padding: 18px 0 22px;
}

.demo-side h2 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.article-meta--large {
  gap: 12px;
}

.category-label {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.category-label--event {
  border-color: #9c6617;
  color: #795014;
  background: #fff3d3;
}

.category-label--gourmet {
  border-color: #b34e45;
  color: #91392f;
  background: #ffebe8;
}

.category-label--open-close {
  border-color: #356a9d;
  color: #28567e;
  background: #e8f2fb;
}

.category-label--tea,
.category-label--town {
  border-color: var(--tea-dark);
  color: #446b00;
  background: #eff8d7;
}

.category-label--pr {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.verified-badge {
  color: var(--forest-2);
  font-size: 0.72rem;
  font-weight: 800;
}

.news-flash {
  margin-top: 42px;
  border-block: 1px solid var(--line);
  background: #fff;
}

.news-flash__inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  white-space: nowrap;
}

.news-flash__inner strong {
  align-self: stretch;
  display: flex;
  align-items: center;
  padding-inline: 18px;
  color: var(--forest);
  background: var(--tea);
  font-size: 0.76rem;
  font-weight: 900;
}

.news-flash__inner time {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.news-flash__inner a {
  overflow: hidden;
  font-size: 0.87rem;
  font-weight: 750;
  text-overflow: ellipsis;
  text-decoration: none;
}

.topic-nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.topic-nav a {
  display: grid;
  min-width: 0;
  gap: 6px;
  padding: 22px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  transition: background-color 160ms ease;
}

.topic-nav a:hover {
  background: var(--leaf);
}

.topic-nav b {
  color: var(--tea-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.topic-nav span {
  font-size: 0.88rem;
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.section-heading > a {
  flex: none;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.section-heading > a span {
  margin-left: 8px;
}

.section-heading--feature {
  align-items: end;
  border-color: var(--forest);
}

.section-heading--feature > div > p:last-child {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(260px, 0.7fr);
  gap: clamp(50px, 6vw, 84px);
  align-items: start;
}

.latest-list,
.archive-list {
  border-bottom: 1px solid var(--line);
}

.article-row {
  display: grid;
  grid-template-columns: minmax(190px, 0.44fr) minmax(0, 1fr);
  gap: 24px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}

.article-row:last-child {
  border-bottom: 0;
}

.article-row__image {
  display: block;
  overflow: hidden;
  background: #e8ece8;
}

.article-row__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 350ms ease;
}

.article-row:hover .article-row__image img {
  transform: scale(1.025);
}

.article-row__title {
  margin: 9px 0 7px;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.48;
}

.article-row__body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.content-layout__side {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 24px;
}

.side-section {
  padding: 28px 0;
  border-top: 4px solid var(--forest);
  border-bottom: 1px solid var(--line);
}

.side-section h2,
.line-panel h2,
.side-widget h2 {
  margin: 0;
  font-size: 1.38rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.4;
}

.editor-picks ol {
  padding: 0;
  margin: 18px 0 0;
  counter-reset: pick;
  list-style: none;
}

.editor-picks li {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  counter-increment: pick;
}

.editor-picks li::before {
  color: var(--tea-dark);
  content: counter(pick, decimal-leading-zero);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 900;
}

.editor-picks li a {
  font-size: 0.89rem;
  font-weight: 800;
  line-height: 1.55;
  text-decoration: none;
}

.editor-picks li time {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.68rem;
}

.line-panel {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 30px;
  color: #fff;
  background: var(--forest);
  text-align: center;
}

.line-panel .eyebrow {
  color: var(--leaf);
}

.line-panel p:last-child {
  margin: 12px 0 0;
  color: #d6e4dc;
  font-size: 0.84rem;
}

.line-panel img {
  width: 150px;
  padding: 8px;
  background: #fff;
}

.line-banner-section {
  padding-block: clamp(76px, 9vw, 132px);
  border-top: 1px solid var(--line);
  background: #f8faf5;
}

.line-banner-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  max-width: 1120px;
  padding-bottom: 24px;
  margin: 0 auto 30px;
  border-bottom: 1px solid var(--ink);
}

.line-banner-section__heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.45;
}

.line-banner-section__heading > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.85;
}

.line-banner {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 50, 0.18);
  background: #e8f1dc;
  box-shadow: 0 20px 45px rgba(23, 63, 50, 0.12);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.line-banner:hover {
  box-shadow: 0 26px 56px rgba(23, 63, 50, 0.18);
  transform: translateY(-4px);
}

.line-banner img {
  width: 100%;
  height: auto;
}

.line-banner__action {
  display: none;
}

.category-feature {
  padding-block: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.category-feature--tint {
  background: var(--cream);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 30px;
}

.article-card {
  min-width: 0;
}

.article-card__image {
  display: block;
  overflow: hidden;
  background: #e8ece8;
}

.article-card__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 350ms ease;
}

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

.article-card__body {
  padding-top: 16px;
}

.article-card__title {
  margin: 9px 0 6px;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.52;
}

.article-card__excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.7;
}

.article-card--compact {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.article-card--compact .article-card__title {
  font-size: 1.05rem;
}

.category-placeholder {
  display: grid;
  min-height: 190px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  padding: 30px;
  border: 1px dashed #aebbb2;
  color: var(--muted);
}

.category-placeholder span {
  color: var(--leaf);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.tip-cta {
  position: relative;
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  padding: clamp(40px, 6vw, 78px);
  color: #fff;
  background: var(--forest);
}

.tip-cta::after {
  position: absolute;
  right: -50px;
  bottom: -130px;
  width: 310px;
  aspect-ratio: 1;
  border: 52px solid rgba(140, 200, 20, 0.22);
  content: "";
  transform: rotate(45deg);
}

.tip-cta > * {
  position: relative;
  z-index: 1;
}

.tip-cta .eyebrow {
  color: var(--leaf);
}

.tip-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.tip-cta p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: #dce7e0;
}

.empty-state {
  padding: clamp(42px, 7vw, 78px);
  border: 1px solid var(--line);
  background: var(--cream);
}

.empty-state h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.4;
}

.empty-state > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

/* Archives */
.archive-hero {
  padding-block: clamp(60px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.archive-hero h1 {
  margin: 0;
  color: var(--forest);
  font-size: clamp(2.6rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 1.1;
}

.archive-hero p,
.archive-hero__description {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
}

.archive-hero .site-search-form {
  margin-top: 28px;
}

.archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 72px;
  align-items: start;
}

.navigation.pagination {
  margin-top: 42px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: inline-grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--forest);
  color: #fff;
  background: var(--forest);
}

/* Article */
.article-shell {
  padding-top: 26px;
  padding-bottom: 100px;
}

.breadcrumbs {
  display: flex;
  gap: 7px;
  overflow: hidden;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

.breadcrumbs > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 800px) 300px;
  justify-content: space-between;
  gap: 72px;
  align-items: start;
}

.story__header h1 {
  margin: 16px 0 20px;
  font-size: clamp(2rem, 5.2vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.25;
}

.story__lead {
  margin: 0 0 20px;
  color: #425049;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 650;
  line-height: 1.9;
}

.story__byline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.73rem;
}

.story__featured {
  margin: 42px 0;
}

.story__featured img {
  width: 100%;
  height: auto;
}

.story__featured figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.74rem;
}

.fact-panel {
  padding: 24px 28px;
  margin: 36px 0;
  border-left: 5px solid var(--tea);
  background: var(--cream);
}

.fact-panel h2 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.fact-panel dl,
.fact-panel dd {
  margin: 0;
}

.fact-panel dl > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding-block: 9px;
  border-top: 1px solid var(--line);
}

.fact-panel dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.fact-panel dd {
  font-size: 0.9rem;
  font-weight: 650;
}

.entry-content {
  font-size: 1.02rem;
  line-height: 2;
}

.entry-content > * {
  max-width: var(--narrow);
  margin-right: auto;
  margin-left: auto;
}

.entry-content > .alignwide {
  max-width: 1020px;
}

.entry-content > .alignfull {
  max-width: none;
}

.entry-content h2 {
  margin-top: 2.8em;
  margin-bottom: 0.9em;
  padding: 0 0 14px;
  border-bottom: 3px solid var(--forest);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.5;
}

.entry-content h3 {
  margin-top: 2.3em;
  margin-bottom: 0.75em;
  padding-left: 14px;
  border-left: 5px solid var(--tea);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  line-height: 1.55;
}

.entry-content p {
  margin-top: 0;
  margin-bottom: 1.65em;
}

.entry-content a {
  color: #1e6b4a;
  font-weight: 650;
}

.entry-content blockquote {
  padding: 28px 32px;
  margin-block: 2.5em;
  border-left: 5px solid var(--tea);
  background: var(--cream);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 1.08rem;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content figure {
  margin-top: 2.2em;
  margin-bottom: 2.2em;
}

.entry-content figcaption {
  color: var(--muted);
  font-size: 0.75rem;
  text-align: left;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.entry-content th,
.entry-content td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.entry-content th {
  background: var(--cream);
}

.source-box {
  margin-top: 56px;
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.source-box h2 {
  margin: 0;
  font-size: 1.2rem;
}

.source-box p:last-child {
  margin: 10px 0 0;
}

.source-box a {
  color: var(--forest);
  font-weight: 800;
}

.story__footer {
  margin-top: 56px;
}

.share-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-block: 20px;
  border-block: 1px solid var(--line);
}

.share-links > span {
  margin-right: 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.share-links a,
.share-links button {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.share-links a:hover,
.share-links button:hover {
  border-color: var(--forest);
}

.author-box {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  margin-top: 30px;
  padding: 28px;
  background: var(--cream);
}

.author-box__initial {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--forest);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 1.65rem;
  font-weight: 800;
}

.author-box strong {
  font-size: 1.05rem;
}

.author-box p:last-child {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 24px;
}

.side-widget {
  padding: 26px;
  border-top: 4px solid var(--forest);
  background: var(--cream);
}

.side-widget > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.82rem;
}

.side-widget--line {
  color: #fff;
  background: var(--forest);
}

.side-widget--line .eyebrow {
  color: var(--leaf);
}

.side-widget--line > p:not(.eyebrow) {
  color: #d7e2dc;
}

.side-widget--line img {
  width: 180px;
  padding: 8px;
  margin: 18px auto 0;
  background: #fff;
}

.related-stories {
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.page-shell {
  max-width: 920px;
  padding-block: clamp(70px, 9vw, 120px);
}

.page-entry > header {
  margin-bottom: 44px;
}

.page-entry h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.16;
}

.page-entry__image {
  margin: 0 0 48px;
}

.not-found {
  max-width: 800px;
  padding-block: clamp(80px, 12vw, 170px);
  text-align: center;
}

.not-found__number {
  margin: 0;
  color: var(--leaf);
  font-family: Georgia, serif;
  font-size: clamp(7rem, 25vw, 14rem);
  line-height: 0.8;
}

.not-found h1 {
  margin: 16px 0;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.not-found .site-search-form {
  margin: 30px auto 20px;
}

/* Footer */
.site-footer {
  padding-top: 64px;
  color: #fff;
  background: #102d24;
}

.site-footer__lead {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 60px;
  padding-bottom: 56px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
}

.footer-brand strong {
  font-size: 1.3rem;
}

.footer-brand p {
  margin: 5px 0 0;
  color: #b9cbc2;
  font-size: 0.82rem;
}

.footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  color: #dce6e1;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--tea);
}

.footer-links .menu + .footer-links__default {
  display: none;
}

.site-footer__bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #91a79c;
  font-size: 0.67rem;
}

.site-footer__bottom p {
  margin: 0;
}

/* Editorial home refresh */
.home-intro__inner {
  min-height: clamp(430px, 48vw, 590px);
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  padding-block: clamp(76px, 9vw, 126px);
}

.home-intro h1 {
  max-width: 830px;
  font-size: clamp(3.25rem, 7vw, 6.75rem);
  letter-spacing: -0.085em;
  line-height: 0.98;
}

.home-intro h1 span {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.home-intro h1 span::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.02em;
  left: -0.03em;
  height: 0.16em;
  content: "";
  background: var(--tea);
}

.home-intro > div > p:not(.eyebrow) {
  position: relative;
  padding-top: 30px;
  font-size: clamp(1rem, 1.45vw, 1.13rem);
}

.home-intro > div > p:not(.eyebrow)::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 2px;
  content: "";
  background: var(--forest);
}

.home-intro time {
  font-family: var(--font-en);
  font-weight: 700;
}

.top-stories {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 58vw, 760px);
  padding-block: clamp(44px, 5vw, 72px) clamp(70px, 7vw, 104px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.feature-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ink);
}

.feature-heading > p {
  max-width: 570px;
  margin: 0 0 5px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.8;
}

.top-stories__stage {
  position: relative;
  min-height: clamp(530px, 48vw, 640px);
  padding-top: clamp(48px, 5vw, 66px);
}

.top-stories__signal {
  position: absolute;
  z-index: 7;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.top-stories__signal span {
  color: var(--forest);
  font-family: var(--font-en);
  font-weight: 900;
  letter-spacing: 0.17em;
}

.top-stories__backdrop {
  position: absolute;
  z-index: 3;
  top: clamp(14px, 2.4vw, 34px);
  right: -0.08em;
  margin: 0;
  color: rgba(23, 63, 50, 0.09);
  font-family: var(--font-en);
  font-size: clamp(7rem, 14vw, 12.5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.82;
  mix-blend-mode: multiply;
  pointer-events: none;
  white-space: nowrap;
}

.top-stories__slides {
  display: grid;
}

.top-story {
  display: grid;
  grid-area: 1 / 1;
  grid-template-columns: minmax(245px, 0.82fr) minmax(0, 1.82fr) minmax(210px, 0.7fr);
  gap: clamp(24px, 3.2vw, 48px);
  align-items: start;
  min-height: clamp(500px, 43vw, 570px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(32px);
  transition: opacity 520ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), visibility 0s linear 700ms;
  visibility: hidden;
}

.top-story.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
  visibility: visible;
}

.top-story__image {
  display: block;
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #e9eee9;
  text-decoration: none;
}

.top-story__image img {
  width: 100%;
  height: clamp(430px, 40vw, 520px);
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.top-story.is-active .top-story__image img {
  transform: scale(1.018);
}

.top-story__copy {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 5;
  align-self: center;
  padding: 88px 0 70px;
}

.top-story__copy h3 {
  margin: 22px 0 18px;
  font-size: clamp(1.55rem, 2.25vw, 2.2rem);
  font-family: var(--font-ja);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.15;
}

.top-story__copy h3 a {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.top-story__copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.85;
}

.top-story__more {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 5px;
  margin-top: 26px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.top-stories__controls {
  position: absolute;
  z-index: 8;
  right: 0;
  top: clamp(235px, 22vw, 300px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 12px 20px;
  background: rgba(255, 255, 255, 0.94);
}

.top-stories__controls p {
  display: flex;
  gap: 9px;
  align-items: baseline;
  min-width: 95px;
  margin: 0 14px 0 0;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
}

.top-stories__controls p strong {
  font-size: 1.25rem;
  font-weight: 900;
}

.top-stories__controls button {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-family: var(--font-en);
  font-size: 1rem;
  transition: color 160ms ease, background-color 160ms ease;
}

.top-stories__controls button:hover {
  color: #fff;
  background: var(--forest);
}

.top-stories__next-preview {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  width: clamp(188px, 18vw, 232px);
  margin: 0;
  background: #e9eee9;
}

.top-stories__next-preview figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.top-stories__next-preview figcaption span {
  color: var(--forest);
  font-family: var(--font-en);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.top-stories__next-preview img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.top-stories__next-preview.is-changing img {
  opacity: 0.22;
}

.top-stories__about-link {
  position: absolute;
  z-index: 9;
  right: clamp(112px, 11vw, 145px);
  bottom: -48px;
  display: grid;
  width: 140px;
  height: 140px;
  place-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.top-stories__about-link:hover {
  color: #fff;
  background: var(--forest);
  transform: translateY(-4px);
}

.top-stories__about-link strong,
.top-stories__about-link span,
.top-stories__about-link b {
  display: block;
}

.top-stories__about-link strong {
  font-family: var(--font-en);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.top-stories__about-link span {
  margin-top: 2px;
  font-size: 0.68rem;
  font-weight: 750;
}

.top-stories__about-link b {
  margin-top: 8px;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 400;
}

.feature-heading h2 {
  display: flex;
  min-width: 425px;
  align-items: baseline;
  gap: 30px;
  margin: 0;
}

.feature-heading__en {
  font-family: var(--font-en);
  font-size: clamp(3.4rem, 7vw, 6.1rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.feature-heading__ja {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.town-profile,
.access-guide {
  padding-block: clamp(85px, 10vw, 142px);
  border-top: 1px solid var(--line);
}

.town-profile__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 0;
  margin-top: 54px;
}

.town-profile__main-photo {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.town-profile__main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.town-profile__statement {
  position: absolute;
  top: 44px;
  right: 0;
  width: min(42%, 500px);
  padding: 40px 44px;
  color: #fff;
  background: var(--forest);
}

.town-profile__statement p {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.28;
}

.town-profile__statement span {
  display: block;
  margin-top: 18px;
  color: #cfe0d7;
  font-size: 0.8rem;
}

.town-profile__links {
  align-self: end;
  padding: 0 0 0 44px;
}

.town-profile__links a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 21px 0;
  border-top: 1px solid var(--ink);
  text-decoration: none;
}

.town-profile__links b,
.town-profile__links strong {
  font-family: var(--font-en);
}

.town-profile__links b {
  color: var(--tea-dark);
  font-size: 0.72rem;
}

.town-profile__links span {
  font-size: 0.84rem;
  font-weight: 700;
}

.town-profile__links strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.town-profile__links em {
  font-style: normal;
}

.access-guide {
  background: #fbfaf6;
}

.access-illustration {
  margin-top: 48px;
}

.access-illustration:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.access-illustration svg {
  display: block;
  width: 100%;
  height: auto;
}

.access-illustration__hint {
  display: none;
}

.access-illustration__land {
  fill: #e9e0cc;
}

.access-illustration__rail,
.access-illustration__bus,
.access-illustration__road {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.access-illustration__rail {
  stroke: #143f31;
  stroke-width: 9;
}

.access-illustration__rail--keihan {
  stroke: #80b919;
}

.access-illustration__rail--kintetsu {
  stroke: #bd6d3e;
}

.access-illustration__bus {
  stroke: #6fa606;
  stroke-dasharray: 16 10;
  stroke-width: 10;
}

.access-illustration__road {
  stroke: #718078;
  stroke-dasharray: 5 13;
  stroke-width: 8;
}

.access-node rect {
  fill: rgba(255, 255, 255, 0.95);
  stroke: var(--ink);
  stroke-width: 2.5;
}

.access-node text {
  fill: var(--ink);
  font-family: var(--font-ja);
  font-size: 20px;
  font-weight: 800;
}

.access-node .access-node__sub {
  fill: #657069;
  font-size: 13px;
  font-weight: 700;
}

.access-hub circle {
  fill: var(--forest);
}

.access-hub path {
  fill: var(--tea);
}

.access-hub text {
  fill: var(--forest);
  font-family: var(--font-ja);
  font-size: 25px;
  font-weight: 900;
}

.access-hub .access-hub__sub {
  fill: #657069;
  font-size: 13px;
  font-weight: 700;
}

.access-stop circle {
  fill: #fff;
  stroke: var(--forest);
  stroke-width: 4;
}

.access-guide__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.access-guide__foot p {
  max-width: 850px;
  margin: 0;
  color: #56615b;
  font-size: 0.82rem;
  line-height: 1.8;
}

.access-guide__foot p strong {
  display: block;
  margin-bottom: 3px;
  color: var(--forest);
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.access-guide__foot > a {
  flex: 0 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1040px) {
  .home-intro__inner {
    grid-template-columns: 1fr 0.7fr;
    column-gap: 42px;
  }

  .article-layout,
  .archive-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 42px;
  }

  .content-layout {
    gap: 50px;
  }
}

@media (max-width: 860px) {
  .site-shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .masthead {
    min-height: 82px;
  }

  .masthead__actions .button--tip,
  .icon-button__label {
    display: none;
  }

  .icon-button {
    width: 46px;
    padding: 0;
    border: 1px solid var(--line);
  }

  .icon-button > span:first-child {
    margin: 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    display: none;
    position: absolute;
    right: 0;
    left: 0;
    height: calc(100vh - 116px);
    overflow-y: auto;
    background: #fff;
  }

  .menu-open .site-nav {
    display: block;
  }

  .site-nav__inner {
    padding-block: 12px 50px;
    overflow: visible;
  }

  .site-nav__list,
  .site-nav ul {
    display: block;
    min-width: 0;
  }

  .site-nav a {
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav a::after {
    display: none;
  }

  .home-intro__inner {
    display: block;
    min-height: 0;
  }

  .home-intro h1 {
    margin-bottom: 28px;
  }

  .home-intro > div > p:not(.eyebrow) {
    max-width: 640px;
  }

  .home-intro time {
    display: block;
  }

  .lead-stories {
    grid-template-columns: 1fr;
  }

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

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

  .content-layout,
  .article-layout,
  .archive-layout {
    grid-template-columns: 1fr;
  }

  .content-layout__side,
  .article-sidebar {
    position: static;
  }

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

  .article-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }

  .story {
    max-width: 800px;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .utility-bar__inner {
    min-height: 30px;
  }

  .utility-bar__inner p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .utility-bar__inner a {
    display: none;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }

  .brand__copy small {
    display: none;
  }

  .masthead__actions {
    gap: 7px;
  }

  .home-intro h1 {
    font-size: clamp(2.15rem, 9.4vw, 3.8rem);
    overflow-wrap: anywhere;
  }

  .lead-story__body h2 {
    font-size: 1.55rem;
  }

  .lead-stories__side,
  .content-layout__side,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .news-flash__inner {
    gap: 10px;
  }

  .news-flash__inner strong {
    padding-inline: 11px;
  }

  .news-flash__inner time {
    display: none;
  }

  .topic-nav {
    margin-top: 38px;
  }

  .topic-nav a {
    padding: 16px 10px;
  }

  .topic-nav span {
    font-size: 0.76rem;
  }

  .article-row {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 15px;
    padding-block: 20px;
  }

  .article-row__title {
    margin-top: 7px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .article-row__body > p {
    display: none;
  }

  .article-row .category-label {
    display: none;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading--feature {
    display: block;
  }

  .section-heading--feature > a {
    display: inline-block;
    margin-top: 18px;
  }

  .tip-cta {
    display: block;
    padding: 42px 26px;
  }

  .tip-cta .button {
    margin-top: 28px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .story__header h1 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .story__featured {
    width: calc(100% + 32px);
    margin-right: -16px;
    margin-left: -16px;
  }

  .fact-panel,
  .author-box {
    padding: 22px;
  }

  .author-box {
    grid-template-columns: 54px 1fr;
  }

  .author-box__initial {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
  }

  .site-footer__lead {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    align-items: start;
  }

  .footer-links ul {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    display: block;
    padding-block: 18px;
  }

  .site-footer__bottom p + p {
    margin-top: 8px;
  }
}

@media (max-width: 420px) {
  .site-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand__copy strong {
    font-size: 1rem;
  }

  .masthead__actions .search-toggle {
    display: none;
  }

  .article-row {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .article-meta {
    font-size: 0.65rem;
  }

  .category-placeholder {
    grid-template-columns: 1fr;
  }

  .category-placeholder span {
    font-size: 3.5rem;
  }
}

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

@media (max-width: 1040px) {
  .top-story {
    grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.6fr) minmax(180px, 0.62fr);
    gap: 28px;
  }

  .top-story__copy {
    padding-block: 62px 80px;
  }

  .top-stories__controls {
    top: 228px;
  }

  .top-stories__about-link {
    right: 98px;
    bottom: -34px;
    width: 122px;
    height: 122px;
  }

  .top-stories__next-preview {
    width: 192px;
  }

  .feature-heading h2 {
    min-width: 360px;
    gap: 20px;
  }

  .town-profile__statement {
    width: 46%;
  }
}

@media (max-width: 860px) {
  .line-banner-section__heading {
    display: block;
    margin-bottom: 22px;
  }

  .line-banner-section__heading > p {
    max-width: 620px;
    margin-top: 16px;
  }

  .access-illustration {
    padding-bottom: 12px;
    overflow-x: auto;
    scrollbar-color: var(--tea-dark) #e2e6e1;
    touch-action: pan-x;
  }

  .access-illustration svg {
    min-width: 820px;
  }

  .access-illustration__hint {
    display: block;
    width: max-content;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
  }

  .feature-heading {
    display: block;
  }

  .feature-heading > p {
    margin-top: 18px;
  }

  .top-stories {
    min-height: 0;
  }

  .top-stories__stage {
    min-height: 0;
    padding-top: 60px;
  }

  .top-stories__backdrop {
    top: 20px;
    right: 0;
    font-size: 12vw;
  }

  .top-story {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }

  .top-story__image {
    grid-column: 1;
    grid-row: 1;
  }

  .top-story__copy {
    grid-column: 1;
    grid-row: 2;
    max-width: 760px;
    padding: 30px 0 12px;
  }

  .top-stories__controls {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    justify-content: flex-end;
    margin-top: 8px;
    padding: 10px 0 0;
    background: transparent;
  }

  .top-stories__next-preview,
  .top-stories__about-link {
    display: none;
  }

  .feature-heading h2 {
    min-width: 0;
  }

  .feature-heading__en {
    font-size: clamp(3.2rem, 11vw, 5.4rem);
  }

  .town-profile__visual {
    grid-template-columns: 1fr;
  }

  .town-profile__main-photo {
    min-height: 480px;
  }

  .town-profile__statement {
    top: 38px;
    width: min(64%, 480px);
  }

  .town-profile__links {
    padding: 34px 0 0;
  }
}

@media (max-width: 680px) {
  .line-banner-section {
    padding-block: 58px 68px;
  }

  .line-banner-section__heading {
    padding-bottom: 18px;
  }

  .line-banner-section__heading h2 {
    font-size: clamp(1.6rem, 7.2vw, 2.1rem);
    letter-spacing: 0.055em;
  }

  .line-banner-section__heading > p {
    font-size: 0.84rem;
  }

  .line-banner {
    overflow: visible;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .line-banner:hover {
    box-shadow: none;
    transform: none;
  }

  .line-banner img {
    border: 1px solid rgba(23, 63, 50, 0.18);
    box-shadow: 0 14px 30px rgba(23, 63, 50, 0.12);
  }

  .line-banner__action {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 14px;
    color: #fff;
    background: var(--forest);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.06em;
  }

  .home-intro__inner {
    padding-block: 62px 70px;
  }

  .home-intro h1 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
    line-height: 1.04;
  }

  .top-stories {
    padding-block: 32px 58px;
  }

  .top-stories__stage {
    padding-top: 52px;
  }

  .top-stories__backdrop {
    top: 18px;
    right: -0.03em;
    font-size: 12vw;
  }

  .top-story__image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .top-story__copy h3 {
    font-size: 1.55rem;
  }

  .top-story__copy > p {
    display: none;
  }

  .top-stories__controls {
    justify-content: space-between;
  }

  .top-stories__controls p {
    margin-right: auto;
  }

  .top-stories__controls button {
    width: 44px;
    height: 44px;
  }

  .feature-heading h2 {
    display: block;
  }

  .feature-heading__en,
  .feature-heading__ja {
    display: block;
  }

  .feature-heading__ja {
    margin-top: 6px;
    font-size: 1rem;
  }

  .town-profile,
  .access-guide {
    padding-block: 70px;
  }

  .town-profile__main-photo {
    min-height: 390px;
  }

  .town-profile__statement {
    position: relative;
    top: auto;
    width: calc(100% - 28px);
    margin: -64px 0 0 auto;
    padding: 28px;
  }

  .town-profile__statement p {
    font-size: 2.15rem;
  }

  .access-illustration {
    padding-bottom: 12px;
    overflow-x: auto;
    scrollbar-color: var(--tea-dark) #e2e6e1;
  }

  .access-illustration svg {
    min-width: 820px;
  }

  .access-guide__foot {
    display: block;
  }

  .access-guide__foot > a {
    display: inline-block;
    margin-top: 20px;
  }
}

@media (max-width: 420px) {
  .top-stories__controls p {
    min-width: 76px;
  }

  .top-stories__controls button {
    width: 40px;
    height: 40px;
  }
}
