/* ============================================
   venison-lp.css — 鹿肉を知るシリーズ 共通LP風スタイル
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap');

.venison-lp {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #1a1a1a;
  line-height: 2.1;
  letter-spacing: 0.06em;
  overflow-x: hidden;
  font-size: 16px;
}
.venison-lp *, .venison-lp *::before, .venison-lp *::after { box-sizing: border-box; }

/* --- Base Typography (テーマ上書き防止) --- */
.venison-lp h3 {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 14px;
}
.venison-lp p {
  font-size: 1rem;
  line-height: 2.1;
  color: #444;
  margin: 0 0 16px;
}
.venison-lp p:last-child { margin-bottom: 0; }
.venison-lp a { color: #c5a55a; }

/* --- Scroll Animation (fade only, no left/right) --- */
.venison-lp .v-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.25,.46,.45,.94), transform 0.9s cubic-bezier(.25,.46,.45,.94);
}
.venison-lp .v-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.venison-lp .v-fade-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.venison-lp .v-fade-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}
.venison-lp .v-delay-1 { transition-delay: .15s; }
.venison-lp .v-delay-2 { transition-delay: .3s; }
.venison-lp .v-delay-3 { transition-delay: .45s; }
.venison-lp .v-delay-4 { transition-delay: .6s; }

/* ============================================
   HERO — Full-screen with zoom
   ============================================ */
.venison-lp .vlp-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.venison-lp .vlp-hero__bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  animation: vlp-zoom 18s ease-out forwards;
}
@keyframes vlp-zoom {
  0% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.venison-lp .vlp-hero__overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}
.venison-lp .vlp-hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px 60px;
}
.venison-lp .vlp-hero__en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 16px;
  animation: vlp-up 1.2s .3s ease both;
}
.venison-lp .vlp-hero__line {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,.5);
  margin-bottom: 24px;
  animation: vlp-up 1.2s .5s ease both;
}
.venison-lp .vlp-hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.4;
  margin: 0 0 16px;
  animation: vlp-up 1.2s .7s ease both;
}
.venison-lp .vlp-hero__sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  opacity: .85;
  letter-spacing: .08em;
  animation: vlp-up 1.2s .9s ease both;
}
@keyframes vlp-up {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTION HEADER — EN subtitle + line + title
   ============================================ */
.venison-lp .vlp-section-header {
  margin-bottom: 50px;
}
.venison-lp .vlp-section-header__en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 12px;
}
.venison-lp .vlp-section-header__line {
  width: 50px;
  height: 1px;
  background: #c5a55a;
  margin-bottom: 20px;
}
.venison-lp .vlp-section-header__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: .06em;
  line-height: 1.5;
  margin: 0;
}
/* Dark variant */
.venison-lp .vlp-dark .vlp-section-header__en { color: rgba(255,255,255,.4); }
.venison-lp .vlp-dark .vlp-section-header__line { background: #c5a55a; }
.venison-lp .vlp-dark .vlp-section-header__title { color: #fff; }

/* ============================================
   SECTIONS — Base
   ============================================ */
.venison-lp .vlp-section {
  padding: 100px 30px;
}
.venison-lp .vlp-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Background variants */
.venison-lp .vlp-cream { background: #f8f6f0; }
.venison-lp .vlp-dark {
  background: #111;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.venison-lp .vlp-dark-green {
  background: #2c3e2d;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Background watermark text */
.venison-lp .vlp-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 700;
  color: rgba(255,255,255,.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.venison-lp .vlp-section__inner { position: relative; z-index: 1; }

/* ============================================
   CONTENT ROW — Image + Text side-by-side
   ============================================ */
.venison-lp .vlp-content-row {
  display: flex;
  gap: 60px;
  align-items: center;
}
.venison-lp .vlp-content-row.reverse {
  flex-direction: row-reverse;
}
.venison-lp .vlp-content-row__image {
  flex: 1.1;
  min-width: 0;
  overflow: hidden;
}
.venison-lp .vlp-content-row__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform .6s ease;
}
.venison-lp .vlp-content-row__image:hover img {
  transform: scale(1.03);
}
.venison-lp .vlp-content-row__text {
  flex: 1;
  min-width: 0;
}
.venison-lp .vlp-content-row__text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 20px;
  line-height: 1.7;
}
.venison-lp .vlp-content-row__text h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #c5a55a;
  margin-top: 16px;
}
.venison-lp .vlp-content-row__text p {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 2.3;
  color: #333;
  margin: 0 0 18px;
}
/* Dark variant */
.venison-lp .vlp-dark .vlp-content-row__text h3 { color: #fff; }
.venison-lp .vlp-dark .vlp-content-row__text p { color: rgba(255,255,255,.85); }
.venison-lp .vlp-dark-green .vlp-content-row__text h3 { color: #fff; }
.venison-lp .vlp-dark-green .vlp-content-row__text p { color: rgba(255,255,255,.85); }

/* ============================================
   KEY FIGURE — Highlighted stat
   ============================================ */
.venison-lp .vlp-key-figure {
  display: inline-block;
  background: rgba(197,165,90,.1);
  border-left: 4px solid #c5a55a;
  padding: 14px 22px;
  margin: 12px 0 18px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #c5a55a;
}
.venison-lp .vlp-dark .vlp-key-figure {
  background: rgba(197,165,90,.15);
}

/* ============================================
   IMPACT NUMBERS — Large Garamond display
   ============================================ */
.venison-lp .vlp-numbers {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.venison-lp .vlp-number {
  text-align: center;
}
.venison-lp .vlp-number__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: #c5a55a;
}
.venison-lp .vlp-number__unit {
  font-size: 1.1rem;
  color: #c5a55a;
}
.venison-lp .vlp-number__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  margin-top: 10px;
  line-height: 1.6;
}
/* Light bg variant */
.venison-lp .vlp-cream .vlp-number__label,
.venison-lp .vlp-section:not(.vlp-dark):not(.vlp-dark-green) .vlp-number__label {
  color: #777;
}

/* ============================================
   GRID CARDS — 2 or 3 column
   ============================================ */
.venison-lp .vlp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}
.venison-lp .vlp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.venison-lp .vlp-card {
  padding: 36px 28px;
  background: #fafaf7;
  border-top: 3px solid #c5a55a;
  transition: transform .3s ease, box-shadow .3s ease;
}
.venison-lp .vlp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,.06);
}
.venison-lp .vlp-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 14px;
  line-height: 1.6;
}
.venison-lp .vlp-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 2.1;
  margin: 0;
}
/* Dark cards */
.venison-lp .vlp-dark .vlp-card {
  background: rgba(255,255,255,.05);
  border-top-color: #c5a55a;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid #c5a55a;
}
.venison-lp .vlp-dark .vlp-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
}
.venison-lp .vlp-dark .vlp-card h3 { color: #e0d5c5; }
.venison-lp .vlp-dark .vlp-card p { color: #aaa; }

/* ============================================
   FEATURE CARDS — Image top
   ============================================ */
.venison-lp .vlp-feature-card {
  background: #fff;
  border-top: 3px solid #c5a55a;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.venison-lp .vlp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,.06);
}
.venison-lp .vlp-feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.venison-lp .vlp-feature-card__body {
  padding: 28px 24px;
}
.venison-lp .vlp-feature-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.venison-lp .vlp-feature-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 2;
  margin: 0;
}

/* ============================================
   SECTION LEAD TEXT
   ============================================ */
.venison-lp .vlp-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 2.3;
  color: #444;
  max-width: 800px;
  margin-top: 0;
}
.venison-lp .vlp-dark .vlp-lead { color: rgba(255,255,255,.75); }

/* ============================================
   ISSUE / ALERT STAT
   ============================================ */
.venison-lp .vlp-issue-stat {
  display: inline-block;
  background: rgba(192,57,43,.08);
  border-left: 4px solid #C0392B;
  padding: 14px 22px;
  margin: 12px 0 18px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #C0392B;
}

/* ============================================
   BRAND ROW — Logo + text
   ============================================ */
.venison-lp .vlp-brand-row {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.venison-lp .vlp-brand-logo {
  flex: 0 0 260px;
}
.venison-lp .vlp-brand-logo img {
  width: 260px;
  height: 260px;
  object-fit: contain;
  background: #ede8e0;
  border: 1px solid #ddd;
}
.venison-lp .vlp-brand-text {
  flex: 1;
}
.venison-lp .vlp-brand-text h3 {
  font-size: 1.5rem;
  color: #c5a55a;
  margin: 0 0 18px;
  font-weight: 700;
}
.venison-lp .vlp-brand-text p {
  font-size: 1rem;
  color: #333;
  line-height: 2.2;
  margin: 0 0 16px;
}

/* ============================================
   CTA SECTION — Series links
   ============================================ */
.venison-lp .vlp-series-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.venison-lp .vlp-series-link {
  display: block;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  padding: 22px;
  color: #e0d5c5;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: background .3s, border-color .3s, transform .3s;
}
.venison-lp .vlp-series-link:hover {
  background: rgba(197,165,90,.15);
  border-color: #c5a55a;
  color: #fff;
  transform: translateY(-2px);
}
.venison-lp .vlp-series-link small {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: .6;
}

/* ============================================
   TABLE — Comparison tables
   ============================================ */
.venison-lp table {
  font-size: 14px;
}
.venison-lp table th,
.venison-lp table td {
  white-space: nowrap;
  padding: 12px 14px !important;
  font-size: 14px;
}
.venison-lp table th {
  font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .venison-lp .vlp-hero { height: 55vh; min-height: 380px; }
  .venison-lp .vlp-hero__content { padding: 0 24px 40px; }
  .venison-lp .vlp-section { padding: 70px 20px; }
  .venison-lp .vlp-content-row,
  .venison-lp .vlp-content-row.reverse { flex-direction: column; gap: 35px; }
  .venison-lp .vlp-content-row__image,
  .venison-lp .vlp-content-row__text { flex: none; width: 100%; }
  .venison-lp .vlp-grid-3 { grid-template-columns: 1fr; gap: 24px; }
  .venison-lp .vlp-grid-2 { grid-template-columns: 1fr; gap: 18px; }
  .venison-lp .vlp-numbers { gap: 30px; }
  .venison-lp .vlp-brand-row { flex-direction: column; gap: 30px; }
  .venison-lp .vlp-brand-logo { flex: none; }
  .venison-lp .vlp-brand-logo img { width: 200px; height: 200px; margin: 0 auto; display: block; }
  .venison-lp .vlp-series-links { grid-template-columns: 1fr; }
  .venison-lp .vlp-section-header { margin-bottom: 35px; }
}
