:root {
  --forest: #2d4a3e;
  --forest-dark: #1a2e26;
  --forest-light: #3d6b54;
  --rice-gold: #c9a84c;
  --rice-light: #f5edd6;
  --earth: #6b5344;
  --tomato: #c45c4a;
  --cream: #faf7f0;
  --cream-dark: #f0e8dc;
  --sky: #6b9eb8;
  --text: #1a1614;
  --text-muted: #443c36;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26, 46, 38, 0.1);
  --shadow-lg: 0 16px 48px rgba(26, 46, 38, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

.page-top-anchor {
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  font-size: 16px;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.container--narrow {
  width: min(720px, 92%);
}

.container--soliloquy {
  width: min(1200px, 96%);
}

.container--spots {
  width: min(1200px, 96%);
}

.container--news {
  width: min(1320px, 92%);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 769px) {
  .container--news {
    width: min(1320px, 90%);
    margin-left: clamp(64px, 12vw, 200px);
    margin-right: clamp(16px, 3vw, 48px);
  }
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--white);
}

.section--accent {
  background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest) 50%, var(--forest-light) 100%);
  color: var(--white);
}

.section__label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 12px;
}

.section__label--light {
  color: var(--rice-light);
}

.section__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

.section__title--light {
  color: var(--white);
}

.sp-only {
  display: none;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 74, 62, 0.08);
}

.header__inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}

.logo span {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

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

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.nav__cta {
  background: var(--forest);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
}

.nav__cta:hover {
  background: var(--forest-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
}

.nav__lang {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border: 1px solid rgba(45, 74, 62, 0.2);
  border-radius: 999px;
}

.nav__lang:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.header__tools {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.header__counter {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.header__counter .visit-counter {
  font-variant-numeric: tabular-nums;
  color: var(--forest-dark);
}

.header__actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.header__lang-btn {
  display: none;
}

.lang-banner-wrap {
  position: absolute;
  top: calc(var(--header-height) + 16px);
  right: clamp(8px, 2vw, 20px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: fit-content;
  max-width: min(280px, calc(100% - 24px));
}

.lang-banner__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

.lang-banner__close:hover {
  background: var(--rice-light);
}

.lang-globe-btn {
  display: flex;
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 100;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.45;
  animation: globePulse 30s ease-in-out infinite;
}

@keyframes globePulse {
  0%, 92%, 100% {
    opacity: 0.45;
    transform: scale(1);
  }
  95% {
    opacity: 1;
    transform: scale(1.15);
  }
}



.lang-banner-wrap .lang-banner {
  position: static;
  top: auto;
  right: auto;
  z-index: auto;
  width: 100%;
  max-width: none;
}

.lang-banner {
  position: absolute;
  top: calc(var(--header-height) + 16px);
  right: clamp(8px, 2vw, 20px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: min(280px, calc(100% - 24px));
  margin: 0;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.lang-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.lang-nav-btn--down {
  background: rgba(255, 255, 255, 0.16);
  border: 2px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  color: var(--white);
}

.lang-nav-btn--down:hover {
  background: rgba(255, 255, 255, 0.28);
  color: var(--rice-light);
}

.lang-nav-btn--up {
  margin-top: 16px;
  background: var(--forest);
  border: 2px solid var(--forest);
  color: var(--white);
}

.lang-nav-btn--up:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  color: var(--white);
}

.lang-banner__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rice-light);
}

.lang-banner__link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lang-banner__link:hover {
  color: var(--rice-light);
}

.lang-banner__counter {
  display: none;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-align: center;
}

.lang-banner__counter .visit-counter {
  font-variant-numeric: tabular-nums;
  color: var(--forest-dark);
}

.lang-guide {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--rice-light);
  border: 2px solid var(--forest);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.6;
  text-align: center;
}

.lang-guide a {
  display: inline-block;
  margin-left: 4px;
  padding: 4px 12px;
  background: var(--forest);
  color: var(--white);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.lang-guide a:hover {
  background: var(--forest-dark);
}

.lang-guide-footer {
  display: none;
}

html[lang="en"] .lang-guide-footer,
html[lang="ja"] .lang-guide-footer {
  display: block;
  padding: 32px 0 48px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--rice-light) 100%);
  border-top: 3px solid var(--forest);
}

html[lang="en"] .lang-guide-footer .container,
html[lang="ja"] .lang-guide-footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  width: min(1120px, 92%);
}

html[lang="en"] .lang-nav-btn--up,
html[lang="ja"] .lang-nav-btn--up {
  display: inline-flex;
  width: 100%;
  max-width: none;
}

.lang-guide-footer__box {
  padding: 24px 20px 28px;
  background: var(--white);
  border: 3px solid var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(26, 46, 38, 0.14);
  text-align: center;
}

.lang-guide-footer__label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}

.lang-guide-footer__text {
  margin: 0 0 20px;
  font-size: clamp(1.05rem, 4.2vw, 1.2rem);
  font-weight: 700;
  color: var(--forest-dark);
  line-height: 1.55;
}

.lang-guide-footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  width: 100%;
  max-width: none;
  min-height: 52px;
  padding: 16px 24px;
  background: var(--forest);
  color: var(--white);
  border: 2px solid var(--forest-dark);
  border-radius: 999px;
  font-size: clamp(1.1rem, 4.8vw, 1.25rem);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(26, 46, 38, 0.28);
}

.lang-guide-footer__link:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  color: var(--white);
}

html[lang="en"] .lang-guide-footer .lang-nav-btn--up,
html[lang="ja"] .lang-guide-footer .lang-nav-btn--up {
  min-height: 52px;
  font-size: clamp(1.05rem, 4.6vw, 1.2rem);
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(26, 46, 38, 0.32);
}

@media (min-width: 769px) {
  html[lang="en"] .lang-guide-footer .lang-nav-btn--up,
  html[lang="ja"] .lang-guide-footer .lang-nav-btn--up {
    margin-top: 0;
    max-width: none;
    align-self: stretch;
  }

  html[lang="en"] .lang-guide-footer,
  html[lang="ja"] .lang-guide-footer {
    padding: 40px 0 48px;
  }

  html[lang="en"] .lang-guide-footer .container,
  html[lang="ja"] .lang-guide-footer .container {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* News */
.news.section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.news.section .section__label,
.news.section .section__title {
  text-align: left;
}

.news__header {
  margin-bottom: 24px;
}

.news__title-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 16px 24px;
}

.news__title-row .section__title {
  flex: 0 0 auto;
  margin-bottom: 0;
  white-space: nowrap;
}

.news__header .news__alert {
  margin: 0;
  flex: 1 1 auto;
  max-width: none;
  padding: 0;
  background: none;
  border: none;
  font-size: clamp(0.82rem, 2.2vw, 1rem);
  font-weight: 800;
  color: #c62828;
  line-height: 1.5;
  text-align: left;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .news__title-row {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .news__header .news__alert {
    font-size: clamp(0.74rem, 3vw, 0.88rem);
    line-height: 1.45;
  }
}

.news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--forest-light);
  overflow: hidden;
}

.news__item {
  display: grid;
  grid-template-columns: 7em minmax(0, 1fr);
  gap: 10px 14px;
  padding: 12px 16px 12px 24px;
  border-bottom: 1px solid var(--cream-dark);
  align-items: baseline;
}

html[lang="ja"] .news__item {
  grid-template-columns: 5.8em minmax(0, 1fr);
}

.news__item:last-child {
  border-bottom: none;
}

.news__date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

html[lang="en"] .news__date {
  font-size: 0.78rem;
}

.news__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.news__headline {
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.news__text a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.news__text a:hover {
  color: var(--forest-dark);
}

@media (min-width: 640px) {
  .news__item {
    display: flex;
    gap: 10px 14px;
    padding: 11px 16px 11px 24px;
  }

  .news__date {
    flex: 0 0 auto;
    min-width: 5.8em;
  }

  html[lang="en"] .news__date {
    min-width: 7em;
  }

  .news__text {
    flex: 1 1 auto;
    min-width: 0;
  }

  html[lang="ja"] .news__text {
    white-space: nowrap;
    font-size: clamp(0.76rem, 0.88vw, 0.88rem);
    letter-spacing: -0.01em;
  }

  html[lang="en"] .news__text {
    white-space: nowrap;
    font-size: clamp(0.72rem, 0.82vw, 0.84rem);
    letter-spacing: -0.01em;
  }
}

@media (max-width: 520px) {
  .news__item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* About */
.about .container--narrow {
  width: min(720px, 92%);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 769px) {
  .about .container--narrow {
    width: min(720px, 90%);
    margin-left: clamp(32px, 8vw, 120px);
    margin-right: auto;
  }
}

.about__content {
  display: grid;
  gap: 24px;
}

.about__text {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 2;
}

.about__text--emphasis {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--forest);
  margin-left: 0;
  padding: 20px 24px;
  background: var(--white);
  border-left: 4px solid var(--rice-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about__block {
  margin-top: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(45, 74, 62, 0.12);
}

.about__subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
}

html[lang="en"] body {
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

html[lang="en"] #nakanojo + .about.section,
html[lang="ja"] #nakanojo + .about.section {
  padding-top: 72px;
  padding-bottom: 48px;
}

html[lang="en"] .about.section + .about__emphasis-lead,
html[lang="ja"] .about.section + .about__emphasis-lead {
  padding-top: 0;
  padding-bottom: 24px;
}

html[lang="en"] .about__emphasis-lead,
html[lang="ja"] .about__emphasis-lead {
  padding: 0 0 24px;
}

html[lang="en"] .about__emphasis-lead + .products.section,
html[lang="ja"] .about__emphasis-lead + .products.section {
  padding-top: 72px;
}

html[lang="en"] .about__emphasis-lead .container--narrow,
html[lang="ja"] .about__emphasis-lead .container--narrow {
  width: min(720px, 92%);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 769px) {
  html[lang="en"] .about__emphasis-lead .container--narrow,
  html[lang="ja"] .about__emphasis-lead .container--narrow {
    width: min(720px, 90%);
    margin-left: clamp(32px, 8vw, 120px);
    margin-right: auto;
  }
}

html[lang="en"] .section__title,
html[lang="en"] .logo,
html[lang="en"] .about__text--emphasis,
html[lang="en"] .about__subtitle {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--forest);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--forest-dark);
  margin-top: 20px;
}

.btn--light:hover {
  background: var(--rice-light);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn--outline:hover {
  background: var(--cream-dark);
}

.btn--full {
  width: 100%;
}

/* Hero */
main {
  position: relative;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 48px) 24px 48px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('images/nakanojo-farm.jpg') center / cover no-repeat;
  background: image-set(
    url('images/nakanojo-farm.webp') type('image/webp'),
    url('images/nakanojo-farm.jpg') type('image/jpeg')
  ) center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 46, 38, 0.65) 0%,
    rgba(45, 74, 62, 0.5) 50%,
    rgba(26, 46, 38, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1120px, 92%);
  text-align: center;
  color: var(--white);
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero__title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.hero__lead {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.9;
  margin-bottom: 24px;
  opacity: 0.95;
}

.hero__offer {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--forest-dark);
  background: linear-gradient(180deg, #fffef8 0%, var(--rice-light) 100%);
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid var(--rice-gold);
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero__order-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.hero__order-qr img {
  display: block;
  width: 100px;
  height: 100px;
  padding: 8px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--rice-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero__order-qr-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--rice-gold);
}

.hero__order-qr-note {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.5;
}

.hero__catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 4.5vw, 2.25rem);
  font-weight: 700;
  color: var(--rice-gold);
  margin-bottom: 24px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero__image-note,
.image-note {
  font-size: 0.75rem;
  opacity: 0.92;
  margin-top: 20px;
}

.nakanojo__visual .image-note {
  margin-top: 8px;
  text-align: center;
  color: var(--text-muted);
}

.spots__hanayukari {
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(45, 74, 62, 0.12);
  box-shadow: var(--shadow);
}

.spots__hanayukari-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}

html[lang="en"] .spots__hanayukari-title {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
}

.spots__hanayukari-text {
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.85rem;
}

.spots__hanayukari-link {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 14px;
  font-size: 0.88rem;
  background: var(--forest);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  transition: background var(--transition);
}

.spots__hanayukari-link:hover {
  background: var(--forest-dark);
  color: var(--white);
}

.spots__hanayukari-url {
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.85;
}

.product-card__price--note {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 0;
  width: 100%;
  text-align: center;
  padding-left: 1.25rem;
  box-sizing: border-box;
}

.product-card__achievement + .product-card__price--note {
  margin-top: 20px;
}

.contact-form__catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 28px;
  line-height: 1.45;
  letter-spacing: 0.03em;
  padding: 32px 28px;
  background: linear-gradient(135deg, var(--rice-light) 0%, var(--cream) 100%);
  border-left: 6px solid var(--rice-gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow);
}

html[lang="en"] .contact-form__catch {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.footer__catch {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.05rem, 2.8vw, 1.5rem);
  font-weight: 600;
  color: var(--rice-gold);
  margin-bottom: 16px;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.faq-item a {
  color: var(--forest);
  font-weight: 700;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Problems */
.problems__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin-top: 48px;
}

.problem-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
}

.problem-card__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Nakanojo */
.nakanojo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.nakanojo__image {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(26, 46, 38, 0) 50%, rgba(26, 46, 38, 0.55) 100%),
    url('images/nakanojo-farm.jpg') center / cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.nakanojo__caption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.nakanojo__text {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list strong {
  font-size: 1rem;
  color: var(--forest);
  margin-bottom: 4px;
}

.feature-list span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Products */
.products__lead {
  color: var(--text-muted);
  margin-top: -12px;
  margin-bottom: 8px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 40px;
}

.products__harvest {
  list-style: none;
  margin: 28px 0 0;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--forest-light);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1.5em;
  row-gap: 0;
}

.products__harvest-item {
  display: contents;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--forest-dark);
  line-height: 1.6;
}

.products__harvest-label,
.products__harvest-detail {
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.products__harvest-item:last-child .products__harvest-label,
.products__harvest-item:last-child .products__harvest-detail {
  border-bottom: none;
  padding-bottom: 0;
}

.products__harvest-item:first-child .products__harvest-label,
.products__harvest-item:first-child .products__harvest-detail {
  padding-top: 0;
}

.products__harvest-item--row {
  display: contents;
}

.products__harvest-label {
  flex-shrink: 0;
  white-space: nowrap;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--forest-dark);
  line-height: 1.6;
}

.products__harvest-detail {
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.5em;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  color: var(--forest);
  text-align: left;
  line-height: 1.5;
}

.products__harvest-crop {
  white-space: nowrap;
}

html[lang="en"] .products__harvest-detail {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
}

html[lang="en"] .products__harvest-item {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card__image {
  aspect-ratio: 5 / 1;
  background-size: cover;
  background-position: center;
}

.product-card__image--rice {
  background-image: linear-gradient(135deg, #c9a84c 0%, #f5edd6 40%, #8b6914 100%);
}

.product-card__image--vegetable {
  background-image: linear-gradient(135deg, #3d6b54 0%, #c45c4a 40%, #f5edd6 100%);
}

.product-card__image--season {
  background-image: linear-gradient(135deg, #6b5344 0%, #c9a84c 50%, #2d4a3e 100%);
}

.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest);
  background: var(--rice-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.product-card__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-card__image--fruit + .product-card__body .product-card__desc {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  line-height: 1.85;
}

.product-card__achievement {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 700;
  color: #b91c1c;
  line-height: 1.75;
  margin-bottom: 14px;
  padding: 14px 16px;
  background: rgba(185, 28, 28, 0.08);
  border-left: 4px solid #b91c1c;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.product-card__achievement strong {
  color: #991b1b;
  font-weight: 800;
}

html[lang="en"] .product-card__achievement {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
}

.product-card__price {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--earth);
  margin: 0;
}

.product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 0;
}

.product-card__order-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.product-card__order-qr img {
  display: block;
  width: 72px;
  height: 72px;
  padding: 4px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--rice-gold);
}

.product-card__order-qr-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--forest);
}

.product-card--featured {
  border: 2px solid var(--forest-light);
}

.product-card--featured .product-card__price {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--forest-dark);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-left: 1.5rem;
}

.product-card__tag--now {
  background: var(--forest);
  color: var(--white);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  padding: 10px 20px;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(45, 74, 62, 0.25);
}

.product-card__image--cabbage {
  background-image: linear-gradient(135deg, #3d6b54 0%, #7cb87c 50%, #a8d5a8 100%);
}

.product-card__image--fruit {
  background-image: linear-gradient(135deg, #c45c4a 0%, #e8a87c 45%, #8b4513 100%);
}

.product-card__body strong {
  color: var(--forest-dark);
}

/* Notice */
.notice {
  padding: 32px 0;
  background: var(--rice-light);
}

.notice__box {
  background: linear-gradient(180deg, #fffef8 0%, var(--rice-light) 100%);
  border: 2px solid var(--rice-gold);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(45, 74, 62, 0.08);
}

.notice__label {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.35rem, 3.8vw, 1.85rem);
  font-weight: 800;
  color: var(--forest-dark);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rice-gold);
  letter-spacing: 0.06em;
  text-align: center;
}

html[lang="en"] .notice__label {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
  letter-spacing: 0.03em;
}

.notice__text {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 0;
}

.notice__text strong {
  color: var(--forest-dark);
}

.notice__highlight {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 600;
  line-height: 1.75;
  color: var(--forest-dark);
  text-align: center;
  margin: 20px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  background: none;
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0;
  box-shadow: none;
}

.notice__highlight strong {
  display: inline-block;
  margin-top: 4px;
  font-size: 1.12em;
  font-weight: 700;
  color: var(--forest);
}

.notice__highlight-price {
  display: inline-block;
  margin-top: 12px;
  font-size: clamp(1.25rem, 3.2vw, 1.6rem);
  font-weight: 800;
  color: var(--forest-dark);
  line-height: 1.65;
}

.notice__highlight-em {
  font-weight: 700;
  color: var(--text);
  letter-spacing: normal;
  padding: 0;
  border-bottom: none;
  background: none;
}

html[lang="en"] .notice__highlight {
  font-family: 'Noto Serif JP', Georgia, serif;
}

.notice__meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
  font-size: 0.9rem;
}

.offer__text {
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.95;
  margin-bottom: 16px;
}

.offer__text strong {
  color: var(--rice-gold);
}

.offer__text--sub {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 0;
}

/* Offer */
.offer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.offer__content {
  flex: 1;
  min-width: 0;
}

.offer__pdf {
  margin-top: 24px;
  margin-bottom: 0;
}

.offer__pdf-link {
  font-size: 0.9rem;
  color: var(--rice-light);
  word-break: break-all;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.offer__pdf-link:hover {
  color: var(--white);
}

.offer__pdf-note {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  opacity: 0.95;
  line-height: 1.5;
}

.offer__list {
  list-style: none;
  margin-top: 8px;
}

.offer__list li {
  padding: 12px 0 12px 28px;
  position: relative;
  font-size: 1.05rem;
  opacity: 0.95;
}

.offer__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rice-gold);
  font-weight: 700;
}

.offer__box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  text-align: center;
  flex-shrink: 0;
}

.offer__box-label {
  font-size: 0.9rem;
  opacity: 0.85;
}

.offer__box-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 12px 0;
}

.offer__box-note {
  font-size: 0.9rem;
  color: var(--rice-light);
}

/* Rice trends (standalone section) */
.rice-trends.section {
  padding: 48px 0 32px;
}

.rice-trends.section + .field-report.section {
  padding-top: 32px;
}

/* Field report */
.field-report__lead {
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: none;
}

@media (min-width: 768px) {
  .field-report__lead {
    white-space: nowrap;
  }
}

.field-report__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.field-report__figure {
  margin: 0;
}

.field-report__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream-dark);
  box-shadow: var(--shadow);
}

.field-report__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--cream-dark);
}

.field-report__caption {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding-left: 12px;
  border-left: 3px solid var(--rice-gold);
}

.field-report__story {
  margin-top: 32px;
}

.field-report__note {
  padding: 14px 22px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--forest-light);
  box-shadow: var(--shadow);
}

.field-report__story-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 700;
  color: var(--forest-dark);
  margin: 0 0 8px;
  line-height: 1.45;
  padding-left: 0;
  border-left: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}

html[lang="en"] .field-report__story-title {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
}

.field-report__note-body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.field-report__note-body br {
  display: block;
  margin-top: 0.35em;
}

/* Profile */
.profile__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "rice"
    "main";
  gap: 40px;
  align-items: start;
}

.profile__main {
  grid-area: main;
  min-width: 0;
  width: 100%;
  padding-left: 0;
  margin-top: 0;
  margin-left: 0;
}

.profile__main .section__label {
  margin-bottom: 12px;
}

.profile__title {
  margin-bottom: 20px;
  line-height: 1.35;
}

.profile__header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 8px;
  margin-left: 0;
  width: 100%;
  max-width: 100%;
}

.profile__header-media {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.profile__header-aside {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  padding-top: 0;
}

.profile__header-aside__name {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.04em;
}

.profile__header-aside__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.profile__header-text {
  flex: none;
  width: 100%;
  min-width: 0;
}

.profile__title {
  margin-bottom: 0;
  line-height: 1.35;
  white-space: normal;
  word-break: keep-all;
  writing-mode: horizontal-tb;
}

.profile__portrait {
  flex: 0 0 auto;
  margin: 0;
  text-align: center;
}

.profile__portrait img {
  display: block;
  width: min(128px, 28vw);
  height: auto;
  aspect-ratio: 160 / 220;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
}

@media (min-width: 901px) {
  .profile .container {
    width: min(1200px, 96%);
  }

  .profile__grid {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: stretch;
  }

  .profile__aside,
  .profile__main {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
  }

  .profile__header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .profile__header-text {
    flex: none;
  }

  .profile__header-media {
    display: flex;
    align-items: flex-start;
    gap: 24px;
  }

  .profile__portrait img {
    width: min(148px, 12vw);
  }

  .profile__rice-trends {
    padding: 28px 40px 36px;
  }

  .profile__rice-trends-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .profile__timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 0;
    align-items: start;
  }

  .profile__timeline__row--wide-label {
    grid-column: 2;
    gap: 10px 16px;
  }

  html[lang="en"] .profile__timeline__row--wide-label {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.profile__portrait-caption {
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.04em;
}

.profile__aside {
  grid-area: rice;
  min-width: 0;
  align-self: start;
}

.profile__rice-trends {
  background: var(--white);
  border-left: 4px solid var(--rice-gold);
  padding: 4px 24px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
}

.profile__rice-trends-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.profile__rice-trends-list {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
}

.profile__rice-trends-list li {
  padding-left: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 0.35em;
}

.profile__rice-trends-list li:last-child {
  margin-bottom: 0;
}

.profile__rice-trends-date {
  font-weight: 400;
  color: var(--text-muted);
}

html[lang="en"] .profile__rice-trends {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
}

html[lang="en"] .profile__rice-trends-title {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
}

.profile__intro {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.profile__timeline {
  display: grid;
  gap: 0;
  width: 100%;
  container-type: inline-size;
}

.profile__timeline div,
.profile__timeline__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.profile__timeline div:last-child,
.profile__timeline__row:last-child {
  border-bottom: none;
}

.profile__timeline__row--wide-label {
  grid-template-columns: auto minmax(0, 1fr);
}

.profile__timeline__row--wide-label dt {
  white-space: normal;
  line-height: 1.4;
}

.profile__timeline__row--wide-label dd {
  border-left: none;
  padding-left: 0;
}

.profile__timeline dt {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest-light);
  letter-spacing: 0.05em;
  margin-bottom: 0;
  white-space: nowrap;
}

html[lang="en"] .profile__timeline div:not(.profile__timeline__row--wide-label),
html[lang="en"] .profile__timeline__row:not(.profile__timeline__row--wide-label) {
  grid-template-columns: 6rem minmax(0, 1fr);
}

html[lang="en"] .profile__timeline__row--wide-label {
  grid-template-columns: 1fr;
  gap: 6px;
}

html[lang="en"] .profile__timeline__row--wide-label dt {
  white-space: normal;
  line-height: 1.4;
}

html[lang="en"] .profile__timeline__row--wide-label dd {
  border-left: none;
  padding-left: 0;
}

.profile__timeline dd {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--text);
  padding-left: 12px;
  border-left: 3px solid var(--rice-gold);
  margin: 0;
  line-height: 1.6;
}

.profile__timeline dd .profile__faq-nav__link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  white-space: nowrap;
  line-height: 1.4;
}

.profile__timeline dd .profile__faq-nav__arrow {
  font-weight: 800;
  font-size: 1.05em;
  text-decoration: none;
}

.profile__timeline dd .profile__faq-nav__text {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
  text-decoration-color: currentColor;
}

html[lang="en"] .profile__timeline dd .profile__faq-nav__text {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.profile__timeline dd .profile__faq-nav__link {
  cursor: pointer;
}

.profile__timeline dd .profile__faq-nav__link:hover {
  color: var(--text);
}

.profile__timeline dd .profile__faq-nav__link:hover .profile__faq-nav__text {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.profile__ski {
  background: linear-gradient(160deg, var(--forest-dark) 0%, var(--sky) 100%);
  color: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.profile__ski-unified {
  background: linear-gradient(160deg, var(--forest-dark) 0%, var(--sky) 100%);
  color: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 48px;
}

.profile__ski-winter-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rice-light);
  margin: 28px 0 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.profile__ski-winter-title:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  margin-bottom: 16px;
}

.profile__ski-winter-text {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.8;
  opacity: 0.92;
  margin: 0;
}

.profile__ski-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--rice-light);
  margin-bottom: 16px;
}

.profile__ski-quote {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.05rem, 2.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
}

.profile__ski-quote-aside {
  font-weight: 700;
  opacity: 0.92;
}

.profile__ski-winter-text .profile__ski-quote-aside {
  font-family: 'Noto Serif JP', serif;
  font-size: inherit;
  line-height: inherit;
  display: block;
  margin-bottom: 0.85rem;
}

.profile__ski-winter-text--aside {
  margin-bottom: 0;
  text-align: right;
  padding-left: 18%;
}

.profile__ski-winter-text--aside .profile__ski-quote-aside {
  margin-bottom: 0;
  display: inline-block;
  text-align: right;
}

.profile__ski-winter-text-body {
  display: block;
}

.profile__ski-note {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.7;
}

.profile__ski-illust {
  margin-top: 28px;
  padding-top: 8px;
}

.profile__ski-illust--between {
  margin: 0.5rem 0 0.85rem;
  padding-top: 0;
}

.profile__ski-illust--between .profile__ski-illust__track {
  max-width: 300px;
}

.profile__ski-illust__track {
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
}

.profile__ski-illust__svg {
  display: block;
  width: 100%;
  height: auto;
  color: var(--rice-light);
}

.profile__ski-illust__slope {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 2;
  stroke-linecap: round;
}

.profile__ski-illust__skier {
  transform-origin: 80px 82px;
  animation: ski-master-carve 2.6s ease-in-out infinite;
}

.profile__ski-illust__spray {
  fill: rgba(255, 255, 255, 0.8);
}

.profile__ski-illust__spray--left {
  transform-origin: 80px 82px;
  animation: ski-master-carve 2.6s ease-in-out infinite, ski-spray-left 2.6s ease-in-out infinite;
}

.profile__ski-illust__spray--right {
  transform-origin: 80px 82px;
  animation: ski-master-carve 2.6s ease-in-out infinite, ski-spray-right 2.6s ease-in-out infinite;
}

.profile__ski-illust__ski {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
}

.profile__ski-illust__leg,
.profile__ski-illust__body,
.profile__ski-illust__arm,
.profile__ski-illust__head {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile__ski-illust__head {
  fill: currentColor;
  stroke: none;
}

.profile__ski-illust__pole {
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.profile__ski-illust__mountains {
  transform-origin: 80px 96px;
}

.profile__ski-illust__mountain--far {
  fill: rgba(255, 255, 255, 0.07);
  animation: ski-mountain-emerge 2.6s ease-out both, ski-mountain-float 8s ease-in-out 2.6s infinite;
}

.profile__ski-illust__mountain--mid {
  fill: rgba(255, 255, 255, 0.13);
  animation: ski-mountain-emerge 3s ease-out 0.35s both, ski-mountain-float 7s ease-in-out 3.35s infinite;
}

.profile__ski-illust__mountain--near {
  fill: rgba(255, 255, 255, 0.19);
  animation: ski-mountain-emerge 3.4s ease-out 0.7s both, ski-mountain-float 6s ease-in-out 4.1s infinite;
}

.profile__ski-illust__mountain-cap {
  fill: rgba(255, 255, 255, 0.32);
  animation: ski-mountain-emerge 3.2s ease-out 1s both;
}

.profile__ski-illust__mountain-cap--small {
  fill: rgba(255, 255, 255, 0.22);
}

@keyframes ski-mountain-emerge {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ski-mountain-float {
  0%, 100% {
    opacity: 0.85;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.profile__ski-illust__snowfall {
  pointer-events: none;
}

.profile__ski-illust__flake {
  fill: rgba(255, 255, 255, 0.85);
  animation: ski-snowfall 3.6s linear infinite;
}

.profile__ski-illust__flake--1 { animation-duration: 3.4s; animation-delay: 0s; }
.profile__ski-illust__flake--2 { animation-duration: 4.2s; animation-delay: 0.5s; animation-name: ski-snowfall-drift-right; }
.profile__ski-illust__flake--3 { animation-duration: 3s; animation-delay: 1.1s; }
.profile__ski-illust__flake--4 { animation-duration: 4.8s; animation-delay: 0.2s; animation-name: ski-snowfall-drift-left; }
.profile__ski-illust__flake--5 { animation-duration: 3.6s; animation-delay: 1.7s; }
.profile__ski-illust__flake--6 { animation-duration: 4.4s; animation-delay: 0.9s; animation-name: ski-snowfall-drift-right; }
.profile__ski-illust__flake--7 { animation-duration: 3.2s; animation-delay: 2.1s; }
.profile__ski-illust__flake--8 { animation-duration: 5s; animation-delay: 0.4s; animation-name: ski-snowfall-drift-left; }
.profile__ski-illust__flake--9 { animation-duration: 3.8s; animation-delay: 1.4s; }
.profile__ski-illust__flake--10 { animation-duration: 4.6s; animation-delay: 2.5s; animation-name: ski-snowfall-drift-right; }
.profile__ski-illust__flake--11 { animation-duration: 3.3s; animation-delay: 0.7s; }
.profile__ski-illust__flake--12 { animation-duration: 4.1s; animation-delay: 1.9s; animation-name: ski-snowfall-drift-left; }

@keyframes ski-snowfall {
  0% {
    opacity: 0;
    transform: translateY(-14px);
  }

  12% {
    opacity: 0.9;
  }

  88% {
    opacity: 0.45;
  }

  100% {
    opacity: 0;
    transform: translateY(92px);
  }
}

@keyframes ski-snowfall-drift-right {
  0% {
    opacity: 0;
    transform: translate(-4px, -14px);
  }

  12% {
    opacity: 0.85;
  }

  88% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translate(5px, 92px);
  }
}

@keyframes ski-snowfall-drift-left {
  0% {
    opacity: 0;
    transform: translate(4px, -14px);
  }

  12% {
    opacity: 0.85;
  }

  88% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translate(-5px, 92px);
  }
}

@keyframes ski-master-carve {
  0%, 100% {
    transform: rotate(-12deg);
  }

  50% {
    transform: rotate(12deg);
  }
}

@keyframes ski-spray-left {
  0%, 100% {
    opacity: 0.95;
  }

  50% {
    opacity: 0.15;
  }
}

@keyframes ski-spray-right {
  0%, 100% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.95;
  }
}

/* Voice */
.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.voice-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--rice-gold);
}

.voice-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.voice-card footer {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
}

/* FAQ */
.faq__list {
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  float: right;
  font-size: 1.5rem;
  color: var(--forest-light);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item ul {
  padding: 0 24px 20px 44px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

.faq-item__hobbies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  padding: 0 24px 20px 24px;
}

.faq-item__hobbies li {
  position: relative;
  padding-left: 1.4em;
  flex: 0 1 auto;
}

.faq-item__hobbies li.faq-item__hobby--block {
  flex: 1 1 100%;
}

.faq-item__hobbies li::before {
  content: '＊';
  position: absolute;
  left: 0;
  color: var(--forest);
  font-weight: 700;
}

.faq-item li + li {
  margin-top: 0;
}

.faq-item__hobbies li.faq-item__hobby--block + li.faq-item__hobby--block,
.faq-item__hobbies li.faq-item__hobby--block {
  margin-top: 8px;
}

.faq-item__hobbies li.faq-item__hobby--block:first-of-type {
  margin-top: 12px;
}

.faq-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.faq-popup[hidden] {
  display: none;
}

.faq-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 46, 38, 0.55);
}

.faq-popup__panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(85vh, 720px);
  overflow: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 24px 28px;
  border-left: 4px solid var(--forest-light);
}

.faq-popup__title {
  margin: 0 0 16px;
  padding-right: 36px;
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  font-weight: 700;
  color: var(--forest-dark);
  line-height: 1.5;
}

.faq-popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: var(--cream-dark);
  color: var(--forest-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.faq-popup__close:hover {
  background: var(--forest);
  color: var(--white);
}

.faq-popup__content .faq-item__hobbies {
  padding: 0;
  margin: 0;
}

body.faq-popup-open {
  overflow: hidden;
}

/* Access */
.access.section {
  padding: 48px 0;
}

.access.section .section__title {
  margin-bottom: 12px;
}

.access__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  align-items: start;
  margin-top: 20px;
  grid-template-areas:
    "info note"
    "info qr";
}

.access__info {
  grid-area: info;
}

.access__grid > .access__links-note {
  grid-area: note;
  margin: 0;
  align-self: start;
}

.access__grid > .access__guide-qr {
  grid-area: qr;
}

.access__links-panel {
  min-width: 0;
}

.access__links-panel .access__links {
  justify-content: flex-start;
}

.access__info .access__links {
  margin-top: 4px;
}

.access__guide-qr {
  margin-bottom: 0;
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(45, 74, 62, 0.1);
  border-radius: var(--radius);
}

.access__guide-qr-title {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.access__guide-qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.access__guide-qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.access__guide-qr-item img {
  display: block;
  width: 112px;
  height: 112px;
  padding: 8px;
  background: var(--cream);
  border: 2px solid var(--rice-gold);
  border-radius: var(--radius);
}

.access__guide-qr-item--site:has(.access__guide-qr-site[src=""]) {
  display: none;
}

.access__guide-qr-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
}

.access__guide-qr-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.access__guide-qr-print {
  margin-top: 14px;
  font-size: 0.82rem;
  text-align: center;
}

.access__guide-qr-print a {
  color: var(--forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.access__lead {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 0.88rem;
}

.access__details {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.access__details dt {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--forest-light);
  margin-bottom: 2px;
}

.access__details dd {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.access__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.access__link-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.access__link-item .btn {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.external-link-note {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.external-link-note--inline {
  display: block;
  margin-top: 6px;
}

.spots__item .external-link-note,
.spots__hanayukari .external-link-note {
  padding: 0 4px 4px;
}

.spots__hanayukari .external-link-note {
  margin-top: 10px;
}

.access__links-note {
  margin: 16px 0 0;
  padding: 16px 18px;
  background: linear-gradient(135deg, #fff1ee 0%, #ffd9d2 100%);
  border: 3px solid #c41e1e;
  border-radius: var(--radius);
  box-shadow:
    0 0 0 4px rgba(196, 30, 30, 0.12),
    0 8px 28px rgba(196, 92, 74, 0.35);
  font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  font-weight: 800;
  color: #7a1212;
  line-height: 1.55;
  animation: access-warning-glow 1.4s ease-in-out infinite;
}

.access__links-note__emph {
  color: #c41e1e;
  font-size: 1.08em;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.access__links-note__mobile {
  display: block;
  margin-top: 8px;
  font-size: 0.92em;
  font-weight: 700;
  line-height: 1.5;
}

@keyframes access-warning-glow {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(196, 30, 30, 0.12),
      0 8px 28px rgba(196, 92, 74, 0.35);
    border-color: #c41e1e;
  }

  50% {
    box-shadow:
      0 0 0 6px rgba(196, 30, 30, 0.28),
      0 10px 36px rgba(196, 92, 74, 0.55);
    border-color: #e02525;
  }
}

.access__help,
.spots__help {
  margin-bottom: 28px;
  padding: 16px 18px;
  background: var(--rice-light);
  border-left: 4px solid var(--rice-gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--forest-dark);
  font-size: 0.95rem;
  line-height: 1.8;
}

.access__help {
  margin-top: 16px;
  margin-bottom: 0;
}

.access__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream-dark);
}

.access__map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  max-height: 220px;
  border: 0;
}

.access__map-note {
  margin: 0;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  background: var(--cream-dark);
  border-top: 1px solid rgba(45, 74, 62, 0.08);
}

.access__map-note a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.access__map-note-sep {
  margin: 0 0.35em;
  color: rgba(45, 74, 62, 0.35);
}

.access__map-note-meta {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.access__map-link--return {
  white-space: nowrap;
}

.access__map-note a:hover {
  color: var(--forest-light);
}

/* Spots / sightseeing links */
.spots.section {
  padding: 40px 0;
}

.spots .section__label {
  margin-bottom: 4px;
  font-size: 0.7rem;
}

.spots .section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 8px;
}

.spots__group + .spots__group {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid rgba(45, 74, 62, 0.12);
}

.spots__group-title {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: var(--forest-dark);
}

.spots__list--agatsuma:empty {
  display: none;
}

.spots__lead {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 0.82rem;
}

.spots .spots__help {
  margin-bottom: 12px;
  padding: 8px 12px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.spots__hanayukari,
.spots__item {
  scroll-margin-top: 96px;
}

.spots__index-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}

.spots__index {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.spots__index-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2em;
  padding: 4px 8px;
  background: var(--white);
  border: 1px solid rgba(45, 74, 62, 0.2);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
}

.spots__index-link:hover {
  background: var(--rice-light);
  border-color: var(--forest-light);
  color: var(--forest-dark);
}

.spots__index-link.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.spots__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 640px) {
  .spots__list {
    gap: 10px;
  }
}

@media (min-width: 1024px) {
  .spots__list {
    gap: 12px;
  }
}

.spots__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 4px 20px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-left: 3px solid var(--forest);
  border-radius: var(--radius);
  box-shadow: none;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.spots__link:hover {
  border-left-color: var(--rice-gold);
  background: var(--rice-light);
}

.spots__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.spots__name {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--forest-dark);
}

.spots__note {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--text-muted);
  font-weight: 400;
}

.spots__url {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: right;
  word-break: break-all;
  align-self: center;
  max-width: 11rem;
}

@media (max-width: 768px) {
  .container--spots {
    width: min(1200px, 98%);
  }

  .spots__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .spots__item {
    min-width: 0;
  }

  .spots__link {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 10px;
  }

  .spots__name {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .spots__note {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .spots__url {
    font-size: 0.58rem;
    text-align: left;
    max-width: none;
    align-self: auto;
  }
}

.spots__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-top: 10px;
  padding: 0 6px;
}

.spots__step-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
}

.spots__step-link:hover {
  color: var(--forest-dark);
  text-decoration: underline;
}

.spots__step-link--open {
  text-align: right;
}

.spots__step-link.is-empty {
  visibility: hidden;
}

/* Soliloquy */
.soliloquy__box {
  background: var(--white);
  border-left: 4px solid var(--forest-light);
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: 'Noto Sans JP', sans-serif;
}

html[lang="en"] .soliloquy__box {
  font-family: 'Noto Sans', 'Noto Sans JP', sans-serif;
}

.soliloquy__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.soliloquy__item {
  position: relative;
  padding-left: 1.25em;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
}

@media (min-width: 768px) {
  html[lang="ja"] .soliloquy__item--single-line {
    white-space: nowrap;
    font-size: clamp(0.9rem, 1.05vw, 1rem);
  }
}

.soliloquy__item--tight {
  line-height: 1.45;
}

.soliloquy__item--tight br {
  display: block;
  margin-top: 0.35em;
}

.soliloquy__item--prose {
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-character;
}

.soliloquy__item--prose br {
  display: block;
  line-height: 0;
  margin-top: 0.6em;
}

.soliloquy__item--prose .soliloquy__title {
  display: inline;
}

.soliloquy__title {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: var(--forest-dark);
}

.soliloquy__item-tail {
  white-space: nowrap;
}

.soliloquy__item::before {
  content: '＊';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--forest);
  font-weight: 700;
  line-height: inherit;
}

html[lang="en"] .soliloquy__item::before {
  content: '*';
}

html[lang="ja"] .soliloquy__emphasis {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.soliloquy__date {
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
}

.soliloquy__item + .soliloquy__item {
  margin-top: 16px;
}

details.soliloquy__item {
  cursor: default;
}

details.soliloquy__item summary {
  cursor: pointer;
  list-style: none;
  padding-right: 30px;
  position: relative;
}

details.soliloquy__item summary::-webkit-details-marker {
  display: none;
}

details.soliloquy__item summary::marker {
  content: '';
}

details.soliloquy__item summary::after {
  content: '+';
  position: absolute;
  right: 2px;
  top: -2px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-light);
}

details.soliloquy__item[open] summary::after {
  content: '−';
}

details.soliloquy__item summary.soliloquy__title {
  display: block;
}

.soliloquy__content {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .soliloquy .container--soliloquy {
    width: min(1200px, 94%);
    margin-left: 6%;
    margin-right: auto;
  }

  .soliloquy__box {
    padding: 18px 18px 18px 22px;
  }
}

/* Contact */
.contact .container.contact__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 24px 12px;
  width: min(1120px, 92%);
}

.contact__info {
  flex: 1 1 42%;
  min-width: 0;
}

.contact__arrow {
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: calc(0.85rem + 12px);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.4;
  padding: 0 4px;
}

.contact-form {
  flex: 1 1 48%;
  min-width: 0;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form .inquiry-form {
  min-width: 0;
}

.contact__text {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--rice-gold);
}

.contact__details > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.contact__details > div:nth-child(3) {
  grid-column: 1 / -1;
}

.contact__details dt {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest-light);
  margin-bottom: 0;
}

.contact__details dt::after {
  content: '：';
}

html[lang="en"] .contact__details dt::after {
  content: ': ';
}

.contact__details dd {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .contact__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .contact__details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .contact .container.contact__grid {
    width: min(1120px, 98%);
    gap: 10px 6px;
  }

  .contact__info {
    flex-basis: 44%;
  }

  .contact-form {
    flex-basis: 50%;
  }

  .contact__arrow {
    font-size: clamp(1.15rem, 4.2vw, 1.5rem);
    line-height: 1.4;
    padding: 0 2px;
    margin-top: 0;
    align-self: flex-start;
  }

  .contact__text {
    margin-bottom: 12px;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .contact__phones {
    gap: 8px;
    margin-bottom: 12px;
  }

  .phone-card {
    padding: 8px 10px;
  }

  .phone-card__label {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .phone-card__number {
    font-size: clamp(0.85rem, 3.4vw, 1rem);
  }

  .contact__details {
    padding: 10px 12px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact__details > div:nth-child(3) {
    grid-column: 1;
  }

  .contact__details dt {
    font-size: 0.72rem;
  }

  .contact__details dd {
    font-size: 0.82rem;
  }

  .contact-form {
    padding: 16px 12px;
  }

  .contact-form__heading {
    font-size: clamp(0.9rem, 3.6vw, 1.15rem);
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .contact-form__text {
    font-size: 0.78rem;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .contact__info .section__title {
    font-size: clamp(1.15rem, 4.2vw, 1.5rem);
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .contact .container.contact__grid {
    gap: 6px 4px;
  }

  .contact__arrow {
    font-size: clamp(1rem, 3.6vw, 1.35rem);
    margin-top: 0;
    align-self: flex-start;
  }

  .contact-form {
    padding: 12px 8px;
  }

  .contact-form__heading {
    font-size: clamp(0.82rem, 3.4vw, 0.98rem);
  }

  .form-group {
    margin-bottom: 10px;
  }

  .form-group label {
    font-size: 0.72rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 8px 10px;
  }
}

.contact__phones {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.phone-card {
  display: block;
  background: var(--white);
  color: var(--forest-dark);
  padding: 14px 18px;
  border: 1px solid var(--cream-dark);
  border-left: 4px solid var(--forest);
  border-radius: var(--radius);
  box-shadow: none;
  transition: background var(--transition);
}

.phone-card:hover {
  background: var(--rice-light);
}

.phone-card--mobile {
  background: var(--white);
  border-left-color: var(--forest-light);
}

.phone-card--mobile:hover {
  background: var(--rice-light);
}

.phone-card--email {
  background: var(--white);
  border-left-color: var(--earth);
}

.phone-card--email:hover {
  background: var(--rice-light);
}

.phone-card--omitted {
  cursor: default;
  opacity: 0.9;
}

.phone-card--omitted:hover {
  transform: none;
}

.phone-card--mobile.phone-card--omitted:hover {
  background: var(--forest-light);
}

.phone-card--email.phone-card--omitted:hover {
  background: var(--earth);
}

.phone-card__number--email {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(0.82rem, 2vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0;
  word-break: break-all;
}

html[lang="en"] .phone-card__number--email {
  font-family: 'Noto Sans', sans-serif;
}

.contact__details dd a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact__details dd a:hover {
  color: var(--forest-dark);
}

.phone-card__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--forest-light);
  opacity: 1;
  margin-bottom: 4px;
}

.phone-card__number {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--forest-dark);
}

.contact-form--info {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form__heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--forest-dark);
  line-height: 1.4;
}

html[lang="en"] .contact-form__heading {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
}

.contact-form__text {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-form__summary {
  background: var(--cream);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.contact-form__summary ul {
  margin-top: 12px;
  padding-left: 20px;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.required {
  color: var(--tomato);
  font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--cream);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest-light);
  background: var(--white);
}

.form-group input.error,
.form-group select.error {
  border-color: var(--tomato);
}

.form-error {
  font-size: 0.8rem;
  color: var(--tomato);
  margin-top: 6px;
  min-height: 1.2em;
}

.form-status {
  margin: 0 0 12px;
  min-height: 1.2em;
  font-size: 0.9rem;
  line-height: 1.6;
}

.form-status--error {
  color: var(--tomato);
  font-weight: 600;
}

.form-status--info {
  color: var(--forest);
  font-weight: 600;
}

.form-status--success {
  color: var(--forest);
  font-weight: 600;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.7;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inquiry-form {
  position: relative;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 96px 0;
  background: var(--cream);
}

.thank-you-page .form-success {
  text-align: center;
  background: var(--white);
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.thank-you-page .form-success h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 16px;
  color: var(--forest-dark);
}

html[lang="en"] .thank-you-page .form-success h1 {
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
}

.thank-you-page .btn {
  margin-top: 8px;
}

.form-success {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Footer */
.footer {
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0;
  text-align: center;
}

.footer__logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__sub {
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: var(--rice-light);
}

.footer__tel {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer__tel a {
  color: var(--rice-light);
  font-weight: 700;
}

.footer__contact-note {
  font-size: 0.85rem;
  margin-top: -8px;
  margin-bottom: 16px;
  color: var(--rice-light);
  opacity: 0.85;
}

.footer__contact-note a {
  color: var(--rice-light);
  word-break: break-all;
}

.footer__contact-note a:hover {
  text-decoration: underline;
}

.footer__tel-sep {
  margin: 0 0.5em;
  opacity: 0.6;
}

.footer__email {
  font-size: 0.9rem;
  margin-top: -8px;
  margin-bottom: 16px;
}

.footer__email a {
  color: var(--rice-light);
  word-break: break-all;
}

.footer__email a:hover {
  text-decoration: underline;
}

.notice__box--sub {
  margin-top: 16px;
  border-left-color: var(--forest-light);
}

.footer__note {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 12px;
}

.footer__counter {
  font-size: 0.82rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
}

.footer__counter-label {
  margin-right: 0.35em;
}

.footer__counter-num {
  display: inline-block;
  min-width: 2.5em;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--rice-light);
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.82;
}

/* Responsive */
@media (max-width: 900px) {
  .problems__list,
  .products__grid,
  .voice__grid {
    grid-template-columns: 1fr;
  }

  .nakanojo__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .access__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "info"
      "note"
      "qr";
    gap: 24px;
  }

  .offer__inner {
    flex-direction: column;
    gap: 40px;
  }

  .nakanojo__visual {
    order: -1;
  }

  .profile__title {
    font-size: clamp(1.15rem, 4.8vw, 1.55rem);
    line-height: 1.3;
  }

  .profile__header-media {
    gap: 12px;
  }

  .profile__portrait img {
    width: min(96px, 27vw);
    aspect-ratio: 160 / 220;
  }

  .profile__main .section__label {
    margin-bottom: 8px;
  }

  .field-report__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 520px) {
  .field-report__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .sp-only {
    display: inline;
  }

  .header {
    background: rgba(250, 247, 240, 0.98);
    box-shadow: 0 2px 12px rgba(26, 46, 38, 0.08);
  }

  .header__inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
    box-sizing: border-box;
  }

  .header__actions {
    display: flex;
  }

  .header__lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    background: var(--forest);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(26, 46, 38, 0.2);
  }

  .header__lang-btn:hover {
    background: var(--forest-dark);
    color: var(--white);
  }

  html[lang="ja"] .header__counter {
    display: none !important;
  }

  html[lang="ja"] .header__lang-btn,
  html[lang="ja"] .nav__lang,
  html[lang="ja"] .notice .lang-guide {
    display: none !important;
  }

  html[lang="ja"] .lang-banner-wrap .lang-banner,
  html[lang="ja"] .lang-banner-wrap .lang-banner__counter {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 8px 12px;
    background: var(--white);
    border: 2px solid var(--forest);
    border-radius: var(--radius);
    backdrop-filter: none;
    box-shadow: 0 4px 14px rgba(26, 46, 38, 0.12);
  }

  html[lang="ja"] .lang-banner-wrap .lang-nav-btn--down {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 36px;
    padding: 8px 14px;
    margin: 0;
  }

  html[lang="ja"] .lang-banner-wrap .lang-banner__counter {
    flex-direction: row;
    justify-content: center;
    gap: 0.35em;
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  html[lang="ja"] .lang-banner__label {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    color: var(--forest);
  }

  html[lang="ja"] .lang-banner__link {
    font-size: 0.92rem;
    color: var(--forest-dark);
  }

  html[lang="ja"] .lang-banner__link:hover {
    color: var(--forest);
  }

  html[lang="en"] .lang-banner-wrap .lang-banner {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 10px;
    background: var(--white);
    border: 2px solid var(--forest);
    border-radius: var(--radius);
    backdrop-filter: none;
  }

  html[lang="en"] .lang-banner__link {
    display: inline-block;
    max-width: 100%;
    font-size: clamp(0.62rem, 3.6vw, 0.78rem);
    color: var(--forest-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo span {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(45, 74, 62, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__lang {
    order: -1;
    display: block;
    width: 100%;
    padding: 14px 16px;
    background: var(--forest);
    color: var(--white) !important;
    border: none;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.06em;
  }

  .nav__lang:hover {
    background: var(--forest-dark);
    color: var(--white) !important;
  }

  .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: calc(100svh - var(--header-height));
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: calc(var(--header-height) + 12px) 16px 40px;
    overflow-x: clip;
    box-sizing: border-box;
  }

  .hero__bg,
  .hero__overlay {
    width: 100%;
    left: 0;
    right: 0;
  }

  .lang-banner-wrap {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 0 12px;
    gap: 8px;
    flex-shrink: 0;
    z-index: 3;
  }

  html[lang="ja"] .lang-banner-wrap {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    top: var(--header-height) !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 6px 16px 8px !important;
    gap: 4px !important;
    z-index: 101 !important;
    background: rgba(250, 247, 240, 0.98);
    border-bottom: 1px solid rgba(45, 74, 62, 0.1);
    box-shadow: 0 2px 10px rgba(26, 46, 38, 0.08);
    box-sizing: border-box;
  }

  html[lang="ja"] .lang-banner-wrap .lang-banner__close {
    top: -6px;
    right: 4px;
    z-index: 999;
  }

  html[lang="ja"] .hero {
    padding-top: calc(var(--header-height) + 148px);
  }

  html[lang="ja"].lang-banner-dismissed .hero {
    padding-top: calc(var(--header-height) + 12px);
  }

  html[lang="ja"].lang-banner-dismissed .lang-banner-wrap {
    display: none !important;
  }

  .lang-nav-btn {
    min-height: 48px;
    padding: 12px 18px;
    font-size: clamp(0.95rem, 4.2vw, 1.1rem);
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 14px rgba(26, 46, 38, 0.22);
    border-width: 2px;
  }

  .lang-nav-btn--down {
    background: var(--white);
    border-color: var(--forest);
    color: var(--forest-dark);
    backdrop-filter: none;
  }

  .lang-nav-btn--down:hover {
    background: var(--rice-light);
    color: var(--forest-dark);
  }

  html[lang="en"] .lang-guide-footer,
  html[lang="ja"] .lang-guide-footer {
    padding: 40px 0 56px;
  }

  html[lang="en"] .lang-guide-footer .container,
  html[lang="ja"] .lang-guide-footer .container {
    width: min(1120px, 94%);
    gap: 24px;
  }

  .lang-guide-footer__box {
    padding: 28px 22px 32px;
    border-width: 3px;
    box-shadow: 0 10px 28px rgba(26, 46, 38, 0.16);
  }

  .lang-guide-footer__text {
    font-size: clamp(1.08rem, 4.8vw, 1.22rem);
    margin-bottom: 22px;
  }

  .lang-guide-footer__link {
    min-height: 56px;
    font-size: clamp(1.12rem, 5vw, 1.28rem);
    box-shadow: 0 6px 20px rgba(26, 46, 38, 0.3);
  }

  html[lang="en"] .lang-guide-footer .lang-nav-btn--up,
  html[lang="ja"] .lang-guide-footer .lang-nav-btn--up {
    margin-top: 0;
    min-height: 56px;
    font-size: clamp(1.08rem, 4.8vw, 1.22rem);
    box-shadow: 0 8px 22px rgba(26, 46, 38, 0.34);
  }

  .lang-nav-btn--up {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    box-shadow: 0 4px 14px rgba(26, 46, 38, 0.28);
  }

  html[lang="en"] .lang-nav-btn--up,
  html[lang="ja"] .lang-nav-btn--up {
    max-width: 100%;
  }

  .hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    align-self: stretch;
    text-align: center;
    box-sizing: border-box;
  }

  .hero__badge,
  .hero__catch,
  .hero__title,
  .hero__lead,
  .hero__offer,
  .hero__image-note {
    max-width: 100%;
  }

  .container--news {
    width: min(1320px, 92%);
    margin-left: auto;
    margin-right: auto;
  }

  .about .container--narrow {
    margin-left: auto;
    margin-right: auto;
    width: min(720px, 92%);
  }

  html[lang="en"] .about__emphasis-lead .container--narrow,
  html[lang="ja"] .about__emphasis-lead .container--narrow {
    margin-left: auto;
    margin-right: auto;
    width: min(720px, 92%);
  }

  .products__harvest {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 18px;
  }

  .products__harvest-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
    border-bottom: 1px solid var(--cream-dark);
  }

  .products__harvest-item--row {
    display: grid;
  }

  .products__harvest-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .products__harvest-item:first-child {
    padding-top: 0;
  }

  .products__harvest-label,
  .products__harvest-detail {
    border-bottom: none;
    padding: 0;
  }

  .products__harvest-label {
    white-space: normal;
  }

  .products__harvest-detail {
    flex-wrap: wrap;
    gap: 0.6em 1em;
    font-size: clamp(0.92rem, 3.6vw, 1.05rem);
    line-height: 1.55;
  }

  .products__harvest-crop {
    white-space: normal;
  }

  html[lang="en"] .lang-guide-footer,
  html[lang="ja"] .lang-guide-footer {
    padding: 40px 0 48px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .profile__portrait img {
    width: min(88px, 24vw);
  }

  .profile__title {
    font-size: clamp(1.05rem, 4.5vw, 1.35rem);
  }

  .profile__timeline div,
  .profile__timeline__row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 10px;
    padding: 12px 0;
  }

  .profile__timeline__row--nowrap dd {
    font-size: clamp(0.48rem, 2.8cqi, 0.72rem);
  }

  .profile__timeline__row--wide-label {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .profile__timeline__row--wide-label dd .profile__faq-nav__link {
    white-space: normal;
  }

  .profile__ski-quote {
    font-size: clamp(1rem, 3.5vw, 1.2rem);
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition: none !important;
  }

  .profile__ski-illust__skier,
  .profile__ski-illust__spray--left,
  .profile__ski-illust__spray--right,
  .profile__ski-illust__flake,
  .profile__ski-illust__mountain,
  .profile__ski-illust__mountain-cap,
  .access__links-note {
    animation: none !important;
  }
}

/* 言語案内バナーの×ボタンで閉じた後は、どの画面幅でも確実に非表示にする */
html.lang-banner-dismissed .lang-banner-wrap {
  display: none !important;
}

/* ニュースリスト内の段落余白をなくす（強制） */
.news__list p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* リスト項目同士の余白を詰める（強制） */
.news__item {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}html {
  scroll-behavior: smooth;
}

/* ボタンのスタイル */
.scroll-arrow {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒 */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* 矢印の形 */
.arrow-icon {
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}
@media (max-width: 768px) {
  .lang-globe-btn {
    bottom: 14px;
  }
  .scroll-arrow {
    bottom: 110px;
  }
}