/* LP 2814 only */
#lp-2814 {
  --lp-bg: #f6f7f8;
  --lp-card: #ffffff;
  --lp-text: #1f2937;
  --lp-sub: #4b5563;
  --lp-border: rgba(31, 41, 55, 0.12);
  --lp-accent: #111827;
  --lp-accent-soft: rgba(17, 24, 39, 0.08);
  color: var(--lp-text);
}

/* Hero（ホテル/ショートステイっぽい“清潔感＋安心感”） */
#lp-2814 .lp2814-hero {
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.30)),
    radial-gradient(1200px 600px at 20% 0%, rgba(255, 255, 255, 0.16), transparent),
    linear-gradient(180deg, #111827, #111827);
  position: relative;
  overflow: hidden;
}

/* 背景の“ほのかな光” */
#lp-2814 .lp2814-hero::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.18), transparent 55%);
  transform: rotate(12deg);
  pointer-events: none;
}

#lp-2814 .lp2814-hero .container {
  position: relative;
  z-index: 1;
}

#lp-2814 .lp2814-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  font-size: .9rem;
}

#lp-2814 .lp2814-title {
  color: #fff;
  letter-spacing: .02em;
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

#lp-2814 .lp2814-lead {
  color: rgba(255,255,255,0.90);
  line-height: 1.8;
  font-size: 1.05rem;
}

#lp-2814 .lp2814-points {
  padding-left: 1.2rem;
  color: rgba(255,255,255,0.86);
}
#lp-2814 .lp2814-points li {
  margin-bottom: .6rem;
}

/* Form card */
#lp-2814 .lp2814-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  overflow: hidden;
}

#lp-2814 .lp2814-card-head {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--lp-border);
  background: linear-gradient(180deg, rgba(17,24,39,0.04), rgba(17,24,39,0.00));
}

#lp-2814 .lp2814-card-kicker {
  font-weight: 700;
  color: var(--lp-accent);
}

#lp-2814 .lp2814-card-sub {
  color: var(--lp-sub);
  font-size: .92rem;
  margin-top: .25rem;
}

#lp-2814 .lp2814-form-wrap {
  padding: 1rem 1.25rem 1.25rem;
}

/* myasp内の見た目を“少しだけ”整える（影響はLP内だけに限定） */
#lp-2814 .content_title h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 .75rem 0;
  padding: .6rem .8rem;
  border-radius: 12px;
  background: var(--lp-accent-soft);
}

#lp-2814 .lp2814-note {
  color: rgba(255,255,255,0.86);
  font-size: .9rem;
}

/* Outline */
#lp-2814 .lp2814-outline {
  background: #fff;
}

#lp-2814 .lp2814-mini {
  background: var(--lp-card);
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 1.2rem;
  height: 100%;
}

#lp-2814 .lp2814-mini-title {
  font-weight: 800;
  margin-bottom: .5rem;
}

#lp-2814 .lp2814-mini-text {
  color: var(--lp-sub);
  line-height: 1.8;
}

/* Mobile tweaks */
@media (max-width: 991.98px) {
  #lp-2814 .lp2814-form-wrap {
    padding: .9rem 1rem 1.1rem;
  }
}
/* ===== Hero 背景画像 ===== */
#lp-2814 .lp2814-hero-image {
  background:
    linear-gradient(
      180deg,
      rgba(17, 24, 39, 0.75),
      rgba(17, 24, 39, 0.45)
    ),
    url("https://dog-behavioronecl.com/wlp/wp-content/uploads/36155427f74874c00a42b662e308135f.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* 高さをしっかり確保（ファーストビュー） */
#lp-2814 .lp2814-hero-image .container {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

/* モバイル微調整 */
@media (max-width: 767px) {
  #lp-2814 .lp2814-hero-image .container {
    min-height: 60vh;
  }
}
/* ===== 黒いぼかし（オーバーレイ）を消す ===== */

/* 背景は画像だけにする（黒グラデを外す） */
#lp-2814 .lp2814-hero {
  background-image: url("https://dog-behavioronecl.com/wlp/wp-content/uploads/36155427f74874c00a42b662e308135f.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* もし疑似要素で“光/ぼかし”を乗せてる場合は消す */
#lp-2814 .lp2814-hero::before,
#lp-2814 .lp2814-hero::after {
  content: none !important;
  display: none !important;
}
#lp-2814 .lp2814-title,
#lp-2814 .lp2814-lead,
#lp-2814 .lp2814-points {
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}
#lp-2814 .lp2814-title {
  color: #F8FAFC;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
#lp-2814 .lp2814-badge {
  color: #F1F5F9;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255,255,255,0.25);
}
/* ==== ヘッドライン色を強制適用 ==== */
#lp-2814 .lp2814-title {
  color: #F8FAFC !important;
  text-shadow: 0 3px 16px rgba(0,0,0,.45) !important;
}

#lp-2814 .lp2814-lead,
#lp-2814 .lp2814-points {
  color: #E5E7EB !important;
  text-shadow: 0 2px 10px rgba(0,0,0,.35) !important;
}
#lp-2814 .lp2814-title {
  color: #0F172A !important;
}
#lp-2814 .lp2814-lead {
  color: #1E293B !important;
}
#lp-2814 .lp2814-badge {
  color: #F8FAFC;
  background: rgba(15, 23, 42, 0.65);
  border: none;
}
#lp-2814 .lp2814-hero .container {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(2px);
  border-radius: 16px;
  padding: 2.5rem;
}
#lp-2814 .lp2814-title { color:#0F172A !important; }
#lp-2814 .lp2814-lead,
#lp-2814 .lp2814-points { color:#1E293B !important; }