:root {
  --bg: #f7f6f2;
  --blob: #e9ece0;
  --green: #52795c;
  --green-badge: #5d7a5d;
  --green-deep: #3f5f49;
  --leaf: #96a050;
  --ink: #2c332c;
  --ink-soft: #565e55;
  --muted: #7d857c;
  --card: #ffffff;
  --line: #e7e5de;
  --about-bg: #eef3ea;
  --urgent-bg: #f7e9e3;
  --urgent-line: #c4674e;
  --ok-bg: #ecf2e6;
  --ok-line: #7f9a6e;
  --note-bg: #f6f1de;
  --note-line: #c2a13c;
  --doc-ink: #1e283c;
  --serif: "Hiragino Mincho ProN","Yu Mincho","Noto Serif JP",serif;
  --sans: "Hiragino Sans","Hiragino Kaku Gothic ProN","Noto Sans JP",sans-serif;
  --shadow: 0 10px 28px rgba(60,70,55,.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.draft-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #17301f;
  color: #d9ead9;
  text-align: center;
  font-size: 12px;
  padding: 7px 12px;
}

.draft-banner strong {
  color: #fff;
}

.rv {
  display: inline-block;
  background: #fff3c4;
  color: #765200;
  border: 1px dashed #d4a900;
  font-size: 11px;
  line-height: 1.5;
  padding: 1px 8px;
  margin: 0 4px;
  border-radius: 4px;
  vertical-align: middle;
  font-weight: 700;
  font-family: var(--sans);
}

header.site {
  background: rgba(255,255,255,.88);
}

.site-bar {
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.brand-mark {
  width: 68px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark .logo-heart {
  fill: rgba(82,121,92,.12);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
}

.brand-tag {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
  margin-left: auto;
  white-space: nowrap;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--green-deep);
}

.header-cta,
.primary-pill {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 25px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  box-shadow: none;
  white-space: nowrap;
}

.header-cta {
  min-height: 50px;
  padding: 12px 22px;
}

.header-cta svg,
.primary-pill svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cta:hover,
.primary-pill:hover {
  background: var(--green-deep);
}

.home-hero,
.clinic-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(330px, 44fr) minmax(0, 56fr);
  align-items: center;
  gap: 46px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 72px 0 58px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px -72px 14px -28px;
  background: var(--blob);
  border-radius: 58% 42% 55% 45% / 52% 48% 55% 45%;
  opacity: .7;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.72;
  letter-spacing: 0;
  color: var(--ink);
}

.hero-copy p {
  margin: 18px 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 43em;
}

.hero-copy .small {
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero-photo-wrap {
  position: relative;
  overflow: hidden;
  height: 360px;
  border-radius: 300px 28px 28px 300px;
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leaf {
  position: absolute;
  z-index: 1;
  width: 200px;
  height: 160px;
  pointer-events: none;
  opacity: .9;
}

.leaf svg {
  width: 100%;
  height: 100%;
  display: block;
}

.leaf-left {
  left: -16px;
  bottom: -28px;
  transform: rotate(6deg);
}

.leaf-right {
  right: -22px;
  top: 10px;
  transform: rotate(-28deg) scale(-.9, .9);
}

.content-section {
  padding: 44px 0 18px;
}

.feature-section {
  padding-top: 12px;
}

.section-title {
  margin: 0 0 30px;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 66px;
  height: 10px;
  margin: 8px auto 0;
  background: radial-gradient(circle at 7px 6px, transparent 4px, var(--leaf) 4.7px, transparent 5.7px) 0 0 / 16px 9px repeat-x;
  opacity: .82;
}

.section-title.small {
  font-size: 19px;
  margin-bottom: 22px;
}

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

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(60,70,55,.06);
  text-decoration: none;
  color: var(--ink);
}

.article-card:hover {
  border-color: #d8d7ce;
}

.card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef1e7;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  top: 9px;
  left: 9px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 13px;
  border-radius: 999px;
  background: var(--green-badge);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1;
}

.card-icon {
  position: absolute;
  right: 13px;
  bottom: -18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--green);
  box-shadow: 0 5px 14px rgba(60,70,55,.11);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
  padding: 24px 16px 15px;
}

.card-title {
  display: -webkit-box;
  min-height: 3.1em;
  overflow: hidden;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 800;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-excerpt {
  display: -webkit-box;
  min-height: 3.5em;
  overflow: hidden;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  color: var(--muted);
  font-size: 12px;
}

.outline-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.interview-strip {
  display: grid;
  grid-template-columns: 40% 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
}

.interview-photo {
  min-height: 250px;
}

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

.interview-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 34px;
}

.interview-body strong {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
}

.interview-body span:not(.tag):not(.a-tags) {
  color: var(--ink-soft);
  font-size: 13.5px;
}

.interview-body em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.a-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.tag.sample {
  border-style: dashed;
  color: #6a5a12;
  background: #f6f1de;
}

.about-grid {
  display: grid;
  gap: 18px;
}

.about-box {
  border-radius: 16px;
  background: var(--about-bg);
  padding: 30px 34px;
}

.about-box h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--green-deep);
}

.about-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.cta-ribbon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 18px 24px;
  color: var(--ink);
  text-decoration: none;
}

.cta-ribbon::after {
  content: "";
  position: absolute;
  right: 12px;
  top: -14px;
  width: 120px;
  height: 80px;
  background: radial-gradient(ellipse at 20% 40%, var(--leaf) 0 16%, transparent 17%) 0 0 / 32px 28px;
  opacity: .16;
  transform: rotate(-18deg);
}

.cta-ribbon span {
  color: var(--muted);
  font-size: 13px;
}

.cta-ribbon strong {
  color: var(--green-deep);
  font-size: 14px;
}

.page-band {
  padding: 28px 0 72px;
}

.article-shell {
  max-width: 820px;
}

.breadcrumb {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb a {
  color: var(--green-deep);
  text-decoration: none;
}

article.post {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 36px;
}

.post-head h1 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 28px);
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink);
}

.post-head .meta,
.doc-copy .meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.post-hero-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
  margin-top: 26px;
}

.post-body {
  margin-top: 30px;
}

.post-body h2 {
  position: relative;
  margin: 42px 0 18px;
  padding: 0 0 12px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.post-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 18px;
  height: 18px;
  border-radius: 50% 0 50% 0;
  background: var(--leaf);
  opacity: .78;
  transform: rotate(-28deg);
}

.post-body h3 {
  margin: 28px 0 10px;
  color: var(--green-deep);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
}

.post-body p {
  margin: 14px 0;
  color: var(--ink);
  font-size: 15.5px;
}

.post-body a {
  color: var(--green-deep);
  font-weight: 700;
}

.post-body ul,
.post-body ol {
  margin: 14px 0 14px 1.5em;
  padding: 0;
  font-size: 15px;
}

.post-body li {
  margin: 6px 0;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.post-body th,
.post-body td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.post-body th {
  width: 30%;
  background: #f2f0ec;
  color: var(--ink);
  font-weight: 800;
}

.box-urgent,
.box-ok,
.box-note {
  border-radius: 12px;
  padding: 18px 20px;
  margin: 20px 0;
  font-size: 14.5px;
}

.box-urgent {
  background: var(--urgent-bg);
  border: 1.5px solid var(--urgent-line);
}

.box-ok {
  background: var(--ok-bg);
  border: 1.5px solid var(--ok-line);
}

.box-note {
  background: var(--note-bg);
  border: 1.5px solid var(--note-line);
}

.box-urgent .box-title,
.box-ok .box-title,
.box-note .box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 15px;
}

.box-urgent .box-title {
  color: var(--urgent-line);
}

.box-ok .box-title {
  color: var(--green-deep);
}

.box-note .box-title {
  color: #8b7526;
}

.disclaimer,
.sources {
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  padding: 16px 20px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.8;
}

.sources {
  background: transparent;
}

.sample-band {
  margin: 20px 0;
  border: 1.5px dashed #cbb44a;
  border-radius: 12px;
  background: #f6f1de;
  color: #6a5a12;
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 700;
}

.post-body figure {
  margin: 28px 0;
}

.post-body figure img {
  width: 100%;
  border-radius: 14px;
}

.post-body figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.qa-q {
  position: relative;
  margin: 28px 0 8px;
  padding-left: 30px;
  color: var(--green-deep);
  font-size: 16px;
  font-weight: 800;
}

.qa-q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-family: var(--serif);
  font-size: 19px;
}

.related-section {
  margin-top: 36px;
}

.hospital-link-section {
  margin-top: 28px;
}

.hospital-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: var(--about-bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: none;
}

.hospital-link-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hospital-link-card strong {
  font-size: 15px;
  line-height: 1.6;
}

.hospital-link-card:hover {
  border-color: var(--green);
}

.related-grid {
  gap: 18px;
}

.article-card.compact .card-body {
  padding: 22px 14px 14px;
}

.article-card.compact .card-title {
  font-size: 14px;
}

.article-card.compact .card-excerpt {
  font-size: 12px;
}

.article-shell > .cta-ribbon {
  margin-top: 24px;
}

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

.doc-lead {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.doc-lead > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-overlay {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.55) 38%, transparent 65%);
}

.doc-copy {
  max-width: 610px;
}

.doc-copy .a-tags .tag {
  border-color: var(--doc-ink);
  border-radius: 0;
  background: transparent;
  color: var(--doc-ink);
}

.doc-kicker {
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
}

.doc-copy h1 {
  margin: 10px 0 0;
  color: var(--doc-ink);
  font-family: var(--serif);
  font-size: clamp(30px, 3.1vw, 34px);
  line-height: 1.72;
  letter-spacing: .02em;
}

.doc-shell {
  max-width: 776px; /* content 720px + wrap padding 28px*2 (spec §7) */
  padding-top: 34px;
  padding-bottom: 72px;
}

.theme-doc article.post {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.theme-doc .post-body {
  margin-top: 0;
}

.theme-doc .post-body h2 {
  border-top: 1px solid var(--doc-ink);
  border-bottom: 0;
  margin-top: 44px;
  padding: 18px 0 0;
  color: var(--doc-ink);
  font-size: 21px;
}

.theme-doc .post-body h2::before {
  display: none;
}

.theme-doc .post-body h3,
.theme-doc .qa-q,
.theme-doc .qa-q::before {
  color: var(--doc-ink);
}

.theme-doc .post-body figure img {
  border-radius: 0;
}

.clinic-hero {
  padding-top: 30px;
  padding-bottom: 30px;
}

.clinic-hero .hero-photo-wrap {
  height: 380px;
}

.fc-section {
  padding: 56px 0 0;
}

.fc-lead {
  max-width: 48em;
  margin: -12px auto 30px;
  color: var(--ink-soft);
  text-align: center;
  font-size: 14.5px;
}

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

.benefit-card,
.flow-card,
.faq-item,
.fc-cta {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(60,70,55,.06);
}

.benefit-card .num,
.flow-card .n {
  color: var(--green);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.benefit-card h3,
.flow-card h3,
.fc-cta h2 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
}

.benefit-card p,
.flow-card p,
.faq-item .a,
.fc-cta p {
  color: var(--ink-soft);
  font-size: 13.5px;
}

.benefit-card a {
  color: var(--green-deep);
  font-weight: 800;
}

.benefit-card img {
  width: 100%;
  margin-top: 14px;
  border-radius: 12px;
}

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

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item .q {
  display: flex;
  gap: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.faq-item .q::before {
  content: "Q";
  color: var(--green);
  font-family: var(--serif);
  font-size: 18px;
}

.faq-item .a {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.faq-item .a::before {
  content: "A";
  color: var(--urgent-line);
  font-family: var(--serif);
  font-size: 18px;
}

.fc-cta {
  text-align: center;
  padding: 42px 30px;
}

.fc-mail-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12.5px;
}

footer.site {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 34px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, auto);
  gap: 18px 32px;
  align-items: start;
}

.footer-brand .brand-mark {
  width: 54px;
  height: 46px;
}

.footer-brand .brand-name {
  font-size: 18px;
}

.foot-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12.5px;
}

.foot-nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.foot-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

@media (max-width: 1120px) {
  .site-bar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

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

@media (max-width: 900px) {
  .hero-grid,
  .interview-strip,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 46px 0 22px;
  }

  .hero-copy::before {
    inset: 10px -24px 0 -24px;
  }

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

  .hero-photo-wrap {
    height: 320px;
  }
}

@media (max-width: 620px) {
  .wrap {
    padding: 0 18px;
  }

  .site-bar {
    min-height: 0;
    padding: 16px 0;
  }

  .brand-mark {
    width: 54px;
    height: 46px;
  }

  .brand-name {
    font-size: 21px;
  }

  .header-cta {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 27px;
  }

  .article-grid,
  .feature-grid,
  .flow-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  article.post {
    padding: 26px 20px;
  }

  .doc-lead,
  .doc-overlay {
    min-height: 520px;
  }

  .doc-overlay {
    background: linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.78) 58%, rgba(255,255,255,.18) 100%);
  }

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

  .foot-nav {
    justify-content: flex-start;
  }
}

/* --- 病院ディレクトリ（vet-134・09言語の派生） --- */
.hosp-band {
  padding: 34px 0 72px;
}

.hosp-lead {
  max-width: 48em;
  margin: -10px auto 6px;
  color: var(--ink-soft);
  font-size: 13.5px;
  text-align: center;
}

.hosp-note {
  max-width: 48em;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.hosp-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 10px;
}

.hosp-search {
  width: min(420px, 100%);
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  font-size: 13.5px;
  font-family: var(--sans);
}

.hosp-search:focus {
  outline: none;
  border-color: var(--green);
}

.hosp-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 8px;
}

.hosp-chip {
  padding: 7px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink-soft);
  font-size: 12.5px;
  font-family: var(--sans);
  cursor: pointer;
}

.hosp-chip.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.hosp-count {
  margin: 4px 0 18px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.hosp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hosp-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hosp-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hosp-area {
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
}

.hosp-has-article {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--green-badge);
  color: #fff;
  font-size: 11px;
}

.hosp-name {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.5;
}

.hosp-addr {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.hosp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: auto;
  padding-top: 6px;
  font-size: 12.5px;
}

.hosp-links a {
  color: var(--green-deep);
  text-decoration: none;
}

.hosp-links a:hover {
  text-decoration: underline;
}

.hosp-empty {
  padding: 46px 0;
  color: var(--muted);
  font-size: 13.5px;
  text-align: center;
}

@media (max-width: 900px) {
  .hosp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .hosp-grid {
    grid-template-columns: 1fr;
  }
}

.about-company {
  color: var(--muted);
  font-size: 12.5px;
}

.hosp-select {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink);
  font-size: 13px;
  font-family: var(--sans);
}

.hosp-select:disabled {
  color: var(--muted);
  background: var(--bg);
}

/* --- 病院個別ページ（vet-135 §3案Aサンプル） --- */
.hd-head {
  margin: 6px 0 22px;
}

.hd-name {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.hd-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
}

.hd-info {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 30px;
}

.hd-sec {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.hd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.hd-table th,
.hd-table td {
  border: 1px solid var(--line);
  padding: 9px 14px;
  text-align: left;
  vertical-align: top;
}

.hd-table th {
  width: 108px;
  background: var(--about-bg);
  color: var(--ink-soft);
  font-weight: 700;
  white-space: nowrap;
}

.hd-table a {
  color: var(--green-deep);
  word-break: break-all;
}

.hd-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hd-article {
  margin-top: 26px;
}

.hd-article-card {
  display: block;
  padding: 16px 18px;
  background: var(--about-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--green-deep);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.hd-article-card:hover {
  border-color: var(--green);
}

.hd-area-article-list {
  display: grid;
  gap: 10px;
}

.hd-article-kicker,
.hd-article-title {
  display: block;
}

.hd-article-kicker {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
}

.hd-article-title {
  color: var(--green-deep);
}

.hd-side {
  display: grid;
  gap: 18px;
}

.hd-cta,
.hd-reading {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
}

.hd-cta {
  background: var(--about-bg);
}

.hd-cta h2,
.hd-reading h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--green-deep);
}

.hd-cta p {
  margin: 0 0 16px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.hd-reading a {
  display: block;
  padding: 7px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  font-size: 13px;
  text-decoration: none;
}

.hd-reading a:hover {
  color: var(--green-deep);
}

@media (max-width: 900px) {
  .hd-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hd-head {
    margin-top: 0;
  }

  .hd-name {
    font-size: 23px;
    line-height: 1.45;
  }

  .hd-info {
    padding: 20px 18px;
  }

  .hd-table,
  .hd-table tbody,
  .hd-table tr,
  .hd-table th,
  .hd-table td {
    display: block;
    width: 100%;
  }

  .hd-table th {
    border-bottom: 0;
  }

  .hd-table td {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hd-side {
    gap: 14px;
  }

  .hd-cta,
  .hd-reading {
    padding: 20px 18px;
  }

  .hd-article-card,
  .hospital-link-card {
    overflow-wrap: anywhere;
  }

  .hospital-link-card {
    display: block;
  }

  .hospital-link-card span {
    margin-bottom: 4px;
  }
}

.rich-lead,
.rich-lead .doc-overlay {
  min-height: 380px;
}

.rich-lead h1 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 32px;
  color: var(--doc-ink);
  letter-spacing: .02em;
}

.rich-lead .doc-copy .meta {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12.5px;
}

.rich-quote {
  margin: 0 0 10px;
  padding: 14px 18px;
  border-left: 3px solid var(--green);
  background: var(--about-bg);
  border-radius: 0 12px 12px 0;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2;
  color: var(--ink);
}

.rich-quote-meta {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 12.5px;
}

.rich-photo {
  margin: 0;
}

.rich-photo img {
  border-radius: 12px;
}

.rich-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.hosp-name a {
  color: var(--ink);
  text-decoration: none;
}

.hosp-name a:hover {
  color: var(--green-deep);
  text-decoration: underline;
}

.rich-lead .wrap {
  width: 100%;
}
