:root {
  --green-900: #214738;
  --green-800: #2c5f4b;
  --green-700: #35765d;
  --green-100: #e8f4ec;
  --green-50: #f4faf6;
  --beige-100: #f7f0e4;
  --beige-50: #fbf7ef;
  --warm-50: #fffaf1;
  --sage: #9bb985;
  --wash-green: #f7fbf2;
  --wash-cream: #fffdf7;
  --wash-blue: #eef8f8;
  --blue-700: #2d5c82;
  --line: #06c755;
  --ink: #24342e;
  --muted: #60706a;
  --border: #dfe9e2;
  --white: #ffffff;
  --shadow: 0 16px 34px rgba(83, 117, 92, 0.1);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  line-height: 1.85;
  background:
    radial-gradient(circle at 8% 12%, rgba(208, 228, 183, 0.2), transparent 26%),
    radial-gradient(circle at 92% 36%, rgba(189, 221, 196, 0.2), transparent 30%),
    linear-gradient(180deg, var(--wash-cream) 0%, #f5fbf2 42%, #f8fcf4 100%);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-900);
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(33, 71, 56, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--green-900);
  border: 1px solid var(--border);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-50), var(--beige-50));
}

.brand-name {
  display: block;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.header-actions,
.nav-actions,
.hero-actions,
.cta-row,
.quick-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.icon-btn,
.button,
.ghost-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button {
  color: var(--white);
  border: 1px solid transparent;
  background: var(--green-800);
  box-shadow: 0 10px 24px rgba(44, 95, 75, 0.18);
}

.button:hover,
.ghost-button:hover,
.icon-btn:hover {
  transform: translateY(-1px);
}

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

.button.epark {
  background: var(--blue-700);
}

.button.phone {
  background: var(--green-900);
}

.button.map {
  background: #406b78;
}

.ghost-button,
.icon-btn {
  color: var(--green-900);
  border: 1px solid var(--border);
  background: var(--white);
}

.text-link {
  justify-content: flex-start;
  min-height: auto;
  padding: 0;
  color: var(--green-800);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.site-nav {
  border-top: 1px solid rgba(33, 71, 56, 0.08);
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-list a[aria-current="page"],
.nav-list a:hover {
  background: var(--green-100);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background-color: var(--wash-cream);
  background-image:
    linear-gradient(90deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.92) 48%, rgba(255, 253, 247, 0.68) 74%, rgba(255, 253, 247, 0.5) 100%),
    url("../assets/images/waiting-room.jpg");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.hero.hero-compact {
  min-height: 620px;
}

.hero-inner {
  display: grid;
  align-items: center;
  min-height: 680px;
  padding: 54px 0 86px;
}

.hero-compact .hero-inner {
  min-height: 620px;
  padding: 50px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green-800);
  font-size: 0.92rem;
  font-weight: 850;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 3.35rem;
  line-height: 1.18;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--green-900);
  font-size: 2.25rem;
  line-height: 1.32;
  letter-spacing: 0;
}

.hero-title {
  max-width: 840px;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  color: var(--green-900);
  font-size: 1.15rem;
  line-height: 1.45;
}

.lead {
  max-width: 700px;
  color: #40534b;
  font-size: 1.12rem;
}

.compact-lead {
  max-width: 600px;
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-copy {
  max-width: 780px;
}

.hero-panel {
  width: min(100%, 710px);
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(33, 71, 56, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero-actions-primary {
  margin-top: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges li {
  padding: 7px 11px;
  border: 1px solid rgba(53, 118, 93, 0.2);
  border-radius: var(--radius);
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-answer-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
  margin-top: 22px;
}

.hero-answer-card div {
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(53, 118, 93, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(83, 117, 92, 0.08);
}

.hero-answer-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-answer-card strong {
  color: var(--green-900);
  font-size: 1rem;
  line-height: 1.55;
}

.hours-list {
  display: inline-grid;
  grid-template-columns: max-content max-content;
  column-gap: 14px;
  row-gap: 2px;
  align-items: baseline;
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}

.hours-list .day,
.hours-list .time {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.hours-list .day {
  text-align: left;
  font-weight: 800;
}

.hours-list .time {
  white-space: nowrap;
  font-weight: 800;
}

.hero-answer-card .hours-list,
.priority-card .hours-list,
.info-card .hours-list {
  display: inline-grid;
  margin: 2px 0 0;
  color: var(--green-900);
  font-size: inherit;
  font-weight: inherit;
}

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

.meta-item {
  min-height: 88px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.meta-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.meta-value {
  display: block;
  color: var(--green-900);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.55;
}

.section {
  padding: 76px 0;
}

.quick-band {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.priority-section {
  padding: 58px 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(247, 251, 242, 0.96)),
    url("../assets/images/reservation-flow.jpg");
  background-position: center;
  background-size: cover;
}

.priority-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: center;
}

.priority-copy {
  max-width: 420px;
}

.priority-copy p:last-child {
  color: var(--muted);
}

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

.priority-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 22px;
  border: 1px solid rgba(53, 118, 93, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 32px rgba(83, 117, 92, 0.08);
}

.priority-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -34px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(155, 185, 133, 0.18);
  pointer-events: none;
}

.priority-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 850;
}

.priority-card p {
  color: var(--muted);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.service-tags span,
.hero-answer-card .service-tags span,
.priority-card .service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(53, 118, 93, 0.18);
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(232, 244, 236, 0.88);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.25;
}

.service-tags.compact span {
  background: rgba(255, 255, 255, 0.74);
}

.priority-card.hours {
  background: rgba(255, 255, 255, 0.94);
}

.priority-card.medicine {
  background: rgba(247, 250, 246, 0.94);
}

.priority-card.support {
  background: rgba(255, 250, 241, 0.94);
}

.photo-story {
  padding: 26px 0 62px;
  background: var(--wash-cream);
}

.photo-story-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.28fr 0.86fr;
  gap: 14px;
  align-items: stretch;
}

.photo-story figure {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  margin: 0;
  border-radius: var(--radius);
  background: var(--green-50);
  box-shadow: 0 16px 30px rgba(83, 117, 92, 0.08);
}

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

.photo-story figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.quick-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  text-decoration: none;
}

.quick-symbol {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-size: 0.78rem;
}

.visual-section {
  padding: 68px 0;
  background-image:
    linear-gradient(180deg, rgba(255, 253, 247, 0.94), rgba(247, 251, 242, 0.94)),
    url("../assets/images/pharmacy-support.jpg"),
    radial-gradient(circle at 6% 8%, rgba(208, 228, 183, 0.16), transparent 24%);
  background-position: center;
  background-size: cover;
  background-blend-mode: normal, soft-light, normal;
}

.visual-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 36px;
  align-items: center;
}

.visual-layout.reverse {
  grid-template-columns: 1.14fr 0.86fr;
}

.section-visual {
  width: 100%;
  border: 1px solid rgba(223, 233, 226, 0.75);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(83, 117, 92, 0.08);
}

.mini-steps {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.mini-steps div,
.service-mini-grid a,
.info-strip span {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
}

.mini-steps div {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
}

.mini-steps strong,
.service-mini-grid strong {
  color: var(--green-900);
  font-size: 1.04rem;
}

.mini-steps span,
.service-mini-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.service-mini-grid a {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 15px;
  text-decoration: none;
}

.compact-access .access-layout {
  align-items: center;
}

.compact-map {
  min-height: 340px;
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.info-strip span {
  padding: 8px 11px;
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.news-lite {
  padding: 44px 0;
}

.news-lite-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(208, 228, 183, 0.22), transparent 28%),
    rgba(255, 255, 255, 0.86);
}

.news-lite h2 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.news-lite p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section.soft {
  background:
    linear-gradient(180deg, rgba(247, 251, 242, 0.95), rgba(244, 250, 246, 0.95)),
    url("../assets/images/reservation-flow.jpg"),
    radial-gradient(circle at 90% 10%, rgba(187, 214, 165, 0.18), transparent 24%),
    var(--wash-green);
  background-position: center;
  background-size: cover;
  background-blend-mode: normal, soft-light, normal, normal;
}

.section.beige {
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0.94), rgba(247, 251, 242, 0.94)),
    url("../assets/images/pharmacy-support.jpg"),
    radial-gradient(circle at 12% 16%, rgba(231, 216, 187, 0.2), transparent 25%),
    #f7fbf2;
  background-position: center;
  background-size: cover;
  background-blend-mode: normal, soft-light, normal, normal;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
}

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

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

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

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

.card,
.info-card,
.news-card,
.flow-step,
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.card,
.info-card,
.news-card {
  padding: 22px;
}

.card p,
.info-card p,
.news-card p,
.flow-step p {
  color: var(--muted);
}

.card p:last-child,
.info-card p:last-child,
.news-card p:last-child,
.flow-step p:last-child {
  margin-bottom: 0;
}

.flow {
  counter-reset: flow;
}

.flow-step {
  position: relative;
  padding: 24px;
}

.flow-step::before {
  counter-increment: flow;
  content: counter(flow);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--white);
  border-radius: 50%;
  background: var(--green-800);
  font-weight: 850;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.hours-table th,
.hours-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: 0;
}

.hours-table th {
  width: 34%;
  color: var(--green-900);
  background: var(--green-50);
}

.access-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.map-wide-container {
  width: min(100% - 32px, 1380px);
}

.map-wide-layout {
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.72fr);
  gap: 32px;
  align-items: center;
}

.map-frame {
  width: 100%;
  min-height: 410px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-crop {
  overflow: hidden;
  min-height: 410px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--green-50);
}

.map-crop .map-frame {
  width: calc(100% + 520px);
  max-width: none;
  margin-left: -260px;
  border-radius: 0;
  box-shadow: none;
}

.map-wide-layout .map-crop,
.map-wide-layout .map-frame {
  min-height: 440px;
}

.map-wide-layout .map-crop .map-frame {
  width: 100%;
  margin-left: 0;
}

.route-note {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(117, 169, 95, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(83, 117, 92, 0.08);
}

.route-note h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 1.08rem;
}

.route-note p {
  margin: 0;
}

.route-note p + p {
  margin-top: 10px;
}

.notice {
  padding: 16px 18px;
  border: 1px solid #ead8b2;
  border-radius: var(--radius);
  background: #fff8e8;
  color: #5b4821;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 54px;
  background:
    linear-gradient(105deg, rgba(255, 253, 247, 0.96) 0%, rgba(255, 253, 247, 0.91) 54%, rgba(255, 253, 247, 0.72) 100%),
    url("../assets/images/waiting-room.jpg");
  background-position: center;
  background-size: cover;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(208, 228, 183, 0.26), transparent 24%),
    linear-gradient(180deg, transparent, rgba(255, 253, 247, 0.44));
  pointer-events: none;
}

.page-hero.pharmacy-hero {
  background-image:
    linear-gradient(105deg, rgba(255, 253, 247, 0.97) 0%, rgba(255, 253, 247, 0.9) 48%, rgba(255, 253, 247, 0.68) 100%),
    url("../assets/images/store-exterior.jpg");
}

.page-hero.illustration-hero {
  background-image:
    linear-gradient(105deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.88) 54%, rgba(255, 253, 247, 0.62) 100%),
    url("../assets/images/pharmacy-support.jpg");
}

.page-hero.reservation-hero {
  background-image:
    linear-gradient(105deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.9) 54%, rgba(255, 253, 247, 0.64) 100%),
    url("../assets/images/reservation-flow.jpg");
}

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

.medicine-card {
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(53, 118, 93, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 30px rgba(83, 117, 92, 0.07);
}

.medicine-card h2 {
  font-size: 1.28rem;
}

.medicine-card p {
  color: var(--muted);
}

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

.stock-flow div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.photo-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.photo-split img {
  width: 100%;
  min-height: 300px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(83, 117, 92, 0.1);
}

.robot-section {
  background:
    linear-gradient(180deg, rgba(247, 251, 242, 0.94), rgba(255, 253, 247, 0.96)),
    radial-gradient(circle at 92% 8%, rgba(155, 185, 133, 0.2), transparent 24%),
    var(--wash-green);
}

.robot-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
}

.robot-photo-card {
  margin: 0;
}

.robot-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(83, 117, 92, 0.16);
}

.robot-photo-card figcaption,
.article-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.robot-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.robot-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(53, 118, 93, 0.16);
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 850;
}

.robot-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(53, 118, 93, 0.14);
  border-left: 6px solid var(--sage);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
}

.article-image {
  margin: 24px 0;
}

.article-image img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(83, 117, 92, 0.1);
}

.breadcrumb {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--green-800);
  font-weight: 750;
  text-decoration: none;
}

.article {
  max-width: 860px;
}

.article-meta {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.article h2 {
  margin-top: 36px;
}

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

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--green-900);
  font-weight: 850;
}

.faq-item div {
  padding: 0 20px 18px;
  color: var(--muted);
}

.round-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 22px;
  border: 1px solid rgba(53, 118, 93, 0.15);
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(232, 244, 236, 0.86);
  font-weight: 850;
  line-height: 1.5;
}

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

.circle-card {
  position: relative;
  min-height: 360px;
  padding: 34px 26px;
  border: 1px solid rgba(53, 118, 93, 0.16);
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(83, 117, 92, 0.08);
}

.circle-card > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-800);
  font-weight: 900;
}

.circle-card.mint {
  background: rgba(237, 248, 238, 0.94);
}

.circle-card.cream {
  background: rgba(255, 250, 241, 0.94);
}

.circle-card.blue {
  background: rgba(238, 248, 248, 0.94);
}

.circle-card p {
  color: var(--muted);
}

.gentle-message {
  margin: 16px auto 0;
  padding: 22px 24px;
  border: 1px solid rgba(53, 118, 93, 0.14);
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 28px rgba(83, 117, 92, 0.08);
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.7;
  text-align: center;
}

.equipment-layout,
.parking-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

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

.equipment-list span {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(53, 118, 93, 0.16);
  border-radius: 50%;
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  text-align: center;
}

.parking-section {
  background:
    linear-gradient(180deg, rgba(247, 251, 242, 0.96), rgba(255, 253, 247, 0.96)),
    url("../assets/images/waiting-room.jpg");
  background-position: center;
  background-size: cover;
  background-blend-mode: normal, soft-light;
}

.parking-map-card {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 34px rgba(83, 117, 92, 0.08);
}

.parking-map-card img {
  width: 100%;
  border-radius: 18px;
  background: var(--white);
}

.parking-map-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.parking-notes {
  display: grid;
  gap: 14px;
}

.news-lite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.biosimilar-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(155, 185, 133, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.92);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
}

.field label,
.check label {
  color: var(--green-900);
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #cfded5;
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

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

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check input {
  width: 22px;
  height: 22px;
  margin-top: 7px;
}

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

.site-footer {
  padding: 48px 0 96px;
  color: #eef7f0;
  background: var(--green-900);
}

.site-footer h2,
.site-footer h3 {
  color: #f7fff8;
}

.site-footer h2 {
  margin-bottom: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 28px;
}

.site-footer a {
  color: inherit;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-decoration: none;
}

.footer-small {
  margin-top: 30px;
  color: #cddbd2;
  font-size: 0.9rem;
}

.bottom-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1001;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(33, 71, 56, 0.14);
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(33, 71, 56, 0.14);
}

.bottom-cta a {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding: 8px 4px;
  color: var(--green-900);
  font-size: 0.8rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.bottom-cta svg {
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-row a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  text-decoration: none;
}

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

.tag-list li {
  padding: 6px 10px;
  border-radius: var(--radius);
  color: var(--green-900);
  background: var(--green-100);
  font-size: 0.9rem;
  font-weight: 750;
}

@media (max-width: 920px) {
  body {
    font-size: 16px;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    right: 12px;
    left: 12px;
    top: 76px;
    z-index: 1200;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
  }

  .nav-list a {
    padding: 12px;
    border: 1px solid var(--border);
    background: var(--wash-green);
  }

  .hero {
    min-height: auto;
    background-image:
      linear-gradient(180deg, rgba(255, 253, 247, 0.99) 0%, rgba(255, 253, 247, 0.96) 58%, rgba(255, 253, 247, 0.82) 100%),
      url("../assets/images/waiting-room.jpg");
    background-position: center top, 58% bottom;
    background-size: cover, cover;
  }

  .hero-inner {
    min-height: auto;
    padding: 44px 0 60px;
  }

  .hero.hero-compact,
  .hero-compact .hero-inner {
    min-height: auto;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-meta,
  .hero-answer-card,
  .grid.two,
  .grid.three,
  .grid.four,
  .quick-tiles,
  .priority-layout,
  .priority-cards,
  .photo-story-grid,
  .visual-layout,
  .visual-layout.reverse,
  .robot-feature,
  .medicine-grid,
  .stock-flow,
  .stock-circle-grid,
  .photo-split,
  .equipment-layout,
  .parking-layout,
  .access-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .circle-card {
    min-height: auto;
  }

  .equipment-list {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .news-lite-actions {
    justify-content: flex-start;
  }

  .section-head {
    display: block;
  }

  .bottom-cta {
    display: grid;
  }

  .section-visual {
    order: -1;
  }

  .news-lite-inner {
    display: grid;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-sub {
    font-size: 0.72rem;
  }

  .hero-panel,
  .card,
  .info-card,
  .news-card,
  .contact-form {
    padding: 16px;
  }

  .hero-actions,
  .cta-row,
  .quick-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .ghost-button {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .visual-section {
    padding: 48px 0;
  }

  .quick-tile {
    min-height: 62px;
  }

  .service-mini-grid {
    grid-template-columns: 1fr;
  }

  .service-tags span,
  .hero-answer-card .service-tags span,
  .priority-card .service-tags span {
    min-height: 32px;
    font-size: 0.82rem;
  }

  .hero-answer-card div,
  .priority-card,
  .circle-card,
  .parking-map-card {
    border-radius: 26px;
  }

  .gentle-message {
    border-radius: 28px;
    font-size: 1.05rem;
  }

  .equipment-list {
    grid-template-columns: 1fr;
  }

  .equipment-list span {
    min-height: 84px;
    border-radius: 999px;
  }

  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero-title {
    font-size: 1.35rem;
  }

  .map-frame {
    min-height: 320px;
  }

  .map-crop .map-frame {
    width: calc(100% + 360px);
    margin-left: -180px;
  }

  .map-wide-layout .map-crop .map-frame {
    width: 100%;
    margin-left: 0;
  }
}

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