/* ============================================
   PAGE-LP.CSS
   LP本文用 先行版
   guide.shosha-plus.com
   ============================================ */


/* ============================================
   MAIN WRAPPER
   ============================================ */
.lp-main {
  display: block;
  overflow: hidden;
}
/* ============================================
   SHELL / SIDE LAYOUT
   ============================================ */
.lp-shell {
  display: block;
  position: relative;
}

.lp-side {
  display: none;
}

.lp-side-card {
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(31,42,55,.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 22px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lp-side-card__eyebrow {
  font-size: .72rem;
  line-height: 1.4;
  letter-spacing: .12em;
  color: var(--color-accent);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
}

.lp-side-card__title {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text-strong);
}

.lp-side-card__text {
  margin-top: 10px;
  font-size: .9rem;
  line-height: 1.9;
  color: var(--color-text-muted);
}

.lp-side-card__note {
  margin-top: 12px;
  font-size: .78rem;
  line-height: 1.7;
  color: var(--color-text-faint);
}

.lp-side-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.lp-side-list li {
  position: relative;
  padding-left: 18px;
  font-size: .9rem;
  line-height: 1.8;
  color: var(--color-text);
}

.lp-side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .8em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
  transform: translateY(-50%);
}

.lp-side-link {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  font-size: .84rem;
  color: var(--color-text);
  border-bottom: 1px solid rgba(31,42,55,.18);
}

.lp-side-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px;
}


/* ============================================
   MAIN WIDTH OVERRIDE
   ============================================ */
.lp-main {
  display: block;
  min-width: 0;
}

/* 中央カラムを少し細くする */
.lp-main .lp-hero__inner,
.lp-main .lp-section__inner {
  width: min(100% - 48px, 920px);
}

.lp-main .lp-section__inner--narrow {
  width: min(100% - 48px, 760px);
}


/* ============================================
   DESKTOP SIDE FIXED
   ============================================ */
@media (min-width: 1200px) {
  .lp-shell {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 240px;
    gap: 32px;
    width: min(100% - 64px, 1380px);
    margin: 0 auto;
    align-items: start;
  }

  .lp-side {
    display: block;
    position: sticky;
    top: 108px;
  }

  .lp-main .lp-hero__inner,
  .lp-main .lp-section__inner {
    width: min(100%, 760px);
  }

  .lp-main .lp-section__inner--narrow {
    width: min(100%, 700px);
  }

  .lp-main .lp-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
  }

  .lp-main .lp-hero__visual {
    max-width: 620px;
  }

  .lp-main .lp-grid-3 {
    grid-template-columns: 1fr;
  }

  .lp-main .lp-grid-2 {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   TABLET / SMALL DESKTOP
   ============================================ */
@media (max-width: 1199px) {
  .lp-side {
    display: none !important;
  }
}


/* ============================================
   HERO
   ============================================ */
.lp-hero {
  position: relative;
  padding: 72px 0 112px;
  background:
    linear-gradient(180deg, #fcfbf8 0%, #ffffff 68%);
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(226, 4, 27, 0.045), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(184, 154, 106, 0.10), transparent 24%);
  pointer-events: none;
}

.lp-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 40px);
}

.lp-hero__content {
  max-width: 640px;
}

.lp-hero__eyebrow {
  margin-bottom: 22px;
}

.lp-hero__title {
  font-family: var(--font-serif);
  font-size: var(--fz-hero);
  line-height: var(--lh-hero);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  color: var(--color-text-strong);
  text-wrap: balance;
}

.lp-hero__title strong {
  color: var(--color-text-strong);
  position: relative;
  font-weight: var(--fw-bold);
}

.lp-hero__title strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .08em;
  height: .28em;
  background: rgba(226, 4, 27, .10);
  z-index: -1;
  border-radius: 999px;
}

.lp-hero__lead {
  margin-top: 26px;
  max-width: 560px;
  font-size: var(--fz-body-lg);
  line-height: var(--lh-body-lg);
  color: var(--color-text-muted);
}

.lp-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.lp-hero__note {
  width: 100%;
  margin-top: 14px;
  font-size: var(--fz-body-sm);
  line-height: var(--lh-body-sm);
  color: var(--color-text-faint);
}

.lp-hero__subpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lp-hero__visual {
  position: relative;
}

.lp-hero__visual-card {
  position: relative;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(31, 42, 55, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  padding: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lp-hero__image-wrap {
  overflow: hidden;
  border-radius: 20px;
  background: #f1ede6;
  aspect-ratio: 4 / 5;
}

.lp-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-hero__floating {
  position: absolute;
  left: -28px;
  bottom: 28px;
  max-width: 240px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(31, 42, 55, .08);
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(24, 33, 43, .10);
  padding: 18px 18px 16px;
}

.lp-hero__floating-label {
  display: inline-block;
  font-size: .75rem;
  line-height: 1.4;
  letter-spacing: .08em;
  color: var(--color-accent);
  font-weight: var(--fw-bold);
}

.lp-hero__floating-title {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-text-strong);
}

.lp-hero__floating-text {
  margin-top: 8px;
  font-size: .84rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}


/* ============================================
   GENERIC SECTION
   ============================================ */
.lp-section {
  position: relative;
  padding: var(--section-space) 0;
}

.lp-section--soft {
  background: var(--color-bg-soft);
}

.lp-section--beige {
  background: var(--color-bg-beige);
}

.lp-section--tight {
  padding: var(--section-space-md) 0;
}

.lp-section__inner {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.lp-section__inner--narrow {
  width: min(100% - 48px, var(--container-narrow));
  margin-inline: auto;
}


/* ============================================
   SECTION HEAD
   ============================================ */
.lp-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.lp-section-head--left {
  text-align: left;
}

.lp-section-head__eyebrow {
  margin-bottom: 18px;
}

.lp-section-head__title {
  font-family: var(--font-serif);
  font-size: var(--fz-h2);
  line-height: var(--lh-h2);
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: var(--color-text-strong);
  text-wrap: balance;
}

.lp-section-head__lead {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}

.lp-section-head--left .lp-section-head__lead {
  margin-left: 0;
  margin-right: 0;
}


/* ============================================
   GRID / FLEX
   ============================================ */
.lp-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}


/* ============================================
   CARD
   ============================================ */
.lp-card {
  height: 100%;
  padding: 28px 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(31, 42, 55, .08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.lp-card__label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: rgba(226, 4, 27, .08);
  color: var(--color-accent);
  font-size: .72rem;
  font-weight: var(--fw-bold);
  letter-spacing: .06em;
}

.lp-card__title {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text-strong);
}

.lp-card__text {
  margin-top: 12px;
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}


/* ============================================
   PROBLEM / LEAD BOX
   ============================================ */
.lp-lead-box {
  padding: 34px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,246,241,.88));
  border: 1px solid rgba(31,42,55,.08);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
}

.lp-lead-box__text {
  font-size: var(--fz-body-lg);
  line-height: var(--lh-body-lg);
  color: var(--color-text);
}


/* ============================================
   CHECK LIST
   ============================================ */
.lp-check-list {
  display: grid;
  gap: 14px;
}

.lp-check-list li {
  position: relative;
  padding-left: 28px;
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  color: var(--color-text);
}

.lp-check-list li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(226, 4, 27, .10);
  transform: translateY(-50%);
}


/* ============================================
   STEPS
   ============================================ */
.lp-steps {
  display: grid;
  gap: 20px;
}

.lp-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px 24px;
  border: 1px solid rgba(31,42,55,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
}

.lp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(226,4,27,.08), rgba(226,4,27,.04));
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
}

.lp-step__title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--color-text-strong);
}

.lp-step__text {
  margin-top: 8px;
  color: var(--color-text-muted);
}


/* ============================================
   VOICE / TESTIMONIAL
   ============================================ */
.lp-voice {
  height: 100%;
  padding: 30px 28px;
  background: var(--color-white);
  border: 1px solid rgba(31,42,55,.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.lp-voice__quote {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--color-text-strong);
}

.lp-voice__meta {
  margin-top: 18px;
  font-size: .84rem;
  line-height: 1.7;
  color: var(--color-text-faint);
}


/* ============================================
   FORM SECTION
   ============================================ */
.lp-entry {
  position: relative;
}

.lp-entry__box {
  max-width: 860px;
  margin: 0 auto;
  padding: 42px 38px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(248,246,241,.92));
  border: 1px solid rgba(31,42,55,.08);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.lp-entry__lead {
  text-align: center;
  margin-bottom: 26px;
}

.lp-entry__lead-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.6;
  color: var(--color-text-strong);
}

.lp-entry__lead-text {
  margin-top: 10px;
  color: var(--color-text-muted);
}

.lp-entry__note {
  margin-top: 16px;
  text-align: center;
  font-size: var(--fz-body-sm);
  line-height: var(--lh-body-sm);
  color: var(--color-text-faint);
}


/* ============================================
   IMAGE / MEDIA BLOCK
   ============================================ */
.lp-media {
  overflow: hidden;
  border-radius: 28px;
  background: #f2eee6;
  box-shadow: var(--shadow-sm);
}

.lp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================
   SIMPLE TABLE / COMPARE
   ============================================ */
.lp-compare {
  display: grid;
  gap: 16px;
}

.lp-compare__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(31,42,55,.08);
}

.lp-compare__label {
  font-weight: var(--fw-bold);
  color: var(--color-text-strong);
}

.lp-compare__content {
  color: var(--color-text-muted);
}


/* ============================================
   FAQ WRAP
   ============================================ */
.lp-faq {
  max-width: 900px;
  margin: 0 auto;
}


/* ============================================
   SPACING HELPERS
   ============================================ */
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mt-12 { margin-top: 12px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-48 { margin-top: 48px !important; }
.mt-56 { margin-top: 56px !important; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .lp-hero {
    padding: 56px 0 92px;
  }

  .lp-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .lp-hero__content {
    max-width: 100%;
  }

  .lp-hero__lead {
    max-width: 100%;
  }

  .lp-hero__visual {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .lp-grid-2,
  .lp-grid-3,
  .lp-grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .lp-hero {
    padding: 36px 0 72px;
  }

  .lp-hero__inner,
  .lp-section__inner,
  .lp-section__inner--narrow {
    width: min(100% - 32px, var(--container));
  }

  .lp-hero__title {
    text-wrap: pretty;
  }

  .lp-hero__lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.9;
  }

  .lp-hero__actions {
    margin-top: 28px;
  }

  .lp-hero__visual-card {
    padding: 12px;
    border-radius: 20px;
  }

  .lp-hero__image-wrap {
    border-radius: 16px;
    aspect-ratio: 4 / 4.8;
  }

  .lp-hero__floating {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .lp-section {
    padding: var(--section-space-sm) 0;
  }

  .lp-section-head {
    margin-bottom: 36px;
  }

  .lp-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .lp-lead-box {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .lp-step {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 18px;
  }

  .lp-step__num {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 1rem;
  }

  .lp-entry__box {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .lp-entry__lead-title {
    font-size: 1.25rem;
  }

  .lp-compare__item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }
}
