/* ===== リセット & ベース ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #FFFFFF;
  --cream: #FBF8F4;
  --sky: #8EC5D6;
  --sky-light: #D6EEF7;
  --sky-dark: #5AADC7;
  --blush: #F2C4CE;
  --blush-light: #FDE8EC;
  --brown: #A0785A;
  --text: #2E2E2E;
  --text-light: #6B6B6B;
  --border: #E8E0D8;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

/* 浮遊する肉球 */
.floating-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.fp {
  position: absolute;
  opacity: 0.42;
  will-change: transform;
  animation: floatPaw 12s ease-in-out infinite;
}
.fp1 { width: 95px;  top: 14%; left: 5%;   animation-duration: 11s; animation-delay: 0s; }
.fp2 { width: 70px;  top: 32%; left: 88%;  animation-duration: 9s;  animation-delay: 1.5s; }
.fp3 { width: 120px; top: 60%; left: 8%;   animation-duration: 13s; animation-delay: 2.5s; }
.fp4 { width: 85px;  top: 74%; left: 84%;  animation-duration: 10s; animation-delay: 0.8s; }
.fp5 { width: 75px;  top: 88%; left: 16%;  animation-duration: 8.5s; animation-delay: 3.2s; }
.fp6 { width: 100px; top: 46%; left: 90%;  animation-duration: 14s; animation-delay: 1s; }

@keyframes floatPaw {
  0%   { transform: translateY(0) rotate(-8deg); }
  50%  { transform: translateY(-28px) rotate(8deg); }
  100% { transform: translateY(0) rotate(-8deg); }
}

/* 肉球カーソル（画像） */
body {
  cursor: url("images/cursor-paw.png") 16 15, auto;
}
a, button, select, label, .yt-card, .ig-cell {
  cursor: url("images/cursor-paw-lg.png") 20 18, pointer;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

picture { display: contents; }

/* ===== コンテナ ===== */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== セクション共通 ===== */
.section { padding: 88px 0; }

.section-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--sky);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 16px;
  margin-bottom: 52px;
}

/* ===== ボタン ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--sky);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--sky-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90,173,199,0.4);
}

.btn-secondary {
  background: var(--white);
  color: var(--sky-dark);
  border: 2px solid var(--sky);
}
.btn-secondary:hover {
  background: var(--sky-light);
  transform: translateY(-2px);
}

/* ===== ヘッダー ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.logo-paw { font-size: 1.2rem; }

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav a:hover { color: var(--sky-dark); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 16px 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ===== ヒーロー ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-img-run { object-position: center 40%; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 30%;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px 72px;
  width: 100%;
}

.hero-breed {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-amp {
  color: var(--sky-light);
  display: inline-block;
  margin: 0 0.1em;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 36px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-num {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.stat-unit {
  font-size: 1.4rem;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
  font-weight: 700;
}

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

.hero .btn-primary {
  background: var(--white);
  color: var(--text);
}
.hero .btn-primary:hover {
  background: var(--sky-light);
  color: var(--sky-dark);
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

.hero .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ===== わんこ紹介 ===== */
.dogs { background: var(--white); }

/* 回転スクロールバッジ */
.scroll-badge {
  position: absolute;
  bottom: 32px;
  right: 40px;
  width: 92px;
  height: 92px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-badge-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: badgeSpin 12s linear infinite;
}
.scroll-badge-text text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  fill: rgba(255, 255, 255, 0.92);
}
.scroll-badge-paw {
  font-size: 22px;
  animation: pawBounce 1.8s ease-in-out infinite;
}
@keyframes badgeSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes pawBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}


/* 背景に流れる薄文字 */
.dogs, .contact-section { position: relative; overflow: hidden; }
.dogs .container, .contact-section .container { position: relative; z-index: 1; }

.bg-marquee {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  white-space: nowrap;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: clamp(110px, 16vw, 230px);
  line-height: 1;
  color: rgba(142, 197, 214, 0.10);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.bg-marquee span {
  animation: marqueeMove 50s linear infinite;
}
.bg-marquee-reverse span {
  animation-direction: reverse;
}
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.dogs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.dog-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.dog-photo-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--sky-light);
}

.dog-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.dog-card:hover .dog-photo {
  transform: scale(1.04);
}
.kanon-photo {
  transform: scale(1.13);
  transform-origin: 75% center;
}
.dog-card:hover .kanon-photo {
  transform: scale(1.17);
}

.dog-info { padding: 28px; }

.dog-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.dog-reading {
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.dog-breed {
  font-size: 0.78rem;
  color: var(--sky-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.dog-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== プラットフォームセクション共通 ===== */
.platform-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.yt-section  { background: #fff; }
.ig-section  { background: var(--cream); }
.tt-section  { background: #fff; }

.platform-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.platform-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.platform-icon-wrap svg { width: 26px; height: 26px; }
.platform-icon-img { width: 52px; height: 52px; object-fit: cover; border-radius: 14px; }

.yt-icon { background: #FF0000; color: #fff; }
.ig-icon {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.tt-icon { background: #010101; color: #fff; }

.platform-meta { flex: 1; }

.platform-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.platform-handle {
  font-size: 0.82rem;
  color: var(--text-light);
}
.platform-followers {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.platform-follow-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  color: #fff;
}
.yt-btn  { background: #FF0000; }
.yt-btn:hover  { background: #cc0000; transform: translateY(-2px); }
.ig-btn  { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
.ig-btn:hover  { opacity: 0.88; transform: translateY(-2px); }
.tt-btn  { background: #010101; }
.tt-btn:hover  { background: #333; transform: translateY(-2px); }

/* YouTube グリッド */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .yt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .yt-grid { grid-template-columns: 1fr; }
}

.yt-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s;
}
.yt-card:hover { transform: translateY(-4px); }

.yt-thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}
.yt-card:hover .yt-thumb img { opacity: 0.85; }

.yt-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: rgba(255,255,255,0.9);
  opacity: 0;
  transition: opacity 0.2s;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.yt-card:hover .yt-play { opacity: 1; }

.yt-title {
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 700;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-section-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 36px 0 16px;
  padding-left: 12px;
  border-left: 3px solid #FF0000;
}

.yt-skeleton {
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Instagram / TikTok フィード */
.ig-feed-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
}

.ig-profile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.ig-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 3px solid var(--border);
}

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

.ig-username {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  word-break: break-all;
}

.ig-more-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: all 0.2s;
}
.ig-more-btn:hover {
  border-color: var(--sky);
  color: var(--sky-dark);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.ig-cell {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  display: block;
}

.ig-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ig-cell:hover img { transform: scale(1.06); }

.tt-cell .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.2s;
}
.tt-cell:hover .play-icon { opacity: 1; }

@media (max-width: 768px) {
  .ig-feed-wrap {
    grid-template-columns: 1fr;
  }
  .ig-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 16px 20px;
  }
  .ig-avatar { margin: 0; flex-shrink: 0; }
  .ig-username { margin-bottom: 8px; }
  .platform-follow-btn { display: none; }
}

/* ===== お問い合わせ ===== */
.contact-section { background: var(--cream); }

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.required {
  color: var(--sky-dark);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(142, 197, 214, 0.25);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-group select {
  appearance: none;
  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='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit { text-align: center; margin-top: 8px; }
.form-submit .btn { font-size: 1rem; padding: 16px 48px; }

.form-thanks {
  display: none;
  max-width: 680px;
  margin: 0 auto;
  background: var(--sky-light);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text);
}
.form-thanks.show { display: block; }

/* ===== フッター ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.06em;
}

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

.footer-sns a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-sns a:hover { background: var(--sky); }
.footer-sns svg { width: 18px; height: 18px; fill: white; }

.footer-copy { font-size: 0.78rem; letter-spacing: 0.06em; }

/* ===== レスポンシブ ===== */
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-btn { display: flex; }

  .section { padding: 64px 0; }

  .dogs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .contact-form { padding: 32px 24px; }

  .sns-card { padding: 20px 24px; gap: 16px; }

  .hero-btns { flex-direction: column; align-items: center; }

  .hero { min-height: calc(68vw + 64px); }
  .hero-title { font-size: 2.4rem; white-space: nowrap; }
  .hero-content { padding-bottom: 48px; }

  /* スマホでは写真全体を表示して下寄せ（見切れ防止） */
  .hero-img { object-fit: contain; object-position: center bottom; }
  .hero-photo { background: linear-gradient(180deg, #D6EEF7 0%, #FBF8F4 60%); }
  .hero-overlay { background: linear-gradient(to bottom, rgba(0,0,0,0) 52%, rgba(0,0,0,0.5) 100%); }

  /* スマホではタイトルと重なるためスクロールバッジを非表示 */
  .scroll-badge { display: none; }

  /* スマホでは肉球をカードの裏（写真と被らない）・上下の余白に配置 */
  .floating-paws { z-index: 0; }
  .fp { opacity: 0.4; }
  .fp1 { width: 64px;  top: 1%;  left: 6%; }
  .fp2 { width: 52px;  top: 3%;  left: 74%; }
  .fp3 { width: 58px;  top: 7%;  left: 40%; }
  .fp4 { width: 66px;  top: 95%; left: 8%; }
  .fp5 { width: 50px;  top: 97%; left: 72%; }
  .fp6 { width: 60px;  top: 92%; left: 44%; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 20px; }

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

  .hero { min-height: calc(68vw + 64px); }
  .hero-title { font-size: 2rem; }
}

/* ===== スクロールアニメーション ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ヒーローテキストふわっと登場 */
.hero-breed {
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.3s;
}
.hero-title {
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.55s;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 動きが苦手な人への配慮（OSの設定を尊重） */
@media (prefers-reduced-motion: reduce) {
  .hero-img, .hero-breed, .hero-title, .bg-marquee span,
  .scroll-badge-text, .scroll-badge-paw, .fp { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* タップ足跡エフェクト */
.paw-tap {
  position: absolute;
  pointer-events: none;
  font-size: 26px;
  z-index: 9999;
  animation: pawPop 0.9s ease-out forwards;
}
@keyframes pawPop {
  0%   { opacity: 0; transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) scale(0.4); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -90%) rotate(var(--rot, 0deg)) scale(1.3); }
}
