:root {
  --ink: #3b3028;
  --muted: #75685d;
  --paper: #fffdf7;
  --cream: #f5ead7;
  --leaf: #617b4a;
  --leaf-dark: #3f5a30;
  --wood: #8a6642;
  --line: rgba(74, 54, 33, .18);
  --shadow: 0 18px 45px rgba(69, 50, 31, .14);
}

/* Quiet motion: preserve the layout while adding a restrained sense of depth. */
.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .85s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
    transform .85s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms),
    box-shadow .55s cubic-bezier(.22, 1, .36, 1),
    border-color .55s ease;
}
.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-image {
  animation: ambient-image-zoom 24s ease-in-out infinite alternate;
  transform-origin: center center;
}
.image-frame,
.cat-card img,
.cat-photo-gallery img,
.menu-main-photo,
.dessert-card img {
  transition: transform 1.1s cubic-bezier(.22, 1, .36, 1), filter .8s ease;
}
.image-frame:hover,
.cat-card:hover img,
.cat-photo-gallery img:hover,
.menu-main-photo:hover,
.dessert-card:hover img {
  transform: scale(1.012);
  filter: saturate(1.03) contrast(1.01);
}
.info-card,
.cat-card,
.adoption-flow article,
.adoption-notes article,
.rescue-flow article,
.rescue-checks article,
.access-summary article {
  transition:
    transform .55s cubic-bezier(.22, 1, .36, 1),
    box-shadow .55s cubic-bezier(.22, 1, .36, 1),
    border-color .55s ease;
}
.info-card:hover,
.cat-card:hover,
.adoption-flow article:hover,
.adoption-notes article:hover,
.rescue-flow article:hover,
.rescue-checks article:hover,
.access-summary article:hover {
  transform: translateY(-2px);
  border-color: rgba(97, 123, 74, .3);
  box-shadow: 0 16px 38px rgba(69, 50, 31, .11);
}
.motion-ready .reveal-item.is-visible.info-card:hover,
.motion-ready .reveal-item.is-visible.cat-card:hover,
.motion-ready .adoption-flow > .reveal-item.is-visible:hover,
.motion-ready .adoption-notes > .reveal-item.is-visible:hover,
.motion-ready .rescue-flow > .reveal-item.is-visible:hover,
.motion-ready .rescue-checks > .reveal-item.is-visible:hover,
.motion-ready .access-summary > .reveal-item.is-visible:hover {
  transform: translateY(-2px);
}
.motion-ready .reveal-item.is-visible.image-frame:hover {
  transform: scale(1.012);
}
.button,
.text-link,
.site-nav a,
.footer-links a {
  transition:
    color .35s ease,
    background-color .35s ease,
    border-color .35s ease,
    opacity .35s ease,
    transform .35s cubic-bezier(.22, 1, .36, 1);
}
.button:hover {
  transform: translateY(-1px);
}
.text-link:hover,
.footer-links a:hover {
  opacity: .72;
}

@keyframes ambient-image-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.035); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .motion-ready .reveal-item {
    opacity: 1;
    transform: none;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif;
  line-height: 1.85;
}
a { color: inherit; text-decoration: none; }
.text-red { color: #b31313; font-weight: 700; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 46px);
  background: rgba(255, 253, 247, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 210px; }
.brand-mark { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: #fff; background: var(--leaf); font-weight: 700; }
.brand strong { display: block; font-size: 17px; letter-spacing: .04em; }
.brand small { display: block; color: var(--muted); font-size: 12px; line-height: 1.2; }
.site-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px 17px; margin-left: auto; font-family: "Hiragino Sans", "Noto Sans JP", sans-serif; font-size: 13px; }
.site-nav a { padding: 5px 0; border-bottom: 1px solid transparent; color: var(--muted); }
.site-nav a.active, .site-nav a:hover { color: var(--leaf-dark); border-color: var(--leaf); }
.menu-toggle { display: none; margin-left: auto; border: 1px solid var(--line); background: #fff; border-radius: 999px; width: 44px; height: 44px; color: var(--ink); font-size: 24px; }

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: end;
  position: relative;
  padding: clamp(92px, 16vw, 150px) clamp(20px, 6vw, 78px) clamp(44px, 9vw, 92px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
  z-index: -3;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 38, 26, .62), rgba(31, 38, 26, .24) 48%, rgba(31, 38, 26, .05) 76%);
  z-index: -2;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 22vh; background: linear-gradient(transparent, var(--paper)); z-index: -1; }
.hero-content { width: min(760px, 100%); }
.hero .eyebrow { color: #f6e9c8; }
.hero h1 {
  max-width: 900px;
  line-height: 1.28;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .28);
}

h1, h2, h3 { line-height: 1.35; margin: 0 0 .65em; font-weight: 600; }
h1 { font-size: clamp(34px, 7vw, 66px); }
.page-title { font-size: clamp(30px, 5vw, 54px); }
.lead { font-size: clamp(17px, 2.2vw, 22px); color: var(--muted); }
.one-line-lead {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(17px, 1.8vw, 22px);
}
.hero .lead {
  width: min(660px, 100%);
  color: rgba(255,255,255,.94);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .42);
}
.eyebrow { color: var(--leaf); font-family: "Hiragino Sans", "Noto Sans JP", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.section { padding: clamp(58px, 9vw, 108px) clamp(20px, 5vw, 72px); }
.section.alt { background: var(--cream); }
.section.narrow { max-width: 960px; margin: 0 auto; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.page-hero { padding: clamp(76px, 12vw, 132px) clamp(20px, 5vw, 72px) clamp(42px, 7vw, 82px); background: linear-gradient(120deg, var(--cream), #fff 72%); }
.breadcrumb { margin-bottom: 24px; color: var(--muted); font-family: "Hiragino Sans", "Noto Sans JP", sans-serif; font-size: 13px; }
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr); gap: clamp(28px, 6vw, 72px); align-items: center; }
.image-frame, .cat-card img, .route-card img { width: 100%; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); }
.image-frame { aspect-ratio: 4 / 3; }
.concept-image { object-position: center 52%; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button-row.center { justify-content: center; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  background: var(--leaf);
  color: #fff;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.button.secondary { background: var(--wood); border-color: var(--wood); }
.button.ghost { background: #fff; color: var(--leaf-dark); }
.text-link { color: var(--leaf-dark); font-family: "Hiragino Sans", "Noto Sans JP", sans-serif; font-weight: 700; border-bottom: 1px solid currentColor; }

.embed-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.calendar-frame, .map-embed {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.map-embed { min-height: 420px; filter: sepia(.12) saturate(.9); }
.placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 30px;
  border: 1px dashed rgba(74, 54, 33, .32);
  border-radius: 14px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.cat-grid, .card-grid, .menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.cat-grid {
  display: block;
}
.cat-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(980px, 100%);
  margin: 0 auto;
}
.cat-card, .info-card, .route-card, .reading-box, .price-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(74, 54, 33, .08);
}
.cat-card img { aspect-ratio: 1 / 1; border-radius: 14px 14px 0 0; box-shadow: none; }
.cat-card div, .info-card, .route-card div { padding: 22px; }
.info-card h3, .cat-card h3 { font-size: 22px; }
.cat-card p { margin-bottom: 18px; }
.featured-cat img {
  aspect-ratio: 4 / 3;
}
.cat-card .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid rgba(97, 123, 74, .34);
  border-radius: 999px;
  background: #fffdf7;
  font-size: 13px;
}
.adoptable-gallery {
  width: min(1080px, 100%);
  margin: 34px auto 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(97, 123, 74, .22);
  border-radius: 18px;
  background: rgba(255, 253, 247, .74);
  box-shadow: 0 14px 34px rgba(74, 54, 33, .08);
}
.gallery-copy {
  max-width: 760px;
  margin-bottom: 22px;
}
.gallery-copy h3 {
  font-size: clamp(22px, 3vw, 32px);
}
.gallery-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}
.cat-photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery-photo {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 253, 247, .82);
  border: 1px solid rgba(97, 123, 74, .14);
}
.cat-photo-gallery img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  padding: 10px;
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
  border-radius: 8px;
}
.instagram-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(980px, 100%);
  margin: 34px auto 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(97, 123, 74, .22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,253,247,.72)),
    radial-gradient(circle at 8% 15%, rgba(97,123,74,.16), transparent 34%),
    radial-gradient(circle at 92% 80%, rgba(138,102,66,.13), transparent 28%);
  box-shadow: 0 16px 38px rgba(74, 54, 33, .10);
}
.instagram-panel h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 3vw, 30px);
}
.instagram-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}
.contact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(97, 123, 74, .12), transparent 30%),
    linear-gradient(180deg, #fffdf7, #fbf5ea);
}
.contact-panel {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid rgba(97, 123, 74, .24);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 16px 38px rgba(74, 54, 33, .09);
  text-align: center;
}
.contact-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(17px, 2vw, 20px);
}
.contact-panel .button-row {
  justify-content: center;
}
.about-detail {
  padding-top: clamp(56px, 8vw, 92px);
  background:
    linear-gradient(180deg, #fffdf7 0%, #f8efdf 100%);
}
.about-detail .section-head {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.about-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  width: min(1040px, 100%);
  margin: 0 auto;
}
.about-story article,
.notice-grid article,
.support-box {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(74, 54, 33, .09);
}
.about-story article {
  padding: clamp(28px, 4vw, 40px);
}
.about-story h3,
.notice-grid h3,
.support-box h3 {
  color: var(--leaf-dark);
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.3vw, 26px);
}
.about-story p,
.notice-grid p,
.support-box p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 2;
}
.about-highlight {
  width: min(1040px, 100%);
  margin: 28px auto;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(97, 123, 74, .24);
  border-left: 6px solid var(--leaf);
  border-radius: 10px;
  background: #fffdf7;
  font-size: clamp(17px, 2vw, 20px);
  box-shadow: 0 10px 26px rgba(74, 54, 33, .07);
}
.about-highlight p {
  margin: 0;
}
.notice-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 26px;
  width: min(1040px, 100%);
  margin: 0 auto;
}
.notice-grid article {
  padding: clamp(26px, 4vw, 38px);
}
.notice-grid ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.15em;
  font-size: 16px;
  line-height: 1.9;
}
.support-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
  gap: 26px;
  align-items: start;
  width: min(1040px, 100%);
  margin: 28px auto 0;
  padding: clamp(28px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,253,247,.9)),
    radial-gradient(circle at 90% 8%, rgba(97,123,74,.14), transparent 28%);
}
.support-box dl {
  margin: 0;
  padding: 20px;
  border-radius: 10px;
  background: #fffdf7;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 15px;
}
.support-box dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(74, 54, 33, .12);
}
.support-box dl div:last-child {
  border-bottom: 0;
}
.support-box dt {
  color: var(--leaf-dark);
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
}
.support-box dd {
  margin: 0;
}
.support-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.price-table { overflow: hidden; }
.price-menu-page,
.price-menu-page * {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", Georgia, serif !important;
}
.price-menu-page .nekonoma-menu h3,
.price-menu-page .herb-list h4,
.price-menu-page .tea-name,
.price-menu-page .hot-drinks dt,
.price-menu-page .hot-drinks dd,
.price-menu-page .dessert-grid article p,
.price-menu-page .dessert-set h3 {
  color: var(--ink) !important;
}
.price-table table { width: 100%; border-collapse: collapse; background: #fff; }
.price-table th, .price-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.price-table th { width: 34%; background: rgba(245,234,215,.55); color: var(--leaf-dark); font-family: "Hiragino Sans", "Noto Sans JP", sans-serif; }
.price-system {
  background:
    linear-gradient(180deg, #fffdf7 0%, #fbf5ea 100%);
}
.price-system-layout {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}
.price-system .section-head {
  margin-bottom: 0;
}
.price-system h2 {
  font-size: clamp(30px, 4vw, 48px);
}
.price-subtitle {
  margin: -8px 0 24px;
  color: var(--leaf);
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
}
.english-lead {
  padding-top: 12px;
  border-top: 1px solid rgba(74, 54, 33, .14);
  color: var(--muted);
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}
.charge-box {
  width: 100%;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(97, 123, 74, .22);
  border-left: 6px solid var(--leaf);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(74, 54, 33, .11);
}
.charge-box h3 {
  color: var(--leaf-dark);
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(21px, 2.4vw, 28px);
}
.charge-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
.charge-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 22px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(74, 54, 33, .10);
}
.charge-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 20px;
  border-radius: 999px;
  background: #4b9b21;
  color: #fff;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 800;
}
.charge-list strong {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(21px, 2.6vw, 28px);
}
.note-list {
  display: grid;
  gap: 7px;
  padding: 18px 20px;
  margin: 18px 0 28px;
  list-style: none;
  border-radius: 10px;
  background: #fffdf7;
  color: var(--ink);
  font-size: 15px;
}
.note-list li::before {
  content: "※";
  margin-right: 3px;
  color: var(--leaf-dark);
}
.english-charge h4 {
  margin: 0 0 4px;
  color: #b43931;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.english-charge p {
  margin: 0 0 18px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.55;
}
.howto-list {
  margin: 0;
  padding-left: 1.4em;
}
.howto-list li {
  margin-bottom: 18px;
  padding-left: 4px;
}

.nekonoma-menu {
  width: min(760px, 100%);
  margin: 0 auto;
}
.nekonoma-menu h3 {
  color: #a20d0d;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  margin-bottom: 10px;
}
.menu-block {
  margin: 0 0 38px;
}
.menu-main-photo {
  width: min(320px, 100%);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
  margin: 22px 0 18px;
  box-shadow: 0 10px 24px rgba(70, 48, 31, .15);
}
.herb-list {
  display: grid;
  gap: 14px;
}
.herb-list h4 {
  margin: 0 0 2px;
  color: #c31919;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 17px;
}
.herb-list p,
.menu-block p {
  margin: 0 0 10px;
}
.menu-sub {
  color: #8b5850;
  letter-spacing: .08em;
}
.tea-info {
  margin: 6px 0 28px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.tea-name {
  margin: 0 0 10px;
  color: #a20d0d;
  font-weight: 800;
}
.tea-site {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  color: #4a3621;
  letter-spacing: .12em;
}
.tea-site a {
  color: #4a3621;
  font-weight: 800;
  letter-spacing: 0;
}
.drink-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(240px, 280px);
  gap: clamp(36px, 8vw, 92px);
  align-items: start;
  margin: 28px 0 42px;
}
.hot-drinks dl,
.cold-drinks dl {
  margin: 0;
}
.hot-drinks dl div,
.cold-drinks dl div,
.dessert-set p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.hot-drinks dt,
.cold-drinks dt {
  color: #b31a1a;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.hot-drinks dd,
.cold-drinks dd {
  margin: 0;
  font-weight: 700;
}
.hot-drinks dt,
.hot-drinks dd {
  color: #b31a1a;
}
.hot-drinks img {
  width: min(280px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-top: 22px;
  box-shadow: 0 10px 24px rgba(70, 48, 31, .15);
}
.cold-drinks,
.dessert-set {
  border: 2px dashed #d23838;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}
.cold-drinks h3 {
  color: #1b57a6;
  font-size: 20px;
}
.cold-drinks {
  padding: 22px 24px;
}
.cold-drinks dt {
  color: #4a241f;
  font-weight: 800;
}
.cold-drinks p {
  margin: 26px 0 0;
  color: #4a241f;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
  line-height: 1.65;
}
.dessert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 42px;
}
.dessert-grid article h3 {
  font-size: 20px;
  margin: 0 0 4px;
}
.dessert-grid article h3 span {
  margin-left: 10px;
}
.dessert-grid article p {
  margin: 0 0 12px;
  color: #b31a1a;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.dessert-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(70, 48, 31, .15);
}
.dessert-set {
  margin-top: 36px;
}
.dessert-set h3 {
  margin-bottom: 12px;
  color: #f21e1e;
  font-size: 18px;
}
.dessert-set p {
  margin: 4px 0;
}
.dessert-set span {
  white-space: nowrap;
}
.menu-tax {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}
.rescue-flow {
  display: grid;
  gap: 18px;
  width: min(980px, 100%);
}
.rescue-flow article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(74, 54, 33, .08);
}
.rescue-flow article > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
}
.rescue-flow h3,
.rescue-checks h3 {
  color: #a20d0d;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.rescue-flow p,
.rescue-checks p {
  margin: 0 0 10px;
}
.rescue-flow .note {
  color: #a20d0d;
  font-weight: 700;
}
.rescue-checks {
  display: grid;
  gap: 18px;
}
.rescue-checks article {
  padding: 22px;
  border-left: 4px solid var(--leaf);
  background: #fffdf7;
  border-radius: 8px;
}
.adoption-flow {
  display: grid;
  gap: 18px;
  width: min(980px, 100%);
}
.adoption-flow article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(74, 54, 33, .08);
}
.adoption-flow article > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #0d7a74;
  color: #fff;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-weight: 800;
}
.adoption-flow h3,
.adoption-notes h3 {
  color: #0d6f68;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.adoption-flow p,
.adoption-notes p {
  margin: 0 0 10px;
}
.adoption-notes {
  display: grid;
  gap: 18px;
}
.adoption-notes article {
  padding: 22px;
  border-left: 4px solid #0d7a74;
  background: #fffdf7;
  border-radius: 8px;
}
.office-info {
  margin-top: 14px;
  font-weight: 700;
  line-height: 1.8;
}
.links-section {
  background:
    linear-gradient(180deg, #f5ead7 0%, #f8efe0 100%);
}
.links-section .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.home-banners {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(240px, 320px);
  gap: 16px 18px;
  align-items: start;
  justify-content: center;
  width: min(700px, 100%);
  margin: 0 auto;
}
.banner-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}
.home-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(74, 54, 33, .12);
  border-radius: 10px;
  background: #fffdf7;
  box-shadow: 0 12px 24px rgba(74, 54, 33, .10);
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(74, 54, 33, .15);
}
.home-banner::after {
  content: "↗";
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(74, 54, 33, .46);
  font-size: 18px;
}
.home-banner .banner-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
}
.home-banner strong {
  display: block;
  line-height: 1.18;
}
.home-banner small,
.home-banner em {
  display: block;
  font-style: normal;
  line-height: 1.45;
}
.home-banner.enmusubi {
  gap: 18px;
  border-color: rgba(217, 72, 86, .5);
  background:
    linear-gradient(135deg, #fff 0%, #fff9f6 100%);
  color: #201612;
}
.heart-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #d92d3f;
  font-size: 54px;
  line-height: 1;
}
.home-banner.enmusubi strong {
  font-size: clamp(25px, 2.8vw, 36px);
}
.home-banner.enmusubi small {
  color: #1f1712;
  font-size: 12px;
  font-weight: 800;
}
.home-banner.enmusubi em {
  color: #a10f1d;
  font-size: 16px;
  font-weight: 800;
}
.home-banner.smartlog {
  gap: 18px;
  background:
    radial-gradient(circle at 86% 24%, rgba(255,255,255,.12), transparent 30%),
    linear-gradient(135deg, #070707, #202020);
  color: #fff;
}
.smartlog-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 400;
}
.home-banner.smartlog strong {
  font-family: Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: .01em;
}
.home-banner.smartlog em {
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 800;
}
.home-banner.smartlog::after { color: rgba(255,255,255,.68); }
.home-banner.wishlist {
  grid-column: 1 / -1;
  min-height: 86px;
  gap: 18px;
  background:
    radial-gradient(circle at 8% 24%, rgba(255,255,255,.28), transparent 24%),
    linear-gradient(135deg, #ff6268, #e64b52);
  color: #fff;
}
.wishlist-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  font-size: 26px;
}
.home-banner.wishlist strong {
  font-size: clamp(23px, 3vw, 32px);
}
.home-banner.wishlist small {
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.home-banner.wishlist::after { color: rgba(255,255,255,.76); }
.support-message {
  grid-column: 1 / -1;
  width: min(560px, 100%);
  margin: 2px auto 0;
  padding: 22px 24px;
  border: 1px solid rgba(229, 75, 82, .24);
  border-radius: 12px;
  background: rgba(255, 253, 247, .82);
  box-shadow: 0 12px 26px rgba(74, 54, 33, .08);
  color: #4a3621;
  text-align: center;
}
.support-message p {
  margin: 0;
  line-height: 1.9;
}
.support-message p + p {
  margin-top: 10px;
}
.support-message .heart-line {
  color: #e64b52;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 2.4vw, 18px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .02em;
}
.home-banner:not(.wishlist) {
  align-self: start;
  min-height: 0;
  padding: 0;
  background: #fff;
}
.home-banner.foster {
  min-height: 0;
}
.home-banner:not(.wishlist)::after,
.home-banner.foster::before {
  display: none;
}
.home-banner:not(.wishlist) img {
  display: block;
  position: static;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: none;
}
.home-banner.foster {
  grid-row: auto;
  height: auto;
  min-height: 0;
  justify-content: center;
  background: #fff;
}
.home-banner.foster img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.social-follow {
  position: relative;
  width: min(520px, 100%);
  padding: 18px 24px 14px;
  background: #4b211d;
  color: #fff;
  text-align: center;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.social-follow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid #4b211d;
  transform: translateX(-50%);
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.social-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: #fff;
  font-family: Arial, "Hiragino Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, opacity .2s ease;
}
.social-icon:hover {
  transform: translateY(-2px);
  opacity: .88;
}
.social-icon.ig {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 42%, #6228d7);
  font-size: 30px;
}
.social-icon.yt { background: #e62117; font-size: 20px; }
.social-icon.x { background: #090909; font-size: 25px; }
.social-icon.fb { background: #4267b2; font-family: Georgia, serif; font-size: 31px; }
.social-icon.th { background: #070707; font-size: 27px; }
.social-follow p {
  margin: 8px 0 0;
  color: #fff;
  font-size: 19px;
  letter-spacing: .04em;
  line-height: 1.2;
}
.shop-social {
  margin-top: 22px;
}
.shop-social .social-follow {
  margin-top: 12px;
}
.access-note {
  width: min(980px, 100%);
  margin: 0 auto 28px;
  padding: 24px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(74, 54, 33, .08);
}
.access-note p {
  margin: 0 0 8px;
}
.access-note .note {
  color: #a20d0d;
  font-weight: 700;
}
.access-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto 34px;
}
.access-summary article {
  padding: 20px;
  border-radius: 14px;
  background: #fffdf7;
  border: 1px solid var(--line);
}
.access-summary h3,
.route-guide h3 {
  color: #6f431b;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}
.contact-page .page-hero {
  padding-top: clamp(54px, 8vw, 86px);
  padding-bottom: clamp(42px, 6vw, 64px);
}
.contact-page .page-hero .lead {
  width: min(980px, 100%);
}
.contact-cards-section {
  padding-top: clamp(44px, 6vw, 70px);
  padding-bottom: clamp(54px, 7vw, 82px);
}
.contact-page .card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(800px, 100%);
  margin: 0 auto;
}
.contact-page .info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: 188px;
}
.contact-page .text-link,
.contact-page .lead,
.contact-page .access-note,
.contact-page .access-summary article {
  overflow-wrap: anywhere;
}
.contact-page #access {
  padding-top: clamp(56px, 7vw, 86px);
}
.contact-page #access .section-head {
  width: min(980px, 100%);
  max-width: none;
  margin: 0 auto 28px;
}
.contact-page .access-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.contact-page .access-summary article {
  min-height: 176px;
  padding: 24px;
}
.contact-page .embed-panel {
  width: min(1080px, 100%);
  margin-top: 4px;
}
.contact-page .map-embed {
  min-height: 380px;
}
.contact-shop-section {
  background: #fffdf7;
}
.contact-shop-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .82fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}
.contact-shop-inner .image-frame {
  aspect-ratio: 5 / 4;
}
.route-guide {
  display: grid;
  gap: 18px;
  width: min(980px, 100%);
}
.route-guide article {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(74, 54, 33, .08);
}
.route-guide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px;
}
.route-guide p {
  margin: 0;
}

.reading-box { padding: clamp(24px, 5vw, 44px); }
.reading-box p { margin: 0 0 1em; }
.copy-placeholder { white-space: pre-wrap; border-left: 4px solid var(--leaf); padding: 18px 20px; background: #fffdf7; color: var(--muted); }
.pet-insurance-page main {
  background: #fff;
}
.pet-insurance-page .section.narrow {
  max-width: 820px;
  padding-top: clamp(34px, 5vw, 64px);
}
.pet-insurance-page .reading-box {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.pet-insurance-page .insurance-title {
  margin: 0 0 14px;
  color: #b31313;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
}
.pet-insurance-page .copy-placeholder {
  border-left: 0;
  padding: 0;
  background: transparent;
  white-space: pre-line;
}
.insurance-copy {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #4f403b;
}
.insurance-apply {
  margin: 22px 0 10px;
  white-space: pre-wrap;
  color: #cf3a35;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.7;
}
.insurance-apply small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  line-height: 1.5;
}
.insurance-banner {
  display: block;
  margin: 16px 0 16px;
  width: min(520px, 100%);
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.insurance-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.insurance-banner-copy {
  padding: 8px 10px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .04em;
}
.insurance-product {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  place-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #00895a;
  border-left: 1px solid rgba(255,255,255,.2);
  text-align: center;
}
.insurance-product strong {
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 21px;
  line-height: 1.2;
  white-space: nowrap;
}
.insurance-product small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.86);
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 12px;
}
.solicitation-policy {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 18px;
  background: #df7d77;
  color: #fff;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.site-footer { padding: 52px clamp(20px, 5vw, 72px) 28px; background: #34291f; color: #f8f0df; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 28px; }
.site-footer h2 { font-size: 18px; }
.site-footer p, .site-footer a { color: rgba(248,240,223,.84); }
.footer-license {
  display: grid;
  gap: 5px;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(248,240,223,.72);
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1.55;
}
.footer-license div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
}
.footer-license dt {
  color: rgba(248,240,223,.88);
  font-weight: 800;
}
.footer-license dd {
  margin: 0;
}
.site-footer .social-follow {
  width: 100%;
  max-width: 360px;
  padding: 14px 16px 12px;
  background: rgba(75, 33, 29, .96);
}
.site-footer .social-follow::after {
  border-top-color: rgba(75, 33, 29, .96);
}
.site-footer .social-icon {
  width: 34px;
  height: 34px;
  font-size: 20px;
}
.site-footer .social-icon.ig { font-size: 26px; }
.site-footer .social-icon.yt { font-size: 17px; }
.site-footer .social-icon.fb { font-size: 26px; }
.site-footer .social-icon.th { font-size: 22px; }
.site-footer .social-follow p {
  font-size: 15px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.18); font-family: "Hiragino Sans", "Noto Sans JP", sans-serif; font-size: 14px; }
.copyright { margin-top: 28px; font-size: 13px; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; place-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    padding: 18px;
    background: #fffdf7;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; grid-template-columns: 1fr; gap: 6px; }
  .site-nav a { padding: 10px; }
  .split { grid-template-columns: 1fr; }
  .card-grid, .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat-photo-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-shop-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand { min-width: 0; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 11px; }
  .hero {
    min-height: 78svh;
    padding: 96px 20px 42px;
  }
  .hero::before {
    background: linear-gradient(180deg, rgba(31, 38, 26, .28), rgba(31, 38, 26, .64) 58%, rgba(31, 38, 26, .74));
  }
  .hero h1 {
    font-size: clamp(31px, 9vw, 44px);
    line-height: 1.38;
  }
  .hero .lead {
    width: fit-content;
    max-width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(37, 31, 24, .38);
    font-size: 17px;
    line-height: 1.8;
  }
  .one-line-lead {
    white-space: normal;
  }
  .card-grid, .menu-grid { grid-template-columns: 1fr; }
  .cat-feature-grid,
  .cat-photo-gallery {
    grid-template-columns: 1fr;
  }
  .cat-photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .calendar-frame { min-height: 520px; }
  .map-embed { min-height: 340px; }
  .price-table th, .price-table td { display: block; width: 100%; }
  .price-system-layout {
    grid-template-columns: 1fr;
  }
  .price-system .section-head {
    text-align: left;
  }
  .charge-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .charge-list span {
    width: fit-content;
  }
  .insurance-banner {
    grid-template-columns: 92px 1fr;
  }
  .insurance-product {
    grid-column: 1 / -1;
  }
  .insurance-banner-copy {
    font-size: 20px;
  }
  .drink-layout,
  .dessert-grid {
    grid-template-columns: 1fr;
  }
  .about-story,
  .notice-grid,
  .support-box {
    grid-template-columns: 1fr;
  }
  .support-box dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .cold-drinks {
    width: 100%;
  }
  .rescue-flow article {
    grid-template-columns: 1fr;
  }
  .adoption-flow article {
    grid-template-columns: 1fr;
  }
  .home-banners {
    grid-template-columns: 1fr;
  }
  .home-banner.foster,
  .home-banner.wishlist {
    grid-column: auto;
    grid-row: auto;
  }
  .home-banner.foster {
    height: auto;
    min-height: 0;
  }
  .home-banner.foster img {
    width: 100%;
    height: auto;
  }
  .instagram-panel {
    grid-template-columns: 1fr;
  }
  .contact-page .card-grid,
  .contact-page .access-summary {
    grid-template-columns: 1fr;
  }
  .contact-page .page-title {
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.35;
  }
  .contact-page .page-hero .lead {
    font-size: 16px;
    line-height: 1.9;
  }
  .contact-page .section,
  .contact-page .page-hero {
    overflow-x: hidden;
  }
  .contact-page .card-grid,
  .contact-page .access-note,
  .contact-page .access-summary,
  .contact-page .embed-panel,
  .contact-shop-inner {
    width: 100%;
    max-width: 100%;
  }
  .contact-page .text-link {
    font-size: 16px;
    line-height: 1.6;
  }
  body.contact-page {
    max-width: 100vw;
    overflow-x: hidden;
  }
  .contact-page .page-hero > *,
  .contact-page .info-card,
  .contact-page .access-note,
  .contact-page .access-summary article,
  .contact-page .embed-panel {
    width: calc(100vw - 44px);
    max-width: calc(100vw - 44px);
  }
  .contact-page .card-grid,
  .contact-page .access-summary {
    justify-items: center;
  }
  .access-summary {
    grid-template-columns: 1fr;
  }
  .route-guide article {
    grid-template-columns: 1fr;
  }
}
