:root {
  --rabbitia-green: #5F7450;
  --main-text: #252723;
  --soft-background: #F8F7F2;
  --white: #FFFFFF;
  --sage-700: var(--rabbitia-green);
  --sage-600: var(--rabbitia-green);
  --sage-500: var(--rabbitia-green);
  --sage-100: rgba(95, 116, 80, .08);
  --ink: var(--main-text);
  --muted: rgba(37, 39, 35, .66);
  --line: rgba(95, 116, 80, .16);
  --ivory: var(--soft-background);
  --shadow: 0 8px 28px rgba(37, 39, 35, .08);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--soft-background);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, "Noto Sans JP", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

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

.site-shell {
  width: min(100%, 750px);
  min-height: 100vh;
  margin-inline: auto;
  overflow: clip;
  background: var(--white);
  box-shadow: 0 0 40px rgba(37, 39, 35, .06);
}

.sr-only {
  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 {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.site-header {
  position: relative;
  z-index: 50;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 6vw, 38px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(95, 116, 80, .12);
}

.wordmark {
  width: clamp(128px, 37vw, 172px);
  height: 48px;
  display: flex;
  align-items: center;
}

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

.menu-button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-right: -9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sage-700);
  cursor: pointer;
}

.menu-lines {
  width: 27px;
  display: grid;
  gap: 6px;
}

.menu-lines i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] .menu-lines i:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines i:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-lines i:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.global-menu {
  position: fixed;
  z-index: 45;
  inset: 66px 0 0;
  width: min(100%, 750px);
  margin-inline: auto;
  background: rgba(37, 39, 35, .28);
  backdrop-filter: blur(3px);
}

.global-menu[hidden] {
  display: none;
}

.menu-panel {
  max-height: calc(100vh - 66px);
  overflow-y: auto;
  padding: 30px clamp(24px, 7vw, 48px) 38px;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--shadow);
}

.menu-title {
  margin: 0 0 12px;
  color: var(--sage-700);
  font-family: Georgia, serif;
  font-size: 25px;
}

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

.global-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.global-menu a:hover,
.global-menu a:focus-visible {
  color: var(--sage-700);
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: clamp(350px, 52vw, 390px);
  overflow: hidden;
  background: var(--ivory);
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 36%, rgba(255, 255, 255, .2) 67%, rgba(255, 255, 255, 0) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 64%;
  padding: clamp(46px, 8vw, 66px) 0 34px clamp(24px, 7.5vw, 52px);
}

.hero h1 {
  margin: 0;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 5.3vw, 38px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .06em;
}

.hero p {
  margin: 18px 0 0;
  font-size: clamp(11px, 2vw, 14px);
  line-height: 1.9;
  letter-spacing: .03em;
}

.home-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(16px, 5vw, 34px) 54px;
}

.news-card {
  margin-top: -28px;
  overflow: hidden;
  background: rgba(255, 255, 255, .98);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.section-head,
.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.news-head {
  padding: 18px 18px 12px;
}

.heading-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--sage-700);
}

.heading-with-icon > .material-symbols-outlined {
  font-size: 35px;
}

.heading-with-icon h2,
.heading-with-icon p {
  margin: 0;
}

.heading-with-icon h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 4.2vw, 22px);
  line-height: 1.2;
}

.heading-with-icon p {
  margin-top: 3px;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.4;
}

.more-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: var(--sage-700);
  font-size: 12px;
  font-weight: 700;
}

.more-link span {
  font-size: 22px;
  font-weight: 400;
}

.news-list {
  margin: 0;
  padding: 0 18px 10px;
  list-style: none;
}

.news-list li + li {
  border-top: 1px solid var(--line);
}

.news-list a {
  min-height: 49px;
  display: grid;
  grid-template-columns: 18px 1fr auto 22px;
  align-items: center;
  gap: 7px;
  font-size: 12px;
}

.news-list .arrow,
.news-list .external {
  color: rgba(37, 39, 35, .62);
  font-size: 18px;
}

.news-list time {
  color: rgba(37, 39, 35, .56);
  font-size: 10px;
}

.news-title {
  min-width: 0;
}

.news-kind {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-right: 7px;
  padding: 1px 7px;
  border: 1px solid rgba(95, 116, 80, .22);
  border-radius: 999px;
  background: var(--white);
  color: var(--rabbitia-green);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.55;
  white-space: nowrap;
}

.news-kind-official {
  background: rgba(95, 116, 80, .12);
}

.news-kind-press_release {
  background: var(--soft-background);
}

.news-kind-research {
  border-style: dashed;
}

.content-section {
  margin-top: 30px;
}

.section-title {
  position: relative;
  margin: 0;
  padding-left: 14px;
  color: var(--sage-700);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .06em;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 25px;
  background: var(--sage-600);
  transform: translateY(-50%);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.category-card {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 13px 7px 10px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 39, 35, .08);
}

.category-card > .material-symbols-outlined {
  margin-bottom: 8px;
  color: var(--sage-600);
  font-size: 36px;
}

.category-card strong {
  font-size: 13px;
  line-height: 1.35;
}

.category-card small {
  margin-top: 5px;
  color: rgba(37, 39, 35, .78);
  font-size: 9px;
  line-height: 1.35;
}

.tone-sage { background: rgba(95, 116, 80, .11); }
.tone-rose { background: rgba(95, 116, 80, .055); }
.tone-sand { background: var(--soft-background); }
.tone-mint { background: rgba(95, 116, 80, .08); }
.tone-blue { background: rgba(95, 116, 80, .045); }
.tone-lilac { background: rgba(95, 116, 80, .065); }
.tone-cream { background: var(--soft-background); }
.tone-mist { background: rgba(95, 116, 80, .075); }
.tone-mauve { background: rgba(95, 116, 80, .05); }

.article-list {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.article-list li + li {
  border-top: 1px solid var(--line);
}

.article-list a {
  min-height: 75px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 14px;
  padding-block: 7px;
}

.article-marker {
  height: 60px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--soft-background), rgba(95, 116, 80, .14));
  border-radius: 8px;
  color: var(--sage-600);
}

.article-marker .material-symbols-outlined {
  font-size: 30px;
}

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

.article-body strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.article-body small {
  display: block;
  margin-top: 4px;
  color: rgba(37, 39, 35, .52);
  font-size: 9px;
}

.article-arrow {
  color: rgba(37, 39, 35, .64);
  font-size: 20px;
}

.search-grid {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.search-card {
  position: relative;
  min-height: 174px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 22px rgba(37, 39, 35, .06);
}

.search-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -46px;
  width: 145px;
  height: 145px;
  border: 25px solid rgba(95, 116, 80, .08);
  border-radius: 48% 52% 45% 55%;
  transform: rotate(22deg);
}

.search-card h2,
.search-card p {
  position: relative;
  z-index: 1;
}

.search-card h2 {
  margin: 0;
  padding-right: 50px;
  color: var(--sage-700);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .03em;
}

.search-card p {
  max-width: 78%;
  margin: 8px 0 14px;
  font-size: 12px;
}

.search-icon {
  position: absolute;
  z-index: 1;
  top: 18px;
  right: 20px;
  color: var(--sage-500);
  font-size: 34px;
}

.pill-button {
  position: relative;
  z-index: 1;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--sage-700);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  transition: background .18s ease, transform .18s ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  background: var(--rabbitia-green);
  opacity: .9;
  transform: translateY(-1px);
}

.site-footer {
  padding: 24px clamp(20px, 6vw, 36px) 20px;
  background: var(--ivory);
  text-align: center;
}

.footer-primary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px 12px;
}

.footer-primary a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 11px;
}

.footer-primary .material-symbols-outlined {
  color: var(--sage-600);
  font-size: 22px;
}

.footer-secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 18px;
  margin-top: 17px;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-sitemap a {
  color: rgba(37, 39, 35, .76);
  font-size: 10px;
}

.footer-secondary a {
  color: var(--muted);
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-donation {
  max-width: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 20px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(95, 116, 80, .16);
  border-radius: 10px;
  background: rgba(255, 255, 255, .56);
  color: var(--rabbitia-green);
  font-size: 11px;
  line-height: 1.65;
  text-align: left;
}

.footer-donation .material-symbols-outlined {
  flex: 0 0 auto;
  font-size: 23px;
}

.site-footer small {
  display: block;
  margin-top: 18px;
  font-size: 10px;
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 70px 24px;
  text-align: center;
}

.not-found .eyebrow {
  margin: 0;
  color: var(--sage-600);
  font-family: Georgia, serif;
  font-size: 52px;
}

.not-found h1 {
  margin: 8px 0;
  font-size: 24px;
}

.not-found p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.subpage {
  min-height: 68vh;
  padding: 20px clamp(18px, 6vw, 42px) 70px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 10px;
  list-style: none;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 7px;
  color: var(--rabbitia-green);
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-header {
  padding: 42px 0 30px;
  border-bottom: 1px solid var(--line);
}

.page-kicker {
  margin: 0 0 7px;
  color: var(--rabbitia-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
}

.page-header h1 {
  margin: 0;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  font-size: clamp(27px, 6vw, 38px);
  font-weight: 500;
  letter-spacing: .05em;
}

.page-header > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

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

.news-archive li {
  border-bottom: 1px solid var(--line);
}

.news-archive a {
  position: relative;
  display: block;
  padding: 24px 36px 24px 0;
}

.news-archive a::after {
  content: "›";
  position: absolute;
  right: 5px;
  top: 50%;
  color: var(--rabbitia-green);
  font-size: 25px;
  transform: translateY(-50%);
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  color: var(--muted);
  font-size: 10px;
}

.news-meta .news-source {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(95, 116, 80, .08);
}

.news-meta .news-kind {
  margin-right: 0;
}

.news-archive h2 {
  margin: 9px 0 6px;
  font-size: clamp(14px, 3.3vw, 17px);
  font-weight: 500;
  line-height: 1.65;
}

.external-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--rabbitia-green);
  font-size: 10px;
  font-weight: 700;
}

.external-label .material-symbols-outlined {
  font-size: 14px;
}

.empty-state {
  display: grid;
  place-items: center;
  padding: 70px 20px;
  color: var(--muted);
  text-align: center;
}

.empty-state .material-symbols-outlined {
  color: var(--rabbitia-green);
  font-size: 42px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 34px;
  font-size: 12px;
}

.pagination a {
  min-width: 70px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rabbitia-green);
  font-weight: 700;
}

.directory-header {
  border-bottom: 0;
}

.prefecture-search {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-background);
}

.prefecture-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--rabbitia-green);
  font-size: 12px;
  font-weight: 700;
}

.select-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.select-row select,
.select-row button {
  min-height: 48px;
  border-radius: 8px;
  font: inherit;
}

.select-row select {
  width: 100%;
  padding: 0 36px 0 13px;
  border: 1px solid rgba(95, 116, 80, .28);
  background: var(--white);
  color: var(--main-text);
  font-size: 14px;
}

.select-row button {
  padding: 0 18px;
  border: 0;
  background: var(--rabbitia-green);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.region-directory {
  margin-top: 34px;
}

.region-directory > h2,
.result-heading h2 {
  margin: 0;
  color: var(--rabbitia-green);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 21px;
  font-weight: 600;
}

.region-group {
  margin-top: 25px;
}

.region-group h3 {
  margin: 0 0 8px;
  font-size: 13px;
}

.region-group ul,
.facility-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.region-group ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.region-group a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 12px;
}

.region-group a span {
  color: var(--rabbitia-green);
  font-size: 18px;
}

.facility-results {
  margin-top: 34px;
}

.result-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.result-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.directory-empty {
  padding: 54px 18px;
  text-align: center;
}

.directory-empty > .material-symbols-outlined {
  color: var(--rabbitia-green);
  font-size: 44px;
}

.directory-empty h3 {
  margin: 10px 0 4px;
  font-size: 17px;
}

.directory-empty p {
  max-width: 420px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 12px;
}

.directory-empty a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--rabbitia-green);
  border-radius: 999px;
  color: var(--rabbitia-green);
  font-size: 12px;
  font-weight: 700;
}

.facility-list li {
  padding: 12px 0;
}

.facility-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 5px 18px rgba(37, 39, 35, .05);
}

.sample-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 3px 9px;
  border: 1px dashed var(--rabbitia-green);
  border-radius: 999px;
  color: var(--rabbitia-green);
  font-size: 9px;
  font-weight: 700;
}

.facility-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
}

.facility-labels .sample-badge {
  margin-bottom: 0;
}

.recommended-badge {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--rabbitia-green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
}

.recommended-badge .material-symbols-outlined {
  font-size: 15px;
}

.facility-card p,
.facility-card h3 {
  margin: 0;
}

.facility-card .facility-location {
  color: var(--rabbitia-green);
  font-size: 10px;
  font-weight: 700;
}

.facility-card h3 {
  margin-top: 3px;
  font-size: 17px;
}

.facility-address-link,
.facility-note {
  margin-top: 7px;
  font-size: 11px;
}

.facility-address-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--rabbitia-green);
  line-height: 1.6;
  text-decoration: none;
}

.facility-address-link .material-symbols-outlined {
  flex: 0 0 auto;
  font-size: 16px;
}

.facility-address-link .external-icon {
  font-size: 13px;
}

.facility-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 9px;
}

.facility-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.facility-official-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 17px;
  border: 1px solid var(--rabbitia-green);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 3px 10px rgba(95, 116, 80, .1);
  color: var(--rabbitia-green);
  font-size: 11px;
  font-weight: 700;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.facility-official-link:hover {
  background: var(--soft-background);
  box-shadow: 0 5px 14px rgba(95, 116, 80, .16);
  transform: translateY(-1px);
}

.facility-official-link:focus-visible {
  outline: 3px solid rgba(95, 116, 80, .28);
  outline-offset: 3px;
}

.facility-official-link .material-symbols-outlined {
  font-size: 15px;
}

.directory-notice {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin-top: 38px;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft-background);
  color: var(--muted);
}

.directory-notice .material-symbols-outlined {
  color: var(--rabbitia-green);
  font-size: 20px;
}

.directory-notice p {
  margin: 0;
  font-size: 10px;
}

.prefecture-jump {
  margin-top: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-background);
}

.prefecture-jump p {
  margin: 0 0 10px;
  color: var(--rabbitia-green);
  font-size: 12px;
  font-weight: 700;
}

.prefecture-jump ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prefecture-jump a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid var(--rabbitia-green);
  border-radius: 999px;
  background: var(--white);
  color: var(--rabbitia-green);
  font-size: 12px;
  font-weight: 700;
}

.prefecture-listings {
  display: grid;
  gap: 46px;
  margin-top: 42px;
}

.listing-prefecture {
  scroll-margin-top: 24px;
}

.listing-prefecture-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rabbitia-green);
}

.listing-prefecture-heading h2 {
  margin: 0;
  color: var(--rabbitia-green);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(20px, 4.8vw, 27px);
  font-weight: 600;
}

.listing-prefecture-heading > a {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 9px;
}

.listing-cards {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.listing-card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(37, 39, 35, .05);
}

.listing-card p,
.listing-card h3,
.listing-card dl {
  margin: 0;
}

.listing-card .facility-location {
  color: var(--rabbitia-green);
  font-size: 10px;
  font-weight: 700;
}

.listing-card h3 {
  margin-top: 3px;
  font-size: clamp(17px, 4vw, 21px);
}

.listing-description {
  margin-top: 10px !important;
  color: var(--muted);
  font-size: 11px;
}

.listing-card dl {
  margin-top: 16px;
  border-top: 1px solid var(--line);
}

.listing-card dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.listing-card dt,
.listing-card dd {
  margin: 0;
  padding: 9px 8px;
  font-size: 10px;
}

.listing-card dt {
  background: var(--soft-background);
  color: var(--rabbitia-green);
  font-weight: 700;
}

.official-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 13px;
  color: var(--rabbitia-green);
  font-size: 11px;
  font-weight: 700;
}

.official-link .material-symbols-outlined {
  font-size: 15px;
}

.rescue-directory-list {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.rescue-card {
  padding: clamp(21px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(37, 39, 35, .05);
}

.rescue-card h2,
.rescue-card p,
.rescue-card dl {
  margin: 0;
}

.rescue-area {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  color: var(--rabbitia-green);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
}

.rescue-area .material-symbols-outlined {
  flex: 0 0 auto;
  font-size: 16px;
}

.rescue-card h2 {
  margin-top: 5px;
  font-size: clamp(19px, 4.4vw, 25px);
}

.rescue-description {
  margin-top: 12px !important;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.rescue-card dl {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.rescue-card dl > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.rescue-card dt,
.rescue-card dd {
  margin: 0;
  padding: 10px;
  font-size: 10px;
  line-height: 1.65;
}

.rescue-card dt {
  background: var(--soft-background);
  color: var(--rabbitia-green);
  font-weight: 700;
}

.rescue-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 20px;
}

.rescue-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 15px;
  border: 1px solid var(--rabbitia-green);
  border-radius: 999px;
  background: var(--white);
  color: var(--rabbitia-green);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.rescue-action-adoption {
  background: var(--rabbitia-green);
  color: var(--white);
}

.rescue-action-support {
  background: var(--soft-background);
}

.rescue-action:hover {
  box-shadow: 0 5px 14px rgba(95, 116, 80, .16);
  transform: translateY(-1px);
}

.rescue-action:focus-visible {
  outline: 3px solid rgba(95, 116, 80, .28);
  outline-offset: 3px;
}

.rescue-action .material-symbols-outlined {
  font-size: 16px;
}

@media (max-width: 520px) {
  .rescue-card dl > div {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .rescue-actions {
    grid-template-columns: 1fr;
  }

  .rescue-action {
    width: 100%;
  }
}

.ad-slot {
  min-height: 112px;
  display: grid;
  place-items: center;
  margin: 28px 0;
  overflow: hidden;
  border: 1px dashed rgba(95, 116, 80, .24);
  border-radius: 8px;
  background: rgba(248, 247, 242, .72);
  color: rgba(37, 39, 35, .42);
}

.ad-slot > span {
  font-size: 9px;
  letter-spacing: .08em;
}

.ad-slot.is-disabled {
  display: none;
}

.ad-mount {
  width: 100%;
  min-height: 112px;
}

.guide-collection {
  margin-top: 34px;
}

.guide-collection > h2 {
  margin: 0 0 14px;
  color: var(--rabbitia-green);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 21px;
  font-weight: 600;
}

.guide-card-list {
  display: grid;
  gap: 12px;
}

.guide-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(37, 39, 35, .05);
}

.guide-card-featured {
  border-color: rgba(95, 116, 80, .28);
  background: linear-gradient(135deg, rgba(248, 247, 242, .92), var(--white));
}

.guide-card > a {
  min-height: 150px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 14px;
  padding: 18px;
}

.guide-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-background);
  color: var(--rabbitia-green);
  font-size: 28px;
}

.guide-category {
  margin: 0;
  color: var(--rabbitia-green);
  font-size: 10px;
  font-weight: 700;
}

.guide-card h3 {
  margin: 3px 0 6px;
  font-size: clamp(15px, 3.7vw, 19px);
  line-height: 1.55;
}

.guide-card h3 + p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
}

.guide-card-arrow {
  color: var(--rabbitia-green);
  font-size: 21px;
}

.guide-article {
  max-width: 680px;
  margin-inline: auto;
}

.guide-article-header {
  padding: 43px 0 27px;
  border-bottom: 1px solid var(--line);
}

.guide-article-header h1 {
  margin: 8px 0 0;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(26px, 6vw, 39px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .03em;
}

.guide-faq .guide-article-header h1 span {
  color: var(--rabbitia-green);
  font-size: .72em;
}

.faq-responsibility-note {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(95, 116, 80, .3);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(95, 116, 80, .09), rgba(248, 247, 242, .8));
}

.faq-responsibility-note > .material-symbols-outlined {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--rabbitia-green);
  font-size: 22px;
}

.faq-responsibility-note h2 {
  margin: 1px 0 9px;
  color: var(--rabbitia-green);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 17px;
  line-height: 1.6;
}

.faq-responsibility-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.9;
}

.faq-responsibility-note p + p {
  margin-top: 8px;
}

.faq-responsibility-note a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 11px;
  color: var(--rabbitia-green);
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-responsibility-note a .material-symbols-outlined {
  font-size: 15px;
}

.faq-category-nav {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-background);
}

.faq-category-nav > p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 13px;
  color: var(--rabbitia-green);
  font-size: 13px;
  font-weight: 700;
}

.faq-category-nav > p .material-symbols-outlined {
  font-size: 20px;
}

.faq-category-nav ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-category-nav a {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid rgba(95, 116, 80, .15);
  border-radius: 7px;
  background: var(--white);
  font-size: 10px;
  line-height: 1.5;
}

.faq-category-nav a > span {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--rabbitia-green);
  color: var(--white);
  font-size: 9px;
}

.faq-categories {
  margin-top: 40px;
}

.faq-category {
  scroll-margin-top: 24px;
}

.faq-category + .faq-category {
  margin-top: 48px;
}

.faq-category > header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(95, 116, 80, .16);
}

.faq-category > header > .material-symbols-outlined {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-background);
  color: var(--rabbitia-green);
  font-size: 23px;
}

.faq-category > header p {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-category > header h2 {
  margin: 0;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(19px, 4vw, 24px);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 3px 12px rgba(37, 39, 35, .035);
}

.faq-item summary {
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  cursor: pointer;
  list-style: none;
}

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

.faq-number {
  color: var(--rabbitia-green);
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
}

.faq-question {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
}

.faq-toggle {
  color: var(--rabbitia-green);
  font-size: 19px;
  transition: transform .2s ease;
}

.faq-item[open] {
  border-color: rgba(95, 116, 80, .32);
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  margin: 0 15px;
  padding: 15px 0 18px;
  border-top: 1px solid var(--line);
}

.faq-answer > span {
  color: #a36f6f;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

.faq-answer p {
  margin: 0;
  font-size: 11px;
  line-height: 2;
}

.faq-related-links {
  margin-top: 48px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--soft-background);
}

.faq-related-links h2 {
  margin: 0 0 14px;
  color: var(--rabbitia-green);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 18px;
}

.faq-related-links > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.faq-related-links a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 2px 9px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(95, 116, 80, .14);
  border-radius: 8px;
  background: var(--white);
}

.faq-related-links a > .material-symbols-outlined {
  grid-row: 1 / 3;
  color: var(--rabbitia-green);
  font-size: 25px;
}

.faq-related-links strong {
  font-size: 11px;
}

.faq-related-links small {
  color: var(--muted);
  font-size: 8px;
}

@media (max-width: 520px) {
  .faq-responsibility-note {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 17px;
  }

  .faq-responsibility-note > .material-symbols-outlined {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .faq-category-nav ol,
  .faq-related-links > div {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    grid-template-columns: 31px minmax(0, 1fr) 20px;
    padding-inline: 12px;
  }

  .faq-answer {
    grid-template-columns: 31px minmax(0, 1fr);
    margin-inline: 12px;
  }
}

.guide-lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.article-toc {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft-background);
}

.article-toc > p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 12px;
  color: var(--rabbitia-green);
  font-size: 13px;
  font-weight: 700;
}

.article-toc > p .material-symbols-outlined {
  font-size: 20px;
}

.article-toc ol {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 23px;
  font-size: 11px;
}

.article-toc a {
  text-decoration: underline;
  text-decoration-color: rgba(95, 116, 80, .35);
  text-underline-offset: 4px;
}

.guide-body {
  margin-top: 38px;
}

.guide-body > section {
  scroll-margin-top: 24px;
}

.guide-body > section + section {
  margin-top: 46px;
}

.guide-body h2 {
  margin: 0 0 18px;
  padding: 11px 15px;
  border-left: 4px solid var(--rabbitia-green);
  background: var(--soft-background);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(19px, 4.5vw, 26px);
  font-weight: 600;
  line-height: 1.5;
}

.guide-body p {
  margin: 0;
  font-size: 13px;
  line-height: 2;
}

.guide-body p + p {
  margin-top: 15px;
}

.guide-body ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 16px 18px 16px 38px;
  border-radius: 8px;
  background: rgba(95, 116, 80, .065);
  font-size: 12px;
}

.guide-body li::marker {
  color: var(--rabbitia-green);
}

.guide-note {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(95, 116, 80, .2);
  border-radius: 8px;
}

.guide-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--rabbitia-green);
  font-size: 11px;
}

.guide-note p {
  font-size: 11px;
}

.editorial-note {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin-top: 48px;
  padding: 17px;
  border-radius: 8px;
  background: var(--soft-background);
  color: var(--muted);
}

.editorial-note .material-symbols-outlined {
  color: var(--rabbitia-green);
  font-size: 20px;
}

.editorial-note p {
  margin: 0;
  font-size: 10px;
}

.back-to-index {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 28px auto 0;
  padding: 8px 20px;
  border: 1px solid var(--rabbitia-green);
  border-radius: 999px;
  color: var(--rabbitia-green);
  font-size: 12px;
  font-weight: 700;
}

.form-page {
  max-width: 680px;
  margin-inline: auto;
}

.inquiry-form {
  display: grid;
  gap: 23px;
  margin-top: 30px;
  padding: clamp(20px, 5vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 7px 24px rgba(37, 39, 35, .05);
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
}

.form-field label span {
  display: inline-flex;
  margin-left: 5px;
  padding: 1px 6px;
  border-radius: 999px;
  background: var(--rabbitia-green);
  color: var(--white);
  font-size: 8px;
  vertical-align: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(95, 116, 80, .3);
  border-radius: 8px;
  background: var(--white);
  color: var(--main-text);
  font: inherit;
  font-size: 14px;
}

.form-field input,
.form-field select {
  min-height: 50px;
  padding: 8px 12px;
}

.form-field textarea {
  min-height: 180px;
  padding: 12px;
  resize: vertical;
}

.form-field > small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  text-align: right;
}

.field-error,
.form-alert {
  color: #8b3333;
  font-size: 10px;
}

.field-error {
  margin: 5px 0 0;
}

.form-alert {
  margin: 24px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(139, 51, 51, .2);
  border-radius: 8px;
  background: rgba(139, 51, 51, .05);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11px;
  cursor: pointer;
}

.privacy-check input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--rabbitia-green);
}

.privacy-check a {
  color: var(--rabbitia-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.submit-button {
  min-height: 52px;
  padding: 10px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--rabbitia-green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.form-success {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  margin-top: 28px;
  padding: 19px;
  border: 1px solid rgba(95, 116, 80, .22);
  border-radius: var(--radius-sm);
  background: rgba(95, 116, 80, .07);
}

.form-success > .material-symbols-outlined {
  color: var(--rabbitia-green);
  font-size: 30px;
}

.form-success h2,
.form-success p {
  margin: 0;
}

.form-success h2 {
  font-size: 16px;
}

.form-success p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

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

.content-page {
  max-width: 680px;
  margin-inline: auto;
}

.content-page > section {
  margin-top: 40px;
}

.content-page > section h2 {
  margin: 0 0 15px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--rabbitia-green);
  color: var(--rabbitia-green);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(19px, 4.5vw, 25px);
  font-weight: 600;
}

.content-page > p,
.content-page > section p,
.content-page > section li {
  font-size: 12px;
  line-height: 2;
}

.content-page > p {
  margin: 30px 0 0;
}

.content-page > section p {
  margin: 0;
}

.content-page > section p + p {
  margin-top: 14px;
}

.content-page > section ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 22px;
}

.content-page a {
  color: var(--rabbitia-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company-profile {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-profile > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.company-profile dt,
.company-profile dd {
  margin: 0;
  padding: 12px 10px;
  font-size: 11px;
}

.company-profile dt {
  background: var(--soft-background);
  color: var(--rabbitia-green);
  font-weight: 700;
}

.event-section {
  margin-top: 40px;
}

.event-section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rabbitia-green);
}

.event-section-heading h2 {
  margin: 0;
  color: var(--rabbitia-green);
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: clamp(20px, 4.8vw, 27px);
  font-weight: 600;
}

.event-section-heading > span {
  color: var(--muted);
  font-size: 10px;
}

.event-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.event-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(37, 39, 35, .05);
}

.event-date-block {
  height: 70px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 10px;
  background: var(--rabbitia-green);
  color: var(--white);
  line-height: 1;
}

.event-date-block span {
  font-size: 11px;
}

.event-date-block strong {
  margin-top: 5px;
  font-family: Georgia, serif;
  font-size: 27px;
}

.event-labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.event-labels .sample-badge {
  margin-bottom: 0;
}

.event-type {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--soft-background);
  color: var(--rabbitia-green);
  font-size: 9px;
  font-weight: 700;
}

.event-status {
  display: inline-flex;
  padding: 3px 8px;
  border: 1px solid rgba(95, 116, 80, .28);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.event-date-text {
  margin: 10px 0 0;
  color: var(--rabbitia-green);
  font-size: 10px;
  font-weight: 700;
}

.event-card h3 {
  margin: 4px 0 0;
  font-size: clamp(16px, 3.8vw, 20px);
  line-height: 1.55;
}

.event-card dl {
  margin: 13px 0 0;
  border-top: 1px solid var(--line);
}

.event-card dl > div {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.event-card dt,
.event-card dd {
  margin: 0;
  padding: 7px 6px;
  font-size: 9px;
}

.event-card dt {
  color: var(--rabbitia-green);
  font-weight: 700;
}

.event-card .facility-address-link {
  font-size: inherit;
}

.event-card .facility-actions {
  margin-top: 14px;
}

.event-description {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.event-empty-line {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.past-events .event-card {
  background: rgba(248, 247, 242, .55);
}

.past-events .event-date-block {
  background: rgba(95, 116, 80, .65);
}

@media (max-width: 430px) {
  .event-card {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
  }

  .event-date-block {
    height: 60px;
  }

  .event-date-block strong {
    font-size: 23px;
  }
}

@media (max-width: 430px) {
  .company-profile > div {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}

:focus-visible {
  outline: 3px solid rgba(95, 116, 80, .5);
  outline-offset: 3px;
}

@media (min-width: 600px) {
  .search-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .search-card {
    min-height: 190px;
    padding: 20px 17px;
  }

  .search-card p {
    max-width: 88%;
  }

  .pill-button {
    padding-inline: 16px;
  }

  .footer-primary {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-primary a {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }

  .form-field label,
  .privacy-check,
  .submit-button {
    font-size: 13px;
  }

  .field-error,
  .form-alert {
    font-size: 12px;
  }

  .hero {
    min-height: 358px;
  }

  .hero > img {
    object-position: 60% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .91) 39%, rgba(255, 255, 255, .32) 69%, rgba(255, 255, 255, .05) 100%);
  }

  .hero-copy {
    width: 72%;
    padding-top: 52px;
  }

  .hero h1 {
    font-size: 25px;
    letter-spacing: .03em;
  }

  .hero p {
    max-width: 230px;
    font-size: 10px;
  }

  .news-head {
    padding: 16px 14px 8px;
  }

  .news-list {
    padding-inline: 12px;
  }

  .news-list a {
    grid-template-columns: 15px 1fr 20px;
    gap: 5px;
    padding-block: 5px;
    font-size: 11px;
    line-height: 1.45;
  }

  .news-list time {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .news-list .external {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .category-grid {
    gap: 7px;
  }

  .category-card {
    min-height: 116px;
    padding-inline: 4px;
  }

  .category-card strong {
    font-size: 11px;
  }

  .category-card small {
    font-size: 8px;
  }

  .article-list a {
    grid-template-columns: 68px minmax(0, 1fr) 20px;
    gap: 10px;
  }

  .article-marker {
    height: 54px;
  }
}

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