/* ── Fixed Header ── */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255, 250, 247, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 114, 154, 0.15);
}
.lp-header-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-header-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.2;
}
.lp-header-logo {
  font-family: var(--font-elegant);
  font-size: 1.45rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  color: var(--color-gold);
}
.lp-header-tagline {
  font-size: 0.7rem;
  color: var(--color-gold-light);
  letter-spacing: var(--tracking-wide);
  white-space: nowrap;
}
.lp-header-cta {
  padding: 0.6rem 1.5rem;
  font-size: var(--text-sm);
  background: #C9A882;
  box-shadow: 0 4px 16px rgba(201, 168, 130, 0.40);
  gap: var(--space-2);
}
.lp-header-cta:hover {
  background: #B8956E;
  box-shadow: 0 6px 24px rgba(201, 168, 130, 0.55);
  transform: translateY(-2px);
}

/* ── FV Section ── */
.lp-fv {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
  background-image: url('../../images/hero-fv.jpg');
  background-size: cover;
  background-position: 75% center;
}

/* グラデーションオーバーレイ */
.lp-fv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(253, 248, 242, 0.90) 0%,
    rgba(253, 248, 242, 0.70) 35%,
    rgba(253, 248, 242, 0.15) 65%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* テキストエリア（左40%） */
.lp-fv-text {
  position: relative;
  z-index: 1;
  width: 42%;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-8);
  padding-top: clamp(3rem, 7vw, 6rem);
  padding-right: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 160px;
  padding-left: clamp(1rem, 3vw, 2rem);
}

/* タイトル */
.lp-fv-title {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: var(--weight-bold);
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  word-break: keep-all;
}
.lp-fv-title br {
  display: block;
}
.lp-fv-title-accent {
  color: var(--color-accent);
  position: relative;
}
.lp-fv-title-accent::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

/* サブコピー */
.lp-fv-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.9;
  color: var(--color-gray-600);
  max-width: 20em;
  word-break: keep-all;
}

/* CTA エリア */
.lp-fv-cta-wrap { display: flex; flex-direction: column; align-items: center; width: fit-content; margin: 0 auto; }
.lp-fv-cta-btn {
  padding: 18px 40px;
  font-size: 1.1rem;
  background: #C9A882;
  box-shadow: 0 6px 24px rgba(201, 168, 130, 0.50);
}
.lp-fv-cta-btn:hover {
  background: #B8956E;
  box-shadow: 0 10px 36px rgba(201, 168, 130, 0.62);
}
.lp-fv-cta-note {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  margin-top: var(--space-3);
}

/* 信頼バッジ */
.lp-fv-trust {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  width: fit-content;
  margin: 0 auto;
  background: rgba(255,255,255,0.75);
  border: 0.5px solid rgba(201,168,130,0.4);
  border-radius: 12px;
  overflow: hidden;
  list-style: none;
}
.lp-fv-trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 0.82rem;
}
.lp-fv-trust-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.lp-fv-trust-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
}
.lp-fv-trust-num small { font-size: 0.62em; }
.lp-fv-trust-note {
  font-size: 0.65rem;
  color: var(--color-gray-400);
  white-space: nowrap;
}
.lp-fv-trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(201,168,130,0.35);
  flex-shrink: 0;
}

/* ── Responsive ── */

/* タブレット */
@media (max-width: 1024px) {
  .lp-fv-text { width: 52%; }
  .lp-fv-title { font-size: clamp(2rem, 4.2vw, 3rem); }
  .lp-fv-cta-btn { padding: 16px 32px; font-size: 1.05rem; }
}

/* SP */
@media (max-width: 768px) {
  .lp-fv {
    background-position: 70% center;
    align-items: center;
    min-height: unset;
    padding-bottom: clamp(2rem, 6vw, 3rem);
  }
  .lp-fv::before {
    background: rgba(253, 248, 242, 0.82);
  }
  .lp-fv-text {
    width: 100%;
    min-width: unset;
    padding: var(--space-8) var(--space-5) var(--space-8);
    align-items: center;
    text-align: center;
  }
  .lp-fv-sub {
    word-break: normal;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    font-size: 0.95rem;
  }
  .lp-fv-title { font-size: clamp(1.75rem, 7vw, 2.6rem); }
  .lp-fv-cta-wrap { align-items: center; width: 100%; margin: 0; }
  .lp-fv-cta-btn { width: 100%; max-width: 340px; justify-content: center; }
  .lp-fv-trust {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 0;
  }
  .lp-fv-trust-item {
    flex: 1;
    padding: 10px 6px;
    font-size: 0.72rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .lp-fv-trust-divider { display: flex; width: 1px; height: auto; align-self: stretch; }
  .lp-header-inner { padding: 0 var(--space-5); }
}

@media (max-width: 480px) {
  .lp-header-cta { font-size: 0.75rem; padding: 0.55rem 0.9rem; }
  .lp-fv-text { padding: var(--space-8) var(--space-4) var(--space-10); gap: var(--space-6); }
  .lp-fv-trust { flex-direction: row; flex-wrap: nowrap; align-items: stretch; gap: 0; }
}
