/* ===== CSS Variables ===== */
:root {
  --cherry: #e05a7a;
  --cherry-dark: #c04060;
  --cherry-light: #fde8ee;
  --cherry-pale: #fff5f7;
  --pink-mid: #f9d0db;
  --gold: #c9963a;
  --white: #ffffff;
  --off-white: #fafafa;
  --text: #2c2c2c;
  --text-mid: #555;
  --text-light: #888;
  --border: #eddde2;
  --shadow-sm: 0 2px 12px rgba(224,90,122,0.08);
  --shadow-md: 0 6px 28px rgba(224,90,122,0.12);
  --shadow-lg: 0 16px 56px rgba(224,90,122,0.15);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --font-serif: 'Noto Serif JP', serif;
  --font-body: 'Zen Maru Gothic', sans-serif;
  --font-en: 'Outfit', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ===== Placeholder ===== */
.img-placeholder {
  background: linear-gradient(135deg, var(--cherry-light), var(--pink-mid));
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cherry);
  font-size: 0.8rem;
  text-align: center;
  gap: 4px;
}
.img-placeholder.sq { aspect-ratio: 1; }
.img-placeholder.tall { height: 460px; }
.img-placeholder small { color: var(--text-light); font-size: 0.7rem; }
.insta-ph { font-size: 1.6rem; background: linear-gradient(135deg, #fce4ec, #f8bbd0); }

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ===== Header ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(224,90,122,0.08);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(224,90,122,0.1);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { font-size: 1.5rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-en {
  font-family: var(--font-en);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--cherry);
  text-transform: uppercase;
}
.logo-jp {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}


.pc-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.pc-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap;
}
#header.scrolled .pc-nav a { color: var(--text); opacity: 1; }
.pc-nav a:hover { opacity: 1; color: var(--cherry); }
.pc-nav .nav-cta {
  background: var(--cherry);
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.pc-nav .nav-cta:hover { background: var(--cherry-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: background 0.3s;
}
#header.scrolled .hamburger span { background: var(--text); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: none; }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-mid);
}
.mobile-link {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 32px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.mobile-link:hover { background: var(--cherry-pale); }
.mobile-link.cta-link {
  background: var(--cherry);
  color: var(--white);
  margin-top: 8px;
}

/* ===== Hero ===== */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f9c0cb 0%, #e896aa 40%, #c86080 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-label {
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  line-height: 1.8;
}
.placeholder-label small { opacity: 0.7; font-size: 0.75rem; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  animation: heroFadeIn 1.2s ease forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.hero-badge {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  padding: 6px 18px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 24px;
  animation-delay: 0.2s;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-title-line1 { display: block; }
.hero-title-line2 {
  display: block;
  color: #ffcdd8;
}

.hero-sub {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  opacity: 0.9;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

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

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  background: var(--cherry);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(224,90,122,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--cherry-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,90,122,0.45);
}

.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-cherry {
  display: inline-block;
  background: var(--cherry);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-cherry:hover { background: var(--cherry-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cherry);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 26px;
  border-radius: 50px;
  border: 2px solid var(--cherry);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--cherry); color: var(--white); }
.btn-outline.mt-s { margin-top: 10px; }

.btn-sm {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cherry);
  border: 1.5px solid var(--cherry);
  padding: 7px 16px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}
.btn-sm:hover { background: var(--cherry); color: var(--white); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 10;
  animation: scrollBounce 2s infinite ease-in-out;
}
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.7));
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== Catch Bar ===== */
.catch-bar {
  background: var(--cherry-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--cherry-dark);
  font-weight: 500;
}

/* ===== Section ===== */
.section {
  padding: 96px 0;
  background: var(--white);
}
.section-pink { background: var(--cherry-pale); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}
.section-title em {
  font-style: normal;
  color: var(--cherry);
}
.section-desc {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cherry-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--cherry);
}
.about-text p {
  font-size: 0.93rem;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.point-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--cherry-pale);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
}
.point-icon { font-size: 1.4rem; flex-shrink: 0; }
.point-title { font-weight: 700; font-size: 0.92rem; margin-bottom: 4px; }
.point-desc { font-size: 0.82rem; color: var(--text-mid); }

/* ===== Dogs ===== */
.dogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.dog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dog-photo { overflow: hidden; }
.dog-info { padding: 20px; }
.dog-name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.dog-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--cherry-light);
  color: var(--cherry-dark);
  padding: 3px 10px;
  border-radius: 50px;
}
.dog-desc { font-size: 0.82rem; color: var(--text-mid); }
.section-note { text-align: center; }
.section-note p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 14px; }

/* ===== Puppies ===== */
.puppies-banner {
  background: linear-gradient(135deg, var(--cherry), #d0466a);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}
.puppies-banner-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.puppies-icon { font-size: 2.8rem; flex-shrink: 0; }
.puppies-text { flex: 1; min-width: 200px; }
.puppies-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.puppies-desc { font-size: 0.85rem; color: rgba(255,255,255,0.85); }
.puppies-banner .btn-cherry {
  background: var(--white);
  color: var(--cherry);
  flex-shrink: 0;
}
.puppies-banner .btn-cherry:hover { background: var(--cherry-light); }

.puppies-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.puppy-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.puppy-card:hover { transform: translateY(-4px); }
.puppy-photo { position: relative; overflow: hidden; }
.puppy-status {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.puppy-status.available { background: var(--cherry); color: var(--white); }
.puppy-status.reserved { background: #888; color: var(--white); }
.puppy-info { padding: 16px 20px; }
.puppy-breed { font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; }
.puppy-attrs { display: flex; gap: 10px; font-size: 0.8rem; color: var(--text-mid); margin-bottom: 12px; }
.puppies-note { text-align: center; font-size: 0.85rem; color: var(--text-mid); }
.puppies-note a { color: var(--cherry); text-decoration: underline; }

/* ===== Parents ===== */
.parents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 28px;
}
.parent-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0;
  flex-direction: column;
}
.parent-photo { position: relative; }
.parent-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  color: var(--white);
}
.parent-badge.father { background: #5c8dd6; }
.parent-badge.mother { background: var(--cherry); }
.parent-info { padding: 20px 24px; }
.parent-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.parent-detail { font-size: 0.8rem; color: var(--text-light); margin-bottom: 10px; }
.parent-info p { font-size: 0.88rem; color: var(--text-mid); }
.parents-link { text-align: center; font-size: 0.85rem; color: var(--text-mid); }
.parents-link a { color: var(--cherry); text-decoration: underline; }

/* ===== Instagram ===== */
.insta-embed-area {
  background: var(--cherry-pale);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  min-height: 280px;
}
.insta-fallback-inner {
  margin-bottom: 32px;
}
.insta-icon { font-size: 2.4rem; margin-bottom: 12px; }
.insta-fallback-title {
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cherry);
  margin-bottom: 10px;
}
.insta-fallback p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 20px; }
.insta-grid-preview {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}
.insta-thumb { display: block; border-radius: 10px; overflow: hidden; transition: transform 0.2s; }
.insta-thumb:hover { transform: scale(1.04); }
.insta-follow { text-align: center; margin-top: 28px; }

/* ===== Breeders ===== */
.breeders-banner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.breeders-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 44px 48px;
  flex-wrap: wrap;
}
.breeders-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.breeders-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.breeders-list li { font-size: 0.88rem; color: var(--text-mid); }
.breeders-btns {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.contact-card {
  background: var(--cherry-pale);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-icon { font-size: 2.2rem; margin-bottom: 12px; }
.contact-title { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; margin-bottom: 12px; }
.contact-desc { font-size: 0.83rem; color: var(--text-mid); margin-bottom: 20px; line-height: 1.7; }
.contact-note {
  background: var(--cherry-pale);
  border-radius: var(--radius-sm);
  padding: 20px 28px;
  border: 1px solid var(--border);
}
.contact-note p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 6px; }

/* ===== Access ===== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.access-table th, .access-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.access-table th {
  font-weight: 700;
  color: var(--cherry-dark);
  width: 30%;
  white-space: nowrap;
}
.access-table td small { color: var(--text-light); font-size: 0.78rem; }
.access-table a { color: var(--cherry); text-decoration: underline; }
.access-note { font-size: 0.8rem; color: var(--text-light); margin-top: 16px; }
.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--cherry-pale);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  border: 2px dashed var(--border);
  color: var(--text-light);
  font-size: 0.88rem;
}
.map-placeholder small { font-size: 0.75rem; }

/* ===== Footer ===== */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 40px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.logo-icon-sm { font-size: 1.2rem; }
.footer-catch { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-sns { display: flex; gap: 10px; flex-wrap: wrap; }
.sns-btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  transition: background 0.2s, border-color 0.2s;
}
.sns-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a { font-size: 0.85rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-nav a:hover { color: var(--cherry); }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 16px 24px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-en);
}

/* ===== スマホ下部固定3導線 ===== */
.fixed-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom);
}
.fixed-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text);
  gap: 4px;
  border-right: 1px solid var(--border);
  transition: background 0.15s;
}
.fixed-btn:last-child { border-right: none; }
.fixed-btn:active { background: var(--cherry-pale); }
.fixed-btn.visit { color: var(--cherry); }
.fixed-btn.contact { color: #5c8dd6; }
.fixed-btn.breeders { color: #7a9a5a; }
.fixed-nav {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .pc-nav { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .img-placeholder.tall { height: 300px; }
  .dogs-grid { grid-template-columns: repeat(2, 1fr); }
  .puppies-cards { grid-template-columns: repeat(2, 1fr); }
  .parents-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .breeders-inner { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .puppies-banner-inner { flex-direction: column; text-align: center; }
  .insta-grid-preview { grid-template-columns: repeat(3, 1fr); }

  .fixed-nav {
    display: flex;
    align-items: stretch;
  }

  /* スマホ時のボディ下部余白（固定バー分） */
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .dogs-grid { grid-template-columns: 1fr; }
  .puppies-cards { grid-template-columns: 1fr; }
  .insta-embed-area { padding: 32px 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
}

/* ===== LINE予告バナー ===== */
.line-banner {
  background: #06c755;
  border-radius: var(--radius);
  padding: 20px 28px;
  margin: 28px 0;
}
.line-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.line-icon { font-size: 1.8rem; flex-shrink: 0; }
.line-title { font-weight: 700; color: var(--white); font-size: 0.95rem; margin-bottom: 4px; }
.line-desc { font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.btn-line {
  display: inline-block;
  background: var(--white);
  color: #06c755;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.btn-line:hover { opacity: 0.85; }

/* ===== お問い合わせフォーム ===== */
.contact-form-wrap { margin-top: 48px; }
.form-inner {
  background: var(--cherry-pale);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--border);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text);
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text);
}
.required {
  display: inline-block;
  background: var(--cherry);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cherry);
  box-shadow: 0 0 0 3px rgba(224,90,122,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-error {
  background: #fde;
  border: 1px solid #f88;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #c00;
  margin-bottom: 16px;
}
.form-submit {
  width: 100%;
  font-size: 1rem;
  padding: 16px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success { text-align: center; padding: 32px 0; }
.success-icon { font-size: 3rem; margin-bottom: 12px; }
.success-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cherry);
  margin-bottom: 12px;
}
.form-success p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.9; }

/* map iframe */
.access-map iframe {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  display: block;
}

@media (max-width: 600px) {
  .form-inner { padding: 32px 20px; }
  .line-banner { padding: 16px 18px; }
}

/* ===== ロゴ画像 ===== */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.25));
  transition: filter 0.4s ease;
}
#header.scrolled .logo-img {
  filter: none;
}

/* dog-photo に img が入った場合の対応 */
.dog-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* puppy-photo img対応 */
.puppy-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

/* insta-thumb img対応 */
.insta-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* ===== フッターロゴ画像 ===== */
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* contact内リンク */
.contact-link {
  font-size: 0.78rem;
  color: var(--cherry);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== コンタクトSVGアイコン ===== */
.contact-svg {
  width: 52px;
  height: 52px;
  display: block;
  margin: 0 auto;
}
.contact-icon {
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}

/* ===== LINE問い合わせエリア ===== */
.line-contact-wrap { margin-top: 48px; }
.line-contact-inner {
  background: var(--cherry-pale);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--border);
  text-align: center;
}
.line-contact-lead {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
}
.line-contact-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.line-btn-area, .line-qr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.line-add-btn {
  display: inline-block;
  transition: opacity 0.2s, transform 0.2s;
}
.line-add-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.line-contact-note {
  font-size: 0.78rem;
  color: var(--text-light);
}
.line-qr-img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.line-qr-placeholder {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 10px;
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-light);
  font-size: 0.82rem;
}
.line-qr-placeholder small { font-size: 0.68rem; text-align: center; line-height: 1.5; }

@media (max-width: 600px) {
  .line-contact-inner { padding: 32px 20px; }
  .line-contact-body { gap: 28px; }
}
