/*
Theme Name: ohana
Theme URI: https://example.com/ohana
Author: ohana Cat Rescue
Author URI: https://example.com
Description: 猫の保護団体「ohana」のWordPressテーマ。温かみのあるテラコッタカラーで構成された、猫の里親募集・保護活動紹介サイト用テーマです。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ohana
Tags: custom-colors, custom-menu, featured-images, responsive-layout
*/

/* ============================
   CSS Custom Properties
   ============================ */
:root {
  --cream: #faf7f2;
  --warm-white: #fff9f4;
  --bg-base: #ffffff;
  --bg-alt: #F9F1E2;
  --terracotta: #c85a3a;
  --terracotta-light: #d97a5e;
  --terracotta-pale: #f5ede9;
  --orange-cta: #e07d2a;
  --dark: #2a2118;
  --text: #3d3228;
  --text-light: #8a7e75;
  --border: #e8ddd4;
  --shadow: rgba(80, 40, 20, 0.10);

  --font-body: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, sans-serif;
  --font-heading: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  --font-display: 'Playfair Display', serif;

  --max-width: 1200px;
  --nav-height: 64px;
  --radius-card: 18px;
  --radius-pill: 50px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg-base);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--terracotta);
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark);
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
}

/* ============================
   Container
   ============================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-main {
  min-height: 60vh;
}

/* ============================
   Navigation
   ============================ */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

body.admin-bar #site-nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar #site-nav {
    top: 46px;
  }
}

#site-nav {
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-sns {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-sns a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  padding: 6px 8px;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-sns a:hover {
  color: var(--terracotta);
  background: var(--terracotta-pale);
}

.nav-sns svg {
  display: block;
  flex-shrink: 0;
}

.sns-label {
  font-size: 0.8rem;
  font-weight: 500;
}

#site-nav.scrolled {
  box-shadow: 0 4px 24px var(--shadow);
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}

.nav-logo span {
  font-style: italic;
}

/* Desktop main menu */
.nav-main-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-main-menu a:hover {
  color: var(--terracotta);
  background: var(--terracotta-pale);
}

.nav-cta {
  background: var(--terracotta) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--terracotta-light) !important;
  color: #fff !important;
}

/* Desktop "more" dropdown */
.nav-more {
  position: relative;
}

.nav-more-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease;
}

.nav-more-btn:hover {
  background: var(--terracotta-pale);
}

.nav-more-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-more-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px var(--shadow);
  min-width: 160px;
  padding: 8px 0;
  display: none;
  flex-direction: column;
  z-index: 1100;
}

.nav-more-dropdown.open {
  display: flex;
}

.nav-more-dropdown a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 20px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-more-dropdown a:hover {
  color: var(--terracotta);
  background: var(--terracotta-pale);
}

/* Mobile hamburger (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu (hidden on desktop) */
.main-nav {
  display: none;
}

/* ============================
   Hero Section
   ============================ */
.hero {
  position: relative;
  width: 100%;
  height: 96.9vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://ohana-hogoneko.jp/wp-content/uploads/2026/04/cute-kitty-sitting-by-windowlooking-up_compressed.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}


.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 160px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(30, 20, 10, 0.6);
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e1408;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 480px;
}

.hero-title-line1,
.hero-title-line2 {
  display: block;
}

.hero-title-line2 {
  white-space: nowrap;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(30, 20, 10, 0.75);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
  animation: scrollLine 1.8s ease-in-out infinite;
  transform-origin: top;
}

.hero-scroll-text {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  animation: scrollFade 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

@keyframes scrollFade {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.hero-cta {
  margin-top: 8px;
}

/* ============================
   Section Common
   ============================ */
.section {
  padding: 144px 0;
}

.section-alt {
  background-color: var(--warm-white);
}

/* 肉球パターン */
.cats-section,

.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 72px;
  line-height: 1.45;
}

.section-title span {
  color: var(--terracotta);
}

/* タイトル直後に section-lead が来る場合は余白を詰める */
.section-title + .section-lead {
  margin-top: -48px;
}

.section-header {
  margin-bottom: 56px;
}

.section-intro {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9375rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ============================
   About / Why Section
   ============================ */
.about {
  padding: 0;
  background: var(--bg-base);
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.about-text {
  display: flex;
  flex-direction: column;
  padding: 144px 56px 144px 0;
}

.about-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 10px;
}

.about-heading {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 28px;
}

.about-body p {
  margin-bottom: 24px;
  font-size: 0.9625rem;
  line-height: 1.9;
  color: var(--text);
}

.about-text .btn {
  margin-top: 28px;
  align-self: stretch;
  text-align: center;
}

.about-section {
  background: var(--warm-white);
}

.about-grid,
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.about-image {
  position: relative;
  overflow: visible;
  align-self: stretch;
  margin: 96px auto 96px 48px;
  width: calc(100% - 48px);
  border-radius: var(--radius-card);
  background: url('https://ohana-hogoneko.jp/wp-content/uploads/2026/04/newborn-dark-gray-kitten-lies-palms_compressed.webp') center center / cover no-repeat;
  transform: rotate(0deg);
  box-shadow: 0 8px 32px rgba(80, 40, 20, 0.14);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image:hover {
  box-shadow: 0 12px 40px rgba(80, 40, 20, 0.18);
}

/* テープ装飾 */

.why-image {
  position: relative;
  overflow: visible;
  align-self: stretch;
  margin: 64px 48px 64px auto;
  width: calc(100% - 48px);
  border-radius: var(--radius-card);
  background: url('https://ohana-hogoneko.jp/wp-content/uploads/2026/04/small-orange-cat-interacts-with-block-ground-beside-some-green-leaves-city-setting-day_compressed.webp') center center / cover no-repeat;
  transform: rotate(0deg);
  box-shadow: 0 8px 32px rgba(80, 40, 20, 0.14);
  transition: box-shadow 0.4s ease;
}

.why-image:hover {
  box-shadow: 0 12px 40px rgba(80, 40, 20, 0.18);
}


.about-image img,
.why-image img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
}

.why-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-body .section-label,
.why-body .section-label,
.about-body .section-title,
.why-body .section-title {
  text-align: left;
}

.why-text {
  color: var(--text);
  line-height: 1.9;
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

/* Why list */
.why-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.why-item-text {
  flex: 1;
}

.why-item-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.why-item-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================
   Count / Stats Section
   ============================ */
.count-section {
  background: var(--bg-alt);
  padding: 96px 0;
}

.count-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.count-inner {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 8px 32px var(--shadow);
  overflow: hidden;
  background: var(--warm-white);
}

.count-wrap {
  display: flex;
  justify-content: center;
}

.count-block {
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.count-block + .count-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--border);
}

.count-unit {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-left: 2px;
}

.count-item {
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.count-item + .count-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--border);
}

.count-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 8px;
}

.count-number sup {
  font-size: 1.8rem;
  vertical-align: super;
}

.count-label {
  font-size: 0.8125rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ============================
   Cat Cards
   ============================ */
.cats-section {
  background: var(--bg-base);
  padding: 108px 0;
}

.cats-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.cats-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 72px;
  flex-wrap: wrap;
}

.cats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 24px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  width: 220px;
}

.cat-avatar-wrap {
  position: relative;
  margin-bottom: 16px;
}

.cat-avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--border);
}

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

.cat-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4c8bc 0%, #c0b4a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-avatar-placeholder::after {
  content: '🐱';
  font-size: 2.5rem;
  opacity: 0.5;
}

.cat-card:hover .cat-avatar {
  transform: scale(1.06);
  border-color: var(--terracotta);
}

.cat-status {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 2px 8px var(--shadow);
}

.cat-status--reserved {
  background: var(--orange-cta);
}

.cat-status--adopted {
  background: var(--text-light);
}

.cat-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
}

.cat-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
  text-align: center;
}

.cat-name a {
  color: inherit;
  text-decoration: none;
}

.cat-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cat-meta-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  padding: 5px 10px;
  background: var(--warm-white);
  border-radius: 8px;
}

.cat-meta-label {
  color: var(--text-light);
  font-weight: 500;
}

.cat-meta-value {
  color: var(--dark);
  font-weight: 600;
}

.cat-card-detail-link {
  margin-top: 4px;
}

/* ============================
   Adopted Section
   ============================ */
.adopted-section {
  background: var(--bg-alt);
  padding: 96px 0;
  overflow: hidden;
}

.adopted-section-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  margin-bottom: 64px;
}

.adopted-section-header .section-title {
  margin-bottom: 32px;
}

.adopted-subtitle {
  font-size: 0.9375rem;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

/* Marquee */
.adopted-marquee-wrap {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
  user-select: none;
}

.adopted-marquee-wrap.is-dragging {
  cursor: grabbing;
}

.adopted-marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 16px 16px 8px;
  will-change: transform;
}

.adopted-avatar {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 0 auto 10px;
}

.adopted-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(200, 90, 58, 0.25);
}

.adopted-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4c8bc 0%, #c0b4a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.adopted-avatar-placeholder::after {
  content: '🐱';
  font-size: 1.8rem;
  opacity: 0.5;
}

.adopted-badge {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px var(--shadow);
}

.adopted-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 220px;
}

.adopted-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 24px;
}

.adopted-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 180px;
}

.adopted-avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(200, 90, 58, 0.25);
  margin-bottom: 10px;
  transition: border-color 0.2s ease;
}

.adopted-card:hover .adopted-avatar {
  border-color: var(--terracotta);
}

.adopted-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}

.adopted-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================
   Support Section
   ============================ */
.support-section {
  background: var(--bg-alt);
  padding: 108px 0;
}

.support-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.support-section .btn-primary,
.why-section .btn-primary {
  background: #FF6B6B;
  border-color: #FF6B6B;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.35);
}

.support-section .btn-primary:hover,
.why-section .btn-primary:hover {
  background: #e85555;
  border-color: #e85555;
  box-shadow: 0 6px 28px rgba(255, 107, 107, 0.45);
}

.support-lead {
  font-size: 0.9375rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.85;
  text-align: center;
}

.support-section-inner .section-title {
  margin-bottom: 36px;
}

.support-btns {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.support-btns .btn {
  text-align: center;
}

.support-note {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: 24px;
}

/* Why section */
.why-section {
  padding: 108px 0;
  background: var(--bg-base);
}

.why-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.why-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 64px 56px;
}

.why-text .section-label,
.why-text .section-title {
  text-align: left;
  margin-bottom: 16px;
}

.why-text .section-title {
  margin-bottom: 24px;
}

.why-body p {
  margin-bottom: 16px;
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text);
}

.why-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text);
}

.why-list-icon {
  font-size: 1.1rem;
}

.why-list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.support-card {
  background: var(--warm-white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.support-card:hover {
  box-shadow: 0 12px 40px var(--shadow);
  transform: translateY(-4px);
}

.support-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.support-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.support-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================
   Column (Horizontal Scroll)
   ============================ */
.column-section {
  background: var(--bg-base);
  overflow: hidden;
  padding: 108px 0;
}

.column-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.column-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.column-card-link {
  display: block;
  padding: 20px;
  height: 100%;
}

.column-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--terracotta);
  font-weight: 600;
}

.column-excerpt {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-slider-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  width: 100%;
  cursor: grab;
}

.column-slider-wrap.dragging {
  cursor: grabbing;
  user-select: none;
}

.column-slider-wrap::-webkit-scrollbar {
  display: none;
}

.column-slider {
  display: flex;
  gap: 20px;
  padding: 4px 24px 16px 0;
  width: max-content;
}

.column-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--warm-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.column-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow);
}

.column-card-image {
  width: 100%;
  height: 152px;
  object-fit: cover;
}

.column-card-body {
  padding: 16px;
}

.column-tag {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.column-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.column-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================
   News Section
   ============================ */
.news-section {
  background: var(--bg-alt);
  padding: 108px 0;
}

.news-section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.news-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.news-link {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
  text-align: left;
}

.news-link:hover {
  color: var(--terracotta);
}

.news-badge--event {
  color: var(--orange-cta);
  border-color: var(--orange-cta);
}

.news-inner {
  max-width: 760px;
  max-height: 480px;
  margin: 0 auto;
  background: var(--warm-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow-y: auto;
  box-shadow: 0 4px 24px var(--shadow);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  background: var(--terracotta-pale);
}

.news-date {
  font-size: 0.8125rem;
  color: var(--text-light);
  white-space: nowrap;
  margin-top: 2px;
  min-width: 90px;
}

.news-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  border: 1.5px solid currentColor;
  text-transform: uppercase;
}

.news-badge.event {
  color: var(--orange-cta);
  border-color: var(--orange-cta);
}

.news-badge.vol {
  color: var(--text-light);
  border-color: var(--border);
}

.news-badge.info {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.news-badge.important {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

.news-title {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
  flex: 1;
}

.news-title a:hover {
  color: var(--terracotta);
}

/* ============================
   Button System
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 1.38rem;
  font-weight: 600;
  padding: 22px 60px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease,
    box-shadow 0.22s ease, transform 0.15s ease;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
  box-shadow: 0 4px 20px rgba(200, 90, 58, 0.30);
}

.btn-primary:hover {
  background: var(--terracotta-light);
  border-color: var(--terracotta-light);
  color: #fff;
  box-shadow: 0 6px 28px rgba(200, 90, 58, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.btn-outline-terracotta {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn-outline-terracotta:hover {
  background: var(--terracotta);
  color: #fff;
}

.btn-orange {
  background: #FF9F1C;
  color: #fff;
  border-color: #FF9F1C;
  box-shadow: 0 4px 20px rgba(255, 159, 28, 0.35);
}

.btn-orange:hover {
  background: #e88900;
  border-color: #e88900;
  color: #fff;
  box-shadow: 0 6px 28px rgba(255, 159, 28, 0.45);
}

.btn-sm {
  font-size: 1rem;
  padding: 14px 36px;
}

.btn-xs {
  font-size: 0.875rem;
  padding: 10px 24px;
  gap: 8px;
}

/* ============================
   Page Hero (Inner Pages)
   ============================ */
.page-hero {
  padding: calc(var(--nav-height) + 56px) 0 64px;
  background: var(--terracotta);
  text-align: center;
}

.page-hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  display: block;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ============================
   Forms
   ============================ */
.form-section__lead {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin: 12px 0 36px;
  line-height: 1.7;
}

.form-section {
  background: var(--warm-white);
  border-radius: var(--radius-card);
  padding: 40px;
  border: 1px solid var(--border);
}

.form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--warm-white);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px var(--shadow);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-label .required {
  color: var(--terracotta);
  margin-left: 4px;
  font-size: 0.75rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
}

.form-control:focus {
  border-color: var(--terracotta);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 90, 58, 0.12);
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7e75' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 6px;
}

/* ============================
   Contact Form 7 調整
   ============================ */
.wpcf7 .form-group {
  margin-bottom: 24px;
}

.wpcf7 br {
  display: none;
}

.wpcf7 .form-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.wpcf7-form-control-wrap {
  display: block;
  margin-top: 0;
  padding-top: 0;
}

.wpcf7-form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  appearance: none;
}

.wpcf7-form-control:focus {
  border-color: var(--terracotta);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 90, 58, 0.12);
}

.wpcf7-form-control::placeholder {
  color: var(--text-light);
  font-size: 0.9375rem;
}

textarea.wpcf7-form-control {
  resize: vertical;
  min-height: 140px;
}

select.wpcf7-form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7e75' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.wpcf7-form-control.wpcf7-submit {
  display: block;
  margin: 0 auto;
  width: auto;
  background: var(--terracotta);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  padding: 22px 100px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.06em;
}

.wpcf7-form-control.wpcf7-submit:hover {
  background: var(--terracotta-light);
  transform: translateY(-1px);
}

.wpcf7-not-valid-tip {
  font-size: 0.75rem;
  color: var(--terracotta);
  margin-top: 4px;
  display: block;
}

.wpcf7-not-valid {
  border-color: var(--terracotta) !important;
}

.wpcf7-response-output {
  margin-top: 1.5rem;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.875rem;
  border: none !important;
}

.wpcf7-mail-sent-ok {
  background: #f0faf4;
  color: #2a7a4a;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  background: #fff0ed;
  color: var(--terracotta);
}

/* ============================
   FAQ Accordion
   ============================ */
.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.open {
  border-color: var(--terracotta);
  box-shadow: 0 4px 20px rgba(200, 90, 58, 0.10);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: var(--terracotta-pale);
}

.faq-q-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-q-text {
  flex: 1;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark);
  line-height: 1.6;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 4px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--terracotta);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px 68px;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.85;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ============================
   Post / Article Cards
   ============================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.post-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow);
}

.post-card-image {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
}

.post-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.04);
}

.post-card-body {
  padding: 20px 22px 24px;
}

.post-card-category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.post-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-excerpt {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================
   Cat Single Page
   ============================ */
.cat-single-section {
  padding-top: calc(var(--nav-height) + 48px);
}

.cat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.cat-breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cat-breadcrumb a:hover {
  color: var(--terracotta);
}

.cat-single-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 56px;
  align-items: start;
}

/* 写真エリア */
.cat-single-gallery {
  position: sticky;
  top: 96px;
}

.cat-single-main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  background: var(--warm-white);
  aspect-ratio: 4/3;
}

.cat-single-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.cat-single-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--border);
}

.cat-single-placeholder svg {
  width: 72px;
  height: 72px;
  opacity: 0.4;
}

.cat-single-placeholder p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.cat-single-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cat-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2.5px solid var(--border);
  cursor: pointer;
  padding: 0;
  background: none;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}

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

.cat-thumb:hover,
.cat-thumb.is-active {
  border-color: var(--terracotta);
}

/* ステータスバッジ（single用） */
.cat-status-badge {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.cat-status-badge--reserved {
  background: var(--orange-cta);
}

.cat-status-badge--adopted {
  background: var(--text-light);
}

/* 情報エリア */
.cat-single-header {
  margin-bottom: 24px;
}

.cat-single-name {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.2;
}

/* スペック */
.cat-single-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 24px 0;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.cat-single-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-bottom: 1.5px solid var(--border);
}

.cat-single-spec:nth-child(odd) {
  border-right: 1.5px solid var(--border);
}

.cat-single-spec:nth-last-child(-n+2) {
  border-bottom: none;
}

.cat-single-spec dt {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cat-single-spec dd {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

/* 性格タグ */
.cat-single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.cat-tag {
  background: var(--terracotta-pale);
  border: 1.5px solid transparent;
  color: var(--terracotta);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}

/* 紹介文 */
.cat-single-desc {
  margin-bottom: 28px;
}

.cat-single-desc h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--terracotta-pale);
}

.cat-single-desc p {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--text);
}

/* 健康情報 */
.cat-single-health {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.cat-single-health h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cat-single-health p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

/* 里親CTA */
.cat-single-apply {
  background: var(--terracotta-pale);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.cat-single-apply p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

/* 戻るリンク */
.cat-single-back {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ============================
   Members Grid
   ============================ */
.members-section {
  background: var(--warm-white);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.member-card:hover {
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-4px);
}

.member-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}

.member-card:hover .member-avatar {
  border-color: var(--terracotta);
}

.member-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.member-role {
  font-size: 0.8125rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 10px;
}

.member-bio {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================
   Footer
   ============================ */
.site-footer {
  background: var(--terracotta);
  color: #fff;
  padding: 64px 0 0;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Top 3-column grid --- */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  font-style: italic;
  display: block;
  margin-bottom: 10px;
}

.footer-logo:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-sns {
  display: flex;
  gap: 8px;
}

.footer-sns a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-sns a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Nav list */
.footer-nav-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.footer-nav-list a {
  font-size: 0.9375rem;
  color: #fff;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav-list a:hover {
  color: rgba(255, 255, 255, 0.75);
  padding-left: 4px;
}

/* Contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1.6;
}

.footer-contact-icon {
  flex-shrink: 0;
  opacity: 0.7;
  margin-top: 2px;
}

.footer-contact-list a {
  color: #fff;
  transition: color 0.2s ease;
}

.footer-contact-list a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Bank info bar --- */
.footer-bank-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bank-bar-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.05em;
}

.footer-bank-bar-item {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bank-bar-sep {
  opacity: 0.35;
}

.footer-bank-bar-note {
  margin-left: auto;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* --- Bottom bar --- */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #fff;
}

/* ============================
   Animations
   ============================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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


/* ============================
   Pagination
   ============================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 56px 0 0;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  border: 1.5px solid var(--border);
  background: var(--warm-white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.pagination .page-numbers:hover {
  background: var(--terracotta-pale);
  border-color: var(--terracotta);
  color: var(--terracotta);
}

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

.pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  width: auto;
}

/* ============================
   Breadcrumb
   ============================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================
   Single Article / Content
   ============================ */
.entry-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--text);
}

.entry-content h2 {
  font-size: 1.4rem;
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--terracotta);
}

.entry-content h3 {
  font-size: 1.125rem;
  margin: 32px 0 12px;
  color: var(--terracotta);
}

.entry-content p {
  margin-bottom: 20px;
}

.entry-content img {
  border-radius: 12px;
  margin: 24px auto;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 20px 24px;
  list-style: revert;
}

.entry-content li {
  margin-bottom: 6px;
}

.entry-content blockquote {
  border-left: 4px solid var(--terracotta-pale);
  padding: 16px 24px;
  background: var(--terracotta-pale);
  border-radius: 8px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-light);
}

/* ============================
   Utility Classes
   ============================ */
.text-center { text-align: center; }
.text-terracotta { color: var(--terracotta); }
.text-muted { color: var(--text-light); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============================
   Responsive — 768px
   ============================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
  }

  /* Nav */
  .nav-main-menu,
  .nav-more {
    display: none;
  }

  #site-nav {
    padding: 0 16px;
    overflow: visible;
  }

  .nav-right {
    gap: 0;
    overflow: visible;
  }

  .menu-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
  }

  .menu-toggle span {
    background: var(--dark);
    display: block;
  }

  .main-nav {
    display: flex;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--warm-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 0;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    padding: 14px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease, background 0.2s ease;
  }

  .main-nav a:hover {
    color: var(--terracotta);
    background: var(--terracotta-pale);
  }

  .nav-cta {
    margin: 16px 24px 0 !important;
    border-radius: var(--radius-pill) !important;
    text-align: center !important;
    padding: 14px 24px !important;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(1.05rem, 6.2vw, 1.9rem);
    max-width: 100%;
  }

  .hero-title-line2 {
    white-space: nowrap;
  }

  .hero-text {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-content {
    padding: var(--nav-height) 20px 140px;
  }

  .hero-bg {
    background-position: 70% center;
  }

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

  .btn {
    font-size: 1.1rem;
    padding: 18px 40px;
    width: 100%;
    max-width: 360px;
  }

  /* Sections */
  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  /* About / Why grids */
  .about-inner,
  .why-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-text .section-label,
  .about-text .section-title,
  .why-text .section-label,
  .why-text .section-title {
    text-align: center;
  }

  .about {
    padding-top: 64px;
  }

  .about-image,
  .why-image {
    min-height: 240px;
    order: -1;
    margin: 0;
    width: 100%;
    border-radius: 0;
    transform: none;
  }

  .about-text {
    padding: 40px 24px;
  }

  .why-text {
    padding: 32px 24px;
  }

  .why-body {
    padding: 40px 24px;
  }

  .about-body .section-label,
  .why-body .section-label,
  .about-body .section-title,
  .why-body .section-title {
    text-align: center;
  }

  /* Count */
  .count-inner {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
  }

  .count-block,
  .count-item {
    padding: 28px 40px;
  }

  .count-block + .count-block::before,
  .count-item + .count-item::before {
    left: 24px;
    right: 24px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .count-item + .count-item::before {
    left: 24px;
    right: 24px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .count-number {
    font-size: 3rem;
  }

  /* Cats / Adopted grid */
  .cats-grid,
  .adopted-grid {
    gap: 24px 16px;
  }

  .cat-avatar {
    width: 120px;
    height: 120px;
  }

  /* Column slider */
  .column-slider {
    padding: 4px 20px 16px;
  }

  /* News */
  .news-item {
    flex-wrap: wrap;
    padding: 16px 20px;
    gap: 8px;
  }

  .news-date {
    min-width: auto;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .footer-contact-list {
    margin: 0;
    padding: 0;
  }

  .footer-bank-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .footer-bank-bar-note {
    margin-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Cat single */
  .cat-single-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cat-single-gallery {
    position: static;
  }

  .cat-single-name {
    font-size: 1.75rem;
  }

  .cat-single-specs {
    grid-template-columns: 1fr 1fr;
  }

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-wrap {
    padding: 32px 20px;
  }

  /* Members */
  .members-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
  }

  /* Page hero */
  .page-hero {
    padding: calc(var(--nav-height) + 40px) 0 48px;
  }

  /* Posts grid */
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Inner Page Components
   ============================================================ */

/* Page hero — class overrides for template usage */
.page-hero .section-label {
  color: rgba(255, 255, 255, 0.75);
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero-sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.85;
}

/* Section heading alias */
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  text-align: center;
}

/* Section lead text */
.section-lead {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ============================
   About Page
   ============================ */
/* 活動概要セクションの下余白を調整 */
.section:has(.about-page-grid) {
  padding-bottom: 48px;
}

/* メンバーページ：代表についての見出し余白 */
.section-title:has(+ .members-grid) {
  margin-bottom: 40px;
}


.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-grid__image {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(135deg, var(--terracotta-pale) 0%, var(--border) 100%);
  aspect-ratio: 4 / 3;
}

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

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: var(--terracotta-pale);
  border-radius: var(--radius-card);
}

.about-grid__text .section-title {
  margin-bottom: 24px;
}

.about-specs {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 32px;
}

.about-specs__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  border-bottom: 1px solid var(--border);
}

.about-specs__row:last-child {
  border-bottom: none;
}

.about-specs__row dt {
  padding: 13px 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--terracotta-pale);
}

.about-specs__row dd {
  padding: 13px 18px;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--warm-white);
}

.about-message {
  background: var(--cream);
  border-left: 4px solid var(--terracotta);
  padding: 24px 28px;
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  margin-top: 24px;
}

.about-message h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.about-message p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 12px;
}

.about-message p:last-of-type {
  margin-bottom: 0;
}

.about-message__sig {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-top: 16px;
  text-align: right;
}

/* Activity pillars */
.section-title:has(+ .pillars-grid) {
  margin-bottom: 32px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.pillar-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.pillar-card__icon {
  margin-bottom: 16px;
  color: var(--terracotta);
  display: flex;
  justify-content: center;
}

.pillar-card__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.pillar-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.pillar-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* Rescue flow steps */
.rescue-steps {
  list-style: none;
  max-width: 680px;
  margin: 40px auto 0;
  position: relative;
}

.rescue-steps::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.rescue-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 28px;
  position: relative;
}

.rescue-step:last-child {
  padding-bottom: 0;
}

.rescue-step__number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.rescue-step__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
  padding-top: 13px;
}

.rescue-step__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* Count blocks (About stats) */
.section-title:has(+ .count-blocks) {
  margin-bottom: 32px;
}

.count-blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.count-block__number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.count-block__unit {
  font-size: 1.1rem;
  font-weight: 600;
}

.count-block__label {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ============================
   Support Page
   ============================ */
.cost-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cost-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cost-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--shadow);
}

.cost-card__icon {
  margin-bottom: 16px;
  color: var(--terracotta);
  display: flex;
  justify-content: center;
}

.cost-card__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.cost-card__title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.cost-card__amount {
  font-size: 1rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.cost-card__desc {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.7;
}

.donation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.donation-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.donation-card__icon {
  margin-bottom: 4px;
  color: var(--terracotta);
}

.donation-card__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.donation-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
}

.donation-card__desc {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
}

.donation-card__note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: auto;
}

.bank-info {
  margin-top: 12px;
}

.bank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  border-radius: 10px;
  overflow: hidden;
}

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

.bank-table tr:last-child th,
.bank-table tr:last-child td {
  border-bottom: none;
}

.bank-table th {
  background: var(--terracotta-pale);
  color: var(--text-light);
  font-weight: 600;
  width: 110px;
}

.bank-table td {
  background: var(--cream);
  color: var(--text);
}

.bank-info__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 16px 0 6px;
  letter-spacing: 0.04em;
}

.bank-info__label:first-child {
  margin-top: 0;
}

.bank-info__note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 10px;
}

.supplies-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
  margin: 24px 0;
}

.supplies-list li {
  padding: 12px 18px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9375rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.supplies-list li::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
  flex-shrink: 0;
}

.support-cta-box {
  background: var(--terracotta-pale);
  border: 1px solid var(--terracotta-light);
  border-radius: var(--radius-card);
  padding: 48px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.support-cta-box h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.support-cta-box p {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 24px;
}

/* ============================
   Volunteer Page
   ============================ */
.volunteer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.volunteer-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.volunteer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--shadow);
}

.volunteer-card__icon {
  margin-bottom: 14px;
  color: var(--terracotta);
  display: flex;
  justify-content: center;
}

.volunteer-card__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.volunteer-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.volunteer-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

.requirements-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0;
}

.requirements-list li {
  padding: 12px 20px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9375rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.requirements-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.note-box {
  background: var(--terracotta-pale);
  border: 1px solid var(--terracotta-light);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.8;
  margin-top: 24px;
}

/* Form additions */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}

.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--terracotta);
  cursor: pointer;
}

.form-check-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.form-submit {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.form-submit .btn {
  min-width: 280px;
  padding: 16px 64px;
}

.form-required {
  color: var(--terracotta);
  font-size: 0.75rem;
  margin-left: 4px;
  font-weight: 600;
}

.form-optional {
  color: var(--text-light);
  font-size: 0.75rem;
  margin-left: 4px;
}

/* ============================
   Apply Page
   ============================ */
.info-box {
  background: var(--terracotta-pale);
  border: 1px solid var(--terracotta-light);
  border-radius: var(--radius-card);
  padding: 32px;
  margin-bottom: 40px;
}

.info-box h2,
.info-box__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.info-box__note {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 12px;
}

.fee-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--terracotta);
}

.info-box__lead {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.info-box__steps {
  list-style: none;
  counter-reset: step-counter;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 14px 0;
}

.info-box__steps li {
  counter-increment: step-counter;
  padding: 10px 16px;
  background: var(--warm-white);
  border-radius: 10px;
  font-size: 0.9375rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-box__steps li::before {
  content: counter(step-counter);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.steps-wrap {
  margin-bottom: 48px;
}

.steps-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.steps {
  list-style: none;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  position: relative;
}

.step:last-child {
  padding-bottom: 0;
}

.step__number {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step__body {
  padding-top: 12px;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.step__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.75;
}

.apply-form-wrap {
  margin-top: 48px;
}

.apply-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.cf7-notice {
  background: var(--terracotta-pale);
  border: 1px solid var(--terracotta-light);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 24px;
}

/* ============================
   FAQ Page
   ============================ */
.faq-jump {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.faq-category {
  margin-bottom: 56px;
}

.faq-category-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-category-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1.1em;
  background: var(--terracotta);
  border-radius: 2px;
  flex-shrink: 0;
}

/* q-mark compatibility */
.q-mark {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-question > span:not(.q-mark):not(.icon) {
  flex: 1;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark);
  line-height: 1.6;
}

.faq-question .icon {
  margin-left: auto;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  color: var(--text-light);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  color: var(--terracotta);
}

/* ============================
   Contact Page
   ============================ */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.contact-info-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-info-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--terracotta);
  display: flex;
  align-items: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.contact-info-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.contact-info-value {
  display: block;
  font-size: 0.9375rem;
  color: var(--text);
}

a.contact-info-value:hover {
  color: var(--terracotta);
}

.contact-info-note {
  font-size: 0.8125rem;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

.contact-reply-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.contact-sns {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 18px;
}

.contact-sns-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.contact-sns-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-sns-btn {
  font-size: 0.8125rem;
  padding: 6px 16px;
}

/* ============================
   Report / News Page
   ============================ */
.news-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap;
}

.news-tab {
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-light);
  background: transparent;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.news-tab:hover {
  color: var(--terracotta);
}

.news-tab.is-active {
  color: var(--terracotta);
  border-bottom-color: var(--terracotta);
}

.news-list-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.post-card-date {
  font-size: 0.8125rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 6px;
}

.post-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--terracotta-pale);
}

.no-posts {
  text-align: center;
  color: var(--text-light);
  padding: 48px 0;
  font-size: 0.9375rem;
}

/* ============================
   Coming Soon
   ============================ */
.cats-coming-soon {
  text-align: center;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cats-coming-soon__icon {
  color: var(--border);
  margin: 0;
}

.cats-coming-soon__text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.9;
  margin: 0;
}

.cats-coming-soon__sub {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* ============================
   404 Page
   ============================ */
.error404-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.error404-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.error404-illustration {
  margin-bottom: 8px;
}

.error404-svg {
  width: 100%;
  max-width: 320px;
}

.error404-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.error404-title {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.error404-desc {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 36px;
}

.error404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   Cat Archive filters
   ============================ */
.filter-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 0.875rem;
  font-family: inherit;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

/* ============================
   Utility
   ============================ */
.btn-sm {
  font-size: 0.8125rem;
  padding: 8px 20px;
}

.no-cats-message {
  text-align: center;
  padding: 64px 0;
  color: var(--text-light);
  font-size: 1rem;
}

/* Members page overrides */
.members-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 2.5rem;
}

.member-card {
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  align-items: flex-start;
  text-align: left;
}
.members-grid .member-card {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 16px;
  background: var(--terracotta-pale);
  border: 1px solid var(--terracotta-light);
}

.member-card__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.member-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.member-card__bio {
  text-align: left;
}

.member-card__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--terracotta-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.member-card__photo svg {
  width: 28px;
  height: 28px;
  color: var(--terracotta);
}


.member-card__body {
  flex: 1;
}

.member-card__role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--terracotta);
  background: var(--terracotta-pale);
  border: 1px solid var(--terracotta-light);
  border-radius: var(--radius-pill);
  padding: 0.2em 0.9em;
  margin-bottom: 0.5rem;
}

.member-card--featured .member-card__role {
  background: var(--warm-white);
}

.member-card__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.member-card__bio {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

.volunteer-banner {
  margin-top: 2.5rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.5rem;
}

.volunteer-banner__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.volunteer-banner__icon {
  flex-shrink: 0;
  color: var(--terracotta);
}

.volunteer-banner__icon svg {
  width: 48px;
  height: 48px;
  display: block;
}

.volunteer-banner__text {
  flex: 1;
  min-width: 200px;
}

.volunteer-banner__text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.volunteer-banner__text p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.8;
}

.partners-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.partner-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.5rem;
}

.partner-item__icon {
  flex-shrink: 0;
  color: var(--terracotta);
}

.partner-item__icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.partner-item__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.partner-item__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.75;
}

.section-cta {
  background: var(--terracotta-pale);
}

.cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-block__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.cta-block__desc {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.cta-block__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================
   Responsive — Inner Pages
   ============================ */
@media (max-width: 960px) {
  .cost-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .count-blocks {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .about-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-grid__image {
    order: -1;
  }

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

  .cost-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .donation-cards {
    grid-template-columns: 1fr;
  }

  .volunteer-cards {
    grid-template-columns: 1fr;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    position: static;
  }

  .member-card--featured {
    flex-direction: column;
  }

  .volunteer-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .support-cta-box {
    padding: 32px 24px;
  }

  .faq-jump {
    gap: 8px;
  }
}

/* ============================
   Zen Maru Gothic — non-hero sections
   ============================ */
.about,
.count-section,
.cats-section,
.adopted-section,
.why-section,
.support-section,
.column-section,
.news-section {
  --font-heading: 'Zen Maru Gothic', sans-serif;
  --font-body:    'Zen Maru Gothic', sans-serif;
}

.about .about-heading,
.about .section-title,
.count-section .section-title,
.cats-section .section-title,
.adopted-section .section-title,
.why-section .section-title,
.support-section .section-title,
.column-section .section-title,
.news-section .section-title {
  font-family: 'Noto Sans JP', sans-serif;
}

/* ============================
   Wave Section Dividers
   ============================ */
.wave-divider {
  display: block;
  overflow: hidden;
  width: 100%;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* bg = section above, fill = section below */
.wave-divider--base-alt { background: var(--bg-base); }
.wave-divider--base-alt .wave-fill { fill: var(--bg-alt); }

.wave-divider--alt-base { background: var(--bg-alt); }
.wave-divider--alt-base .wave-fill { fill: var(--bg-base); }

/* ============================
   Responsive — トップページ 768px
   ============================ */
@media (max-width: 768px) {
  /* セクション縦パディング */
  .support-section,
  .why-section,
  .column-section,
  .news-section,
  .count-section,
  .cats-section,
  .adopted-section {
    padding: 72px 0;
  }

  /* About / Why テキスト */
  .why-text {
    padding: 40px 24px;
  }

  /* 猫カード */
  .cat-card {
    width: 160px;
  }

  .cat-avatar {
    width: 140px;
    height: 140px;
  }

  /* Support ボタン並び */
  .support-btns {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 320px;
  }

  /* コラム — スライダー → グリッド */
  .column-slider-wrap {
    overflow: visible;
    cursor: default;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .column-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: auto;
    padding: 4px 0 0;
  }

  .column-card {
    flex: none;
    width: auto;
    scroll-snap-align: none;
  }

  .column-card:nth-child(n+5) {
    display: none;
  }

  /* ニュースアイテム */
  .news-item {
    padding: 16px 20px;
    gap: 10px;
  }

  .news-date {
    min-width: 76px;
    font-size: 0.75rem;
  }
}

/* ============================
   Responsive — 768px 追加対応（ページ共通）
   ============================ */
@media (max-width: 768px) {
  /* About specs table */
  .about-specs__row {
    grid-template-columns: 90px 1fr;
  }

  /* About page count blocks */
  .count-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Rescue steps / Apply steps — number size */
  .rescue-step__number,
  .step__number {
    width: 44px;
    height: 44px;
    font-size: 0.8125rem;
  }

  .rescue-steps::before,
  .steps::before {
    left: 21px;
  }

  /* Privacy / Terms */
  .privacy-content h2 {
    font-size: 1rem;
  }
}

/* ============================
   Responsive — 480px（小型スマホ）
   ============================ */
@media (max-width: 480px) {
  /* 基本余白・文字 */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .btn {
    font-size: 1rem;
    padding: 15px 28px;
  }

  /* ナビ */
  .nav-logo {
    font-size: 1.1rem;
  }

  /* ページヒーロー */
  .page-hero h1 {
    font-size: 1.5rem;
  }

  .page-hero-sub {
    font-size: 0.875rem;
  }

  /* About specs */
  .about-specs__row {
    grid-template-columns: 1fr;
  }

  .about-specs__row dt {
    padding: 10px 14px 4px;
    border-bottom: none;
  }

  .about-specs__row dd {
    padding: 4px 14px 10px;
  }

  /* About page count blocks → 1カラム */
  .count-blocks {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .count-block__number {
    font-size: 2rem;
  }

  /* フォーム */
  .form-wrap {
    padding: 24px 16px;
  }

  /* コストカード */
  .cost-cards {
    grid-template-columns: 1fr;
  }

  /* 活動の柱 */
  .pillar-card {
    padding: 24px 20px;
  }

  /* rescue-steps / steps */
  .rescue-step,
  .step {
    gap: 16px;
  }

  .rescue-step__number,
  .step__number {
    width: 38px;
    height: 38px;
    font-size: 0.75rem;
  }

  .rescue-steps::before,
  .steps::before {
    left: 18px;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.9rem;
    padding: 16px 14px;
  }

  /* フッター */
  .footer-bank-bar {
    font-size: 0.8rem;
  }

  /* メンバーグリッド */
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Privacy / Terms */
  .privacy-content {
    font-size: 0.9rem;
  }

  /* トップ セクション縦パディング */
  .support-section,
  .why-section,
  .column-section,
  .news-section,
  .count-section,
  .cats-section,
  .adopted-section {
    padding: 56px 0;
  }

  /* 家族に出会えた猫たち — モバイルはグリッドカード表示 */
  .adopted-marquee-wrap {
    overflow: visible;
    cursor: default;
    -webkit-mask-image: none;
    mask-image: none;
    padding: 0 16px;
  }

  .adopted-marquee-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    padding: 0;
    will-change: auto;
    transform: none !important;
    animation: none;
  }

  /* 7匹目以降は非表示 */
  .adopted-marquee-track .adopted-item:nth-child(n+7) {
    display: none;
  }

  .adopted-item {
    width: 100%;
  }

  .adopted-avatar {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto 8px;
  }

  .adopted-name {
    font-size: 0.8rem;
  }

  /* 猫カード */
  .cat-card {
    width: 140px;
  }

  .cat-avatar {
    width: 120px;
    height: 120px;
  }

  /* コラムカード */
  .column-card {
    flex: 0 0 240px;
  }

  /* ニュース */
  .news-inner {
    max-height: 360px;
    border-radius: 14px;
  }

  .news-item {
    padding: 14px 16px;
  }

  /* Why リスト */
  .why-list-item {
    font-size: 0.875rem;
  }
}

/* ============================
   Privacy Policy
   ============================ */
.privacy-content {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.9;
  color: var(--text);
}

.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2.5rem 0 0.75rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--terracotta);
}

.privacy-content p {
  margin-bottom: 1rem;
}

.privacy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content ul li {
  margin-bottom: 0.4rem;
}

.privacy-content a {
  color: var(--terracotta);
  text-decoration: underline;
}

.privacy-updated {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================
   Column Single Article
   ============================ */

/* ---- Header ---- */
.column-single-title-area {
  position: relative;
  padding-top: calc(var(--nav-height) + 40px);
  margin-bottom: 1rem;
}

.column-single-title {
  margin-top: 1.5rem;
}

.column-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-light);
  position: absolute;
  top: calc(var(--nav-height) + 8px);
  left: 0;
}

.column-breadcrumb a {
  color: var(--text-light);
  transition: color 0.2s ease;
}

.column-breadcrumb a:hover {
  color: var(--terracotta);
}

.column-single-cat {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: var(--terracotta-pale);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  margin-bottom: 16px;
  transition: background 0.2s ease;
}

.column-single-cat:hover {
  background: #ead8d2;
}

.column-single-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.column-single-meta {
  margin-bottom: 2rem;
}

.column-single-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-light);
}

.column-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.column-meta-updated {
  color: var(--terracotta);
}

.column-single-meta svg {
  flex-shrink: 0;
  opacity: 0.55;
}

/* ---- Expert bar ---- */
.column-expert-bar {
  margin-bottom: 2.5rem;
  padding: 14px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.7;
}

.column-expert-bar-inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.column-expert-bar-inner svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--terracotta);
  opacity: 0.8;
}

.column-expert-bar strong {
  color: var(--dark);
  font-weight: 700;
}

/* ---- Eyecatch image ---- */
.column-single-eyecatch {
  background: var(--cream);
  padding: 0 0 56px;
}

.column-single-eyecatch-img {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  object-fit: cover;
  aspect-ratio: 16 / 7;
  box-shadow: 0 8px 40px var(--shadow);
}

/* ---- Body ---- */
.column-single-body-wrap {
  padding: 64px 0 80px;
}

.column-single-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
}

.column-single-body h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 3rem 0 1rem;
  padding: 0.7rem 1rem;
  background: var(--terracotta-pale);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 8px 8px 0;
  line-height: 1.5;
}

.column-single-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2.2rem 0 0.75rem;
  padding-left: 0.8rem;
  border-left: 3px solid var(--terracotta-light);
}

.column-single-body p {
  margin-bottom: 1.5rem;
}

.column-single-body p:last-child {
  margin-bottom: 0;
}

.column-single-body ul,
.column-single-body ol {
  padding-left: 1.6rem;
  margin-bottom: 1.5rem;
}

.column-single-body li {
  margin-bottom: 0.6rem;
}

.column-single-body strong {
  font-weight: 700;
  color: var(--dark);
}

.column-single-body a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.column-single-body a:hover {
  color: var(--terracotta-light);
}

.column-single-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--warm-white);
  border-left: 4px solid var(--terracotta-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-light);
}

/* ---- Share buttons ---- */
.column-share {
  max-width: 720px;
  margin: 3rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.column-share-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.column-share-buttons {
  display: flex;
  gap: 10px;
}

.column-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: #fff;
}

.column-share-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.column-share-btn--x    { background: #000; }
.column-share-btn--fb   { background: #1877f2; }
.column-share-btn--line { background: #06c755; }

/* ---- Footer (author + back link) ---- */
.column-single-footer {
  max-width: 720px;
  margin: 3rem auto 0;
}

.column-single-author-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--cream);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.column-single-author-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--terracotta-pale);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--terracotta);
}

.column-single-author-body {
  flex: 1;
  min-width: 0;
}

.column-single-author-head {
  margin-bottom: 10px;
}

.column-single-author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.column-single-author-role {
  font-size: 0.75rem;
  color: var(--terracotta);
  font-weight: 600;
}

.column-single-author-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.column-single-author-tags li {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.column-single-author-desc {
  font-size: 0.8125rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 12px;
}

.column-single-author-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.column-single-author-link:hover {
  gap: 7px;
}

.column-single-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  transition: background 0.2s ease, color 0.2s ease;
}

.column-single-back:hover {
  background: var(--terracotta);
  color: #fff;
}

/* ---- Related ---- */
.column-related {
  padding: 80px 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .column-single-header {
    padding: calc(var(--nav-height) + 32px) 0 32px;
    text-align: left;
  }

  .column-breadcrumb,
  .column-single-meta {
    justify-content: flex-start;
  }

  .column-single-title {
    font-size: 1.4rem;
    text-align: left;
  }

  .column-single-eyecatch {
    padding-bottom: 40px;
  }

  .column-single-body h2 {
    font-size: 1.05rem;
  }

  .column-single-author-box {
    padding: 18px 20px;
  }
}

/* ============================
   News Single
   ============================ */
.news-single-body {
  max-width: 720px;
  margin: 0 auto;
}

.news-single-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.news-single-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.news-list {
  max-width: 760px;
  margin: 0 auto;
  background: var(--warm-white);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
}

.news-list-more {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .wpcf7-form-control.wpcf7-submit {
    display: block;
    width: 100%;
  }
}

