/* ===================================================
   La-mere-terre LP — メインスタイルシート
   =================================================== */

/* ---------- 0. CSS変数（デザインシステム） ---------- */
:root {
  /* カラー */
  --gold:           #B8960C;
  --gold-dark:      #8B7355;
  --gold-light:     #D4B86A;
  --gold-pale:      #E8D5A3;
  --gold-ultra:     #FAF3DC;

  --white:          #FFFFFF;
  --cream:          #FAF7F2;
  --beige:          #F0EBE1;
  --beige-mid:      #E8E0D4;
  --beige-dark:     #D8CFC0;

  --text-dark:      #3A3226;
  --text-medium:    #6B5E4F;
  --text-light:     #9B8E7E;
  --text-gold:      #8B7355;

  /* タイポグラフィ */
  --font-script:    'Great Vibes', cursive;
  --font-serif:     'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-body:      'Noto Sans JP', sans-serif;

  /* スペーシング */
  --section-py:     100px;
  --container-max:  1160px;
  --container-px:   40px;

  /* アニメーション */
  --ease-elegant:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition:     0.4s var(--ease-elegant);
}

/* ---------- 1. リセット & ベース ---------- */
*, *::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-dark);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul { list-style: none; }

/* ---------- 2. ユーティリティ ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section {
  padding: var(--section-py) 0;
}

/* フェードインアニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-elegant), transform 0.8s var(--ease-elegant);
  transition-delay: var(--delay, 0s);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease-elegant) 0.4s, transform 1s var(--ease-elegant) 0.4s;
}
.fade-in-delay.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 3. 共通コンポーネント ---------- */

/* セクションヘッダー */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-label {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.section-title--light { color: var(--white); }

/* 装飾ライン */
.ornament-line {
  position: relative;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ornament-line::before {
  content: '✦';
  position: absolute;
  font-size: 0.6rem;
  color: var(--gold);
  background: var(--cream);
  padding: 0 8px;
}
.ornament-line--light::before { background: transparent; }

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(184, 150, 12, 0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 6px 28px rgba(184, 150, 12, 0.5);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold-ultra);
  transform: translateY(-2px);
}

/* ---------- 4. ヘッダー ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-mid);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(250, 247, 242, 0.98);
  box-shadow: 0 2px 20px rgba(58, 50, 38, 0.08);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-emblem {
  width: 52px;
  height: 52px;
}

/* 実際のロゴ画像用 */
.logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* フッターロゴ画像用 */
.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  /* ロゴが白背景のためフッターではフィルターで調整 */
  filter: brightness(0) invert(1) opacity(0.85);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-brand {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--text-gold);
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ナビゲーション */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-medium);
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--gold-dark);
}
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  padding: 8px 20px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 2px;
  color: var(--gold-dark) !important;
}
.nav-cta:hover {
  background: var(--gold-ultra) !important;
}
.nav-cta::after { display: none !important; }

/* ナビ内SNSアイコン */
.nav-sns {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid var(--beige-mid);
}

.nav-sns-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  color: var(--text-light);
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-sns-link:hover {
  color: var(--gold);
  background: var(--gold-ultra);
}

.nav-sns-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ハンバーガー */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- 5. ヒーロー ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: kenBurns 22s ease-in-out infinite alternate;
  transform-origin: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(250, 243, 220, 0.75) 0%,
    rgba(250, 243, 220, 0.5) 45%,
    rgba(250, 243, 220, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 100px var(--container-px) 80px;
  margin-left: max(calc((100vw - var(--container-max)) / 2), var(--container-px));
}

.hero-ornament-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.hero-breeds {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.hero-divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-pale), transparent);
  margin: 16px 0;
}

.hero-desc {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 2;
  margin-bottom: 32px;
}

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

.hero-brand-badge {
  position: absolute;
  bottom: 60px;
  left: max(calc((100vw - var(--container-max)) / 2), var(--container-px));
  z-index: 1;
}

.hero-brand-script {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold-dark);
  opacity: 0.8;
  display: block;
  line-height: 1.2;
}

.hero-brand-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-medium);
  letter-spacing: 0.15em;
}

/* ---------- 6. About ---------- */
.about {
  background: var(--white);
}

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

.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.about-text p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 2;
}

.about-brand-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.about-emblem-large {
  width: 140px;
  height: 140px;
}

.about-brand-name-large {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-dark);
}

.about-tagline-large {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
}

/* ---------- 7. 犬種紹介 ---------- */
.breeds {
  background: var(--beige);
}

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

.breed-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(58, 50, 38, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.breed-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 12px 40px rgba(58, 50, 38, 0.15),
    0 0 0 1px rgba(184, 150, 12, 0.25),
    0 0 40px rgba(184, 150, 12, 0.12);
}

.breed-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.breed-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-elegant);
}
.breed-card:hover .breed-card-img { transform: scale(1.05); }

.breed-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(250, 247, 242, 0.3));
}

.breed-card-body {
  position: relative;
  padding: 28px 24px 32px;
  text-align: center;
}

/* ゴールドコーナー装飾 */
.breed-card-corner {
  position: absolute;
  width: 16px;
  height: 16px;
}
.breed-card-corner.tl { top: 12px; left: 12px; border-top: 1.5px solid var(--gold-light); border-left: 1.5px solid var(--gold-light); }
.breed-card-corner.tr { top: 12px; right: 12px; border-top: 1.5px solid var(--gold-light); border-right: 1.5px solid var(--gold-light); }
.breed-card-corner.bl { bottom: 12px; left: 12px; border-bottom: 1.5px solid var(--gold-light); border-left: 1.5px solid var(--gold-light); }
.breed-card-corner.br { bottom: 12px; right: 12px; border-bottom: 1.5px solid var(--gold-light); border-right: 1.5px solid var(--gold-light); }

.breed-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.breed-name-jp {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.breed-divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 12px auto;
}

.breed-desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.8;
}

/* ---------- 8. 子犬情報 ---------- */
.puppies {
  background: var(--white);
}

.puppies-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.puppies-text {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 2;
}

/* ---------- 9. こだわり ---------- */
.commitment {
  background: var(--cream);
  position: relative;
}

.commitment::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}
.commitment::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}

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

.commitment-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.commitment-icon {
  width: 80px;
  height: 80px;
}

.commitment-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.05em;
}

.commitment-desc {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.9;
}

/* ---------- 10. お問い合わせ ---------- */
.contact {
  position: relative;
  padding: var(--section-py) 0;
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58, 50, 38, 0.75) 0%, rgba(107, 94, 79, 0.65) 100%);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.section-label--light {
  color: var(--gold-light);
}

.contact-lead {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 48px;
}

/* フォーム */
.contact-form {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.1em;
}

.required {
  color: var(--gold-light);
  font-size: 0.75rem;
  margin-left: 4px;
}

.form-input {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(212, 184, 106, 0.4);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: rgba(255,255,255,0.4); }

.form-input:focus {
  border-color: var(--gold-light);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 0 0 3px rgba(212, 184, 106, 0.15);
}

.form-select {
  cursor: pointer;
  background-color: #3a3226;
  color: var(--white);
}
.form-select option {
  background-color: #3a3226;
  color: var(--white);
}
.form-select option:checked {
  background-color: var(--gold-dark);
  color: var(--white);
}

/* selectはform-inputクラスを使っているため、こちらにも適用 */
select.form-input {
  background-color: rgba(255,255,255,0.92) !important;
  color: #3a3226 !important;
  cursor: pointer;
}
select.form-input option {
  background-color: #fff !important;
  color: #3a3226 !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
}
select.form-input option:checked {
  background-color: #f0ebe1 !important;
  color: #3a3226 !important;
}
select.form-input option:hover {
  background-color: #f0ebe1 !important;
}

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

.form-submit {
  text-align: center;
  margin-top: 8px;
}

.form-btn {
  font-size: 1rem;
  padding: 16px 52px;
}

.form-success {
  text-align: center;
  background: rgba(184, 150, 12, 0.2);
  border: 1px solid var(--gold-light);
  border-radius: 4px;
  padding: 20px;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 2;
}

/* ---------- 11. フッター ---------- */
.site-footer {
  background: var(--text-dark);
  padding: 0;
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 36px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(212, 184, 106, 0.2);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-emblem {
  width: 40px;
  height: 40px;
}

.footer-brand-name {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold-light);
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}

.footer-sep { color: rgba(212, 184, 106, 0.4); }

.footer-link {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-link:hover { color: var(--gold-light); }

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

.sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 184, 106, 0.3);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.sns-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.sns-link--disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.footer-copy {
  text-align: center;
  padding: 16px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
}

/* ---------- 12. レスポンシブ ---------- */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
    --container-px: 32px;
  }

  .about-content { gap: 48px; }
  .breeds-grid { gap: 20px; }
  .commitment-grid { gap: 32px; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --container-px: 24px;
  }

  /* ヘッダー */
  .logo-sub { display: none; }
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--beige-mid);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  /* ヒーロー */
  .hero-content { padding: 100px 24px 60px; }
  .hero-brand-badge { left: 24px; bottom: 32px; }
  .hero-title { font-size: 1.7rem; }

  /* About */
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-brand-visual { order: -1; }

  /* 犬種 */
  .breeds-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* こだわり */
  .commitment-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  /* フォーム */
  .form-row { grid-template-columns: 1fr; }

  /* フッター */
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-info { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.4rem; }
  .btn { padding: 12px 28px; font-size: 0.85rem; }
}

/* ---------- 13. アニメーション keyframes ---------- */

/* Ken Burns — ヒーロー背景ゆっくりズーム */
@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1%, 0.5%); }
  100% { transform: scale(1.04) translate(1%, -0.5%); }
}

/* ヒーローテキスト登場 — 下からふわっと */
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ヒーロー装飾ライン — 左から伸びる */
@keyframes heroLineIn {
  from { width: 0; opacity: 0; }
  to   { width: 60px; opacity: 1; }
}

/* ヒーローコンテンツ要素に適用するクラス */
.hero-anim {
  opacity: 0;
  animation: heroSlideUp 0.9s var(--ease-elegant) forwards;
}
.hero-ornament-line.hero-anim {
  animation-name: heroLineIn;
  animation-duration: 0.8s;
}
.hero-anim:nth-child(1) { animation-delay: 0.2s; }
.hero-anim:nth-child(2) { animation-delay: 0.45s; }
.hero-anim:nth-child(3) { animation-delay: 0.65s; }
.hero-anim:nth-child(4) { animation-delay: 0.8s; }
.hero-anim:nth-child(5) { animation-delay: 0.95s; }
.hero-anim:nth-child(6) { animation-delay: 1.1s; }
.hero-brand-badge.hero-anim { animation-delay: 1.3s; }

/* 犬種カード — ゴールドシマー（装飾） */
@keyframes cardShimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.breed-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(184,150,12,0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.breed-card:hover::after {
  opacity: 1;
  animation: cardShimmer 1.2s ease-in-out;
}

/* 子犬セクション 2ボタングループ */
.puppies-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ========== フッターナビゲーション ========== */
.footer-nav {
  width: 100%;
  margin: 1.2rem 0 0.5rem;
  border-top: 1px solid rgba(212,184,106,0.2);
  padding-top: 1.2rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 1.5rem;
}
.footer-nav ul li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: rgba(212,184,106,0.7);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.footer-nav ul li a:hover {
  color: #D4B86A;
}

/* フォーム select のスタイル */
.form-input select,
select.form-input {
  appearance: none;
  -webkit-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='%23B8960C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ========== ���m�点�Z�N�V���� ========== */
.news-section {
  background: #fff;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.news-card {
  display: block;
  text-decoration: none;
  background: #faf8f4;
  border: 1px solid rgba(184,150,12,0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.news-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #B8960C, #D4B86A);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(58,50,40,0.1);
  border-color: rgba(184,150,12,0.3);
}
.news-card:hover::before { transform: scaleX(1); }
.news-card-inner { padding: 1.8rem 1.6rem 2rem; }
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.news-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.82rem;
  color: #9a8d82;
  letter-spacing: 0.08em;
}
.news-badge {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
}
.badge-puppy { background: rgba(184,150,12,0.12); color: #8a6e0a; }
.badge-info  { background: rgba(90,120,160,0.12); color: #4a6a90; }
.badge-show  { background: rgba(80,140,100,0.12); color: #3a7850; }
.badge-blog  { background: rgba(160,90,120,0.12); color: #90406a; }
.news-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 400;
  color: #3a3228;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}
.news-excerpt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: #8a7e72;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.news-more {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: #B8960C;
  letter-spacing: 0.1em;
  display: inline-block;
  transition: transform 0.3s ease;
}
.news-card:hover .news-more { transform: translateX(4px); }
.news-footer { text-align: center; margin-top: 3rem; }
.btn-ghost {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: #B8960C;
  border: 1px solid #B8960C;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}
.btn-ghost:hover {
  background: #B8960C;
  color: #fff;
  box-shadow: 0 4px 16px rgba(184,150,12,0.2);
}
@media (max-width: 900px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

/* ========== 黒ボルゾイ誕生 特別強調カード ========== */

/* グリッド全幅に広げる */
.news-card--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #1a140a 0%, #2d1f0d 50%, #1a140a 100%);
  border: 1px solid rgba(184,150,12,0.5);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

/* 光るオーラのアニメーション */
@keyframes featuredGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(184,150,12,0.2), 0 4px 40px rgba(184,150,12,0.1); }
  50%       { box-shadow: 0 0 40px rgba(184,150,12,0.4), 0 8px 60px rgba(184,150,12,0.2); }
}
.news-card--featured {
  animation: featuredGlow 3s ease-in-out infinite;
}

/* 流れる光のライン */
@keyframes shimmerLine {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(300%) skewX(-15deg); }
}
.news-card--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,184,106,0.12), transparent);
  animation: shimmerLine 4s ease-in-out infinite;
  pointer-events: none;
}

/* ホバー時 */
.news-card--featured:hover {
  transform: translateY(-6px);
  border-color: rgba(212,184,106,0.8);
}

/* 内側レイアウトを横並びに */
.news-card--featured .news-card-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.2rem 2.5rem;
}

/* 左側装飾ライン */
.news-card--featured .news-card-inner::before {
  content: '🐾';
  font-size: 3rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(184,150,12,0.7));
  animation: featuredGlow 2s ease-in-out infinite;
}

/* タイトル強調 */
.news-title--featured {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem) !important;
  font-weight: 600 !important;
  color: #D4B86A !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0.6rem !important;
  text-shadow: 0 0 20px rgba(212,184,106,0.3);
}

/* テキスト色調整 */
.news-card--featured .news-date { color: rgba(212,184,106,0.6); }
.news-card--featured .news-excerpt { color: #c8b890; font-size: 0.88rem; line-height: 1.9; }
.news-card--featured .news-more { color: #D4B86A; }
.news-card--featured:hover .news-more { transform: translateX(6px); }

/* NEWバッジ */
.news-badge-new {
  background: linear-gradient(135deg, #B8960C, #D4B86A);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 100px;
  animation: featuredGlow 2s ease-in-out infinite;
}

/* puppy badge: ゴールドに */
.news-card--featured .badge-puppy {
  background: rgba(184,150,12,0.25);
  color: #D4B86A;
}

/* 上部のラインをゴールドに */
.news-card--featured::before {
  background: linear-gradient(90deg, #B8960C, #D4B86A, #B8960C) !important;
  transform: scaleX(1) !important;
  height: 3px !important;
}

/* レスポンシブ：モバイルで縦積み */
@media (max-width: 600px) {
  .news-card--featured .news-card-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.8rem 1.4rem;
    align-items: flex-start;
  }
  .news-card--featured .news-card-inner::before {
    font-size: 2rem;
  }
}

