/*
Theme Name: Life is Beautiful with Dog
Author: Life is Beautiful
Description: Static design converted into a WordPress theme.
Version: 1.0.0
Text Domain: life-is-beautiful
*/

:root {
  --ink: #222;
  --text: #333;
  --muted: #746f67;
  --cream: #faf6ed;
  --sand: #ece6dc;
  --leaf: #d4dfbb;
  --olive: #517204;
  --peach: #e4af9b;
  --white: #fff;
  --shadow: 0 24px 70px rgba(77, 61, 43, 0.12);
  --radius-lg: 44px;
  --radius-md: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

p,
li,
dd,
input,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

button,
.site-nav,
.pill-button,
.puppy-button,
.news-button,
.adult-action-button,
.contact-submit,
.blog-back-button,
.footer-contact,
.footer-link-column a,
.footer-privacy {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

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

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

a,
button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(81, 114, 4, 0.36);
  outline-offset: 4px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 72px;
}

.lower-page {
  background: var(--cream);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(1350px, calc(100% - 90px));
  min-height: 72px;
  padding: 10.59px 0 10.61px;
  color: var(--white);
  transform: translateX(-50%);
  transition: width 0.25s ease, padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.lower-page .site-header {
  color: var(--ink);
  width: 100%;
  padding-inline: clamp(20px, 4vw, 45px);
  background: rgba(250, 246, 237, 0.96);
  box-shadow: 0 8px 28px rgba(54, 42, 28, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: grid;
  gap: 2px;
  flex: 0 0 168px;
  width: 168px;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.brand-main {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

.brand-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

.brand:hover,
.brand:focus-visible {
  color: var(--olive);
  transform: translateY(-2px);
}

.brand:focus-visible {
  outline: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.35vw, 32px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.575;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--olive);
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 41px;
  border: 1px solid var(--olive);
  border-radius: 44px;
  background: var(--leaf);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pill-button:hover,
.pill-button:focus-visible {
  border-color: var(--olive);
  background: #e5edcf;
  color: var(--olive);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(81, 114, 4, 0.2);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(640px, 70vw, 766px);
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-mobile-image {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
  padding-top: clamp(210px, 24vw, 285px);
}

.hero-kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--peach);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1,
.intro h2,
.section-title h2,
.company h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.45;
}

.hero h1 {
  color: var(--white);
}

.hero-content > p:last-child {
  width: min(430px, 100%);
  margin: 24px 0 0;
  font-size: 16px;
}

.intro,
.about,
.dogs,
.representative,
.flow,
.news,
.company {
  background: var(--cream);
}

.intro.section-pad {
  padding-bottom: clamp(44px, 5.5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 599px) minmax(320px, 541px);
  gap: 0;
  align-items: center;
  justify-content: center;
}

.intro .container {
  width: min(1140px, calc(100% - 40px));
}

.intro h2 {
  color: #000;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.45;
}

.intro h2 span {
  display: block;
}

.intro h2 span:last-child {
  white-space: nowrap;
}

.intro-deco {
  position: absolute;
  left: 26px;
  top: 19px;
  width: 336px;
  height: 333px;
  object-fit: cover;
  object-position: center;
  opacity: 0.44;
  pointer-events: none;
}

.intro-copy p:not(.section-label) {
  margin: 24px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.intro-photo {
  margin: 0;
  position: relative;
  width: 541px;
  height: 419px;
  max-width: 100%;
  overflow: visible;
}

.intro-photo::before {
  content: none;
}

.intro-photo img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.leaf {
  position: absolute;
  width: clamp(72px, 12vw, 154px);
  aspect-ratio: 1;
  border-radius: 54% 46% 62% 38%;
  background: var(--leaf);
  opacity: 0.9;
}

.leaf-left {
  left: -42px;
  bottom: 18%;
}

.leaf-right {
  right: -44px;
  top: 12%;
}

.news-card h3 {
  margin: 10px 0 8px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

.about-detail-section {
  padding-block: clamp(56px, 7vw, 88px) clamp(110px, 11vw, 157px);
  background: var(--cream);
  overflow: visible;
}

.about-leaf-deco {
  position: absolute;
  top: -42px;
  left: 0;
  width: min(34vw, 274px);
  height: 460px;
  object-fit: cover;
  object-position: left top;
  pointer-events: none;
  opacity: 0.9;
}

.about-detail {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(1140px, calc(100% - 40px));
}

.philosophy-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 1016px);
  margin-left: min(10.8vw, 124px);
  padding: 60px 99px;
  border-radius: 88px;
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 690px) auto;
  gap: 64px;
  align-items: start;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px 56px;
  padding-right: 0;
}

.philosophy-item {
  text-align: center;
}

.philosophy-item img {
  width: min(100%, 360px);
  height: 245px;
  margin-inline: auto;
  object-fit: contain;
}

.philosophy-item h3 {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 8px auto 0;
  color: var(--text);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.philosophy-item h3::after {
  content: "";
  display: block;
  width: min(191px, 90%);
  height: 1px;
  margin: 7px auto 0;
  background: var(--peach);
}

.philosophy-item p {
  display: block;
  width: max-content;
  max-width: none;
  margin: 8px 0 0;
  margin-inline: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #000;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.about-heading {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  writing-mode: horizontal-tb;
}

.about-heading p {
  margin: 0;
  color: var(--peach);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: none;
}

.about-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.about-heading-philosophy {
  position: static;
  align-self: start;
}

.about-links-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1016px);
  margin-top: -137px;
  justify-self: start;
  padding: 205px 80px 80px;
  border-radius: 88px;
  background: var(--sand);
  display: grid;
  grid-template-columns: minmax(0, 728px) auto;
  gap: 48px;
  align-items: start;
}

.about-links-grid {
  display: grid;
  grid-template-columns: minmax(0, 384px) minmax(0, 344px);
  gap: 7px 16px;
  width: 100%;
  align-items: start;
}

.about-link-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  text-align: center;
  overflow: hidden;
  contain: paint;
  transition: filter 0.22s ease, transform 0.22s ease;
}

.about-link-card img {
  display: block;
  position: absolute;
  max-width: none;
  object-fit: fill;
  transition: transform 0.28s ease;
}

.about-link-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  height: 257px;
}

.about-link-card:nth-child(1) img {
  width: 174.47%;
  height: 326.09%;
  left: -36.03%;
  top: -110.14%;
}

.about-link-card:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  width: 328px;
  height: 248px;
  margin-top: 25px;
}

.about-link-card:nth-child(2) img {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
}

.about-link-card:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
  width: 330px;
  height: 278px;
}

.about-link-card:nth-child(3) img {
  width: 175.04%;
  height: 260.12%;
  left: -37.12%;
  top: -80.54%;
}

.about-link-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
  width: 344px;
  height: 247px;
}

.about-link-card:nth-child(4) img {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: contain;
}

.about-link-card strong,
.about-card-arrow {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.about-link-card::after {
  content: "";
  position: absolute;
  inset: 15%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.about-link-card:hover,
.about-link-card:focus-visible {
  filter: drop-shadow(0 12px 20px rgba(77, 61, 43, 0.1));
  transform: translateY(-4px);
}

.about-link-card:hover img,
.about-link-card:focus-visible img {
  transform: scale(1.025);
}

.about-link-card:hover::after,
.about-link-card:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.about-heading-detail {
  position: static;
  align-self: start;
  margin-top: 0;
}

.section-title {
  width: min(700px, 100%);
  margin-bottom: 42px;
}

.section-title p:not(.section-label) {
  margin: 14px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.puppy-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 45px);
  align-items: end;
  margin-top: 20px;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.04));
}

.puppy-gallery img {
  width: 100%;
  aspect-ratio: 251 / 352;
  object-fit: cover;
}

.puppy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 172px;
  min-height: 46px;
  padding: 10px 34px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.puppy-button span {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.puppy-button:hover,
.puppy-button:focus-visible {
  background: #e99f82;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(228, 175, 155, 0.34);
}

.puppy-button:hover span,
.puppy-button:focus-visible span,
.news-button:hover span,
.news-button:focus-visible span,
.footer-link-column a:hover span,
.footer-link-column a:focus-visible span {
  transform: translateX(4px);
}

.representative {
  overflow: visible;
}

.representative-shell {
  position: relative;
  padding: clamp(72px, 11vw, 159px) clamp(28px, 6vw, 62px);
  border-radius: clamp(36px, 7vw, 88px);
  background: var(--white);
}

.paw-deco {
  position: absolute;
  top: -238px;
  left: -82px;
  width: 257px;
  height: 498px;
  object-fit: cover;
  object-position: left top;
  pointer-events: none;
}

.representative-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px clamp(28px, 5vw, 72px);
  align-items: end;
}

.representative-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.representative-card img {
  width: min(288px, 100%);
  aspect-ratio: 1080 / 1350;
  object-fit: contain;
}

.representative-card h3 {
  width: max-content;
  max-width: none;
  margin: 4px auto 0;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.55;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.representative-card p {
  width: max-content;
  max-width: none;
  margin: 8px auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

.representative-heading {
  align-self: center;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  min-height: 393px;
  writing-mode: horizontal-tb;
}

.representative-heading p {
  margin: 0;
  color: var(--peach);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.representative-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

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

.news-card {
  padding: 22px;
  border-radius: 4px;
  box-shadow: 0 12px 38px rgba(77, 61, 43, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.news-card:hover,
.news-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(77, 61, 43, 0.12);
}

.news-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-card-image,
.blog-list-image {
  display: block;
  width: min(100%, 343px);
  height: 242px;
  max-width: 343px;
  max-height: 242px;
  margin-right: auto;
  margin-left: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 18px;
}

.image-placeholder {
  display: grid;
  min-height: 180px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  background: #e9e9e9;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.news-card time {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.blog-news-type {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.blog-news-subtitle,
.blog-news-excerpt {
  margin: 8px 0 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.blog-news-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 16px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.center {
  margin-top: 36px;
  text-align: center;
}

.news-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 218px;
  min-height: 46px;
  padding: 10px 34px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.news-button span {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.news-button:hover,
.news-button:focus-visible {
  background: #e99f82;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(228, 175, 155, 0.34);
}

.company {
  padding-block: clamp(70px, 8vw, 78px);
}

.company-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 24px;
}

.company-lead {
  margin: 16px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.9;
}

.company dl {
  display: grid;
  gap: 0;
  margin: 8px 0 0;
  padding-top: 4px;
}

.company dl div {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr;
  gap: 12px;
  min-height: 34px;
  padding: 4px 0;
  border-bottom: 1px solid var(--leaf);
}

.company dt {
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.company dd {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

.company-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(105, 127, 54, 0.45);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.company-link:hover,
.company-link:focus-visible {
  color: var(--green);
  text-decoration-color: var(--green);
}

.company-image {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 88px;
}

.kennel-hero {
  position: relative;
  min-height: 735px;
  margin-top: 0;
  overflow: hidden;
  background: var(--cream);
}

.kennel-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)), url("assets/kennel-hero-20260723.png") center / cover no-repeat;
}

.kennel-hero-content {
  position: relative;
  z-index: 1;
  width: min(1028px, calc(100% - 40px));
  padding-top: clamp(72px, 7vw, 100px);
  padding-bottom: clamp(72px, 7vw, 100px);
}

.kennel-hero h1,
.kennel-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.45;
}

.kennel-text {
  margin-top: 40px;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
}

.kennel-text p {
  margin: 0;
}

.kennel-text p + p {
  margin-top: 28px;
}

.kennel-section {
  position: relative;
  padding: clamp(72px, 8vw, 100px) 0;
  overflow: hidden;
  background: var(--cream);
  scroll-margin-top: 92px;
}

.kennel-copy {
  width: min(1028px, calc(100% - 40px));
}

.kennel-section-deco {
  overflow: visible;
}

.kennel-paw-ring {
  position: absolute;
  top: 42px;
  right: max(80px, calc((100vw - 1120px) / 2 - 42px));
  width: min(310px, 28vw);
  opacity: 0.3;
  pointer-events: none;
}

.kennel-split {
  display: grid;
  width: min(1028px, calc(100% - 40px));
  grid-template-columns: minmax(0, 544px) minmax(280px, 1fr);
  gap: 32px;
  align-items: center;
}

.kennel-split .kennel-copy {
  width: 100%;
}

.kennel-image {
  margin: 0;
  overflow: hidden;
  border-radius: 88px;
}

.kennel-image img {
  width: 100%;
  aspect-ratio: 552 / 376;
  object-fit: cover;
}

.therapy-on-adult {
  padding: 100px 0;
}

.therapy-on-adult .kennel-split {
  width: min(1140px, calc(100% - 40px));
  grid-template-columns: minmax(0, 544px) 552px;
}

.therapy-on-adult .kennel-copy h2 {
  font-size: 32px;
  line-height: 1.45;
}

.therapy-on-adult .kennel-text {
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.75;
}

.therapy-on-adult .kennel-text p + p {
  margin-top: 0;
}

.therapy-on-adult .kennel-image {
  width: 552px;
  border-radius: 88px;
}

.therapy-on-adult .kennel-image img {
  height: 451px;
  aspect-ratio: 552 / 451;
}

.adult-listing {
  margin-top: 72px;
  padding: clamp(72px, 7vw, 100px) 0;
  background: var(--cream);
}

.adult-listing-inner {
  width: min(1259px, calc(100% - 40px));
}

.adult-listing h1 {
  margin: 0 0 48px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3vw, 32px);
  line-height: 1.45;
  text-align: center;
}

.adult-intro {
  width: min(920px, 100%);
  margin: -8px auto 64px;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.45vw, 16px);
  line-height: 1.9;
}

.adult-intro p {
  margin: 0;
}

.adult-intro p + p {
  margin-top: 22px;
}

.adult-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
  gap: 24px;
}

.adult-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 676px;
  padding: 23px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.adult-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(77, 61, 43, 0.1);
}

.parent-page .adult-card {
  min-height: 592px;
}

.adult-image-placeholder {
  display: grid;
  width: min(100%, 343px);
  height: 242px;
  max-width: 343px;
  max-height: 242px;
  place-items: center;
  margin-inline: auto;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: #e9e9e9;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.dog-profile-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.adult-card-image,
.adult-card img.wp-post-image {
  display: block;
  width: min(100%, 343px);
  height: 242px;
  max-width: 343px;
  max-height: 242px;
  margin-inline: auto;
  border-radius: 4px;
  object-fit: cover;
  object-position: center;
}

.adult-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 24px;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.adult-card-copy dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.parent-page .adult-card-copy dl {
  margin-bottom: 12px;
}

.parent-profile-card .adult-card-copy {
  gap: 10px;
}

.parent-dog-name {
  margin: 0;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.45;
}

.adult-card-copy dl div {
  display: flex;
  align-items: baseline;
}

.adult-card-copy dt {
  margin: 0;
  font-weight: 500;
}

.adult-card-copy dd {
  margin: 0;
  font-weight: 400;
}

.adult-card-copy dt::after {
  content: "：";
  font-weight: 400;
}

.adult-card-copy p {
  margin: 18px 0 0;
  font-weight: 400;
}

.adult-card-copy .dog-profile-price {
  margin-top: auto;
  padding-top: 22px;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.35;
}

.adult-card-copy .dog-profile-price span {
  font-weight: 500;
}

.dog-profile-personality {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
}

.dog-detail-inner {
  width: min(860px, calc(100% - 40px));
}

.dog-detail-card {
  min-height: 0;
  max-width: 760px;
  margin-inline: auto;
}

.dog-detail-card .adult-card-image,
.dog-detail-card .adult-image-placeholder {
  width: min(100%, 343px);
  height: 242px;
  max-width: 343px;
  max-height: 242px;
}

.dog-detail-card .dog-profile-personality {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.dog-detail-content {
  margin-top: 24px;
}

.dog-detail-content p {
  margin: 0;
}

.dog-detail-content p + p {
  margin-top: 1em;
}

.dog-detail-card .dog-profile-price {
  margin-top: 34px;
}

.parent-dog-personality-title {
  margin: 24px 0 0;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
}

.lbd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 28px;
  color: #777;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.lbd-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.lbd-breadcrumb a:hover,
.lbd-breadcrumb a:focus-visible {
  color: var(--peach);
}

.dog-empty-message {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.adult-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 80px;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
}

.adult-pagination a,
.adult-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 34px;
  color: inherit;
  line-height: 1;
  text-align: center;
}

.adult-pagination a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.adult-pagination a:hover,
.adult-pagination a:focus-visible,
.adult-pagination a.is-current {
  color: var(--peach);
}

.adult-pagination a:hover,
.adult-pagination a:focus-visible {
  transform: translateY(-2px);
}

.adult-pagination a.is-current {
  position: relative;
}

.adult-pagination a.is-current::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 24px;
  height: 1px;
  background: var(--peach);
  transform: translateX(-50%);
}

.adult-pagination-next {
  font-size: 30px;
  line-height: 1;
}

.adult-actions {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
}

.adult-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 258px;
  min-height: 46px;
  padding: 10px 48px;
  border-radius: 88px;
  background: var(--peach);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.adult-action-button span {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.adult-action-button:hover,
.adult-action-button:focus-visible {
  background: #e99f82;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(228, 175, 155, 0.34);
}

.adult-action-button:hover span,
.adult-action-button:focus-visible span {
  transform: translateX(4px);
}

.contact-section {
  margin-top: 72px;
  padding: clamp(72px, 7vw, 100px) 20px;
  overflow: hidden;
  background: var(--cream);
}

.contact-inner {
  width: min(830px, 100%);
  margin: 0 auto;
}

.contact-title {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 0 auto 28px;
}

.contact-title h1 {
  margin: 0;
  color: var(--text);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.45;
}

.contact-illustration {
  position: absolute;
  z-index: 1;
  top: -40px;
  left: calc(100% + 24px);
  width: 281px;
  height: 157px;
  overflow: visible;
  pointer-events: none;
}

.contact-illustration img {
  position: absolute;
  top: -119.66%;
  left: -23.97%;
  width: 148.76%;
  max-width: none;
  height: 331.7%;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 60px 115px 67px;
  border-radius: 30px;
  background: var(--white);
}

.contact-field {
  display: grid;
  gap: 5px;
}

.contact-field label {
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
}

.required {
  display: inline-flex;
  min-width: 34px;
  min-height: 22px;
  margin-left: 6px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--peach);
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  vertical-align: middle;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  outline: none;
  background: #f4f4f5;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input {
  height: 52px;
  padding: 0 20px;
}

.contact-field textarea {
  min-height: 200px;
  padding: 14px 20px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #a8a8a8;
  opacity: 1;
}

.contact-field input:hover,
.contact-field textarea:hover {
  border-color: #d3c9c3;
  background: #f8f8f8;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--peach);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(228, 175, 155, 0.22);
}

.contact-submit {
  display: inline-flex;
  width: 100%;
  min-height: 60px;
  margin-top: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 100px;
  background: var(--peach);
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #e99f82;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(228, 175, 155, 0.34);
}

.contact-status {
  min-height: 24px;
  margin: -4px 0 -28px;
  color: #667a38;
  font-size: 14px;
  text-align: center;
}

.voices-section {
  margin-top: 72px;
  padding: clamp(72px, 7vw, 100px) 0;
  background: var(--cream);
}

.voices-inner {
  width: min(1140px, calc(100% - 40px));
}

.voices-section h1 {
  margin: 0 0 48px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.voices-list {
  display: grid;
  gap: 24px;
}

.voice-card {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  min-height: 250px;
  padding: 20px 33px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.voice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(77, 61, 43, 0.1);
}

.voice-image {
  display: block;
  width: 100%;
  min-height: 210px;
  height: 210px;
  border-radius: 8px;
  background: #d9d9d9;
}

.voice-image-img {
  display: block;
  width: 100%;
  height: 210px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.voice-copy {
  align-self: center;
  color: var(--ink);
}

.voice-copy h2 {
  margin: 0 0 34px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.voice-copy p {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.voice-copy p + p {
  margin-top: 0;
}

.voices-section .adult-pagination {
  margin-top: 80px;
}

.faq-section {
  margin-top: 72px;
  padding: clamp(72px, 7vw, 100px) 0 clamp(90px, 8vw, 120px);
  background: var(--cream);
}

.faq-inner {
  width: min(1030px, calc(100% - 40px));
}

.faq-section h1 {
  margin: 0 0 48px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

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

.faq-item {
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.faq-question {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 24px 30px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-question:hover,
.faq-question:focus-visible {
  background: rgba(212, 223, 187, 0.38);
}

.faq-number {
  display: inline-block;
  min-width: 48px;
  color: var(--peach);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

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

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--leaf);
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 30px 26px 89px;
}

.faq-answer p {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
}

.privacy-section {
  margin-top: 72px;
  padding: clamp(72px, 7vw, 100px) 0 clamp(92px, 9vw, 128px);
  background: var(--cream);
}

.privacy-inner {
  width: min(1036px, calc(100% - 40px));
}

.privacy-section h1 {
  margin: 0 0 48px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.privacy-content {
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.9;
}

.privacy-content p {
  margin: 0;
}

.privacy-block {
  margin-top: 44px;
}

.privacy-block h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.4;
}

.privacy-block ul {
  margin: 0;
  padding-left: 1.2em;
}

.privacy-block li {
  margin: 0;
}

.animal-registration-section {
  margin-top: 72px;
  padding: clamp(72px, 7vw, 100px) 0 clamp(92px, 9vw, 128px);
  background: var(--cream);
}

.animal-registration-inner {
  width: min(1036px, calc(100% - 40px));
}

.animal-registration-section h1 {
  margin: 0 0 48px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.animal-registration-list {
  display: grid;
  gap: 34px;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
}

.animal-registration-item h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
}

.animal-registration-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
}

.blog-listing {
  margin-top: 72px;
  padding: clamp(72px, 7vw, 100px) 0;
  background: var(--cream);
}

.blog-listing-inner {
  width: min(1131px, calc(100% - 40px));
}

.blog-listing h1 {
  margin: 0 0 48px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1123px, 100%);
  margin: 0 auto;
}

.blog-list-card {
  min-width: 0;
}

.blog-list-card a {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.04);
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-list-card a:hover,
.blog-list-card a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(77, 61, 43, 0.1);
}

.blog-image-placeholder {
  display: grid;
  min-height: 183px;
  place-items: center;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  background: #e9e9e9;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.blog-list-card h2 {
  margin: 17px 0 0;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.blog-list-card time {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.blog-list-card .blog-news-more {
  margin-top: auto;
  transform: translateY(14px);
}

.blog-listing .adult-pagination {
  margin-top: 80px;
}

.blog-detail {
  margin-top: 72px;
  padding: clamp(72px, 7vw, 100px) 0 clamp(72px, 7vw, 100px);
  background: var(--cream);
}

.blog-detail-inner {
  width: min(910px, calc(100% - 40px));
}

.blog-detail-header {
  margin-bottom: 54px;
}

.blog-detail-header h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 3.1vw, 36px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.blog-detail-header p {
  margin: 15px 0 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.blog-detail-type {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.blog-detail-header .blog-detail-subtitle {
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
}

.blog-detail-header .blog-detail-date {
  color: var(--text);
}

.blog-detail-image {
  width: 100%;
  margin: 0;
}

.blog-detail-image img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.blog-detail-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.blog-article-section {
  width: 100%;
}

.blog-article-section h2 {
  margin: 0 0 20px;
  padding: 8px 20px;
  border-radius: 5px;
  background: var(--leaf);
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.55;
}

.blog-article-body {
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.blog-article-body p {
  margin: 0;
}

.blog-article-body p + p,
.blog-article-body ul + p,
.blog-article-body p + ul {
  margin-top: 0;
}

.blog-article-body h3 {
  margin: 0;
  color: var(--text);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.blog-article-body ul {
  margin: 0;
  padding-left: 1.5em;
}

.blog-article-body li {
  margin: 0;
}

.blog-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 276px;
  min-height: 54px;
  padding: 15px 50px;
  border-radius: 44px;
  background: var(--peach);
  color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(146, 99, 75, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.blog-back-button:hover,
.blog-back-button:focus-visible {
  transform: translateY(-3px);
  background: #dc9e88;
  box-shadow: 0 14px 26px rgba(146, 99, 75, 0.18);
}

.blog-detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.blog-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid var(--peach);
  border-radius: 999px;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.blog-nav-link:hover,
.blog-nav-link:focus-visible {
  transform: translateY(-3px);
  background: #fff6f1;
}

.flow-section {
  margin-top: 72px;
  padding: clamp(72px, 7vw, 100px) 0;
  background: var(--cream);
}

.flow-inner {
  width: min(1140px, calc(100% - 40px));
}

.flow-inner h1 {
  margin: 0 0 48px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.flow-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.04));
}

.flow-card {
  display: grid;
  grid-template-columns: minmax(0, 732px) 300px;
  gap: 42px;
  align-items: center;
  min-height: 228px;
  padding: 20px 33px;
  border-radius: 8px;
  background: var(--white);
}

.flow-card-reverse {
  grid-template-columns: 300px minmax(0, 732px);
}

.flow-copy {
  min-width: 0;
}

.flow-copy h2 {
  display: flex;
  gap: 24px;
  align-items: baseline;
  margin: 0 0 34px;
  color: var(--ink);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.425;
  letter-spacing: 0;
}

.flow-copy h2 span {
  color: var(--peach);
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.flow-copy p {
  margin: 0;
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.flow-copy p + p {
  margin-top: 0;
}

.flow-visual {
  position: relative;
  width: 300px;
  height: 188px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fffdf8;
}

.flow-visual img {
  position: absolute;
  top: -36%;
  left: -8.5%;
  width: 317.54%;
  max-width: none;
  height: 169.16%;
  object-fit: fill;
}

.flow-visual-2 img {
  top: -34.58%;
  left: -108.77%;
}

.flow-visual-3 img {
  top: -37.71%;
  left: -214.78%;
}

.flow-visual-4 img {
  top: -32.94%;
  left: -9.5%;
}

.flow-visual-5 img {
  top: -34.69%;
  left: -112.55%;
}

.flow-visual-6 img {
  top: -34.62%;
  left: -217.52%;
}

.footer {
  padding: clamp(56px, 7vw, 71px) 0;
  background: var(--cream);
}

.footer .container {
  width: min(1240px, calc(100% - 40px));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 330px) minmax(280px, 408px) minmax(280px, 408px);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}

.footer-brand-main {
  margin: 0;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 1.2;
}

.footer-brand-sub {
  margin: 6px 0 42px;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  line-height: 1.6;
}

.footer-contact {
  display: grid;
  place-items: center;
  gap: 8px;
  width: min(100%, 330px);
  min-height: 122px;
  border-radius: 24px;
  background: var(--peach);
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-contact:hover,
.footer-contact:focus-visible {
  background: #e99f82;
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(228, 175, 155, 0.28);
}

.footer-contact-icon {
  position: relative;
  width: 28px;
  height: 22px;
  border: 4px solid currentColor;
  border-radius: 3px;
}

.footer-contact-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -10px;
  width: 10px;
  height: 10px;
  border-left: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  background: var(--peach);
  transition: background 0.2s ease;
}

.footer-contact:hover .footer-contact-icon::after,
.footer-contact:focus-visible .footer-contact-icon::after {
  background: #e99f82;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social-line {
  width: 40px;
}

.footer-social-instagram-1,
.footer-social-instagram-2 {
  width: 38px;
}

.footer-social-tiktok {
  width: 31px;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  opacity: 0.72;
  transform: translateY(-3px);
}

.footer-social span {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("assets/social-icons-custom.png");
  background-repeat: no-repeat;
  background-size: 173.5px 36px;
  transition: transform 0.2s ease;
}

.footer-social-line span {
  background-position: 0 0;
}

.footer-social-instagram-1 span {
  background-position: -48px 0;
}

.footer-social-instagram-2 span {
  background-position: -95px 0;
}

.footer-social-tiktok span {
  background-position: -142.5px 0;
}

.footer-social a:hover span,
.footer-social a:focus-visible span {
  transform: scale(0.96);
}

.footer-link-group {
  display: grid;
  gap: 65px;
}

.footer-link-column {
  display: grid;
  gap: 0;
}

.footer-link-column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 41px;
  border-bottom: 1px solid var(--leaf);
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease, padding 0.2s ease, border-color 0.2s ease;
}

.footer-link-column span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.footer-link-column a:hover,
.footer-link-column a:focus-visible {
  padding-left: 8px;
  border-bottom-color: var(--olive);
  color: var(--olive);
}

.footer-privacy {
  justify-self: end;
  color: var(--text);
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-privacy:hover,
.footer-privacy:focus-visible {
  color: var(--olive);
  opacity: 0.82;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 821px) {
  .hero-content {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (max-width: 1120px) {
  .site-header {
    width: calc(100% - 32px);
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    width: 100%;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 8px;
    border-bottom: 1px solid rgba(212, 223, 187, 0.7);
  }

  .nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.is-open .nav-toggle {
    background: rgba(212, 223, 187, 0.45);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
  }

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

  .representative-heading {
    grid-column: 1 / -1;
    grid-row: 1;
    flex-direction: column;
    min-height: auto;
    align-items: flex-start;
    justify-content: flex-start;
    writing-mode: horizontal-tb;
  }

  .representative-heading p,
  .representative-heading h2 {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
  }

  .philosophy-panel {
    margin-left: 0;
  }

  .about-links-grid {
    width: min(660px, calc(100% - 120px));
  }
}

@media (max-width: 1220px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-copy,
  .intro-photo {
    justify-self: center;
  }

  .intro-copy {
    width: min(100%, 599px);
  }

  .philosophy-panel {
    margin-left: 0;
  }

  .philosophy-panel,
  .about-links-panel {
    gap: 32px;
  }

  .philosophy-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: clamp(42px, 6vw, 72px);
  }

  .about-links-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: clamp(42px, 6vw, 72px);
  }

  .about-links-panel {
    justify-self: center;
  }
}

@media (max-width: 980px) {
  .philosophy-panel,
  .about-links-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-inline: 42px;
  }

  .about-heading {
    position: static;
    order: -1;
    flex-direction: column;
    margin-bottom: 28px;
    align-items: flex-start;
    writing-mode: horizontal-tb;
  }

  .about-heading p,
  .about-heading h2 {
    writing-mode: horizontal-tb;
    transform: none;
    text-orientation: mixed;
  }

  .about-heading h2 {
    font-size: 28px;
  }

  .about-links-panel {
    margin-top: 36px;
    padding-top: 56px;
  }

  .about-links-grid {
    width: min(100%, 744px);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 680px);
  }

  .hero {
    min-height: 0;
    background: #2b1d10;
  }

  .hero-image,
  .hero-overlay {
    display: none;
  }

  .hero-mobile-image {
    display: block;
    width: 100%;
    height: min(100svh, 760px);
    min-height: 620px;
    object-fit: cover;
    object-position: center top;
  }

  .hero-content {
    display: none;
  }

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

  .kennel-split {
    grid-template-columns: 1fr;
  }

  .therapy-on-adult .kennel-split {
    width: min(100% - 32px, 680px);
    grid-template-columns: 1fr;
  }

  .kennel-image {
    width: min(100%, 552px);
    border-radius: 56px;
  }

  .therapy-on-adult .kennel-image {
    width: min(100%, 552px);
  }

  .therapy-on-adult .kennel-image img {
    width: 100%;
    height: auto;
  }

  .intro h2 span:last-child {
    white-space: normal;
  }

  .intro-photo {
    width: min(100%, 541px);
    height: auto;
    aspect-ratio: 541 / 419;
  }

  .philosophy-grid,
  .puppy-gallery,
  .news-grid,
  .adult-card-grid,
  .blog-card-grid,
  .representative-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .representative-shell {
    overflow: hidden;
  }

  .paw-deco {
    top: -190px;
    left: -118px;
    opacity: 0.7;
  }

  .intro-deco {
    width: 220px;
    height: 220px;
    left: -30px;
    opacity: 0.32;
  }

  .about-leaf-deco {
    width: 180px;
    height: 300px;
    opacity: 0.55;
  }

  .philosophy-panel,
  .about-links-panel {
    border-radius: 36px;
    width: 100%;
    padding-inline: 28px;
  }

  .philosophy-grid {
    padding-right: 0;
  }

  .about-heading {
    position: static;
    order: -1;
    margin-bottom: 28px;
    align-items: flex-start;
    writing-mode: horizontal-tb;
  }

  .philosophy-panel,
  .about-links-panel {
    display: flex;
    flex-direction: column;
  }

  .about-links-panel {
    margin-top: 36px;
    padding-top: 48px;
  }

  .about-links-grid {
    width: 100%;
    gap: 18px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .about-link-card:nth-child(1),
  .about-link-card:nth-child(2),
  .about-link-card:nth-child(3),
  .about-link-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    width: min(100%, 384px);
    height: auto;
    margin-top: 0;
  }

  .about-link-card:nth-child(1) {
    aspect-ratio: 384 / 257;
  }

  .about-link-card:nth-child(2) {
    aspect-ratio: 328 / 248;
  }

  .about-link-card:nth-child(3) {
    aspect-ratio: 330 / 278;
  }

  .about-link-card:nth-child(4) {
    aspect-ratio: 344 / 247;
  }

  .flow-card,
  .flow-card-reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flow-card-reverse .flow-visual {
    order: 2;
  }

  .flow-visual {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: calc(100% - 28px);
    padding-inline: 0;
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    width: 100%;
    padding-inline: 14px;
  }

  .brand-main {
    font-size: 17px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .philosophy-grid,
  .about-links-grid,
  .puppy-gallery,
  .news-grid,
  .adult-card-grid,
  .representative-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-item img {
    height: 190px;
  }

  .about-link-card {
    min-height: 138px;
  }

  .company dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .kennel-hero {
    min-height: auto;
  }

  .kennel-hero-content,
  .kennel-copy {
    width: min(100% - 32px, 1028px);
  }

  .kennel-text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.85;
  }

  .kennel-text p + p {
    margin-top: 22px;
  }

  .kennel-paw-ring {
    top: 34px;
    right: -72px;
    width: 210px;
  }

  .kennel-section-deco {
    overflow: hidden;
  }

  .kennel-image {
    border-radius: 36px;
  }

  .therapy-on-adult .kennel-image {
    border-radius: 36px;
  }

  .adult-listing-inner {
    width: min(100% - 32px, 1259px);
  }

  .adult-listing h1 {
    margin-bottom: 32px;
  }

  .adult-intro {
    margin-bottom: 44px;
    font-size: 14px;
    line-height: 1.85;
  }

  .adult-intro p + p {
    margin-top: 18px;
  }

  .adult-card {
    min-height: auto;
    padding: 18px;
  }

  .adult-image-placeholder {
    min-height: 210px;
  }

  .adult-card-copy {
    font-size: 14px;
    line-height: 1.8;
  }

  .adult-pagination {
    gap: 18px;
    margin-top: 48px;
    font-size: 16px;
  }

  .adult-actions {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-top: 48px;
  }

  .adult-action-button {
    width: min(100%, 258px);
    padding-inline: 28px;
  }

  .contact-section {
    padding: 64px 16px;
  }

  .contact-title {
    margin-bottom: 28px;
  }

  .contact-illustration {
    top: -23px;
    left: calc(100% - 8px);
    width: 132px;
    height: 88px;
  }

  .contact-form {
    gap: 18px;
    padding: 36px 20px 44px;
    border-radius: 20px;
  }

  .contact-field label,
  .contact-field input,
  .contact-field textarea {
    font-size: 14px;
  }

  .contact-field input {
    height: 50px;
    padding-inline: 14px;
  }

  .contact-field textarea {
    min-height: 170px;
    padding: 13px 14px;
  }

  .contact-submit {
    min-height: 54px;
    font-size: 16px;
  }

  .contact-status {
    margin-bottom: -20px;
    font-size: 13px;
  }

  .voices-inner {
    width: min(100% - 32px, 1140px);
  }

  .voices-section h1 {
    margin-bottom: 32px;
  }

  .voice-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px;
  }

  .voice-image {
    min-height: 210px;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .voice-image-img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .voice-copy h2 {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .voice-copy p {
    font-size: 14px;
    line-height: 1.8;
  }

  .voice-copy br {
    display: none;
  }

  .voices-section .adult-pagination {
    margin-top: 48px;
  }

  .faq-inner {
    width: min(100% - 32px, 1030px);
  }

  .faq-section h1 {
    margin-bottom: 32px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-question {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .faq-number {
    min-width: 40px;
    font-size: 16px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.85;
  }

  .privacy-inner {
    width: min(100% - 32px, 1036px);
  }

  .privacy-section h1 {
    margin-bottom: 32px;
  }

  .privacy-content {
    font-size: 14px;
    line-height: 2.15;
  }

  .privacy-block {
    margin-top: 32px;
  }

  .privacy-block h2 {
    margin-bottom: 6px;
    font-size: 15px;
    line-height: 1.8;
  }

  .animal-registration-inner {
    width: min(100% - 32px, 1036px);
  }

  .animal-registration-section h1 {
    margin-bottom: 32px;
  }

  .animal-registration-list {
    gap: 28px;
  }

  .animal-registration-item h2 {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.8;
  }

  .animal-registration-item p {
    font-size: 14px;
    line-height: 1.9;
  }

  .blog-listing-inner {
    width: min(100% - 32px, 1131px);
  }

  .blog-listing h1 {
    margin-bottom: 32px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-card {
    padding: 0;
  }

  .blog-list-card a {
    padding: 18px;
  }

  .blog-image-placeholder {
    min-height: 190px;
  }

  .blog-list-card h2 {
    margin-top: 14px;
    font-size: 18px;
  }

  .blog-list-card time {
    font-size: 14px;
  }

  .blog-listing .adult-pagination {
    margin-top: 48px;
  }

  .flow-inner {
    width: min(100% - 32px, 1140px);
  }

  .flow-inner h1 {
    margin-bottom: 32px;
  }

  .flow-list {
    gap: 18px;
  }

  .flow-card {
    min-height: auto;
    padding: 18px;
  }

  .flow-copy h2 {
    gap: 16px;
    margin-bottom: 18px;
    font-size: 18px;
  }

  .flow-copy h2 span {
    font-size: 26px;
  }

  .flow-copy p {
    font-size: 14px;
    line-height: 1.8;
  }

  .flow-copy br {
    display: none;
  }

  .flow-visual {
    width: min(100%, 300px);
    height: auto;
    aspect-ratio: 300 / 188;
  }

  .blog-detail-inner {
    width: min(100% - 32px, 910px);
  }

  .blog-detail-header {
    margin-bottom: 36px;
  }

  .blog-detail-header p {
    margin-top: 10px;
    font-size: 14px;
  }

  .blog-detail-content {
    gap: 48px;
  }

  .blog-article-section h2 {
    padding: 10px 14px;
  }

  .blog-article-body {
    font-size: 14px;
    line-height: 1.8;
  }

  .blog-article-body br {
    display: none;
  }

  .blog-back-button {
    width: min(100%, 276px);
    min-width: 0;
    padding-right: 24px;
    padding-left: 24px;
  }
}
