.lp-home {
  --lp-pink: #ff8db2;
  --lp-pink-deep: #df5f8d;
  --lp-pink-soft: #fff0f6;
  --lp-blue: #91c7ff;
  --lp-blue-deep: #4f86b4;
  --lp-blue-soft: #eef8ff;
  --lp-cream: #fffafc;
  --lp-cream-deep: #f5f9ff;
  --lp-text: #253140;
  --lp-text-sub: #687486;
  --lp-border: #ddeaf5;
  --lp-white: #ffffff;
  --lp-radius-sm: 0.5rem;
  --lp-radius-lg: 1.75rem;
  --lp-shadow-sm: 0 2px 8px rgba(31, 41, 55, 0.06);
  --lp-shadow-md: 0 8px 28px rgba(31, 41, 55, 0.1);
  --lp-shadow-lg: 0 20px 60px rgba(31, 41, 55, 0.12);
  color: var(--lp-text);
  background: var(--lp-cream);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Apple SD Gothic Neo", sans-serif;
  line-height: 1.75;
  overflow: hidden;
}

.lp-home *,
.lp-home *::before,
.lp-home *::after {
  box-sizing: border-box;
}

.lp-home em {
  color: var(--lp-pink-deep);
  font-style: normal;
}

.lp-container {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.lp-btn,
.lp-btn-hero,
.lp-btn-hero-soft,
.lp-btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.lp-btn:hover,
.lp-btn-hero:hover,
.lp-btn-hero-soft:hover,
.lp-btn-hero-outline:hover {
  transform: translateY(-1px);
}

.lp-btn {
  min-height: 2.8rem;
  padding: 0.75rem 1.55rem;
  border: 2px solid transparent;
  font-size: 0.95rem;
}

.lp-btn-primary,
.lp-btn-hero {
  color: var(--lp-white);
  background: linear-gradient(135deg, var(--lp-pink) 0%, #ffb7cf 100%);
  box-shadow: 0 0.7rem 1.5rem rgba(255, 141, 178, 0.28);
}

.lp-btn-primary {
  border-color: var(--lp-pink);
}

.lp-btn-lg {
  min-height: 3.2rem;
  padding: 0.95rem 2.35rem;
  font-size: 1.03rem;
}

.lp-btn-hero,
.lp-btn-hero-soft,
.lp-btn-hero-outline {
  min-height: 3.25rem;
  padding: 0.95rem 2.1rem;
  font-size: 1.02rem;
}

.lp-btn-hero-soft {
  border: 2px solid rgba(145, 199, 255, 0.72);
  color: var(--lp-blue-deep);
  background: rgba(255, 255, 255, 0.78);
}

.lp-btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--lp-white);
  background: rgba(31, 41, 55, 0.18);
}

.lp-btn-hero-outline:hover {
  background: rgba(31, 41, 55, 0.3);
}

.lp-contact-note {
  margin: 1rem 0 0;
  color: var(--lp-text-sub);
  font-size: 0.9rem;
  line-height: 1.8;
}

.lp-contact-note a {
  color: var(--lp-blue-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.lp-section-header {
  margin-bottom: 3.4rem;
  text-align: center;
}

.lp-section-eyebrow,
.lp-hero-eyebrow,
.lp-final-cta-eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--lp-blue-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lp-section-title {
  margin: 0 0 1rem;
  color: var(--lp-text);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 700;
  line-height: 1.42;
}

.lp-section-title,
.lp-final-cta-title,
.lp-guide-card-title,
.lp-flow-step-title,
.lp-profile-name {
  text-wrap: balance;
}

.lp-nobr {
  display: inline-block;
}

.lp-section-copy {
  max-width: 48rem;
  margin: 0 auto;
  color: var(--lp-text-sub);
  font-size: 0.97rem;
  line-height: 1.9;
}

.lp-hero {
  position: relative;
  padding: clamp(3.6rem, 7vw, 6rem) 0 clamp(4.2rem, 8vw, 6.6rem);
  overflow: hidden;
  background: linear-gradient(180deg, var(--lp-blue-soft) 0%, var(--lp-cream) 100%);
}

.lp-hero-bg-orb,
.lp-final-cta-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(72px);
  pointer-events: none;
}

.lp-hero-bg-orb.is-pink {
  width: 40vw;
  height: 40vw;
  background: rgba(255, 141, 178, 0.22);
  top: -12%;
  left: -10%;
}

.lp-hero-bg-orb.is-blue {
  width: 32vw;
  height: 32vw;
  background: rgba(145, 199, 255, 0.28);
  right: 4%;
  bottom: 2%;
}

.lp-hero .lp-container,
.lp-final-cta .lp-container {
  position: relative;
  z-index: 1;
}

.lp-hero-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.lp-hero-title {
  margin: 0 0 1.5rem;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
  line-height: 1.25;
}

.lp-hero-title-lg {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--lp-text-sub);
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  font-weight: 500;
}

.lp-hero-title-xl {
  display: block;
  color: var(--lp-text);
  font-size: clamp(2rem, 6vw, 3.45rem);
}

.lp-hero-copy {
  margin: 0 0 2.1rem;
  color: var(--lp-text-sub);
  font-size: clamp(0.92rem, 2vw, 1.04rem);
  line-height: 2;
}

.lp-hero-actions,
.lp-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.lp-hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.lp-trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  color: var(--lp-text-sub);
  background: var(--lp-white);
  font-size: 0.8rem;
  font-weight: 700;
}

.lp-trust-badge::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.42rem;
  border-radius: 999px;
  background: var(--lp-pink);
  box-shadow: 0 0 0 0.22rem var(--lp-pink-soft);
}

.lp-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-profile-preview {
  position: relative;
  width: min(100%, 24rem);
  padding: 1.25rem;
  border: 1px solid rgba(145, 199, 255, 0.62);
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 252, 255, 0.98) 100%);
  box-shadow:
    1.15rem 1.15rem 0 rgba(207, 232, 255, 0.72),
    0 1.4rem 3.4rem rgba(31, 41, 55, 0.13);
}

.lp-profile-preview::before {
  content: "";
  position: absolute;
  inset: 1.15rem auto auto -1.05rem;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8db2 0%, #ffd2e2 100%);
  opacity: 0.34;
}

.lp-profile-preview::after {
  content: "";
  position: absolute;
  right: -0.8rem;
  bottom: 2.2rem;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 1.55rem;
  background: rgba(255, 240, 246, 0.85);
  transform: rotate(8deg);
  z-index: -1;
}

.lp-profile-preview-header,
.lp-profile-preview-main,
.lp-profile-safe-row {
  display: flex;
  align-items: center;
}

.lp-profile-preview-header {
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.lp-profile-preview-label {
  color: var(--lp-blue-deep);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp-profile-preview-status {
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  color: var(--lp-pink-deep);
  background: var(--lp-pink-soft);
  font-size: 0.76rem;
  font-weight: 900;
}

.lp-profile-preview-main {
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(145, 199, 255, 0.42);
  border-radius: 1.25rem;
  background: var(--lp-blue-soft);
}

.lp-profile-photo {
  position: relative;
  width: 4.4rem;
  height: 4.4rem;
  flex-shrink: 0;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 50% 32%, #fff 0 18%, transparent 19%),
    linear-gradient(135deg, #ff9bbb 0%, #91c7ff 100%);
  box-shadow: inset 0 0 0 0.35rem rgba(255, 255, 255, 0.55);
}

.lp-profile-photo-face {
  position: absolute;
  left: 50%;
  bottom: 0.92rem;
  width: 2.2rem;
  height: 1.2rem;
  border-radius: 999px 999px 0.35rem 0.35rem;
  background: rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
}

.lp-profile-summary {
  min-width: 0;
}

.lp-profile-name {
  margin: 0 0 0.25rem;
  color: var(--lp-text);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
}

.lp-profile-meta {
  margin: 0;
  color: var(--lp-text-sub);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}

.lp-profile-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1rem;
}

.lp-profile-chip-grid span,
.lp-profile-safe-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.15rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid rgba(221, 234, 245, 0.95);
  border-radius: 999px;
  color: var(--lp-text-sub);
  background: var(--lp-white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.lp-profile-chip-grid span:nth-child(odd) {
  color: var(--lp-pink-deep);
  background: var(--lp-pink-soft);
}

.lp-profile-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0.95rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(255, 240, 246, 0.95) 0%, rgba(238, 248, 255, 0.95) 100%);
}

.lp-profile-note-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  color: var(--lp-white);
  background: var(--lp-pink);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.88rem;
  font-weight: 800;
}

.lp-profile-note p {
  margin: 0;
  color: var(--lp-text);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.65;
}

.lp-profile-safe-row {
  flex-wrap: wrap;
  gap: 0.48rem;
  margin-top: 1rem;
}

.lp-profile-safe-row span {
  min-height: 1.95rem;
  color: var(--lp-blue-deep);
  background: var(--lp-blue-soft);
  font-size: 0.72rem;
}

.lp-profile-showcase {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
  background: var(--lp-white);
}

.lp-profile-showcase::before,
.lp-profile-showcase::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.lp-profile-showcase::before {
  top: 8%;
  left: -5rem;
  width: 12rem;
  height: 12rem;
  background: rgba(255, 141, 178, 0.08);
}

.lp-profile-showcase::after {
  right: -4rem;
  bottom: 7%;
  width: 10rem;
  height: 10rem;
  background: rgba(145, 199, 255, 0.1);
}

.lp-profile-showcase .lp-container {
  position: relative;
  z-index: 1;
}

.lp-profile-showcase-header {
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.lp-profile-showcase-card {
  width: min(100%, 58rem);
  margin-inline: auto;
  padding: clamp(0.85rem, 2vw, 1.4rem);
  border: 1px solid rgba(188, 213, 236, 0.7);
  border-radius: 2rem;
  background: linear-gradient(145deg, rgba(255, 249, 252, 0.96), rgba(247, 251, 255, 0.98));
  box-shadow: 0 1.5rem 3.5rem rgba(82, 102, 130, 0.11);
}

.lp-profile-showcase-figure {
  margin: 0;
}

.lp-profile-showcase-photo {
  position: relative;
  aspect-ratio: 66 / 35;
  overflow: hidden;
  border-radius: 1.45rem;
  background: linear-gradient(135deg, var(--lp-pink-soft), var(--lp-blue-soft));
}

.lp-profile-showcase-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.lp-profile-verified-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 141, 178, 0.38);
  border-radius: 999px;
  color: var(--lp-pink-deep);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0.5rem 1.4rem rgba(89, 75, 102, 0.13);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.lp-profile-verified-badge svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: rgba(255, 141, 178, 0.12);
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lp-profile-showcase-figure figcaption {
  margin-top: 0.55rem;
  color: var(--lp-text-sub);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: right;
}

.lp-profile-field-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.lp-profile-field-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid rgba(221, 234, 245, 0.9);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.82);
}

.lp-profile-field-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--lp-pink-soft);
}

.lp-profile-field-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.lp-profile-field-item.is-roots {
  color: var(--lp-pink-deep);
}

.lp-profile-field-item.is-school {
  color: var(--lp-blue-deep);
}

.lp-profile-field-item.is-school .lp-profile-field-icon {
  background: var(--lp-blue-soft);
}

.lp-profile-field-item.is-marriage {
  color: #7565b8;
}

.lp-profile-field-item.is-marriage .lp-profile-field-icon {
  background: #f4f0ff;
}

.lp-profile-field-text {
  display: block;
  min-width: 0;
}

.lp-profile-field-text strong,
.lp-profile-field-text small {
  display: block;
}

.lp-profile-field-text strong {
  font-size: 0.93rem;
  font-weight: 900;
  line-height: 1.45;
}

.lp-profile-field-text small {
  margin-top: 0.18rem;
  color: var(--lp-text-sub);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.55;
}

.lp-profile-showcase-closing {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  margin: clamp(2.2rem, 5vw, 3.25rem) auto 0;
  color: var(--lp-text);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
}

.lp-profile-showcase-closing svg {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
}

.lp-guide,
.lp-voices {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--lp-white);
}

.lp-name-story {
  padding: clamp(3.8rem, 7vw, 5.5rem) 0;
  background:
    linear-gradient(135deg, rgba(255, 244, 250, 0.9) 0%, rgba(245, 251, 255, 0.96) 100%);
}

.lp-name-story-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0.15rem auto 1.25rem;
  padding: 0.42rem;
  border: 1px solid rgba(255, 141, 178, 0.28);
  border-radius: 1.45rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 246, 0.82) 100%);
  box-shadow:
    0 0.9rem 2rem rgba(255, 141, 178, 0.14),
    0 0 0 0.48rem rgba(255, 255, 255, 0.44);
  transform: rotate(-3deg);
}

.lp-name-story-brand img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.05rem;
  object-fit: cover;
}

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

.lp-name-story-card {
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(188, 213, 236, 0.62);
  border-radius: var(--lp-radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--lp-shadow-soft);
}

.lp-name-story-kicker {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--lp-pink-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.lp-name-story-card h3,
.lp-guide-card-title,
.lp-flow-step-title {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 700;
}

.lp-name-story-card h3 {
  margin: 0 0 0.65rem;
  color: var(--lp-text);
  font-size: 1.15rem;
  line-height: 1.55;
}

.lp-name-story-card p {
  margin: 0;
  color: var(--lp-text-sub);
  font-size: 0.9rem;
  line-height: 1.8;
}

.lp-guide-grid,
.lp-voices-grid {
  display: grid;
  gap: 1.5rem;
}

.lp-guide-card,
.lp-voice-card {
  position: relative;
  padding: 2rem 1.8rem 1.8rem;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  background: var(--lp-cream);
  box-shadow: var(--lp-shadow-sm);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
}

.lp-guide-card:hover,
.lp-voice-card:hover {
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-4px);
}

.lp-guide-card.is-visible,
.lp-voice-card.is-visible,
.lp-flow-step.is-visible,
.lp-compare-table-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lp-guide-card:nth-child(2),
.lp-voice-card:nth-child(2) { transition-delay: 0.08s; }
.lp-guide-card:nth-child(3),
.lp-voice-card:nth-child(3) { transition-delay: 0.16s; }
.lp-guide-card:nth-child(4) { transition-delay: 0.24s; }

.lp-guide-card-index {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: rgba(255, 141, 178, 0.16);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
}

.lp-guide-card-title {
  margin: 0 0 0.9rem;
  color: var(--lp-text);
  font-size: 1.22rem;
  line-height: 1.45;
}

.lp-guide-card-copy {
  margin: 0 0 1.2rem;
  color: var(--lp-text-sub);
  font-size: 0.9rem;
  line-height: 1.85;
}

.lp-guide-card-check {
  padding: 0.65rem 0.9rem;
  border-radius: var(--lp-radius-sm);
  color: var(--lp-pink-deep);
  background: var(--lp-pink-soft);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.55;
}

.lp-guide-cta {
  margin-top: 3.5rem;
  text-align: center;
}

.lp-guide-cta-copy {
  margin: 0 0 1.4rem;
  color: var(--lp-text-sub);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.05rem;
}

.lp-guide-sister-note {
  margin: 1.5rem 0 0;
  color: var(--lp-text-sub);
  font-size: 0.88rem;
  line-height: 1.9;
}

.lp-guide-sister-note a {
  white-space: nowrap;
}

.lp-guide-sister-logo {
  display: inline-block;
  width: auto;
  height: 1.7rem;
  margin: 0 0.15rem;
  vertical-align: -0.55em;
}

.lp-features,
.lp-flow {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.lp-features-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, var(--lp-blue-soft) 0%, var(--lp-cream) 62%);
}

.lp-features .lp-container {
  position: relative;
  z-index: 1;
}

.lp-compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--lp-radius-lg);
  background: var(--lp-white);
  box-shadow: var(--lp-shadow-md);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.lp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.lp-compare-table .is-yes,
.lp-compare-table .is-no,
.lp-compare-table .is-tri,
.lp-compare-th-solo {
  white-space: nowrap;
}

.lp-compare-table thead tr {
  background: linear-gradient(90deg, var(--lp-blue-soft) 0%, var(--lp-white) 100%);
}

.lp-compare-table th,
.lp-compare-table td {
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--lp-border);
  text-align: center;
}

.lp-compare-table td:first-child,
.lp-compare-th-feature {
  text-align: left;
}

.lp-compare-th-solo {
  color: var(--lp-pink-deep);
  background: var(--lp-pink-soft);
}

.lp-compare-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.05rem;
  height: 3.05rem;
  padding: 0.24rem;
  border: 1px solid rgba(255, 141, 178, 0.28);
  border-radius: 0.82rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.35rem 0.9rem rgba(255, 141, 178, 0.14);
  vertical-align: middle;
}

.lp-compare-brand img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.58rem;
  object-fit: cover;
}

.lp-compare-th-other {
  color: var(--lp-text-sub);
  font-weight: 500;
}

.lp-compare-table .is-yes {
  color: var(--lp-pink-deep);
  background: rgba(255, 141, 178, 0.06);
  font-size: 1.25rem;
  font-weight: 900;
}

.lp-compare-table .is-no {
  color: #a6b1be;
  background: rgba(31, 41, 55, 0.02);
  font-size: 1.15rem;
  font-weight: 800;
}

.lp-compare-table .is-tri {
  color: var(--lp-blue-deep);
  background: rgba(145, 199, 255, 0.09);
  font-size: 1.15rem;
  font-weight: 800;
}

.lp-voice-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 18rem;
  padding: 2.25rem 2rem 1.75rem;
  border-color: rgba(145, 199, 255, 0.36);
  background: linear-gradient(145deg, #fff 0%, #fffafb 100%);
}

.lp-voice-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--lp-pink), var(--lp-blue));
}

.lp-voice-card.is-visible:hover {
  transform: translateY(-4px);
}

.lp-voice-text {
  flex: 1;
  margin: 0 0 1.5rem;
  color: var(--lp-text);
  font-size: 0.93rem;
  line-height: 2;
  letter-spacing: 0.015em;
}

.lp-voice-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(145, 199, 255, 0.28);
  color: var(--lp-text-sub);
  font-size: 0.83rem;
  font-weight: 700;
}

.lp-voice-avatar {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: 999px;
}

.lp-voice-avatar.is-f,
.lp-voice-avatar.is-f2 {
  background: linear-gradient(135deg, #f9a8c4, #fbb6c8);
}

.lp-voice-avatar.is-m {
  background: linear-gradient(135deg, #93c5fd, #bfdbfe);
}

.lp-flow {
  background: var(--lp-cream-deep);
}

.lp-flow-steps {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
}

.lp-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.lp-flow-step-num {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  color: var(--lp-white);
  background: var(--lp-pink);
  font-size: 0.82rem;
  font-weight: 900;
}

.lp-flow-step-title {
  margin: 0 0 0.45rem;
  color: var(--lp-text);
  font-size: 1.1rem;
}

.lp-flow-step-copy {
  margin: 0;
  color: var(--lp-text-sub);
  font-size: 0.9rem;
  line-height: 1.8;
}

.lp-flow-guide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  margin-top: 0.8rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(145, 199, 255, 0.72);
  border-radius: 999px;
  color: var(--lp-blue-deep);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.lp-flow-guide-btn:hover,
.lp-flow-guide-btn:focus-visible {
  color: var(--lp-blue-deep);
  background: var(--lp-white);
}

.lp-flow-connector {
  width: 2px;
  height: 2.4rem;
  margin-left: 1.55rem;
  background: linear-gradient(to bottom, var(--lp-pink), rgba(255, 141, 178, 0.2));
}

.lp-invite-guide-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 1.15rem;
  box-shadow: var(--lp-shadow-lg);
}

.lp-invite-guide-modal .modal-header,
.lp-invite-guide-modal .modal-footer {
  border: 0;
  background: var(--lp-white);
}

.lp-invite-guide-modal .modal-title {
  color: var(--lp-text);
  font-size: 1.05rem;
  font-weight: 900;
}

.lp-invite-guide-modal-kicker {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--lp-pink-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lp-invite-guide-modal .modal-body {
  padding: 0;
  background: var(--lp-cream-deep);
}

.lp-invite-guide-modal-image {
  display: block;
  width: 100%;
  height: auto;
}

.lp-invite-guide {
  position: relative;
  padding: clamp(2rem, 5vw, 3.25rem) 0;
  background: linear-gradient(160deg, var(--lp-cream) 0%, var(--lp-blue-soft) 100%);
}

.lp-invite-guide-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.lp-invite-guide-image-link {
  display: block;
  max-width: 100%;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: var(--lp-shadow-lg);
}

.lp-invite-guide-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 55vh;
  height: auto;
}

.lp-final-cta {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7rem) 0;
  overflow: hidden;
  color: var(--lp-white);
  background: linear-gradient(135deg, var(--lp-pink) 0%, var(--lp-blue) 100%);
  text-align: center;
}

.lp-final-cta-bg-orb.is-pink {
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.16);
  top: -200px;
  left: -100px;
}

.lp-final-cta-bg-orb.is-blue {
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.14);
  right: 0;
  bottom: -100px;
}

.lp-final-cta-eyebrow,
.lp-final-cta-title,
.lp-final-cta-title em {
  color: var(--lp-white);
}

.lp-final-cta-title {
  margin: 0 0 1.2rem;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: clamp(1.75rem, 5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.4;
}

.lp-final-cta-copy {
  margin: 0 0 2.5rem;
  opacity: 0.88;
  font-size: 0.97rem;
  line-height: 2;
}

.lp-final-cta-actions {
  justify-content: center;
  margin-bottom: 0;
}

.lp-sister {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, #fdf6f2 0%, #faeef0 100%);
}

.lp-sister .lp-section-eyebrow {
  color: #b0616f;
}

.lp-sister .lp-section-header {
  margin-bottom: 2.4rem;
}

.lp-sister-grid {
  display: grid;
  gap: 1rem;
}

.lp-sister-card {
  padding: 1.5rem 1.4rem;
  border-radius: 1.4rem;
  background: var(--lp-white);
}

.lp-sister-card.is-solo {
  border: 1px solid #ffd7e5;
  box-shadow: 0 8px 24px rgba(255, 141, 178, 0.1);
}

.lp-sister-card.is-manme {
  border: 1px solid #e8c9bf;
  box-shadow: 0 8px 24px rgba(176, 97, 111, 0.12);
}

.lp-sister-card-label {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.lp-sister-card.is-solo .lp-sister-card-label {
  color: var(--lp-pink-deep);
}

.lp-sister-card.is-manme .lp-sister-card-label {
  color: #b0616f;
}

.lp-sister-card-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.1rem 0 0.45rem;
}

.lp-sister-card-brand-mark {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--lp-border);
  border-radius: 0.65rem;
  overflow: hidden;
  background: var(--lp-white);
}

.lp-sister-card-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-sister-card-wordmark {
  display: block;
  width: auto;
  height: 1.45rem;
}

.lp-sister-card-wordmark.is-manme {
  height: 2.2rem;
}

.lp-sister-card-lead {
  margin: 0 0 0.45rem;
  color: var(--lp-text);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 0.98rem;
  font-weight: 600;
}

.lp-sister-card-copy {
  margin: 0;
  color: var(--lp-text-sub);
  font-size: 0.9rem;
  line-height: 1.8;
}

.lp-btn-manme {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  margin-top: 1rem;
  border-radius: 999px;
  color: var(--lp-white);
  background: linear-gradient(135deg, #c96b7d 0%, #e0a3ae 100%);
  box-shadow: 0 8px 20px rgba(176, 97, 111, 0.25);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lp-btn-manme:hover {
  transform: translateY(-1px);
  color: var(--lp-white);
  box-shadow: 0 10px 24px rgba(176, 97, 111, 0.34);
}

@media (min-width: 640px) {
  .lp-guide-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .lp-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 1fr);
  }

  .lp-hero-visual {
    justify-content: flex-end;
    padding-right: 2rem;
  }

  .lp-voices-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-sister-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    max-width: 52rem;
    margin-inline: auto;
  }

  .lp-sister-card {
    display: flex;
    flex-direction: column;
  }

  .lp-sister-card .lp-btn-manme {
    margin-top: auto;
  }
}

@media (min-width: 1024px) {
  .lp-guide-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767.98px) {
  .lp-container {
    padding-inline: 1rem;
  }

  .lp-hero {
    padding-top: 3rem;
  }

  .lp-hero-actions,
  .lp-final-cta-actions {
    align-items: stretch;
  }

  .lp-btn,
  .lp-btn-hero,
  .lp-btn-hero-soft,
  .lp-btn-hero-outline {
    width: 100%;
  }

  .lp-profile-preview {
    width: min(100%, 22rem);
    padding: 1rem;
    border-radius: 1.55rem;
    box-shadow:
      0.65rem 0.65rem 0 rgba(207, 232, 255, 0.72),
      0 1rem 2.4rem rgba(31, 41, 55, 0.1);
  }

  .lp-profile-preview-main {
    align-items: flex-start;
    padding: 0.85rem;
  }

  .lp-profile-photo {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 1rem;
  }

  .lp-profile-chip-grid {
    grid-template-columns: 1fr;
  }

  .lp-profile-showcase {
    padding: 3.5rem 0;
  }

  .lp-profile-showcase::before {
    top: 4rem;
    left: -4.5rem;
    width: 9rem;
    height: 9rem;
  }

  .lp-profile-showcase::after {
    right: -4rem;
    bottom: 5rem;
    width: 8rem;
    height: 8rem;
  }

  .lp-profile-showcase-card {
    padding: 0.65rem;
    border-radius: 1.5rem;
  }

  .lp-profile-showcase-photo {
    border-radius: 1.15rem;
  }

  .lp-profile-showcase-photo > img {
    object-position: center 40%;
  }

  .lp-profile-verified-badge {
    top: 0.65rem;
    left: 0.65rem;
    min-height: 2.25rem;
    padding: 0.42rem 0.72rem;
    font-size: 0.76rem;
  }

  .lp-profile-verified-badge svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .lp-profile-field-list {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    margin-top: 0.85rem;
  }

  .lp-profile-field-item {
    min-height: 4.4rem;
    padding: 0.72rem 0.85rem;
  }

  .lp-profile-field-text strong {
    font-size: 0.9rem;
  }

  .lp-profile-field-text small {
    font-size: 0.7rem;
  }

  .lp-profile-showcase-closing {
    gap: 0.55rem;
    font-size: 1.22rem;
  }

  .lp-profile-showcase-closing svg {
    width: 1.85rem;
    height: 1.85rem;
  }

  .lp-name-story-grid {
    grid-template-columns: 1fr;
  }

  .lp-name-story-brand {
    width: 4.75rem;
    height: 4.75rem;
    margin-bottom: 1rem;
    border-radius: 1.2rem;
  }

  .lp-name-story-brand img {
    border-radius: 0.88rem;
  }

  .lp-section-header {
    margin-bottom: 2.4rem;
  }

  .lp-guide-card,
  .lp-name-story-card,
  .lp-voice-card {
    padding: 1.55rem 1.25rem;
  }

  .lp-compare-table th,
  .lp-compare-table td {
    padding: 0.85rem 0.7rem;
  }

  .lp-compare-th-other {
    font-size: 0.82rem;
  }

  .lp-section-copy,
  .lp-guide-cta-copy,
  .lp-final-cta-copy {
    text-align: left;
  }
}

/* Public home hero ------------------------------------------------------- */
.lp-home .lp-hero {
  min-height: clamp(39rem, 56.28vw, 54rem);
  padding: 0;
  background-color: #f8fbff;
  background-image: url("../img/home-hero-desktop.429531259c09.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lp-home .lp-hero .lp-container {
  width: min(100%, 92rem);
  min-height: inherit;
  padding-inline: clamp(2.5rem, 8vw, 8.5rem);
}

.lp-home .lp-hero-inner {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: inherit;
  align-items: center;
}

.lp-home .lp-hero-content {
  display: flex;
  width: min(50%, 42rem);
  min-width: 0;
  max-width: 100%;
  min-height: clamp(31rem, 47vw, 44rem);
  padding-top: clamp(3.2rem, 5vw, 5.2rem);
  padding-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
  flex-direction: column;
  align-items: flex-start;
}

.lp-home .lp-hero-eyebrow {
  width: min(100%, 38rem);
  margin: 0 0 clamp(1.5rem, 3vw, 2.8rem);
  padding-bottom: clamp(0.75rem, 1.2vw, 1.15rem);
  border-bottom: 2px dashed rgba(91, 147, 197, 0.55);
  color: #5e92bf;
  font-size: clamp(1.05rem, 1.85vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-align: center;
  text-transform: none;
}

.lp-home .lp-hero-title {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  color: #25394c;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.28;
}

.lp-home .lp-hero-title-context {
  display: block;
  margin-bottom: 0.45rem;
  color: #5e92bf;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Apple SD Gothic Neo", sans-serif;
  font-size: clamp(1rem, 1.55vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.lp-home .lp-hero-title-main,
.lp-home .lp-hero-title-accent {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.lp-home .lp-hero-title-main {
  font-size: clamp(2.8rem, 5vw, 5.45rem);
}

.lp-home .lp-hero-title-accent {
  margin-top: 0.16em;
  font-size: clamp(2.95rem, 5.15vw, 5.6rem);
}

.lp-home .lp-hero-title-accent em {
  color: #ee6e9c;
}

.lp-home .lp-hero-actions {
  display: grid;
  width: 100%;
  margin: clamp(1.6rem, 2.6vw, 2.4rem) 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1.1rem);
}

.lp-hero-action {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 3.35rem;
  padding: 0.65rem 1rem;
  border: 2px solid transparent;
  border-radius: 999px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.08rem;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  backdrop-filter: blur(5px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-hero-action small {
  font-size: clamp(0.64rem, 0.82vw, 0.76rem);
  font-weight: 700;
}

.lp-hero-action strong {
  font-size: clamp(0.88rem, 1.15vw, 1.02rem);
  font-weight: 800;
}

.lp-hero-action-primary {
  color: #fff;
  background: linear-gradient(135deg, #ee6e9c 0%, #f79fbd 100%);
  box-shadow: 0 0.65rem 1.35rem rgba(223, 95, 141, 0.24);
}

.lp-hero-action-login {
  border-color: rgba(126, 189, 238, 0.72);
  color: #4f86b4;
  background: rgba(255, 255, 255, 0.9);
}

.lp-hero-action-referrer {
  min-height: 3.55rem;
  border-color: rgba(238, 110, 156, 0.52);
  grid-column: 1 / -1;
  color: #cf527f;
  background: rgba(255, 248, 251, 0.92);
  box-shadow: 0 0.5rem 1.2rem rgba(223, 95, 141, 0.12);
}

.lp-hero-action-referrer small {
  color: #75859a;
}

.lp-hero-action:hover {
  transform: translateY(-1px);
}

.lp-hero-action-primary:hover {
  color: #fff;
  box-shadow: 0 0.55rem 1.2rem rgba(223, 95, 141, 0.28);
}

.lp-hero-action-login:hover {
  color: #3e739f;
  box-shadow: 0 0.5rem 1.15rem rgba(79, 134, 180, 0.15);
}

.lp-hero-action-referrer:hover {
  color: #bd426f;
  box-shadow: 0 0.6rem 1.3rem rgba(223, 95, 141, 0.2);
}

.lp-home .lp-hero-trust-row {
  width: 100%;
  margin-top: clamp(1.15rem, 1.8vw, 1.65rem);
  flex-wrap: nowrap;
  gap: clamp(0.55rem, 1.25vw, 1.15rem);
}

.lp-home .lp-contact-note {
  width: 100%;
  margin-top: clamp(0.9rem, 1.4vw, 1.25rem);
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(185, 211, 234, 0.58);
  border-radius: 999px;
  color: #52677f;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0.35rem 1rem rgba(74, 112, 151, 0.07);
  font-size: clamp(0.82rem, 1.05vw, 0.96rem);
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(5px);
}

.lp-home .lp-contact-note a {
  color: #258f8d;
  font-weight: 900;
  text-decoration-thickness: 2px;
}

.lp-home .lp-trust-badge {
  min-height: clamp(3.4rem, 4.7vw, 4.6rem);
  padding: 0.65rem clamp(0.8rem, 1.5vw, 1.4rem);
  border: 2px solid rgba(185, 211, 234, 0.7);
  flex: 1 1 0;
  justify-content: center;
  color: #5d7088;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0.55rem 1.5rem rgba(74, 112, 151, 0.08);
  font-size: clamp(0.86rem, 1.22vw, 1.12rem);
  line-height: 1.35;
  text-align: center;
  backdrop-filter: blur(5px);
}

.lp-home .lp-trust-badge::before {
  content: none;
}

.lp-trust-dot {
  width: clamp(0.75rem, 1.1vw, 1rem);
  height: clamp(0.75rem, 1.1vw, 1rem);
  margin-right: 0.55rem;
  border-radius: 50%;
  background: #f16c9d;
  box-shadow: 0 0 0 0.38rem rgba(255, 217, 231, 0.8);
  flex: 0 0 auto;
}

.lp-trust-icon {
  width: clamp(1.7rem, 2.6vw, 2.5rem);
  height: clamp(1.7rem, 2.6vw, 2.5rem);
  margin-right: 0.45rem;
  flex: 0 0 auto;
  fill: none;
  stroke: #58bfc0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.lp-trust-mobile-break {
  display: none;
}

@media (max-width: 767.98px) {
  .lp-home .lp-hero {
    min-height: max(48rem, calc(100svh - 7rem));
    aspect-ratio: 941 / 1672;
    background-image: url("../img/home-hero-mobile.d8a4b2ea7c2b.jpg");
    /* 人物を下げ、CTAと男性の頭が接触しない余白を確保する。 */
    background-position: center calc(50% + 2.5rem);
    background-size: auto 112%;
  }

  .lp-home .lp-hero .lp-container {
    min-height: inherit;
    padding-inline: clamp(1.1rem, 6vw, 2.3rem);
  }

  .lp-home .lp-hero-inner {
    min-height: inherit;
    align-items: stretch;
  }

  .lp-home .lp-hero-content {
    width: auto;
    min-width: 0;
    max-width: 100%;
    min-height: inherit;
    padding-top: clamp(3rem, 12vw, 5rem);
    padding-bottom: clamp(1.4rem, 5vw, 2.4rem);
    align-items: center;
  }

  .lp-home .lp-hero-eyebrow {
    width: 88%;
    margin-bottom: clamp(1.1rem, 4vw, 1.8rem);
    padding-bottom: 0.7rem;
    font-size: clamp(0.82rem, 4vw, 1.25rem);
    letter-spacing: 0.08em;
  }

  .lp-home .lp-hero-title {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .lp-home .lp-hero-title-context {
    margin-bottom: 0.3rem;
    font-size: clamp(0.8rem, 3.7vw, 1.05rem);
  }

  .lp-home .lp-hero-title-main {
    font-size: clamp(2.05rem, 10.6vw, 4rem);
  }

  .lp-home .lp-hero-title-accent {
    font-size: clamp(2.2rem, 11.2vw, 4.2rem);
  }

  .lp-home .lp-hero-actions {
    display: grid;
    width: min(calc(100% - 1.5rem), 23.5rem);
    max-width: calc(100vw - 2rem);
    margin-top: clamp(0.8rem, 3vw, 1.25rem);
    margin-right: auto;
    margin-bottom: clamp(1.25rem, 5vw, 1.8rem);
    margin-left: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .lp-hero-action {
    min-height: 3rem;
    padding: 0.5rem 0.45rem;
  }

  .lp-hero-action small {
    font-size: clamp(0.58rem, 2.35vw, 0.68rem);
  }

  .lp-hero-action strong {
    font-size: clamp(0.74rem, 3.15vw, 0.9rem);
    overflow-wrap: anywhere;
  }

  .lp-hero-action-primary {
    min-height: 3.2rem;
    grid-column: 1 / -1;
  }

  .lp-hero-action-primary strong {
    font-size: clamp(0.85rem, 3.6vw, 1rem);
  }

  .lp-hero-action-referrer {
    min-height: 3rem;
    grid-column: auto;
  }

  .lp-home .lp-hero-trust-row {
    width: calc(100% - 1.5rem);
    max-width: calc(100vw - 2rem);
    margin-right: auto;
    margin-top: auto;
    margin-left: auto;
    gap: clamp(0.35rem, 1.6vw, 0.7rem);
  }

  .lp-home .lp-trust-badge {
    min-width: 0;
    min-height: 4rem;
    padding: 0.6rem 0.34rem;
    font-size: clamp(0.82rem, 3.3vw, 0.94rem);
  }

  .lp-trust-dot {
    width: 0.7rem;
    height: 0.7rem;
    margin-right: 0.42rem;
    box-shadow: 0 0 0 0.28rem rgba(255, 217, 231, 0.8);
  }

  .lp-trust-icon {
    width: 1.7rem;
    height: 1.7rem;
    margin-right: 0.25rem;
  }

  .lp-trust-mobile-break {
    display: inline;
  }

  .lp-home .lp-contact-note {
    width: calc(100% - 1.5rem);
    max-width: calc(100vw - 2rem);
    margin-right: auto;
    margin-top: 0.75rem;
    margin-left: auto;
    padding: 0.55rem 0.7rem;
    border-radius: 1rem;
    font-size: clamp(0.75rem, 3vw, 0.88rem);
    line-height: 1.6;
  }
}

@media (max-width: 380px) {
  .lp-home .lp-hero {
    background-position: 53% calc(50% + 2.5rem);
  }

  .lp-home .lp-hero-title-main {
    font-size: clamp(1.95rem, 10.2vw, 2.4rem);
    letter-spacing: 0.035em;
  }

  .lp-home .lp-hero-title-accent {
    font-size: clamp(2.1rem, 10.8vw, 2.55rem);
    letter-spacing: 0.035em;
  }
}

/* 未ログインLPではヘッダーをスクロールに追従させる */
body.public-home-page .app-header {
  position: sticky;
  top: 0.5rem;
  z-index: 1030;
}
