/* ============================================================
   SOLEIL Premium Pet Shop – Main CSS
   Design System v2
   ============================================================ */

/* Google Fonts loaded via functions.php */

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  --deep:  #2C2420;
  --dark:  #7A4A36;
  --brand: #C4714A;
  --light: #E8A882;
  --cream: #F7EFE5;
  --white: #FDFAF6;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Noto Sans JP', sans-serif;
  --border: 0.5px solid #EDD5BE;
  --radius: 18px;
  --transition: 0.25s ease;
}

/* ============================================================
   2. CSS Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* Page fade-in animation – CSS only, no JS dependency */
@keyframes soleil-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 2;
  color: var(--deep);
  background: var(--white);
  overflow-x: hidden;
  animation: soleil-fade-in 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* Page exit – JS adds this class before navigating */
body.page-leaving {
  animation: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Single Post ── */
.single-post__title {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 28px);
  margin: 40px 0 12px;
  line-height: 1.5;
}

.single-post__date {
  font-size: 11px;
  color: var(--dark);
  letter-spacing: .06em;
}

.single-post__thumbnail {
  margin: 24px 0;
  border-radius: 16px;
  overflow: hidden;
}

.single-post__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.single-post__content {
  margin-top: 24px;
}

/* ============================================================
   5. Layout
   ============================================================ */
.page-content {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   6. Navigation
   ============================================================ */
/* ============================================================
   Nav – PC
============================================================ */
nav#mainNav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(253, 250, 246, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border);
  display: flex;
  align-items: stretch;
  padding: 0 40px;
  gap: 32px;
  transition: box-shadow var(--transition);
}

nav#mainNav.scrolled {
  box-shadow: 0 2px 24px rgba(44, 36, 32, 0.08);
}

/* ── Logo ── */
.nav-logo {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  gap: 2px;
}

.nav-logo__img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-logo .logo-main {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--deep);
}

.nav-logo .logo-sub {
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--brand);
  text-transform: uppercase;
}

/* ── PC nav links ── */
.nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  gap: 0;
  flex: 1;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 14px;
  height: 100%;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--deep);
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  height: 0.5px;
  background: var(--brand);
  width: 0;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after { width: calc(100% - 28px); }

/* ── PC CTA buttons ── */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #06C755;
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.btn-line:hover { background: #059143; transform: translateY(-1px); }

.btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--brand);
  color: var(--brand);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-tel:hover { background: var(--brand); color: #fff; transform: translateY(-1px); }

/* ── Hamburger toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--deep);
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* X animation when open */
body.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   Nav Drawer (mobile/tablet)
============================================================ */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  visibility: hidden;
}

body.nav-open .nav-drawer {
  transform: translateX(0);
  visibility: visible;
}

.nav-drawer__inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0 28px 40px;
}

.nav-drawer__head {
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: var(--border);
  flex-shrink: 0;
}

.nav-logo--drawer .logo-main { color: var(--deep); }
.nav-logo--drawer .logo-sub  { color: var(--brand); }

.nav-drawer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  padding-top: 12px;
}

.nav-drawer__links > li {
  border-bottom: var(--border);
}

.nav-drawer__link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 0 14px;
  text-decoration: none;
  transition: color var(--transition);
}
.nav-drawer__link:hover { color: var(--brand); }

.nav-drawer__link-en {
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--brand);
  text-transform: uppercase;
  line-height: 1;
}

.nav-drawer__link-ja {
  font-size: 15px;
  letter-spacing: .08em;
  color: var(--deep);
  font-weight: 500;
}

.nav-drawer__link:hover .nav-drawer__link-ja { color: var(--brand); }

/* Sub links (子犬を探す etc.) */
.nav-drawer__sub {
  list-style: none;
  padding: 0 0 14px 16px;
  margin: 0;
  display: flex;
  gap: 20px;
}

.nav-drawer__sub a {
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--dark);
  position: relative;
  padding-left: 12px;
  transition: color var(--transition);
}

.nav-drawer__sub a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  background: var(--brand);
}

.nav-drawer__sub a:hover { color: var(--brand); }

/* Drawer CTA buttons */
.nav-drawer__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 28px;
}

.btn-line--full,
.btn-tel--full {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 500;
  width: 100%;
}

.btn-line--full {
  background: #06C755;
  color: #fff;
}
.btn-line--full:hover { background: #059143; }

.btn-tel--full {
  border: 1px solid var(--brand);
  color: var(--brand);
}
.btn-tel--full:hover { background: var(--brand); color: #fff; }

/* ============================================================
   7. Hero Section
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 45vh;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, #4a3830 0px, #4a3830 2px, #3a2e28 2px, #3a2e28 18px);
}
video.hero-bg {
  background: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg--sp {
  display: none;
}
@media (max-width: 768px) {
  .hero-bg--pc {
    display: none;
  }
  .hero-bg--sp {
    display: block;
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,36,32,0.3) 0%, rgba(44,36,32,0.55) 50%, rgba(44,36,32,0.72) 100%);
}

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  opacity: 1;
  animation: hero-entrance 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-entrance {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .32em;
  color: var(--light);
  border: 0.5px solid rgba(232, 168, 130, 0.5);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-sub {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: .28em;
  color: var(--light);
  margin-bottom: 12px;
}

.hero-h1 {
  font-family: inherit;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 12px;
  line-height: 2;
  color: rgba(253, 250, 246, 0.75);
  max-width: 420px;
  margin: 0 auto 32px;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--brand);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero-btn-primary:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 113, 74, 0.4);
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 0.5px solid rgba(253, 250, 246, 0.5);
  color: var(--white);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.hero-btn-ghost:hover {
  background: rgba(253, 250, 246, 0.1);
  border-color: rgba(253, 250, 246, 0.8);
  transform: translateY(-2px);
}

.hero-btn-line-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #06C755;
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(6,199,85,0.35);
}
.hero-btn-line-green:hover {
  background: #059143;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,199,85,0.45);
}

.hero-scroll-wrap {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scroll-pulse 2s ease-in-out infinite;
}

.hero-scroll-wrap .scroll-line {
  width: 0.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(253,250,246,0), rgba(253,250,246,0.6));
}

.hero-scroll-wrap .scroll-text {
  font-size: 8px;
  letter-spacing: .24em;
  color: rgba(253, 250, 246, 0.5);
  text-transform: uppercase;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

.hero-float {
  position: absolute;
  right: 60px;
  bottom: 80px;
  z-index: 2;
  background: rgba(253, 250, 246, 0.12);
  backdrop-filter: blur(8px);
  border: 0.5px solid rgba(253, 250, 246, 0.2);
  border-radius: 16px;
  padding: 16px 22px;
  text-align: center;
  color: var(--white);
  animation: float-bob 3s ease-in-out infinite;
}

.hero-float .float-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  color: var(--light);
}

.hero-float .float-lbl {
  font-size: 9px;
  letter-spacing: .16em;
  color: rgba(253, 250, 246, 0.7);
  margin-top: 4px;
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ============================================================
   8. Trust Bar
   ============================================================ */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: var(--border);
  background: var(--white);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-right: var(--border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--brand);
  stroke: none;
}

.trust-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--brand);
  line-height: 1;
}

.trust-lbl {
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--dark);
  margin-top: 4px;
}

/* ============================================================
   9. Philosophy Section
   ============================================================ */
.phil {
  background: var(--cream);
  padding: 100px 0;
}

.phil .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.phil-media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep) 100%);
}

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

.phil-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.phil-quote {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.8;
  color: var(--dark);
  border-left: 2px solid var(--brand);
  padding-left: 20px;
}

/* Shared Section Typography */
.sec-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .24em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sec-h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--deep);
  margin-bottom: 16px;
}

.sec-body {
  font-size: 12px;
  line-height: 2;
  color: var(--dark);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--brand);
  border-bottom: 0.5px solid var(--brand);
  padding-bottom: 2px;
  transition: gap var(--transition), opacity var(--transition);
}

.link-more:hover {
  gap: 14px;
  opacity: 0.7;
}

.link-more::after {
  content: '→';
}

/* ============================================================
   10. Pets Section
   ============================================================ */
.pets {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 9px 24px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .08em;
  border: 1px solid rgba(196,113,74,0.3);
  color: var(--dark);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
}

.filter-btn.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 14px rgba(196, 113, 74, 0.30);
}
.filter-btn:hover:not(.active) {
  background: rgba(196, 113, 74, 0.08);
  border-color: var(--brand);
  color: var(--brand);
}

.section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-header--center .filter-row {
  justify-content: center;
}

.section-header--center .filter-btn {
  padding: 12px 32px;
  font-size: 13px;
  letter-spacing: .1em;
  border-width: 1px;
  font-weight: 500;
}

.section-header--center .filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196, 113, 74, 0.30);
}
.section-header--center .filter-btn:hover:not(.active) {
  background: rgba(196, 113, 74, 0.08);
  border-color: var(--brand);
  color: var(--brand);
}

/* ============================================================
   Pets Grid + Pet Card — Unified Design
   ============================================================ */

.pets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Card wrapper ── */
.pet-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #FDFAF7;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 0 rgba(196,147,122,0.15), 0 4px 20px rgba(44,36,32,0.08);
  border: 1px solid rgba(196,147,122,0.14);
  transition: transform 0.36s cubic-bezier(.22,1,.36,1), box-shadow 0.36s cubic-bezier(.22,1,.36,1);
  position: relative;
  padding: 12px 12px 0;
}

.pet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 2px 0 rgba(196,147,122,0.2), 0 20px 52px rgba(179,109,77,0.16), 0 4px 12px rgba(44,36,32,0.06);
  border-color: rgba(196,147,122,0.28);
}

/* ── Image wrap (PHPコンポーネントのクラス) ── */
.pet-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #F5EDE4 0%, #EAD9CC 100%);
}

.pet-card__img-link {
  display: block;
  position: absolute;
  inset: 0;
}

.pet-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
  display: block;
}

.pet-card:hover .pet-card__img {
  transform: scale(1.06);
}

/* 種別バッジ（画像左上） */
.pet-card__type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-size: 10px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .04em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(253,250,246,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.5px solid rgba(255,255,255,0.8);
  color: var(--deep);
  line-height: 1;
}

/* 販売状況 */
.pet-card__status {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,36,32,0.45);
  z-index: 4;
}

/* Photo area（旧クラス・互換） */
.pet-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  background: linear-gradient(145deg, #F5EDE4 0%, #EAD9CC 100%);
  overflow: hidden;
  border-radius: 12px;
}

.pet-card__fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  background: rgba(255,255,255,0.82);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.15s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.pet-card__fav-btn:hover {
  background: #fff;
  transform: scale(1.12);
}
.pet-card__fav-btn svg {
  color: #ccc;
  transition: color 0.2s, fill 0.2s;
  display: block;
}
.pet-card__fav-btn.is-fav svg {
  color: #e05c7a;
  fill: #e05c7a;
}

.pet-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #C4937A;
  opacity: 0.5;
}

.pet-card__placeholder span {
  font-size: 10px;
  letter-spacing: .1em;
  color: #C4937A;
  font-family: var(--sans);
}

/* Status badge – 非表示 */
.pet-card__badge { display: none; }

/* ── Card body ── */
.pet-card__body {
  padding: 0;
}

/* 犬種/猫種 */
.pet-card__breed {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 5px;
  opacity: .85;
}

/* Name row */
.pet-card__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.pet-card__name,
h2.pet-card__name,
h3.pet-card__name,
.pet-card .pet-card__name,
.pet-card h2.pet-card__name,
.pet-card h3.pet-card__name {
  font-family: var(--serif);
  font-size: 1.1rem !important;
  font-weight: 400;
  font-style: normal;
  color: var(--deep);
  line-height: 1.3;
  margin: 0;
  flex: 1;
  min-width: 0;
  letter-spacing: 0.04em;
  white-space: normal;
}


.pet-card__name-link {
  text-decoration: none;
  color: inherit;
}

/* メタ情報 */
.pet-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 10px 0;
  border-top: 1px solid rgba(196,147,122,0.15);
  border-bottom: 1px solid rgba(196,147,122,0.15);
  padding: 8px 0;
}

.pet-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
}

.pet-card__meta-label {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #C4937A;
}

.pet-card__meta-value {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--deep);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 3px;
}

.pet-card__gender-icon { font-size: 11px; }
.pet-card__meta-value--female { color: #B03060; }
.pet-card__meta-value--male   { color: #2A5FA8; }

/* 価格 */
.pet-card__price {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--brand);
  letter-spacing: .01em;
  line-height: 1;
  margin: 10px 0 0;
}

/* フッター（詳しく見るボタン） */
.pet-card__footer {
  margin-top: 12px;
}

.pet-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px 0;
  border-radius: 100px;
  background: var(--deep);
  color: var(--white) !important;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-decoration: none;
  transition: background 0.2s, opacity 0.2s;
}

.pet-card__link:hover { opacity: .82; }

.pet-card__link-arrow {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* Gender tag – 旧クラス互換 */
.pet-card__gender-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 100px;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border: 0.5px solid rgba(255,255,255,0.7);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pet-card__gender-tag--female { background: rgba(255,230,238,0.78); color: #B03060; }
.pet-card__gender-tag--male   { background: rgba(220,234,252,0.78); color: #2A5FA8; }

/* Spec rows（旧クラス互換） */
.pet-card__specs { border-top: 1px solid rgba(230,210,196,0.45); margin: 0; }
.pet-card__spec  { display: flex; align-items: center; padding: 4px 0; border-bottom: 1px solid rgba(230,210,196,0.45); gap: 8px; height: 34px; overflow: hidden; }
.pet-card__spec dt { font-family: var(--sans); font-size: 10px; color: #B8A090; flex-shrink: 0; width: 34px; text-align: center; }
.pet-card__spec dd { font-family: var(--sans); font-size: 0.8rem; color: #3D2C24; min-width: 0; overflow: hidden; white-space: normal; line-height: 1.3; margin: 0; }
@media (max-width: 768px) {
  .pet-card__spec dd { font-size: 0.6rem; }
}

/* Price wrap（旧クラス互換） */
.pet-card__price-wrap { display: flex; align-items: baseline; gap: 5px; }
.pet-card__tax { font-family: var(--sans); font-size: 10px; color: #B36D4D; opacity: .75; }

/* CTA bar – 非表示 */
.pet-card__cta-bar { display: none; }

.pet-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--deep);
  padding: 4px 0 2px;
  line-height: 1.2;
}

.pet-breed {
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--dark);
  margin-bottom: 12px;
}

.pet-price {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--brand);
  padding-top: 10px;
  border-top: var(--border);
  margin-top: 10px;
}

.pet-info-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.pet-info-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 0.5px solid rgba(237, 213, 190, 0.5);
  font-size: 11px;
}

.pet-info-row:first-child {
  padding-top: 8px;
}

.pet-info-label {
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--brand);
  min-width: 64px;
  flex-shrink: 0;
}

.pet-info-val {
  color: var(--deep);
  line-height: 1.5;
}

.more-btn {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.more-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  border: var(--border);
  border-color: var(--brand);
  color: var(--brand);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .12em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.more-btn a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   11b. Section Slider (WHY + Reviews shared)
   ============================================================ */
.sec-slider {
  position: relative;
}

.sec-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius);
  max-width: 1160px;
  margin: 0 auto;
}

.sec-slider__track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec-slider__track > * {
  flex-shrink: 0;
}

/* ============================================================
   12. Reviews Section
   ============================================================ */

.star {
  color: #F5C842;
  font-size: 14px;
}

.reviewer-name {
  font-weight: 600;
  font-size: 13px;
  color: var(--deep);
}

/* ============================================================
   13. Team Soleil Marquee
   ============================================================ */

/* ── セクション内コンテンツを波・キャンバスの上に ── */
.team-soleil > .container,
.team-soleil > .marquee-outer {
  position: relative;
  z-index: 3;
}


/* ── 波シェル ── */
.wave-shell {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}
.wave-shell--top    { top: -1px; }
.wave-shell--bottom { bottom: -1px; }

/* 各 SVG 波レイヤー */
.wave-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
}
.wave-svg--1 {
  animation: wave-ltr 18s linear infinite;
}
.wave-svg--2 {
  opacity: 0.4;
  animation: wave-rtl 13s linear infinite;
}
.wave-svg--3 {
  opacity: 0.1;
  animation: wave-ltr 22s linear infinite;
}

@keyframes wave-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes wave-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* reduced-motion: 波を止める */
@media (prefers-reduced-motion: reduce) {
  .wave-svg { animation: none; }
}

/* ============================================================
   14. SNS Section
   ============================================================ */
.sns {
  background: linear-gradient(to bottom, #ffffff 0%, #F7EFE5 100%);
  padding: 100px 0;
}

.sns-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}

.sns-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sns-platform {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sns-tabs-row {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(44, 36, 32, 0.12);
}

.sns-follow-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.sns-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 500;
  color: var(--dark);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  position: relative;
}

.sns-tab svg {
  flex-shrink: 0;
  opacity: 0.45;
  transition: opacity var(--transition);
}

.sns-tab.active {
  color: var(--deep);
  border-bottom-color: var(--brand);
  font-weight: 600;
}

.sns-tab.active svg {
  opacity: 1;
}

.sns-tab:hover:not(.active) {
  color: var(--brand);
}

.sns-tab:hover:not(.active) svg {
  opacity: 0.75;
}

.sns-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .1em;
  transition: background var(--transition);
}

.sns-follow:hover {
  background: var(--dark);
}

.sns-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sns-panel {
  display: block;
}

.sns-panel--hidden {
  height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.sns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.sns-img {
  aspect-ratio: 1;
  border-radius: 12px;
  background: repeating-linear-gradient(135deg, #EDD5BE 0px, #EDD5BE 2px, #F0E4D4 2px, #F0E4D4 18px);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, opacity 0.25s;
}

.sns-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(44, 36, 32, 0.12);
}

/* TikTok panel: portrait videos (9:16) */
.sns-grid--tiktok {
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.sns-img--portrait {
  aspect-ratio: 9 / 16;
  background: #1a1410;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .sns-grid--tiktok {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .sns-grid--tiktok::-webkit-scrollbar {
    display: none;
  }
  .sns-grid--tiktok .sns-img--portrait,
  .sns-grid--tiktok .sns-tt-item {
    flex: 0 0 160px;
    width: 160px;
  }
}

@media (max-width: 600px) {
  .sns-grid--ig-feed {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
    padding-bottom: 6px;
    scrollbar-width: none;
    max-width: 100%;
  }
  .sns-grid--ig-feed::-webkit-scrollbar {
    display: none;
  }
  .sns-ig-item {
    flex: 0 0 140px;
    width: 140px;
  }
}

/* Instagram フィード 3×2 グリッド */
.sns-grid--ig-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
  max-width: 600px;
  margin: 0 auto;
}
.sns-ig-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #2C2420;
}
.sns-ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sns-ig-item:hover img {
  transform: scale(1.06);
  opacity: 0.9;
}
.sns-ig-placeholder {
  aspect-ratio: 1;
  border-radius: 8px;
  background: linear-gradient(135deg, #2C2420, #3D2E28);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 600px) {
  .sns-grid--ig-feed {
    max-width: 100%;
    gap: 4px;
  }
}

/* TikTok API feed items */
.sns-tt-item {
  display: block;
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #1a1410;
  flex: 1 1 0;
}
.sns-tt-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.sns-tt-item:hover img {
  opacity: 0.8;
}
.sns-tt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.sns-tt-play svg {
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  opacity: 0.9;
}

/* SNS 埋め込みコード表示 */
.sns-grid--embed {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.sns-embed-wrap {
  flex: 1 1 280px;
  max-width: 340px;
  min-width: 0;
}
.sns-embed-wrap--portrait {
  flex: 1 1 220px;
  max-width: 280px;
}
.sns-embed-wrap iframe,
.sns-embed-wrap blockquote {
  width: 100% !important;
  min-width: 0 !important;
}
@media (max-width: 768px) {
  .sns-embed-wrap { flex-basis: 100%; max-width: 100%; }
}

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

/* ============================================================
   15. Store Section
   ============================================================ */
.store {
  background: var(--cream);
}

.store-header {
  text-align: center;
  margin-bottom: 48px;
}

.store-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 24px;
  border: var(--border);
  overflow: hidden;
}

.store-info-side {
  padding: 56px 48px 40px;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
}

.store-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0 28px;
  background: var(--cream);
}

.store-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.store-photo__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--dark);
  opacity: 0.4;
  background: linear-gradient(135deg, var(--cream) 0%, #EDD5BE 100%);
}

.store-photo__placeholder span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--dark);
}

.store-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--deep);
  letter-spacing: 0.06em;
  padding-bottom: 28px;
  border-bottom: var(--border);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-info-list {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.store-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 28px;
  justify-content: center;
  margin-top: auto;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 500;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
}

.store-btn--line {
  background: #06C755;
  color: #fff;
  border: none;
}

.store-btn--line:hover {
  background: #059143;
  transform: translateY(-2px);
}

.store-btn--tel {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}

.store-btn--tel:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.info-row {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: var(--border);
  align-items: baseline;
}

.info-row:first-child {
  border-top: var(--border);
}

.info-label {
  font-size: 9px;
  letter-spacing: .16em;
  color: var(--brand);
  text-transform: uppercase;
  min-width: 72px;
  padding-top: 2px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.info-row--access {
  align-items: flex-start;
}

.info-val {
  font-size: 12px;
  line-height: 1.8;
  color: var(--deep);
}

.info-val a {
  color: var(--brand);
}

.store-map-side {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-box {
  border-radius: 14px;
  overflow: hidden;
  border: var(--border);
  flex: 1;
  min-height: 320px;
  background: var(--dark);
}

.map-box iframe {
  width: 133%;
  height: 133%;
  margin-left: -16.5%;
  margin-top: -16.5%;
  border: none;
  display: block;
}

.route-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .06em;
  transition: background var(--transition), transform var(--transition);
  align-self: center;
}

.route-btn:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

/* ============================================================
   16. FAQ Section
   ============================================================ */
.faq {
  background: var(--cream);
  padding: 100px 0;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

/* ── 各アイテム：区切り線スタイル ── */
.faq-item {
  border-bottom: 1px solid rgba(196, 113, 74, 0.20);
  display: flex;
  flex-direction: column;
}

.faq-item:first-child {
  border-top: 1px solid rgba(196, 113, 74, 0.20);
}

/* ── Q行 ── */
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-q:hover .faq-q-text {
  color: var(--brand);
}

/* Q バッジ */
.faq-q-label {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.faq-q-text {
  flex: 1;
  padding-top: 7px;
  line-height: 1.7;
  transition: color var(--transition);
}

/* 矢印サークル */
.faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(196, 113, 74, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  transition: transform 0.35s ease, background 0.25s ease, border-color 0.25s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--brand);
  border-color: var(--brand);
}

.faq-arrow-inner {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--brand);
  border-bottom: 1.5px solid var(--brand);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: border-color 0.25s ease;
}

.faq-item.open .faq-arrow-inner {
  border-color: #fff;
}

/* ── A行 ── */
.faq-a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-height: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 2;
  color: var(--dark);
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-item.open .faq-a {
  max-height: 800px;
  padding: 2px 0 24px;
}

/* A バッジ */
.faq-a-label {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
}

.faq-a-text {
  flex: 1;
  padding-top: 7px;
}

/* ============================================================
   17. CTA Section
   ============================================================ */
/* ── CTA Section ── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
  background: #f0e6dc url('') center/cover no-repeat;
}

/* 背景画像オーバーレイ（視認性確保） */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,248,242,0.55) 0%,
    rgba(255,248,242,0.75) 50%,
    rgba(255,248,242,0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* キラキラcanvas */
#cta-sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* ── CTA 猫画像 ── */
.cta-cat {
  position: absolute;
  bottom: 0;
  height: 88%;
  max-height: 360px;
  width: auto;
  pointer-events: none;
  z-index: 5;
  filter: drop-shadow(0 8px 24px rgba(44,36,32,.22));
  /* アニメーション初期状態（中央から飛び出す） */
  opacity: 0;
  will-change: transform, opacity;
}
.cta-cat--left  {
  left: max(0px, calc(50% - 420px));
  bottom: -16px;
  transform: translateY(110%) scale(0.65);
}
.cta-cat--right {
  right: max(0px, calc(50% - 420px));
  transform: translateY(110%) scale(0.65);
}

/* 下から飛び出しアニメーション（躍動感） */
@keyframes cta-burst-left {
  0%   { transform: translateY(110%) scale(0.65); opacity: 0; }
  40%  { transform: translateY(-22px) scale(1.07) rotate(-3deg); opacity: 1; }
  62%  { transform: translateY(10px)  scale(0.96) rotate(1.5deg); }
  78%  { transform: translateY(-8px)  scale(1.02) rotate(-1deg); }
  100% { transform: translateY(0)     scale(1)    rotate(0deg);   opacity: 1; }
}
@keyframes cta-burst-right {
  0%   { transform: translateY(110%) scale(0.65); opacity: 0; }
  40%  { transform: translateY(-22px) scale(1.07) rotate(3deg);  opacity: 1; }
  62%  { transform: translateY(10px)  scale(0.96) rotate(-1.5deg); }
  78%  { transform: translateY(-8px)  scale(1.02) rotate(1deg);  }
  100% { transform: translateY(0)     scale(1)    rotate(0deg);   opacity: 1; }
}
.cta-cat--left.cta-cat--visible  { animation: cta-burst-left  0.9s cubic-bezier(0.22,1,0.36,1) forwards; }
.cta-cat--right.cta-cat--visible { animation: cta-burst-right 0.9s cubic-bezier(0.22,1,0.36,1) forwards; }

.cta-inner {
  position: relative;
  z-index: 10;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .32em;
  color: #c09060;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.9;
}

.cta-h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #3e2a1c;
  margin-bottom: 14px;
  line-height: 1.6;
  letter-spacing: .04em;
  text-shadow: 0 1px 8px rgba(255,248,242,0.9), 0 2px 24px rgba(255,248,242,0.7);
}

.cta-sub {
  font-size: 12px;
  line-height: 2.1;
  color: rgba(80, 55, 38, 0.82);
  max-width: 420px;
  margin: 0 auto 32px;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(255,248,242,0.8);
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* LINEボタン */
.cta-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #06C755;
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 500;
  box-shadow: 0 4px 18px rgba(6,199,85,0.28);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.cta-btn-line:hover {
  background: #059143;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(6,199,85,0.36);
}

/* 電話ボタン — ウォームキャラメル */
.cta-btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #d4956a 0%, #c07850 100%);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 500;
  box-shadow: 0 4px 18px rgba(192, 120, 80, 0.30);
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
}
.cta-btn-tel:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(192, 120, 80, 0.38);
}

/* ============================================================
   18. Footer
   ============================================================ */
.site-footer {
  background: #1A110E;
  color: rgba(253, 250, 246, 0.6);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Top: brand + nav ── */
.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 0.5px solid rgba(237, 213, 190, 0.1);
}

/* ── Brand column ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 4px;
}

.footer-logo__img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.9;
}

.footer-logo .logo-main {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--white);
}

.footer-logo .logo-sub {
  font-size: 8px;
  letter-spacing: .2em;
  color: var(--brand);
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 11px;
  line-height: 1.9;
  color: rgba(253, 250, 246, 0.45);
  text-align: center;
}

/* Footer CTA buttons */
.footer-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 500;
  transition: opacity var(--transition), transform var(--transition);
}
.footer-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.footer-btn--line {
  background: #06C755;
  color: #fff;
}

.footer-btn--tel {
  border: 1px solid rgba(196, 113, 74, 0.5);
  color: rgba(253, 250, 246, 0.7);
}
.footer-btn--tel:hover { border-color: var(--brand); color: var(--brand); opacity: 1; }

/* ── Nav columns ── */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col__title {
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 11px;
  color: rgba(253, 250, 246, 0.55);
  transition: color var(--transition);
  line-height: 1.5;
  text-decoration: none;
  display: block;
}
.footer-link:hover { color: var(--white); }

/* Parent link (ソレイユペット) */
.footer-link--parent {
  color: rgba(253, 250, 246, 0.75);
  font-weight: 500;
}

/* Child link (子犬/子猫) */
.footer-link--child {
  padding-left: 14px;
  position: relative;
  font-size: 10.5px;
}
.footer-link--child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 0.5px;
  background: var(--brand);
  opacity: 0.6;
}

/* ============================================================
   19. Scroll Animations
   ============================================================ */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* JSが初期非表示にする（transitionなし → 瞬時に隠す） */
.reveal.will-animate {
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
}

/* スクロールで表示するときだけtransitionを付与 */
.reveal.will-animate.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   20. Floating CTA Button (mobile fixed)
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(44, 36, 32, 0.2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-cta a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44, 36, 32, 0.25);
}

.floating-cta a.line-btn {
  background: #06C755;
  color: #fff;
}

.floating-cta a.tel-btn {
  background: var(--brand);
  color: #fff;
}

.floating-cta svg {
  width: 22px;
  height: 22px;
}

/* ============================================================
   21. WordPress Specific
   ============================================================ */
.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 12px;
  border: var(--border);
  color: var(--deep);
  transition: background var(--transition), color var(--transition);
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignleft {
  float: left;
  margin: 0 24px 16px 0;
}

.alignright {
  float: right;
  margin: 0 0 16px 24px;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 11px;
  color: var(--dark);
  margin-top: 6px;
  text-align: center;
}

/* ============================================================
   22. Responsive – max-width: 768px
   ============================================================ */
/* ============================================================
   Tablet (≤1024px): hamburger nav + tablet layout
   ============================================================ */
@media (max-width: 1024px) {

  /* Nav → hamburger */
  nav#mainNav {
    padding: 0 24px;
    gap: 16px;
  }

  .nav-links,
  .nav-ctas {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Container */
  .container {
    padding: 0 32px;
  }

  /* Pets — tablet: 2列 */
  .pets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  /* SNS */
  .sns-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Store */
  .store-card {
    grid-template-columns: 1fr;
  }

  .store-info-side {
    border-right: none;
    border-bottom: var(--border);
  }

  /* Sections */
  .why, .reviews, .team-soleil, .sns, .faq, .cta-section {
    padding: 80px 0;
  }
}

/* ============================================================
   Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Nav mobile height */
  nav#mainNav {
    padding: 0 20px;
    height: 60px;
  }

  .nav-drawer__head {
    height: 60px;
  }

  /* Hero */
  .hero-h1 {
    font-size: 27px;
  }

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

  .hero-desc {
    font-size: 11px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  /* Pets — SP: 2列グリッド */
  .pets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .pet-card__name,
  h2.pet-card__name,
  h3.pet-card__name,
  .pet-card .pet-card__name,
  .pet-card h2.pet-card__name,
  .pet-card h3.pet-card__name { font-size: 0.85rem !important; }
  .pet-card__body { padding: 0; }

  /* SNS */
  .sns-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sns-grid--tiktok {
    grid-template-columns: 1fr;
  }

  /* Store */
  .store-card {
    grid-template-columns: 1fr;
  }

  .store-info-side {
    border-right: none;
    border-bottom: var(--border);
    padding: 32px 24px;
  }

  .store-map-side {
    padding: 24px;
  }

  .store-map-side .map-box {
    min-height: 240px;
  }

  /* FAQ */
  .faq-grid {
    max-width: 100%;
  }

  /* Marquee cards */
  .mq-card {
    width: 124px;
  }

  .mq-img {
    width: 124px;
    height: 116px;
  }

  /* Footer */
  .footer-inner {
    padding: 0 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 0;
  }

  .footer-cta-btns {
    flex-direction: row;
  }

  .footer-btn {
    flex: 1;
  }

  /* Footer mobile */
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 12px;
    justify-items: start;
    text-align: left;
  }


  /* Section headings */
  .sec-h2 {
    font-size: 26px;
  }

  .hero-center {
    padding: 0 20px;
  }

  .cta-h2 {
    font-size: 26px;
  }

  /* Container padding */
  .container {
    padding: 0 20px;
  }

  /* Section padding */
  .pets {
    padding: 56px 0;
  }

  .why, .reviews, .team-soleil, .sns, .store, .faq {
    padding: 60px 0;
  }

  /* CTA: モバイル — セクション下部・中央並び */
  .cta-section { padding: 40px 0 110px; }
  .cta-card { padding: 40px 24px; }
  .cta-inner { padding: 0 24px; }
  .cta-h2 { font-size: 22px; }
  .cta-cat {
    max-height: 245px;
    top: auto;
  }
  .cta-cat--left  {
    left: 51%;
    right: auto;
    bottom: -5px;
    transform: translateX(-100%) translateY(110%) scale(0.65);
  }
  .cta-cat--right {
    left: 48%;
    right: auto;
    bottom: 4px;
    transform: translateY(110%) scale(0.65);
  }
  .cta-cat--left.cta-cat--visible  { animation-name: cta-burst-left-mobile; }
  .cta-cat--right.cta-cat--visible { animation-name: cta-burst-right-mobile; }

  /* Floating CTA always visible on mobile */
  .floating-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@keyframes cta-burst-left-mobile {
  0%   { transform: translateX(-100%) translateY(110%) scale(0.65); opacity: 0; }
  40%  { transform: translateX(-100%) translateY(-18px) scale(1.06) rotate(-3deg); opacity: 1; }
  62%  { transform: translateX(-100%) translateY(8px)   scale(0.96) rotate(1.5deg); }
  78%  { transform: translateX(-100%) translateY(-6px)  scale(1.02) rotate(-1deg); }
  100% { transform: translateX(-100%) translateY(0)     scale(1)    rotate(0deg);   opacity: 1; }
}
@keyframes cta-burst-right-mobile {
  0%   { transform: translateY(110%) scale(0.65); opacity: 0; }
  40%  { transform: translateY(-18px) scale(1.06) rotate(3deg);  opacity: 1; }
  62%  { transform: translateY(8px)   scale(0.96) rotate(-1.5deg); }
  78%  { transform: translateY(-6px)  scale(1.02) rotate(1deg);  }
  100% { transform: translateY(0)     scale(1)    rotate(0deg);   opacity: 1; }
}

@media (max-width: 360px) {
  .cta-cat { display: none; }
}

/* ============================================================
   23. Pet Detail Page
   ============================================================ */
.pd {
  padding: 0;
}

/* Breadcrumb */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 0 32px;
  font-size: 11px;
  color: var(--dark);
}
.pd-breadcrumb a {
  color: var(--dark);
  transition: color var(--transition);
}
.pd-breadcrumb a:hover { color: var(--brand); }
.pd-breadcrumb span:last-child { color: var(--deep); font-weight: 500; }

/* Layout */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 64px;
}

/* ── Gallery ── */
.pd-gallery {
  position: sticky;
  top: 88px;
}

.pd-gallery__main {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
  position: relative;
  border: var(--border);
}

.pd-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pd-gallery__main:hover .pd-gallery__img {
  transform: scale(1.03);
}

.pd-gallery__video-wrap {
  width: 100%;
  height: 100%;
  background: #000;
}

.pd-gallery__video-wrap iframe,
.pd-gallery__video-wrap video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.pd-gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(135deg, #EDD5BE 0px, #EDD5BE 2px, #F0E4D4 2px, #F0E4D4 18px);
}

.pd-gallery__zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(44, 36, 32, 0.55);
  color: #fff;
  font-size: 10px;
  letter-spacing: .06em;
  padding: 5px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition);
}

.pd-gallery__main:hover .pd-gallery__zoom-hint {
  opacity: 1;
}

/* Thumbnails */
.pd-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.pd-gallery__thumb {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--cream);
  transition: border-color var(--transition), opacity var(--transition);
}

.pd-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-gallery__thumb.active {
  border-color: var(--brand);
}

.pd-gallery__thumb:hover:not(.active) {
  opacity: 0.8;
}

.pd-gallery__thumb--video {
  background: var(--deep);
}

.pd-gallery__thumb-play {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44, 36, 32, 0.7);
}

/* Actions row */
.pd-gallery__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.pd-fav-btn,
.pd-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--dark);
  border: var(--border);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.pd-fav-btn:hover,
.pd-share-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.pd-fav-btn.active {
  background: #fff0f5;
  border-color: #e08080;
  color: #c05050;
}

.pd-fav-btn.active svg {
  fill: #c05050;
  stroke: #c05050;
}

/* ── Info ── */
.pd-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pd-info__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pd-id {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--dark);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 100px;
  border: var(--border);
}

.pd-info__breed {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--deep);
  line-height: 1.3;
  margin-bottom: 12px;
}

.pd-info__meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pd-gender {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 500;
}

.pd-gender--male   { background: #e8f0ff; color: #4a6abf; }
.pd-gender--female { background: #fff0f5; color: #c05070; }

.pd-age {
  font-size: 12px;
  color: var(--dark);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 100px;
  border: var(--border);
}

/* Price */
.pd-info__price {
  background: var(--cream);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 20px;
  border: var(--border);
}

.pd-price-label {
  display: block;
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 6px;
}

.pd-price-val {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--deep);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pd-price-tax {
  font-size: 11px;
  color: var(--dark);
  font-family: var(--sans);
}

.pd-divider {
  height: 0.5px;
  background: var(--border);
  border: none;
  margin: 20px 0;
}

/* Specs */
.pd-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.pd-spec-row {
  display: flex;
  align-items: baseline;
  gap: 0;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(237, 213, 190, 0.6);
}

.pd-spec-row:first-child {
  border-top: 0.5px solid rgba(237, 213, 190, 0.6);
}

.pd-spec-row dt {
  font-size: 9px;
  letter-spacing: .14em;
  color: var(--brand);
  text-transform: uppercase;
  min-width: 96px;
  flex-shrink: 0;
}

.pd-spec-row dd {
  font-size: 12px;
  color: var(--deep);
  line-height: 1.6;
}

/* ── Redesigned detail info panel ── */
.pd-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.pd-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--deep);
  letter-spacing: .04em;
  line-height: 1.3;
  margin-bottom: 0;
  flex: 1;
}

.pd-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  flex-wrap: wrap;
  flex-shrink: 0;
  padding-top: 6px;
}

.pd-gender-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
}

.pd-gender-badge--male   { background: #E8F0F8; color: #3A5C88; }
.pd-gender-badge--female { background: #F8ECF0; color: #883A5C; }

.pd-age-badge {
  font-size: 11px;
  color: var(--dark);
  background: var(--cream);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: .04em;
}

.pd-specs-list { margin-bottom: 4px; }

.pd-spec-item {
  display: flex;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(44, 36, 32, 0.07);
}

.pd-specs-list .pd-spec-item:first-child {
  border-top: 1px solid rgba(44, 36, 32, 0.07);
}

.pd-spec-item dt {
  font-size: 13px;
  letter-spacing: .08em;
  color: var(--brand);
  font-weight: 600;
  width: 100px;
  flex-shrink: 0;
}

.pd-spec-item dd {
  font-size: 16px;
  color: var(--deep);
  font-weight: 400;
  letter-spacing: .02em;
}

.pd-price-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 22px;
  margin-top: 0.5rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pd-price-figure {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  color: var(--deep);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
}

/* Trust badges */
.pd-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--dark);
  background: var(--cream);
  border: var(--border);
  padding: 6px 12px;
  border-radius: 100px;
}

.pd-badge svg {
  color: var(--brand);
  flex-shrink: 0;
}

/* ── Engagement block ── */
.pd-engagement {
  padding: 18px 0 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pd-engagement__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: var(--dark);
}

.pd-stat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pd-stat strong {
  color: var(--deep);
  font-weight: 600;
}

.pd-stat svg { color: var(--brand); flex-shrink: 0; }

.pd-stat-sep { color: rgba(44,36,32,.3); }

.pd-engagement__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Share wrapper */
.pd-share-wrap {
  position: relative;
}

.pd-share-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  background: #fff;
  border: 1px solid rgba(44,36,32,.1);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(44,36,32,.12);
  padding: 8px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* hidden 属性を CSS の display:flex が上書きしないよう明示的に非表示 */
.pd-share-menu[hidden] { display: none !important; }

.pd-share-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--deep);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background var(--transition);
  white-space: nowrap;
  width: 100%;
  text-align: left;
}

.pd-share-item:hover { background: var(--cream); }

.pd-share-item--x    svg { color: #000; }
.pd-share-item--line svg { color: #06C755; }
.pd-share-item--mail svg { color: var(--brand); }
.pd-share-item--copy svg { color: var(--dark); }

/* Section label */
.pd-section-label {
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Recommended */
.pd-recommended {
  margin-bottom: 0;
}

.pd-rec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-rec-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  padding: 7px 14px;
  background: rgba(196, 113, 74, 0.07);
  border: 0.5px solid rgba(196, 113, 74, 0.25);
  border-radius: 100px;
  color: var(--deep);
}

/* CTA */
.pd-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.pd-cta__primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 24px;
  background: #06C755;
  color: #fff;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.pd-cta__primary:hover {
  background: #059143;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.3);
}

.pd-cta__secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--brand);
  color: var(--brand);
  border-radius: 14px;
  font-size: 12px;
  letter-spacing: .08em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.pd-cta__secondary:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

.pd-cta__status-box {
  padding: 20px;
  border-radius: 14px;
  text-align: center;
}

.pd-cta__status-box--reserved {
  background: #fff8e6;
  border: 0.5px solid #e6c96e;
}

.pd-cta__status-box--sold {
  background: var(--cream);
  border: var(--border);
}

.pd-cta__status-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 6px;
}

.pd-cta__status-body {
  font-size: 11px;
  color: var(--dark);
  margin-bottom: 14px;
}

.pd-trust-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--dark);
  opacity: 0.75;
}

.pd-trust-note svg { color: var(--brand); flex-shrink: 0; }

/* Personality tags */
.pd-personality {
  margin-bottom: 40px;
}

.pd-pers-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-pers-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--deep);
  color: var(--white);
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .06em;
}

/* About section */
.pd-about {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px;
  margin-bottom: 0;
  border: var(--border);
}

.pd-about__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: var(--border);
}

.pd-about__content {
  font-size: 13px;
  line-height: 2;
  color: var(--dark);
}

/* Related pets */
.pd-related {
  background: #FDFAF6;
  padding: 64px 0 0;
  border-top: var(--border);
  margin-top: 48px;
}

.pd-related__head {
  text-align: center;
  margin-bottom: 40px;
}

.pd-related__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--deep);
  margin-top: 8px;
}

.pd-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.pd-related__more {
  text-align: center;
  margin-bottom: 64px;
}

.pd-related__more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--brand);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.pd-related__more a:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 113, 74, 0.4);
}

/* Lightbox */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 8, 7, 0.93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pd-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.pd-lightbox__content {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.pd-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.pd-lightbox__close:hover { background: rgba(255, 255, 255, 0.22); }

.pd-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.pd-lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.pd-lightbox__nav--prev { left: 20px; }
.pd-lightbox__nav--next { right: 20px; }

.pd-lightbox__counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile sticky CTA */
.pd-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: stretch;
  background: var(--white);
  border-top: var(--border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.pd-sticky.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pd-sticky__line {
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  background: #06C755;
  color: #fff;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  transition: background var(--transition);
}

.pd-sticky__line:hover { background: #059143; }

.pd-sticky__tel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 12px;
  border: 1px solid var(--brand);
  color: var(--brand);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.pd-sticky__tel:hover { background: var(--brand); color: #fff; }

/* ============================================================
   Pet Detail – Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pd-gallery {
    position: static;
  }

  .pd-gallery__main {
    aspect-ratio: 4 / 5;
  }

  .pd-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pd-about {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .pd {
    padding-bottom: 96px; /* space for sticky CTA */
  }

  .pd-layout {
    margin-bottom: 40px;
  }

  .pd-gallery__main {
    border-radius: 14px;
    aspect-ratio: 4 / 5;
  }

  .pd-gallery__thumbs {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }

  .pd-info__breed {
    font-size: 24px;
  }

  .pd-title {
    font-size: 22px;
  }

  .pd-price-figure {
    font-size: 26px;
  }

  .pd-price-val {
    font-size: 26px;
  }

  .pd-title-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pd-meta-row {
    flex-shrink: 1;
  }

  .pd-about {
    padding: 24px;
    border-radius: 14px;
  }

  .pd-related__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pd-related {
    padding: 56px 0;
    margin-top: 40px;
  }

  .pd-lightbox__nav--prev { left: 8px; }
  .pd-lightbox__nav--next { right: 8px; }
}

/* ============================================================
   24. Archive Page (ペット一覧)
   ============================================================ */

/* ── Archive page: ivory textured background ── */
.archive-page {
  background-color: #F9F7F2;
  position: relative;
  isolation: isolate;
}

/* grain texture */
.archive-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

/* light shimmer animation */
@keyframes soleil-shimmer {
  0%   { transform: translate(-8%, -10%) scale(1); }
  33%  { transform: translate(6%, -4%)  scale(1.08); }
  66%  { transform: translate(-3%, 8%)  scale(0.96); }
  100% { transform: translate(-8%, -10%) scale(1); }
}

.archive-page::after {
  content: '';
  position: fixed;
  top: -40%;
  left: -30%;
  width: 160%;
  height: 160%;
  background:
    radial-gradient(ellipse 45% 35% at 25% 20%, rgba(255,236,180,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 75% 65%, rgba(255,220,170,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 50% 90%, rgba(196,113,74,0.06)  0%, transparent 55%);
  animation: soleil-shimmer 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

/* ── Archive Hero ── */
.archive-hero {
  position: relative;
  overflow: hidden;
  background: var(--deep);
  padding: 96px 0 80px;
  text-align: center;
}

.archive-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.archive-hero__label {
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.archive-hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: .04em;
  line-height: 1.3;
  margin-bottom: 20px;
}

.archive-hero__sub {
  font-size: 13px;
  color: rgba(247,239,229,.7);
  line-height: 1.9;
}

.section__label {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .32em;
  color: var(--brand);
  text-transform: uppercase;
  border: 0.5px solid rgba(196,113,74,0.35);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ── Archive body ── */
.archive-body {
  background: transparent;
  padding: 32px 0 100px;
  position: relative;
  z-index: 3;
}

/* archive-body内のsection-headerはトップページと同一デザイン。下マージンのみ調整 */
.archive-body .section-header {
  margin-bottom: 48px;
}

/* ── Filter tabs ── */
.pets__filter {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 2px solid #EDE0D4;
}

.pets__filter-btn {
  position: relative;
  padding: 12px 36px;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .1em;
  font-weight: 400;
  color: #999;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.pets__filter-btn:hover {
  color: var(--brand);
}

.pets__filter-btn--active {
  color: var(--deep);
  font-weight: 500;
  border-bottom-color: var(--brand);
}

/* ── Status badges ── */
.badge {
  display: none; /* 非表示 */
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: .1em;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
}

.badge--available { background: var(--brand); color: #fff; }
.badge--reserved  { background: #F5C842; color: var(--deep); }
.badge--sold      { background: rgba(44, 36, 32, 0.65); color: rgba(253, 250, 246, 0.85); backdrop-filter: blur(4px); }

/* ── Archive pets grid ── */
.pets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Pet card BEM (旧アーカイブ用 – 統一カードへ移行済み) ── */
/* 重複ルールを削除済み。共通カードCSSはファイル上部を参照。 */

/* ── js-reveal (archive card animation) ── */
.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(.4, 0, .2, 1),
              transform 0.55s cubic-bezier(.4, 0, .2, 1);
}

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

/* ── Archive pagination ── */
.archive-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.archive-pagination .page-numbers a,
.archive-pagination .page-numbers span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: .04em;
  border: 0.5px solid #EDD5BE;
  color: var(--dark);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.archive-pagination .page-numbers a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.archive-pagination .page-numbers .current {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* ── Archive empty state ── */
.archive-empty {
  text-align: center;
  padding: 80px 20px;
}

.archive-empty p {
  font-size: 13px;
  color: var(--dark);
  line-height: 2;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.archive-empty .btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: #06C755;
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}

.archive-empty .btn--primary:hover {
  background: #059143;
  transform: translateY(-2px);
}

/* ── Archive Responsive ── */
@media (max-width: 1200px) {
  .pets__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .pets__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .archive-hero__title { font-size: 34px; color: var(--white); }
}

@media (max-width: 640px) {
  .archive-hero { padding: 72px 0 60px; }
  .archive-hero__title { font-size: 26px; }
  .archive-body { padding: 40px 0 72px; }
  .pets__filter { margin-bottom: 32px; }
  .pets__filter-btn { padding: 10px 20px; font-size: 12px; }
  .pets__grid { gap: 10px; }
  .pet-card__body { padding: 0; }
  .pet-card__name,
  h2.pet-card__name,
  h3.pet-card__name,
  .pet-card .pet-card__name,
  .pet-card h2.pet-card__name,
  .pet-card h3.pet-card__name { font-size: 0.85rem !important; }
}

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

/* ============================================================
   25. Heading Animations
   ============================================================ */

/* Section tag (e.g. "OUR PETS") - fade up */
.animate-tag {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-tag.is-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Section heading - clip reveal from bottom */
.animate-heading {
  overflow: hidden;
  position: relative;
}

.animate-heading span.ah-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%) skewY(4deg);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.15s;
}

.animate-heading.is-animated span.ah-inner {
  opacity: 1;
  transform: translateY(0) skewY(0deg);
}

/* Underline sweep on animated heading */
.animate-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brand);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.animate-heading.is-animated::after {
  width: 48px;
}

/* ============================================================
   26. WHY SOLEIL – Grid redesign
   ============================================================ */

.why {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 100px 0;
}

/* Override dark text in why section */
.why .sec-h2,
.why .why-lead { color: var(--deep) !important; }
.why .sec-tag { color: var(--brand) !important; }

.why-header {
  text-align: center;
}

.why-lead {
  font-size: 13px;
  color: var(--dark);
  line-height: 2;
  max-width: 520px;
  margin: 12px auto 0;
}

/* ── Container override for coverflow ── */
.why > .container {
  max-width: 100%;
  padding: 0 40px;
}

/* ── Coverflow wrapper ── */
/* containerのpaddingを打ち消して全幅を確保 */
.why .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* =============================================================
   WHY Coverflow — scale-based card slider (no reflow, no jank)
============================================================= */
.why-coverflow-section {
  position: relative;
  width: 100%;
  margin-top: 48px;
  padding: 0 60px;
}

.why-cf-outer {
  overflow: hidden;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/* Track: CSS transition handles animation — no rAF needed */
.why-cf-track {
  display: flex;
  gap: 32px;
  align-items: center;
  will-change: transform;
  transition: transform 0.52s cubic-bezier(.22, 1, .36, 1);
}

/* Items: fixed width, scale indicates active state — NO width changes */
.why-cf-item {
  flex-shrink: 0;
  width: 340px; /* JS overrides per breakpoint */
  cursor: pointer;
  transform: scale(0.78);
  opacity: 0.48;
  filter: saturate(0.3) brightness(0.93);
  transition:
    transform 0.52s cubic-bezier(.22, 1, .36, 1),
    opacity   0.52s cubic-bezier(.22, 1, .36, 1),
    filter    0.52s cubic-bezier(.22, 1, .36, 1);
}
.why-cf-item.is-near {
  transform: scale(0.88);
  opacity: 0.65;
  filter: saturate(0.55) brightness(0.97);
}
.why-cf-item.active {
  transform: scale(1);
  opacity: 1;
  filter: none;
  cursor: default;
}

/* Card */
.why-cf-card {
  background: #fff;
  border: 2px solid rgba(226,201,164,0.55);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,36,32,0.06);
  transition: border-color 0.52s ease, box-shadow 0.52s ease;
}
.why-cf-item.active .why-cf-card {
  border-color: #C9714A;
  box-shadow: 0 8px 36px rgba(201,113,74,0.22), 0 2px 8px rgba(44,36,32,0.05);
}

/* Visual area — light pastel per card index */
.why-cf-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #F5EDE4 0%, #EAD9CC 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-cf-item:nth-child(1) .why-cf-visual { background: linear-gradient(145deg, #F5EDE4 0%, #EAD9CC 100%); }
.why-cf-item:nth-child(2) .why-cf-visual { background: linear-gradient(145deg, #ECEAF8 0%, #E2DFEF 100%); }
.why-cf-item:nth-child(3) .why-cf-visual { background: linear-gradient(145deg, #E4EFF5 0%, #D5E4EF 100%); }
.why-cf-item:nth-child(4) .why-cf-visual { background: linear-gradient(145deg, #EEF5E6 0%, #E2EED5 100%); }
.why-cf-item:nth-child(5) .why-cf-visual { background: linear-gradient(145deg, #FBF0E4 0%, #F2E3D0 100%); }
.why-cf-item:nth-child(6) .why-cf-visual { background: linear-gradient(145deg, #F5E4ED 0%, #EDD3E2 100%); }

.why-cf-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 35%, rgba(255,255,255,0.50) 0%, transparent 60%);
  pointer-events: none;
}
.why-cf-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Icon circle */
.why-cf-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9B8AB0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(44,36,32,0.08), 0 0 0 8px rgba(255,255,255,0.25);
  transition: box-shadow 0.52s ease;
}
.why-cf-item:nth-child(1) .why-cf-icon-wrap { color: #C4714A; }
.why-cf-item:nth-child(2) .why-cf-icon-wrap { color: #7B68B0; }
.why-cf-item:nth-child(3) .why-cf-icon-wrap { color: #4F88B8; }
.why-cf-item:nth-child(4) .why-cf-icon-wrap { color: #5A9A52; }
.why-cf-item:nth-child(5) .why-cf-icon-wrap { color: #C08040; }
.why-cf-item:nth-child(6) .why-cf-icon-wrap { color: #B05080; }
.why-cf-item.active .why-cf-icon-wrap {
  box-shadow: 0 4px 20px rgba(44,36,32,0.10), 0 0 0 10px rgba(255,255,255,0.35);
}

/* Number watermark */
.why-cf-num {
  position: absolute;
  top: 8px;
  right: 14px;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1;
  color: rgba(44,36,32,0.07);
  z-index: 2;
  user-select: none;
}

/* Body */
.why-cf-body {
  padding: 18px 20px 22px;
  background: #fff;
}

/* Tag — shown at top of body */
.why-cf-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 9.5px;
  letter-spacing: .10em;
  font-family: var(--sans);
  color: var(--brand);
  background: rgba(196,113,74,0.09);
  padding: 4px 12px;
  border-radius: 20px;
  border: none;
}

/* Title */
.why-cf-title {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--deep);
  margin: 0;
  line-height: 1.45;
}

/* Description — opacity only (no max-height, no reflow) */
.why-cf-desc {
  font-size: 12px;
  color: var(--dark);
  line-height: 1.9;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s ease 0.12s;
}
.why-cf-item.active .why-cf-desc {
  opacity: 1;
}

/* Arrow buttons */
.why-cf-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(237,213,190,0.8);
  box-shadow: 0 4px 16px rgba(44,36,32,0.10);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9714A;
  z-index: 10;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.why-cf-btn:hover {
  background: #C9714A;
  color: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 6px 20px rgba(196,113,74,0.32);
}
.why-cf-btn--prev { left: 10px; }
.why-cf-btn--next { right: 10px; }

/* Dots */
.why-cf-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.why-cf-dot {
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: #C4A898;
  transition: width 0.3s cubic-bezier(.25,.46,.45,.94), background 0.3s;
  cursor: pointer;
}
.why-cf-dot.active {
  width: 24px;
  background: #C9714A;
}

/* Responsive */
@media (max-width: 900px) {
  .why-coverflow-section { padding: 0 52px; }
}
@media (max-width: 640px) {
  .why-coverflow-section { padding: 0 36px; }
  .why-cf-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.70);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-color: rgba(237,213,190,0.5);
    box-shadow: 0 2px 10px rgba(44,36,32,0.08);
  }
  .why-cf-btn:hover {
    background: rgba(201,113,74,0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-50%) scale(1.04);
  }
  .why { padding: 72px 0; }
}

/* ============================================================
   27. Reviews Slider – 3-card center focus
   ============================================================ */

.reviews {
  background: linear-gradient(to bottom, #FDFAF6 0%, #f7f0e7 100%);
  padding: 100px 0;
  overflow: hidden;
}

.reviews .container {
  max-width: 100%;
  padding: 0;
}

@media (max-width: 768px) {
  .reviews .container {
    padding: 0 20px;
  }
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.reviews-header .rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--cream);
  border: var(--border);
  border-radius: 100px;
}

.reviews-header .rating-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--deep);
  line-height: 1;
}

.reviews-header .rating-stars {
  display: flex;
  gap: 3px;
}

.reviews-header .rating-count {
  font-size: 10px;
  color: var(--dark);
  letter-spacing: .06em;
  margin-top: 3px;
}
.reviews-header .rating-date {
  font-size: 9px;
  color: var(--dark);
  opacity: 0.65;
  margin-top: 2px;
  letter-spacing: .04em;
}

.reviews-slider {
  position: relative;
  max-width: 100%;
  margin: 0;
  overflow: hidden; /* モバイルで隣カードのクリップ用 */
}

.reviews-slider .sec-slider__viewport {
  overflow: hidden;
  padding: 20px 0 32px;
  position: relative;
}

@media (max-width: 768px) {
  .reviews-slider .sec-slider__viewport {
    overflow: visible; /* 左右のカードの端を見せる */
    padding: 16px 0 28px;
  }
  .reviews-slider .review-card {
    padding: 24px 18px 22px;
  }
}

.reviews-slider .sec-slider__track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.reviews-slider .review-card {
  flex-shrink: 0;
  /* width set by JS */
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(196, 113, 74, 0.15);
  border-radius: 20px;
  padding: 28px 22px 24px;
  position: relative;
  opacity: 0.65;
  transition: opacity 0.5s ease, box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
}

.reviews-slider .review-card.is-active {
  opacity: 1;
  border-color: rgba(196, 113, 74, 0.3);
  box-shadow: 0 8px 32px rgba(44, 36, 32, 0.09);
}

.review-card::before {
  content: none;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.reviewer-pet {
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--brand);
  font-weight: 500;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-stars .star { color: #E8A560; font-size: 13px; }

.review-text {
  font-size: 12px;
  line-height: 1.9;
  color: var(--deep);
  font-family: var(--sans);
  flex: 1;
}

.sec-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.sec-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}

.sec-slider__arrow:hover {
  background: var(--deep);
  color: var(--white);
  border-color: var(--deep);
}

.sec-slider__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sec-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(44, 36, 32, 0.18);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.sec-slider__dot.active {
  background: var(--brand);
  transform: scale(1.3);
}

/* ============================================================
   28. Team Soleil – Single-box card redesign
   ============================================================ */

.team-soleil {
  background: var(--deep);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.team-soleil-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 40px;
}

.team-soleil-header .sec-tag { color: var(--light); }
.team-soleil-header .sec-h2 { color: var(--white); }

.team-soleil-sub {
  font-size: 12px;
  color: rgba(253, 250, 246, 0.5);
  letter-spacing: .06em;
  margin-top: 10px;
}

.team-soleil-more {
  text-align: center;
  margin-top: 48px;
}

.team-soleil-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 44px;
  background: linear-gradient(135deg, #d4956a 0%, #c07850 100%);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(192, 120, 80, 0.30);
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
}

.team-soleil-more__btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(192, 120, 80, 0.38);
}

.marquee-outer {
  overflow: hidden;
  margin-bottom: 18px;
}
.marquee-outer:last-child { margin-bottom: 0; }

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
}

.marquee-track { animation: marquee-ltr 44s linear infinite; }
.marquee-reverse .marquee-track { animation: marquee-rtl 56s linear infinite; }

@keyframes marquee-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--mq-set-w, -50%)); }
}
@keyframes marquee-rtl {
  from { transform: translateX(var(--mq-set-w, -50%)); }
  to   { transform: translateX(0); }
}

.marquee-set {
  display: flex;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}

/* Marquee cards */
.mq-card {
  flex-shrink: 0;
  width: 160px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s cubic-bezier(.25, .46, .45, .94),
              box-shadow 0.3s ease;
}

.mq-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

/* Photo area */
.mq-img {
  width: 160px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Paw SVG – centered, muted */
.mq-img svg {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  opacity: 0.18;
}

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

/* Text section – cream background matching site theme */
.mq-body {
  background: var(--cream);
  padding: 10px 12px 14px;
  border-top: 1px solid rgba(196, 113, 74, 0.3);
}

.mq-name {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--deep);
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mq-breed {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--brand);
  letter-spacing: 0.03em;
  margin: 0;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mq-owner {
  display: none;
}

/* Pause on hover */
.marquee-outer:hover .marquee-track {
  animation-play-state: paused;
}



/* ============================================================
   30. Adopted Section (お迎えした方々)
   ============================================================ */
.adopted {
  background: var(--cream);
  padding: 100px 0;
}

.adopted-sub {
  font-size: 13px;
  color: var(--dark);
  margin-top: 14px;
  line-height: 1.8;
}

.adopted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.adopted-card {
  background: var(--white);
  border: var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.adopted-card:hover {
  box-shadow: 0 8px 32px rgba(196,113,74,0.12);
  transform: translateY(-4px);
}

.adopted-paw {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #f7efe5 0%, #edd5be 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.adopted-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 4px;
  line-height: 1.2;
}

.adopted-breed {
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.adopted-owner {
  display: inline-block;
  font-size: 11px;
  color: var(--dark);
  background: var(--cream);
  border: var(--border);
  border-radius: 20px;
  padding: 4px 14px;
}

@media (max-width: 1024px) {
  .adopted-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .adopted {
    padding: 60px 0;
  }
  .adopted-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .adopted-card {
    padding: 24px 16px;
  }
}

@media (max-width: 400px) {
  .adopted-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ============================================================
   31. Additional Responsive Improvements
   ============================================================ */

/* Hero small phones */
@media (max-width: 400px) {
  .hero-h1 {
    font-size: 27px;
  }
  .hero-btns {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0 20px;
  }
  .hero-btn-primary,
  .hero-btn-ghost {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Section headers */
@media (max-width: 480px) {
  .sec-h2 {
    font-size: 24px;
  }
  .sec-tag {
    font-size: 9px;
  }
}

/* Pets grid responsive — tablet 2列 */
@media (max-width: 1024px) {
  .pets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* WHY section */
@media (max-width: 480px) {
  .why-coverflow-section { padding: 0 28px; }
  .why-cf-dots { margin-top: 16px; }
}

/* SNS tabs responsive */
@media (max-width: 480px) {
  .sns-tabs-row {
    gap: 8px;
  }
  .sns-tab {
    min-width: unset;
    flex: 1;
    padding: 12px 16px;
    font-size: 12px;
  }
}

/* Store section */
@media (max-width: 480px) {
  .store-name {
    font-size: 16px;
  }
  .info-row {
    flex-direction: column;
    gap: 4px;
  }
  .info-label {
    min-width: unset;
  }
}

/* FAQ section */
@media (max-width: 480px) {
  .faq {
    padding: 60px 0;
  }
  .faq-q {
    padding: 18px 0;
    font-size: 13px;
  }
  .faq-q-label,
  .faq-a-label {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .faq-item.open .faq-a {
    padding: 2px 0 20px;
  }
}

/* Reviews slider */
@media (max-width: 768px) {
  .reviews-slider {
    padding: 0;
  }
}

/* CTA section */
@media (max-width: 480px) {
  .cta-btns {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}

/* ============================================================
   Smash Balloon Plugin Overrides
   ============================================================ */

/* Instagram: 50% width */
#panel-instagram .sbi_images,
#panel-instagram .sb-grid-wrapper.sb-fs {
  max-width: 50% !important;
  width: 50% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ─── Instagram feed (Graph API カード) ─── */

.ig-feed { position: relative; }
.ig-viewport { overflow: hidden; }
.ig-track {
  display: flex;
  gap: 12px;
  transition: transform 0.52s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.ig-card {
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  background: #f0ece8;
  box-shadow: 0 2px 10px rgba(44,36,32,0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.ig-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44,36,32,0.18);
}

/* サムネイル（正方形） */
.ig-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e8e4e0;
}
.ig-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ig-thumb--placeholder {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* 画像なしプレースホルダー */
.ig-thumb__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.ig-thumb__placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.9;
}
.ig-card--no-img .ig-thumb {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* 動画再生アイコン */
.ig-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.22);
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.ig-card:hover .ig-play { opacity: 1; }

/* カルーセルアイコン（右上） */
.ig-album-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.4));
}

/* ナビボタン */
.ig-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.ig-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(44,36,32,0.15);
  background: #fff;
  color: var(--dark);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

@media (max-width: 768px) {
  .ig-btn { width: 36px; height: 36px; font-size: 14px; }
}

/* ─── TikTok feed (プラグイン不要・oEmbed カード) ─── */

.tt-feed {
  position: relative;
}

.tt-viewport {
  overflow: hidden;
}

.tt-track {
  display: flex;
  gap: 12px;
  transition: transform 0.52s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

/* カード */
.tt-card {
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
  box-shadow: 0 2px 12px rgba(44,36,32,0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.tt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(44,36,32,0.20);
}

/* サムネイル（TikTok縦型 9:16） */
.tt-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #1a1410;
}
.tt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 再生ボタンオーバーレイ */
.tt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.tt-card:hover .tt-play {
  opacity: 1;
}



/* ナビボタン */
.tt-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.tt-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(44,36,32,0.15);
  background: #fff;
  color: var(--dark);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tt-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* 未登録メッセージ */
.tt-empty {
  text-align: center;
  color: var(--mid);
  font-size: 13px;
  padding: 32px 0;
}

/* SP */
@media (max-width: 768px) {
  .tt-btn { width: 36px; height: 36px; font-size: 14px; }
}

/* ============================================================
   Pets grid: PC 4列×2行=8枚、SP 2列×3行=6枚
   ============================================================ */
/* PC: 4列×2行=8枚まで表示 */
@media (min-width: 769px) {
  .pets .pets-grid .pet-card:nth-child(n+9) {
    display: none;
  }
}

@media (max-width: 768px) {
  /* SP: 2列×3行=6枚まで表示 */
  .pets .pets-grid .pet-card:nth-child(n+7) {
    display: none;
  }
}

/* ============================================================
   Team Soleil Page (page-team_soleil.php)
   ============================================================ */

/* Hero */
.ts-hero {
  background: var(--deep);
  padding: 96px 0 80px;
  max-height: 600px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.ts-hero__inner {
  position: relative;
  z-index: 1;
}

.ts-hero__label {
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ts-hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: .08em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ts-hero__sub {
  font-size: 13px;
  color: rgba(247,239,229,.7);
  line-height: 1.9;
  letter-spacing: .04em;
}

/* Body */
.ts-body {
  background: #F7EFE5;
  padding: 60px 0 100px;
}

/* Grid – mq-card を流用してグリッド表示 */
.ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* mq-card override: グリッド内では幅を可変に */
.ts-grid .mq-card {
  width: 100%;
}

.ts-grid .mq-img {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
}

.ts-grid .mq-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-grid .mq-img svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 成長記録セクション */
.ts-follow {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(196,113,74,.25);
}

.ts-follow__label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ts-follow__photo {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
  aspect-ratio: 4/3;
}

.ts-follow__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ts-follow__comment {
  font-size: 10px;
  color: var(--dark);
  line-height: 1.7;
}

/* Clickable card */
.ts-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Pagination */
.ts-pagination {
  margin-top: 0;
}

/* ============================================================
   Team Soleil Detail Page (single-team_member.php)
   ============================================================ */
.tsd-page {
  background: var(--cream);
  min-height: 60vh;
}

/* Breadcrumb */
.tsd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(44,36,32,.5);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tsd-breadcrumb a { color: var(--brand); text-decoration: none; }
.tsd-breadcrumb a:hover { text-decoration: underline; }

/* Hero */
.tsd-hero {
  background: var(--deep);
  padding: 56px 0 64px;
}

/* Layout: 写真 + 情報 横並び */
.tsd-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 56px;
  align-items: start;
}

/* Photo */
.tsd-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #2a1e19;
}
.tsd-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tsd-photo__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(135deg,rgba(196,113,74,.15) 0,rgba(196,113,74,.15) 2px,transparent 2px,transparent 18px);
}

/* Info */
.tsd-info__label {
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.tsd-info__name {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: .06em;
  line-height: 1.2;
  margin-bottom: 28px;
}

/* Specs */
.tsd-specs { margin-bottom: 32px; }
.tsd-spec {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tsd-spec:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.tsd-spec dt {
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(247,239,229,.5);
  width: 110px;
  flex-shrink: 0;
}
.tsd-spec dd {
  font-size: 14px;
  color: var(--white);
}

/* Gender badge */
.tsd-gender {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}
.tsd-gender--male   { background: #2a3f6a; color: #8fb3f0; }
.tsd-gender--female { background: #5a1f35; color: #f0a8c0; }

/* Back link */
.tsd-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(247,239,229,.6);
  text-decoration: none;
  letter-spacing: .04em;
  transition: color var(--transition);
}
.tsd-back:hover { color: var(--brand); }

/* Follow section */
.tsd-follow {
  background: var(--white);
  padding: 80px 0 96px;
}
.tsd-follow__head {
  text-align: center;
  margin-bottom: 48px;
}
.tsd-follow__title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--deep);
  margin-top: 10px;
}
.tsd-follow__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.tsd-follow__photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 40px rgba(44,36,32,.12);
}
.tsd-follow__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tsd-follow__comment-wrap {
  position: relative;
  padding: 0 0 0 8px;
}
.tsd-follow__quote {
  color: rgba(196,113,74,.2);
  margin-bottom: 16px;
  display: block;
}
.tsd-follow__comment {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--deep);
  line-height: 2;
  letter-spacing: .04em;
}

/* No photo — comment only */
.tsd-follow__body:has(.tsd-follow__comment-wrap:only-child) {
  grid-template-columns: 1fr;
  max-width: 640px;
  text-align: center;
}

/* Footer nav */
.tsd-footer-nav {
  background: var(--cream);
  padding: 40px 0 60px;
  text-align: center;
}
.tsd-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--brand);
  text-decoration: none;
  border: 1px solid var(--brand);
  padding: 12px 28px;
  border-radius: 100px;
  letter-spacing: .06em;
  transition: background var(--transition), color var(--transition);
}
.tsd-back-btn:hover { background: var(--brand); color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .tsd-layout { grid-template-columns: 1fr; gap: 32px; }
  .tsd-follow__body { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .tsd-hero { padding: 40px 0 48px; }
  .tsd-follow { padding: 56px 0 72px; }
  .tsd-info__name { font-size: 28px; }
}

/* Responsive */
@media (max-width: 1024px) {
  .ts-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 600px) {
  .ts-hero { padding: 72px 0 60px; }
  .ts-body  { padding: 40px 0 72px; }
  .ts-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ============================================================
   Clinic Page
   ============================================================ */

/* ── Hero ── */
.clinic-hero {
  background: var(--deep);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.clinic-hero--photo {
  padding: 160px 0 130px;
}
.clinic-hero__overlay {
  display: none;
}
.clinic-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18,10,6,0.55) 0%,
    rgba(18,10,6,0.30) 50%,
    rgba(18,10,6,0.52) 100%
  );
  z-index: 1;
}
.clinic-hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 720px;
  margin: 0 auto;
}
.clinic-hero__label {
  font-size: 10px;
  letter-spacing: .25em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.clinic-hero__tagline {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.clinic-hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 54px);
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: .04em;
  text-shadow: 0 2px 18px rgba(0,0,0,.6), 0 1px 4px rgba(0,0,0,.4);
}
.clinic-hero__location {
  font-family: var(--serif);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400;
  letter-spacing: .22em;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  line-height: 1.5;
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
}
.clinic-hero__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  line-height: 1.9;
  margin-bottom: 18px;
  letter-spacing: .08em;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.clinic-hero__catch {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: .06em;
  line-height: 2;
  text-shadow: 0 1px 10px rgba(0,0,0,.6);
  margin-bottom: 0;
}
.clinic-hero__highlight {
  color: #F5C800;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.clinic-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.clinic-hero__badges span {
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--cream);
  border: 1px solid rgba(196,113,74,.5);
  border-radius: 100px;
  padding: 5px 16px;
  background: rgba(196,113,74,.12);
}

/* ── Service Categories ── */
.clinic-service-cats {
  padding: 100px 0;
  background: #FDF6EE;
}
.clinic-service-cats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.clinic-service-cat {
  background: var(--white);
  border: 1px solid rgba(196,113,74,0.18);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.clinic-service-cat:hover {
  box-shadow: 0 8px 28px rgba(196,113,74,0.12);
  transform: translateY(-3px);
}
.clinic-service-cat__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(196,113,74,0.08);
  border: 1px solid rgba(196,113,74,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--brand);
}
.clinic-service-cat__title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 14px;
  line-height: 1.4;
}
.clinic-service-cat__desc {
  font-size: 12px;
  color: var(--dark);
  line-height: 2;
}

/* ── Intro ── */
.clinic-intro {
  padding: 100px 0;
  background: var(--white);
}
.clinic-intro__inner {
  display: flex;
  justify-content: center;
}
.clinic-intro__text .sec-tag { margin-bottom: 12px; }
.clinic-intro__text .sec-h2 {
  margin-bottom: 24px;
  line-height: 1.3;
}
.clinic-intro__lead {
  font-size: 13px;
  line-height: 2;
  color: var(--dark);
}
.clinic-intro__badges-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.clinic-intro__badge {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 16px 24px;
  text-align: center;
  border: 1px solid #EDD5BE;
}
.clinic-intro__badge-num {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 10px;
}
.clinic-intro__badge-num small {
  font-size: 14px;
}
.clinic-intro__badge-label {
  font-size: 11px;
  color: var(--dark);
  line-height: 1.6;
}

/* ── Problems ── */
.clinic-problems {
  padding: 100px 0;
  background: var(--cream);
}
.clinic-problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.clinic-problem-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  text-align: center;
  border: var(--border);
}
.clinic-problem-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--brand);
}
.clinic-problem-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 12px;
  line-height: 1.5;
}
.clinic-problem-card p {
  font-size: 12px;
  color: var(--dark);
  line-height: 1.9;
}

/* ── Features ── */
.clinic-features {
  padding: 100px 0;
  background: var(--white);
}
.clinic-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.clinic-feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  border: var(--border);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.clinic-feature-card:hover {
  box-shadow: 0 8px 32px rgba(44,36,32,.08);
  transform: translateY(-3px);
}
.clinic-feature-card__num {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--light);
  margin-bottom: 16px;
}
.clinic-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 20px;
}
.clinic-feature-card h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 12px;
  line-height: 1.5;
}
.clinic-feature-card p {
  font-size: 12px;
  color: var(--dark);
  line-height: 1.9;
}

/* ── Benefits ── */
.clinic-benefits {
  padding: 100px 0;
  background: var(--cream);
}
.sec-lead {
  font-size: 13px;
  color: var(--dark);
  margin-top: 12px;
}
.clinic-benefits__body {
  max-width: 720px;
  margin: 56px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  border: var(--border);
  overflow: hidden;
}
.clinic-benefits__free-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 36px 40px 28px;
  border-bottom: var(--border);
}
.clinic-benefits__free-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--deep);
  padding: 10px 12px 10px 0;
  border-bottom: 0.5px solid rgba(237,213,190,.5);
}
.clinic-benefits__free-list li:nth-last-child(-n+2) {
  border-bottom: none;
}
.clinic-benefits__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.clinic-benefits__discount {
  padding: 24px 40px 28px;
}
.clinic-benefits__discount-label {
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--light);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.clinic-benefits__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.clinic-benefits__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--deep);
}
.clinic-benefits__list li svg {
  flex-shrink: 0;
  color: var(--dark);
}
.clinic-benefits__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 32px;
  border-top: 1px solid rgba(196,113,74,0.15);
}
.clinic-benefits__cta-text {
  font-size: 13px;
  color: var(--dark);
  text-align: center;
  line-height: 1.8;
}
.clinic-benefits__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 44px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(196,113,74,0.3);
  transition: opacity var(--transition), transform var(--transition);
  letter-spacing: 0.04em;
}
.clinic-benefits__cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* ── Staff ── */
.clinic-staff {
  padding: 100px 0;
  background: var(--white);
}
.clinic-staff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.clinic-staff-card {
  border-radius: var(--radius);
  border: var(--border);
  background: var(--white);
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px 32px;
}
.clinic-staff-card:hover {
  box-shadow: 0 6px 24px rgba(44,36,32,.07);
}
.clinic-staff-card__body {
  padding: 20px 0 0;
}
.clinic-staff-card__role {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--brand);
  margin-bottom: 6px;
}
.clinic-staff-card__name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 10px;
}
.clinic-staff-card__profile {
  font-size: 11px;
  color: var(--dark);
  line-height: 1.9;
}

/* ── Flow ── */
.clinic-flow {
  padding: 100px 0;
  background: var(--cream);
}
.clinic-flow__list {
  background: #fff;
  border-radius: 16px;
  padding: 40px 56px;
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.clinic-flow__connector {
  width: 2px;
  height: 36px;
  background: repeating-linear-gradient(to bottom, #ccc 0, #ccc 4px, transparent 4px, transparent 8px);
  margin-left: 27px;
}
.clinic-flow__item { padding: 24px 0; }
.clinic-flow__item:first-child { padding-top: 0; }
.clinic-flow__item:last-child  { padding-bottom: 0; }
.clinic-flow__item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.clinic-flow__badge {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: #F5C800;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.clinic-flow__badge-label {
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.clinic-flow__badge-num {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.clinic-flow__item-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--deep);
  margin: 0;
}
.clinic-flow__item-body {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-left: 76px;
}
.clinic-flow__item-text { flex: 1; }
.clinic-flow__item-text p {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.9;
  margin-bottom: 8px;
}
.clinic-flow__item-text p:last-child { margin-bottom: 0; }
.clinic-flow__note {
  font-size: 12px;
  color: var(--brand);
}
.clinic-flow__qr {
  flex-shrink: 0;
  width: 140px;
}
.clinic-flow__qr img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ── Access ── */
.clinic-access {
  padding: 100px 0;
  background: var(--white);
}
.clinic-access__map {
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.clinic-access__map iframe {
  border-radius: var(--radius);
  display: block;
}
.clinic-access__inner {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.clinic-access__info {
  width: 100%;
  max-width: 860px;
}
.clinic-access__table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.clinic-access__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 0.5px solid #EDD5BE;
  align-items: baseline;
}
.clinic-access__row dt {
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--brand);
  font-weight: 700;
  padding-top: 2px;
}
.clinic-access__row dd {
  font-size: 13px;
  color: var(--deep);
  line-height: 1.8;
}
.clinic-access__row dd small {
  font-size: 11px;
  color: var(--dark);
}
.clinic-access__row dd a {
  color: var(--brand);
}
.clinic-access__btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.clinic-access__btn-line {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #06c755;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 100px;
  transition: opacity var(--transition);
}
.clinic-access__btn-line:hover { opacity: .88; }
.clinic-access__btn-tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
  padding: 11px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--deep);
  transition: background var(--transition), color var(--transition);
}
.clinic-access__btn-tel:hover { background: var(--deep); color: var(--white); }

/* ── Access: hours table ── */
.clinic-access__hours,
.clinic-access__payment {
  margin-top: 56px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.clinic-access__sub-h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
}
.clinic-access__hours-table-wrap {
  overflow-x: auto;
}
.clinic-access__hours-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  min-width: 360px;
}
.clinic-access__hours-table th,
.clinic-access__hours-table td {
  border: 1px solid #EDD5BE;
  padding: 12px 8px;
  font-size: 14px;
}
.clinic-access__hours-table thead th {
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.clinic-access__hours-table tbody td {
  color: var(--deep);
  background: var(--white);
}
.clinic-access__hours-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--dark);
  line-height: 1.8;
}
.clinic-access__payment-text {
  font-size: 14px;
  color: var(--deep);
  margin-bottom: 20px;
}
.clinic-access__payment-img {
  margin-top: 16px;
}
.clinic-access__payment-img img {
  max-width: 580px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ── Company ── */
.clinic-company {
  padding: 100px 0;
  background: var(--cream);
}
.clinic-company__table-wrap {
  max-width: 700px;
  margin: 56px auto 0;
}
.clinic-company__table {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border);
}
.clinic-company__row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 0.5px solid #EDD5BE;
  align-items: baseline;
}
.clinic-company__row:last-child { border-bottom: none; }
.clinic-company__row dt {
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--brand);
  font-weight: 700;
}
.clinic-company__row dd {
  font-size: 13px;
  color: var(--deep);
  line-height: 1.8;
}
.clinic-company__row dd a {
  color: var(--brand);
  word-break: break-all;
}

/* ── Diagnostic Image ── */
.clinic-diag {
  padding: 80px 0;
  background: var(--cream);
}
.clinic-diag__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(44,36,32,.1);
}
.clinic-diag__grid-item {
  overflow: hidden;
}
.clinic-diag__grid-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.clinic-diag__empty {
  grid-column: 1 / -1;
  padding: 48px 0;
  color: rgba(196,113,74,.5);
  font-size: 13px;
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .clinic-service-cats__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .clinic-intro__inner        { flex-direction: column; }
  .clinic-problems__grid      { grid-template-columns: 1fr; }
  .clinic-benefits__free-list { grid-template-columns: 1fr; }
  .clinic-access__map         { margin-top: 32px; }
  .clinic-features__grid      { grid-template-columns: 1fr; }
  .clinic-staff__grid         { grid-template-columns: 1fr; }
  .clinic-service-cats__grid  { grid-template-columns: 1fr; gap: 16px; }
  .clinic-flow__list          { padding: 28px 20px; }
  .clinic-flow__item-body     { flex-direction: column; }
  .clinic-flow__qr            { width: 120px; }
  .clinic-access__hours,
  .clinic-access__payment     { margin-top: 40px; }
}

@media (max-width: 600px) {
  .clinic-diag__grid          { grid-template-columns: 1fr; }
  .clinic-hero                { padding: 64px 0 56px; }
  .clinic-intro,
  .clinic-problems,
  .clinic-features,
  .clinic-benefits,
  .clinic-diag,
  .clinic-staff,
  .clinic-flow,
  .clinic-access,
  .clinic-company,
  .clinic-service-cats        { padding: 64px 0; }
  .clinic-company__row        { grid-template-columns: 80px 1fr; padding: 14px 16px; }
  .clinic-access__row         { grid-template-columns: 72px 1fr; }
  .clinic-benefits__free-list { padding: 28px 20px 20px; }
  .clinic-benefits__discount  { padding: 20px; }
  .clinic-flow__item-body     { margin-left: 0; }
}

/* ============================================================
   Vision Page
   ============================================================ */

/* ── Reveal animations ── */
.reveal-fade,
.reveal-slide-left,
.reveal-slide-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-fade          { transform: translateY(24px); }
.reveal-slide-left    { transform: translateX(-40px); }
.reveal-slide-right   { transform: translateX(40px); }
.reveal-fade.vision--in,
.reveal-slide-left.vision--in,
.reveal-slide-right.vision--in {
  opacity: 1;
  transform: none;
}

/* ── Hero ── */
.vision-hero {
  position: relative;
  background: var(--deep);
  padding: 100px 0 80px;
  max-height: 600px;
  text-align: center;
  overflow: hidden;
}

/* ── Floating circles animation ── */
.vision-hero__circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 0;
  pointer-events: none;
}

.vision-hero__circles li {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(196, 147, 122, 0.22);
  mask-image: url('../images/icon.svg');
  -webkit-mask-image: url('../images/icon.svg');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  animation: vision-circle-rise 25s linear infinite;
  bottom: -150px;
}

.vision-hero__circles li:nth-child(1)  { left: 25%; width: 80px;  height: 80px;  animation-delay: 0s; }
.vision-hero__circles li:nth-child(2)  { left: 10%; width: 20px;  height: 20px;  animation-delay: 2s;  animation-duration: 12s; }
.vision-hero__circles li:nth-child(3)  { left: 70%; width: 20px;  height: 20px;  animation-delay: 4s; }
.vision-hero__circles li:nth-child(4)  { left: 40%; width: 60px;  height: 60px;  animation-delay: 0s;  animation-duration: 18s; }
.vision-hero__circles li:nth-child(5)  { left: 65%; width: 20px;  height: 20px;  animation-delay: 0s; }
.vision-hero__circles li:nth-child(6)  { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.vision-hero__circles li:nth-child(7)  { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.vision-hero__circles li:nth-child(8)  { left: 50%; width: 25px;  height: 25px;  animation-delay: 15s; animation-duration: 45s; }
.vision-hero__circles li:nth-child(9)  { left: 20%; width: 15px;  height: 15px;  animation-delay: 2s;  animation-duration: 35s; }
.vision-hero__circles li:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s;  animation-duration: 11s; }

@keyframes vision-circle-rise {
  0%   { transform: translateY(0)      rotate(0deg);   opacity: 1; }
  100% { transform: translateY(-800px) rotate(720deg); opacity: 0; }
}

/* ── Shared floating paw icons (all hero sections except vision) ── */
.hero-circles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  list-style: none;
  margin: 0; padding: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-circles li {
  position: absolute;
  display: block;
  width: 20px; height: 20px;
  background: rgba(196, 147, 122, 0.22);
  mask-image: url('../images/icon.svg');
  -webkit-mask-image: url('../images/icon.svg');
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  animation: vision-circle-rise 25s linear infinite;
  bottom: -150px;
}
.hero-circles li:nth-child(1)  { left: 25%; width: 80px;  height: 80px;  animation-delay: 0s; }
.hero-circles li:nth-child(2)  { left: 10%; width: 20px;  height: 20px;  animation-delay: 2s;  animation-duration: 12s; }
.hero-circles li:nth-child(3)  { left: 70%; width: 20px;  height: 20px;  animation-delay: 4s; }
.hero-circles li:nth-child(4)  { left: 40%; width: 60px;  height: 60px;  animation-delay: 0s;  animation-duration: 18s; }
.hero-circles li:nth-child(5)  { left: 65%; width: 20px;  height: 20px;  animation-delay: 0s; }
.hero-circles li:nth-child(6)  { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.hero-circles li:nth-child(7)  { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.hero-circles li:nth-child(8)  { left: 50%; width: 25px;  height: 25px;  animation-delay: 15s; animation-duration: 45s; }
.hero-circles li:nth-child(9)  { left: 20%; width: 15px;  height: 15px;  animation-delay: 2s;  animation-duration: 35s; }
.hero-circles li:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s;  animation-duration: 11s; }
.vision-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(196,113,74,.18) 0%, transparent 65%);
  pointer-events: none;
}
.vision-hero__overlay {
  display: none;
}
.vision-hero__inner {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
}
.vision-hero__en {
  font-size: 10px;
  letter-spacing: .42em;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.vision-hero__catch {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: .08em;
  margin-bottom: 20px;
}

/* ── Tagline ── */
.vision-tagline {
  background: var(--deep);
  padding: 80px 0;
  text-align: center;
  border-top: 0.5px solid rgba(253,250,246,.08);
}
.vision-tagline__text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 38px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  letter-spacing: .04em;
}

/* ── Intro ── */
.vision-intro {
  padding: 80px 0;
  background: #ffffff;
}
.vision-intro__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.vision-intro__label {
  font-size: 10px;
  letter-spacing: .34em;
  color: var(--brand);
  margin-bottom: 32px;
}
.vision-intro__h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 52px;
  letter-spacing: .02em;
  white-space: nowrap;
  background: linear-gradient(150deg, #2C2420 15%, #C4714A 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-bottom: 36px;
}
.vision-intro__h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
}
.vision-intro__body {
  background: var(--white);
  border: 0.5px solid rgba(196,113,74,.2);
  border-radius: 16px;
  padding: 40px 48px 36px;
  box-shadow: 0 1px 32px rgba(44,36,32,.06);
  text-align: center;
  position: relative;
}
.vision-intro__body p {
  font-size: 14px;
  color: var(--dark);
  line-height: 2.3;
  margin-bottom: 20px;
  text-align: center;
}
.vision-intro__body p:last-child { margin-bottom: 0; }

/* ── Pillars ── */
/* ── Pillars (Card Grid) ── */
.vision-pillars {
  background: var(--white);
  border-top: var(--border);
  padding: 0 0 88px;
}
.vision-pillars__label-wrap {
  text-align: center;
  padding: 72px 0 52px;
}
.vision-pillars__label-wrap .sec-tag { margin-bottom: 16px; }
.vision-pillars__h2 { margin: 0; }
.vision-pillars__grid {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── Card ── */
.vision-pillar-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(196,113,74,.13);
  box-shadow: 0 2px 24px rgba(44,36,32,.07);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease;
}
.vision-pillar-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 52px rgba(196,113,74,.15);
}

/* ── Card image ── */
.vision-pillar-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.vision-pillar-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.vision-pillar-card:hover .vision-pillar-card__img img {
  transform: scale(1.05);
}
.vision-pillar-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(44,36,32,.32) 100%);
  pointer-events: none;
}

/* placeholder gradient */
.vision-pillar-card__img--warm  { background: linear-gradient(145deg, hsl(24,44%,86%) 0%, hsl(20,36%,76%) 100%); }
.vision-pillar-card__img--cool  { background: linear-gradient(145deg, hsl(205,24%,84%) 0%, hsl(210,18%,74%) 100%); }
.vision-pillar-card__img--earth { background: linear-gradient(145deg, hsl(34,34%,85%) 0%, hsl(28,28%,75%) 100%); }
.vision-pillar-card__img--dusk  { background: linear-gradient(145deg, hsl(342,24%,85%) 0%, hsl(338,18%,75%) 100%); }

/* number badge */
.vision-pillar-card__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.9);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(44,36,32,.35);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

/* ── Card body ── */
.vision-pillar-card__body {
  padding: 32px 36px 40px;
  display: flex;
  flex-direction: column;
}
.vision-pillar-card__en {
  display: block;
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--brand);
  margin-bottom: 12px;
}
.vision-pillar-card__h3 {
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 21px);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.5;
  margin-bottom: 16px;
}
.vision-pillar-card__text {
  font-size: 13.5px;
  color: var(--dark);
  line-height: 2.2;
}

/* ── Vision Statement ── */
.vision-statement {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: var(--deep);
}
.vision-statement__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
/* ── CEO Message (inside vision-statement) ── */
.vision-ceo__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: start;
  margin-top: 64px;
  text-align: center;
}
.vision-ceo__photo-col {
  flex: 0 0 240px;
  width: 240px;
}
.vision-ceo__photo {
  aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.vision-ceo__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vision-ceo__profile {
  margin-top: 28px;
  text-align: center;
  padding-top: 24px;
  border-top: 0.5px solid rgba(253,250,246,.15);
}
.vision-ceo__title {
  font-size: 11px;
  color: rgba(253,250,246,.5);
  line-height: 1.9;
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.vision-ceo__name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  letter-spacing: .08em;
}
.vision-ceo__message-col {
  flex: 1 1 380px;
  min-width: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255,255,255,0.12);
}
.vision-ceo__label {
  font-size: 10px;
  letter-spacing: .34em;
  color: var(--brand);
  margin-bottom: 16px;
}
.vision-ceo__h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.45;
}
.vision-ceo__message p {
  font-size: 14px;
  color: rgba(253,250,246,.78);
  line-height: 2.35;
  margin-bottom: 24px;
}
.vision-ceo__message p:last-child { margin-bottom: 0; }
.vision-ceo__signature {
  margin-top: 36px;
  text-align: right;
  font-size: 12px;
  color: rgba(253,250,246,.55);
  letter-spacing: .06em;
  line-height: 1.8;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .vision-ceo__inner          { gap: 40px; margin-top: 56px; }
  .vision-ceo__photo          { max-width: 220px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .vision-hero                { padding: 64px 0 56px; }
  .vision-intro               { padding: 64px 0; }
  .vision-intro__body         { padding: 28px 24px; text-align: center; }
  .vision-intro__body p       { text-align: center; }
  .vision-intro__h2           { white-space: normal; font-size: clamp(18px, 5.5vw, 26px); }
  .vision-statement           { padding: 64px 0; }
  .vision-ceo                 { padding: 64px 0; }
  .vision-pillars__label-wrap  { padding: 48px 0 36px; }
  .vision-pillars__grid        { grid-template-columns: 1fr; gap: 20px; padding: 0 16px; }
  .vision-pillar-card__body    { padding: 24px 24px 28px; }
  .vision-tagline              { padding: 64px 0; }
  .reveal-slide-left,
  .reveal-slide-right         { transform: translateY(24px); }
}

/* ============================================================
   Company Page
   ============================================================ */

/* ── Reveal ── */
.company-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.company-page .reveal.reveal--in {
  opacity: 1;
  transform: none;
}

/* ── Hero ── */
.company-hero {
  position: relative;
  padding: 100px 0 80px;
  max-height: 600px;
  background: var(--deep);
  text-align: center;
  overflow: hidden;
}
.company-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(196,113,74,.2) 0%, transparent 65%);
  pointer-events: none;
}
.company-hero__overlay {
  display: none;
}
.company-hero__inner {
  position: relative;
  z-index: 1;
}
.company-hero__en {
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--light);
  margin-bottom: 16px;
}
.company-hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

/* ── Overview ── */
.company-overview {
  padding: 100px 0;
  background: var(--white);
}
.company-overview--animal {
  background: var(--white);
}
.company-overview__head {
  text-align: center;
  margin-bottom: 56px;
}
.company-overview__head .sec-tag { margin-bottom: 10px; }

.company-table-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.company-table {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border);
  background: var(--white);
}
.company-table__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 0.5px solid #EDD5BE;
}
.company-table__row:last-child { border-bottom: none; }
.company-table__label {
  padding: 20px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--brand);
  background: var(--cream);
  display: flex;
  align-items: flex-start;
  border-right: 0.5px solid #EDD5BE;
  line-height: 1.7;
}
.company-table__value {
  padding: 20px 28px;
  font-size: 13px;
  color: var(--deep);
  line-height: 1.9;
}
.company-table__value a {
  color: var(--brand);
  text-decoration: underline;
}
.company-table__value a:hover { opacity: .75; }

/* ── Responsive ── */
@media (max-width: 600px) {
  .company-hero           { padding: 64px 0 56px; }
  .company-overview       { padding: 64px 0; }
  .company-table__row     { grid-template-columns: 1fr; }
  .company-table__label   { padding: 14px 18px; border-right: none; border-bottom: 0.5px solid #EDD5BE; }
  .company-table__value   { padding: 14px 18px; }
}

/* ============================================================
   Contact Page
   ============================================================ */

/* ── Reveal ── */
.contact-page .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.contact-page .reveal.reveal--in {
  opacity: 1;
  transform: none;
}

/* ── Hero ── */
.contact-hero {
  position: relative;
  padding: 100px 0 80px;
  max-height: 600px;
  background: var(--deep);
  text-align: center;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(196,113,74,.2) 0%, transparent 65%);
  pointer-events: none;
}
.contact-hero__overlay {
  display: none;
}
.contact-hero__inner { position: relative; z-index: 1; padding: 0 24px; }
.contact-hero__en {
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--light);
  margin-bottom: 16px;
}
.contact-hero__title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-hero__sub {
  font-size: 13px;
  color: rgba(253,250,246,.68);
  line-height: 1.9;
}

/* ── Methods ── */
.contact-methods {
  padding: 100px 0;
  background: var(--cream);
}
.contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-method-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: var(--border);
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.contact-method-card:hover {
  box-shadow: 0 8px 32px rgba(44,36,32,.1);
  transform: translateY(-3px);
}
.contact-method-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method-card--line .contact-method-card__icon  { background: #e8f9ee; color: #06c755; }
.contact-method-card--tel  .contact-method-card__icon  { background: var(--cream); color: var(--brand); }
.contact-method-card--form .contact-method-card__icon  { background: var(--cream); color: var(--brand); }
.contact-method-card__body  { flex: 1; min-width: 0; }
.contact-method-card__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 6px;
  line-height: 1.4;
}
.contact-method-card__tel-num {
  font-size: 20px;
  color: var(--deep);
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.contact-method-card__desc {
  font-size: 11px;
  color: var(--dark);
  line-height: 1.7;
}
.contact-method-card__badge {
  position: absolute;
  top: -1px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  background: #06c755;
  color: #fff;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
}
.contact-method-card__arrow {
  flex-shrink: 0;
  color: var(--light);
  margin-left: auto;
}

/* ── Form Section ── */
.contact-form-section {
  padding: 100px 0;
  background: var(--white);
}
.contact-form-section__head {
  text-align: center;
  margin-bottom: 56px;
}
.contact-form-section__head .sec-tag { margin-bottom: 10px; }
.contact-form-section__note {
  font-size: 12px;
  color: var(--dark);
  margin-top: 14px;
  line-height: 1.8;
}

/* ── Result Message ── */
.contact-result {
  max-width: 680px;
  margin: 0 auto 32px;
  padding: 20px 28px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.8;
  white-space: pre-line;
}
.contact-result--success {
  background: #edfaf3;
  border: 1px solid #a3e6c0;
  color: #1a6e3e;
}
.contact-result--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #9b1c1c;
}

/* ── Form ── */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 0.5px solid #EDD5BE;
}
.contact-form__row--full { grid-template-columns: 180px 1fr; }
.contact-form__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
  padding-top: 10px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.contact-form__required {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--brand);
  color: #fff;
  padding: 2px 8px;
  border-radius: 100px;
}
.contact-form__optional {
  font-size: 10px;
  font-weight: 400;
  color: var(--dark);
  border: 1px solid #ddd;
  padding: 2px 8px;
  border-radius: 100px;
}
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid #DDD0C4;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--deep);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(196,113,74,.12);
}
.contact-form__input--half { max-width: 220px; }
.contact-form__textarea { resize: vertical; min-height: 160px; line-height: 1.8; }
.contact-form__select-wrap { position: relative; }
.contact-form__select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--dark);
  pointer-events: none;
}
.contact-form__error {
  font-size: 11px;
  color: #d94a4a;
  margin: 0;
  line-height: 1.5;
}

/* ── Submit ── */
.contact-form__submit-row {
  padding-top: 36px;
  display: flex;
  justify-content: center;
}
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--deep);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 16px 48px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), opacity var(--transition);
}
.contact-form__submit:hover:not(:disabled) { background: var(--brand); }
.contact-form__submit:disabled { opacity: .6; cursor: default; }

@keyframes contact-spin { to { transform: rotate(360deg); } }
.contact-spin { animation: contact-spin .8s linear infinite; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .contact-methods__grid { grid-template-columns: 1fr; }
  .contact-form__row     { grid-template-columns: 1fr; gap: 8px; }
  .contact-form__label   { padding-top: 0; }
}
@media (max-width: 600px) {
  .contact-hero          { padding: 64px 0 56px; }
  .contact-methods       { padding: 64px 0; }
  .contact-form-section  { padding: 64px 0; }
  .contact-method-card   { padding: 22px 18px; gap: 14px; }
  .contact-form__input--half { max-width: 100%; }
}


/* ============================================================
   Clinic: Intro message card
   ============================================================ */
.clinic-intro__message-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: 0 4px 32px rgba(44,36,32,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(196,113,74,0.12);
  max-width: 720px;
  width: 100%;
}
.clinic-intro__message-card::before {
  content: none;
}
.clinic-intro__message-body {
  margin-bottom: 24px;
  text-align: center;
}
.clinic-intro__message-body p {
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--dark);
  margin-bottom: 1em;
}
.clinic-intro__message-body p:last-child { margin-bottom: 0; }
.clinic-intro__message-sign {
  text-align: right;
  font-size: 0.8125rem;
  color: var(--mid);
  font-weight: 400;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(196,113,74,0.12);
  padding-top: 14px;
  margin: 0;
}

/* ============================================================
   Clinic: Problem card — bubble + image
   ============================================================ */
.clinic-problem-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.clinic-problem-card__bubble {
  background: rgba(196,113,74,0.06);
  border-radius: 12px 12px 12px 4px;
  padding: 24px 28px;
  position: relative;
}
.clinic-problem-card__bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 28px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: rgba(196,113,74,0.06) transparent transparent;
}
.clinic-problem-card__bubble h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 10px;
  line-height: 1.5;
}
.clinic-problem-card__bubble p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.8;
  margin: 0;
}
.clinic-problem-card__img {
  margin-top: 14px;
}
.clinic-problem-card__img img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
}
.clinic-problem-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(196,113,74,0.4);
}

/* ============================================================
   Clinic: Feature card — title, icon (circle), body
   ============================================================ */
.clinic-feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 28px;
}
.clinic-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.6;
  margin-bottom: 20px;
  order: 1;
}
.clinic-feature-card__icon {
  order: 2;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(196,113,74,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  flex-shrink: 0;
}
.clinic-feature-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.clinic-feature-card p {
  order: 3;
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   Clinic: Staff photo — circle, centered
   ============================================================ */
.clinic-staff-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream);
}
.clinic-staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.clinic-staff-card__photo-placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(196,113,74,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

/* ============================================================
   Privacy Policy Page
   ============================================================ */
.privacy-page {
  background: var(--white);
}

.privacy-hero {
  background: var(--deep);
  padding: 120px 0 64px;
  text-align: center;
}

.privacy-hero .sec-tag {
  color: var(--brand);
  font-size: 10px;
  letter-spacing: .22em;
  font-family: var(--serif);
  margin-bottom: 16px;
  display: block;
}

.privacy-hero__h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.privacy-hero__sub {
  font-size: 12px;
  color: rgba(253,250,246,.55);
  letter-spacing: .08em;
}

.privacy-body {
  padding: 72px 0 96px;
}

.privacy-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-intro {
  font-size: 14px;
  line-height: 2;
  color: var(--deep);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(44,36,32,.1);
}

.privacy-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(44,36,32,.07);
}
.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-section__h2 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--deep);
  letter-spacing: .04em;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 2px solid var(--brand);
}

.privacy-section p {
  font-size: 14px;
  line-height: 2;
  color: var(--deep);
  margin-bottom: 12px;
}

.privacy-section ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.privacy-section ul li {
  font-size: 13px;
  line-height: 1.9;
  color: var(--dark);
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(44,36,32,.05);
}
.privacy-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 1px;
  background: var(--brand);
}

.privacy-contact {
  margin-top: 16px;
  background: var(--cream);
  border-radius: 12px;
  padding: 20px 24px;
  border: var(--border);
}

.privacy-contact__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 10px !important;
}

.privacy-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: .04em;
  transition: opacity var(--transition);
}
.privacy-contact__link:hover { opacity: .7; }

.privacy-date {
  font-size: 11px;
  color: var(--dark);
  opacity: .6;
  text-align: right;
  margin-top: 40px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .privacy-hero {
    padding: 100px 0 48px;
  }
  .privacy-hero__h1 {
    font-size: 26px;
  }
  .privacy-body {
    padding: 48px 0 72px;
  }
  .privacy-section__h2 {
    font-size: 16px;
  }
}
