/* StoreTalk LP — mobile-first */
:root {
  --lp-brand: #e8563f;
  --lp-brand-dark: #d14532;
  --lp-ink: #2d3436;
  --lp-muted: #636e72;
  --lp-surface: #faf8f6;
  --lp-card: #ffffff;
  --lp-radius: 1rem;
  --lp-img-radius: 1.125rem;
  --lp-img-radius-lg: 1.5rem;
  --lp-max: 72rem;
  --lp-header-h: 3.5rem;
  --lp-section-y: clamp(3.25rem, 7vw, 4.75rem);
  --lp-prose: 36rem;
  --lp-shadow-soft: 0 4px 16px rgba(15, 23, 42, 0.06);
  --lp-shadow-hover: 0 14px 36px rgba(15, 23, 42, 0.12);
  --lp-shadow-media: 0 16px 40px rgba(15, 23, 42, 0.09);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

body.lp-body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  color: var(--lp-ink);
  background: var(--lp-surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  touch-action: manipulation;
  overscroll-behavior-x: none;
}

body.lp-body main,
body.lp-body .lp-header,
body.lp-body .lp-footer {
  max-width: 100%;
  overflow-x: clip;
}

body.lp-body img,
body.lp-body picture,
body.lp-body video,
body.lp-body svg {
  max-width: 100%;
}

body.lp-body.lp-menu-open {
  overflow: hidden;
}

body.lp-body.lp-has-sticky-cta {
  padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
}

.lp-container {
  width: 100%;
  max-width: var(--lp-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* Header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 52, 54, 0.08);
}

.lp-header.is-menu-open {
  border-bottom-color: rgba(45, 52, 54, 0.12);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.lp-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--lp-header-h);
  gap: 0.75rem;
  min-width: 0;
}

.lp-header-logo {
  display: block;
  height: clamp(1.625rem, 5vw, 2rem);
  width: auto;
  max-width: min(10rem, 42vw);
  object-fit: contain;
}

.lp-nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.lp-nav-desktop a {
  color: var(--lp-muted);
  transition: color 0.15s;
}

.lp-nav-desktop a:hover {
  color: var(--lp-brand);
}

.lp-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(45, 52, 54, 0.12);
  background: #fff;
}

/* モバイル：ヘッダー直下ドロップダウン */
.lp-mobile-menu {
  display: none;
  flex-direction: column;
  padding-bottom: 0.5rem;
}

.lp-mobile-menu.is-open {
  display: flex;
}

.lp-mobile-menu-nav {
  display: flex;
  flex-direction: column;
  padding-top: 0.25rem;
}

.lp-mobile-menu-nav a {
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--lp-ink);
  border-bottom: 1px solid rgba(45, 52, 54, 0.07);
}

.lp-mobile-menu-nav a:last-child {
  border-bottom: none;
}

/* メニュー表示時：枠外クリック用オーバーレイ */
.lp-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 48;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(45, 52, 54, 0.4);
  cursor: pointer;
}

.lp-menu-backdrop.is-visible {
  display: block;
}

/* メニュー表示時：画面最下部固定のログイン・CTA */
.lp-mobile-menu-footer-fixed {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  gap: 0.5rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(45, 52, 54, 0.1);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

.lp-mobile-menu-footer-fixed.is-visible {
  display: flex;
}

.lp-mobile-menu-footer-fixed .lp-btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
  padding-block: 0.875rem;
  font-size: 0.875rem;
}

.lp-mobile-menu-footer-fixed .lp-btn-primary {
  flex: 1.35;
}

body.lp-body.lp-menu-open .lp-sticky-cta {
  transform: translateY(100%);
  visibility: hidden;
}

@media (min-width: 992px) {
  .lp-menu-backdrop,
  .lp-mobile-menu-footer-fixed {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .lp-menu-btn {
    display: none;
  }
  .lp-nav-desktop {
    display: flex;
  }
  .lp-mobile-menu {
    display: none !important;
  }
}

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.625rem;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.lp-btn:active {
  transform: scale(0.98);
}

.lp-btn-primary {
  color: #fff;
  background: var(--lp-brand);
  box-shadow: 0 4px 14px rgba(232, 86, 63, 0.35);
}

.lp-btn-primary:hover {
  background: var(--lp-brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 86, 63, 0.45);
}

.lp-btn-lg {
  padding: 0.9375rem 1.75rem;
  font-size: 1rem;
}

.lp-card-interactive {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

@media (hover: hover) {
  .lp-card-interactive:hover {
    transform: translateY(-3px);
    box-shadow: var(--lp-shadow-hover);
  }

  .lp-feature-card.lp-card-interactive:hover {
    border-color: rgba(232, 86, 63, 0.18);
  }
}

.lp-btn-outline {
  color: var(--lp-brand);
  background: #fff;
  border: 1.5px solid var(--lp-brand);
}

.lp-btn-outline:hover {
  background: rgba(232, 86, 63, 0.06);
}

.lp-btn-ghost {
  color: var(--lp-muted);
  background: transparent;
  padding-inline: 0.5rem;
}

.lp-nav-desktop .lp-header-cta {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.5625rem 1.25rem;
  border: 2px solid #fff;
  box-shadow:
    0 2px 6px rgba(45, 52, 54, 0.12),
    0 4px 18px rgba(232, 86, 63, 0.5);
  flex-shrink: 0;
}

.lp-nav-desktop .lp-header-cta:hover {
  color: #fff;
  background: var(--lp-brand-dark);
  box-shadow:
    0 3px 8px rgba(45, 52, 54, 0.16),
    0 6px 22px rgba(232, 86, 63, 0.55);
}

/* Hero — 画像は画面幅100%・高さは原寸比の85%・コピーは左に重ねる */
.lp-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 799.85;
  overflow: hidden;
  background-color: var(--lp-surface);
}

.lp-hero-visual-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  pointer-events: none;
  user-select: none;
}

.lp-hero-visual-wrap .lp-hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}

.lp-hero-copy {
  max-width: min(40rem, 94%);
  position: relative;
  z-index: 1;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(250, 248, 246, 0.98) 0%,
    rgba(250, 248, 246, 0.94) 36%,
    rgba(250, 248, 246, 0.7) 48%,
    rgba(250, 248, 246, 0.2) 58%,
    transparent 68%
  );
}

/* 写真スタジオLP：左の白幕を薄くしてヒーロー画像を見せる */
.lp-body-photo .lp-hero-overlay {
  background: linear-gradient(
    105deg,
    rgba(250, 248, 246, 0.68) 0%,
    rgba(250, 248, 246, 0.52) 34%,
    rgba(250, 248, 246, 0.32) 46%,
    rgba(250, 248, 246, 0.08) 56%,
    transparent 66%
  );
}

.lp-hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.75rem;
  font-size: clamp(0.8125rem, 2.2vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--lp-brand-dark);
  background: rgba(232, 86, 63, 0.1);
  border: 1px solid rgba(232, 86, 63, 0.22);
  border-radius: 0.375rem;
  margin-bottom: 1.125rem;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.lp-hero-badge span[aria-hidden="true"] {
  font-size: 1em;
  line-height: 1;
}

.lp-hero h1 {
  font-size: clamp(1.75rem, 5.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.lp-hero-h1-accent {
  white-space: nowrap;
}

/* 通常LP：SP/PCとも「を、」のあとで改行 */
.lp-hero-h1-br--sp {
  display: block;
}

.lp-body:not(.lp-body-photo) .lp-hero-h1-br--pc {
  display: none;
}

.lp-hero-lead {
  margin-top: 1rem;
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  line-height: 1.75;
  color: var(--lp-muted);
}

.lp-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.lp-hero-cta .lp-btn {
  width: 100%;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}

.lp-hero-cta .lp-btn-primary {
  box-shadow: 0 6px 22px rgba(232, 86, 63, 0.42);
}

.lp-hero-cta .lp-btn-primary:hover {
  box-shadow: 0 10px 28px rgba(232, 86, 63, 0.5);
}

.lp-hero-note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--lp-muted);
}

.lp-body-photo .lp-hero-lead,
.lp-body-photo .lp-hero-note {
  color: var(--lp-ink);
}

/* 写真LP：SPは「の」のあと、PCは「質問を、」のあとで改行 */
.lp-body-photo .lp-hero-h1-br--sp {
  display: block;
}

.lp-body-photo .lp-hero-h1-br--pc {
  display: none;
}

@media (min-width: 769px) {
  .lp-body-photo .lp-hero-h1-br--sp {
    display: none;
  }

  .lp-body-photo .lp-hero-h1-br--pc {
    display: block;
  }
}

/* タブレット・PC：コピーを左に重ねる */
@media (min-width: 992px) {
  .lp-hero-inner {
    align-items: center;
  }

  .lp-hero-copy {
    max-width: min(44rem, 48%);
  }

  .lp-hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .lp-hero-cta .lp-btn {
    width: auto;
    white-space: nowrap;
  }

  .lp-hero-overlay {
    background: linear-gradient(
      105deg,
      rgba(250, 248, 246, 0.98) 0%,
      rgba(250, 248, 246, 0.94) 36%,
      rgba(250, 248, 246, 0.7) 48%,
      rgba(250, 248, 246, 0.2) 58%,
      transparent 68%
    );
  }

  .lp-body-photo .lp-hero-overlay {
    background: linear-gradient(
      105deg,
      rgba(250, 248, 246, 0.68) 0%,
      rgba(250, 248, 246, 0.52) 34%,
      rgba(250, 248, 246, 0.32) 46%,
      rgba(250, 248, 246, 0.08) 56%,
      transparent 66%
    );
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .lp-nav-desktop {
    gap: 0.75rem;
    font-size: 0.8125rem;
  }

  .lp-nav-desktop .lp-header-cta {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }

  .lp-hero-copy {
    max-width: min(40rem, 52%);
  }
}

/* スマホ（768px以下）：バッジ→見出し→説明→画像→CTA→補足 */
@media (max-width: 768px) {
  .lp-hero {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .lp-hero-overlay {
    display: none;
  }

  .lp-hero-inner {
    display: contents;
  }

  .lp-hero-copy {
    display: contents;
  }

  .lp-hero-badge {
    order: 1;
    align-self: flex-start;
    width: auto;
    max-width: calc(100% - 2rem);
    margin: clamp(1rem, 3.5vw, 1.5rem) 0 0 1rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
    border-radius: 0.375rem;
  }

  .lp-hero h1 {
    order: 2;
    width: calc(100% - 2rem);
    margin-inline: 1rem;
    font-size: clamp(1.5rem, 6.8vw, 2rem);
    line-height: 1.3;
  }

  .lp-hero-lead {
    order: 3;
    width: calc(100% - 2rem);
    margin: 0.875rem 1rem 0;
    font-size: 0.9375rem;
    line-height: 1.72;
  }

  .lp-hero-visual-wrap {
    order: 4;
    position: relative;
    inset: auto;
    z-index: auto;
    align-self: stretch;
    width: 100%;
    height: auto;
    margin: 0.375rem 0 0.625rem;
    padding: 0;
    overflow: hidden;
  }

  .lp-hero-visual-wrap .lp-hero-visual {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    max-height: min(65vw, 19.5rem);
    object-fit: contain;
    object-position: 72% center;
  }

  .lp-hero-cta {
    order: 5;
    align-self: stretch;
    width: calc(100% - 2rem);
    margin: 1rem 1rem 0;
    gap: 0.75rem;
  }

  .lp-hero-cta .lp-btn {
    border-radius: 0.625rem;
  }

  .lp-hero-note {
    order: 6;
    width: calc(100% - 2rem);
    margin: 0.625rem 1rem clamp(1rem, 3.5vw, 1.5rem);
  }
}

/* Sections */
.lp-section {
  padding-block: var(--lp-section-y);
}

.lp-section-alt {
  background: #fff;
}

#faq.lp-section {
  padding-block: clamp(2.75rem, 6vw, 4.25rem);
}

.lp-section-title {
  text-align: center;
  font-size: clamp(1.375rem, 4vw, 1.875rem);
  font-weight: 800;
  line-height: 1.3;
  text-wrap: balance;
}

.lp-section-sub {
  text-align: center;
  margin-top: 0.75rem;
  font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
  color: var(--lp-muted);
  line-height: 1.7;
  max-width: var(--lp-prose);
  margin-inline: auto;
  padding-inline: 0.25rem;
}

/* Feature grid */
.lp-feature-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .lp-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .lp-feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.lp-feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--lp-card);
  border-radius: var(--lp-radius);
  padding: 1rem 1.125rem 1.125rem;
  border: 1px solid rgba(45, 52, 54, 0.08);
  box-shadow: var(--lp-shadow-soft);
}

.lp-feature-figure {
  margin: 0 0 0.375rem;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 10rem;
  padding: 0.125rem 0.25rem 0;
  border-radius: 0.625rem;
  background: linear-gradient(180deg, rgba(250, 248, 246, 0.75) 0%, transparent 100%);
}

.lp-feature-figure picture {
  display: block;
  line-height: 0;
  width: min(100%, 10rem);
  margin-inline: auto;
}

.lp-feature-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 10rem;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.08) saturate(1.06);
}

@media (min-width: 640px) {
  .lp-feature-figure {
    min-height: 11.5rem;
  }

  .lp-feature-figure picture {
    width: min(100%, 11.5rem);
  }

  .lp-feature-img {
    max-height: 11.5rem;
  }
}

@media (min-width: 1024px) {
  .lp-feature-figure {
    min-height: 14rem;
  }

  .lp-feature-figure picture {
    width: min(100%, 14rem);
  }

  .lp-feature-img {
    max-height: 14rem;
  }
}

.lp-feature-card h3 {
  font-size: clamp(0.9375rem, 2.2vw, 1rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.375rem;
}

.lp-feature-card p {
  margin: 0;
  flex: 1;
  font-size: 0.8125rem;
  color: var(--lp-muted);
  line-height: 1.65;
}

/* Benefits */
.lp-owner-benefit-image {
  margin: clamp(1.75rem, 4vw, 2.5rem) auto clamp(2rem, 5vw, 2.75rem);
  max-width: min(1080px, 100%);
  border-radius: var(--lp-img-radius);
  overflow: hidden;
  box-shadow: var(--lp-shadow-media);
}

.lp-owner-benefit-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.lp-benefit-list {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .lp-benefit-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 0.75rem 1.25rem 1.25rem;
  border-radius: var(--lp-radius);
  background: linear-gradient(160deg, #fff 0%, #faf8f6 100%);
  border: 1px solid rgba(45, 52, 54, 0.08);
  box-shadow: var(--lp-shadow-soft);
}

.lp-benefit-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 15rem;
  margin: 0 0 0.375rem;
  flex-shrink: 0;
  padding: 0.25rem 0.375rem 0;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, rgba(255, 252, 250, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.lp-benefit-figure picture {
  display: block;
  line-height: 0;
  width: min(100%, 15.5rem);
  margin-inline: auto;
}

.lp-benefit-icon {
  display: block;
  width: 100%;
  height: auto;
  max-height: 15.5rem;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.12) saturate(1.1);
}

@media (min-width: 768px) {
  .lp-benefit-figure {
    min-height: 15.5rem;
  }

  .lp-benefit-figure picture {
    width: min(100%, 15.5rem);
  }

  .lp-benefit-icon {
    max-height: 15.5rem;
  }
}

@media (max-width: 767px) {
  .lp-benefit-figure {
    min-height: clamp(11.5rem, 40vw, 14rem);
  }

  .lp-benefit-figure picture {
    width: min(94%, 14rem);
  }

  .lp-benefit-icon {
    max-height: clamp(11.5rem, 40vw, 14rem);
  }
}

.lp-benefit-item strong {
  display: block;
  width: 100%;
  font-size: 1.0625rem;
  margin-bottom: 0.3125rem;
  line-height: 1.45;
  text-align: left;
}

.lp-benefit-item p {
  width: 100%;
  margin-top: auto;
  font-size: 0.875rem;
  color: var(--lp-muted);
  line-height: 1.72;
  text-align: left;
}

/* 導入店舗インタビュー */
.lp-interview-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.25rem);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  align-items: stretch;
}

@media (min-width: 768px) {
  .lp-interview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-interview-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--lp-card);
  border-radius: var(--lp-radius);
  border: 1px solid rgba(45, 52, 54, 0.08);
  box-shadow: var(--lp-shadow-soft);
  overflow: hidden;
}

.lp-interview-figure {
  margin: 0;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: linear-gradient(180deg, #f3eeea 0%, #ebe4de 100%);
}

.lp-interview-figure picture {
  display: block;
  width: 100%;
  height: 100%;
}

.lp-interview-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.lp-interview-label {
  display: inline-block;
  align-self: flex-start;
  margin: 1rem 1.25rem 0;
  padding: 0.25rem 0.6875rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--lp-brand-dark);
  background: rgba(232, 86, 63, 0.09);
  border-radius: 999px;
}

.lp-interview-title {
  margin: 0.625rem 1.25rem 0;
  font-size: clamp(0.9375rem, 2.2vw, 1.0625rem);
  font-weight: 800;
  line-height: 1.45;
  text-wrap: balance;
}

.lp-interview-body {
  flex: 1;
  margin: 0.875rem 1.25rem 0;
  padding-left: 0.875rem;
  border-left: 2px solid rgba(232, 86, 63, 0.18);
}

.lp-interview-body p {
  margin: 0 0 0.8125rem;
  font-size: 0.8125rem;
  color: var(--lp-muted);
  line-height: 1.9;
}

.lp-interview-body p:last-child {
  margin-bottom: 0;
}

.lp-interview-chip {
  margin: auto 1.25rem 0;
  padding: 0.875rem 0 1.25rem;
  border-top: 1px solid rgba(45, 52, 54, 0.07);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--lp-muted);
  line-height: 1.4;
}

.lp-interviews-note {
  margin-top: clamp(1.5rem, 3.5vw, 2.25rem);
  text-align: center;
  font-size: 0.6875rem;
  color: var(--lp-muted);
  line-height: 1.7;
  max-width: 42rem;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .lp-interview-figure {
    aspect-ratio: 16 / 10;
    max-height: 14rem;
  }
}

.lp-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
  margin-top: clamp(1.75rem, 4vw, 2.25rem);
  align-items: stretch;
  width: 100%;
}

@media (min-width: 640px) {
  .lp-stat-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.lp-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  max-width: 100%;
  min-height: 5.75rem;
  padding: 1.25rem 0.75rem;
  background: linear-gradient(165deg, #fff 0%, #faf8f6 100%);
  border-radius: var(--lp-radius);
  border: 1px solid rgba(232, 86, 63, 0.14);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.lp-stat::before {
  display: block;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 2rem;
  color: var(--lp-brand);
  background: rgba(232, 86, 63, 0.08);
  border-radius: 50%;
}

.lp-stat:nth-child(1)::before {
  content: "⚡";
}

.lp-stat:nth-child(2)::before {
  content: "24";
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-stat:nth-child(3)::before {
  content: "-80";
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lp-stat:nth-child(4)::before {
  content: "URL";
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lp-stat-num {
  font-size: clamp(1.5625rem, 4vw, 2.125rem);
  font-weight: 800;
  color: var(--lp-brand);
  line-height: 1.15;
}

.lp-stat-label {
  font-size: 0.8125rem;
  color: var(--lp-muted);
  margin-top: 0.375rem;
  line-height: 1.45;
  max-width: 9rem;
}

/* Steps */
.lp-steps {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(2rem, 5vw, 2.75rem);
  list-style: none;
  padding: 0;
  align-items: stretch;
}

@media (min-width: 768px) {
  .lp-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.lp-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 1.25rem 1.25rem 1.25rem;
  background: #fff;
  border-radius: var(--lp-radius);
  border: 1px solid rgba(45, 52, 54, 0.08);
  box-shadow: var(--lp-shadow-soft);
  text-align: center;
}

@media (min-width: 768px) {
  .lp-step:not(:last-child)::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: -1.35rem;
    transform: translateY(-50%);
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--lp-brand-dark);
    line-height: 1;
    pointer-events: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  }
}

@media (max-width: 767px) {
  .lp-steps {
    gap: 2.75rem;
  }

  .lp-step:not(:last-child)::after {
    content: "↓";
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: -1.65rem;
    transform: translateX(-50%);
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--lp-brand-dark);
    line-height: 1;
    pointer-events: none;
  }
}

.lp-step-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 15.5rem;
  margin: 0 0 0.875rem;
  flex-shrink: 0;
}

.lp-step-figure picture {
  display: block;
  line-height: 0;
  width: min(100%, 18rem);
  margin-inline: auto;
}

.lp-step-icon {
  display: block;
  width: 100%;
  height: auto;
  max-height: 18rem;
  object-fit: contain;
  object-position: center;
}

@media (min-width: 768px) {
  .lp-step-figure {
    min-height: 16rem;
  }

  .lp-step-figure picture {
    width: min(100%, 18rem);
  }

  .lp-step-icon {
    max-height: 18rem;
  }
}

.lp-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0 0 0.625rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  background: var(--lp-brand);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(232, 86, 63, 0.35);
  flex-shrink: 0;
}

.lp-step h3 {
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.375rem;
  text-align: left;
}

.lp-step p {
  width: 100%;
  margin: 0;
  flex: 1;
  font-size: 0.8125rem;
  color: var(--lp-muted);
  line-height: 1.65;
  text-align: left;
}

@media (max-width: 767px) {
  .lp-step-figure {
    min-height: clamp(12rem, 38vw, 15.5rem);
    margin-bottom: 0.875rem;
  }

  .lp-step-figure picture {
    width: min(92%, 16.5rem);
  }

  .lp-step-icon {
    max-height: 16.5rem;
  }
}

.lp-steps-cta {
  text-align: center;
  margin-top: clamp(1.75rem, 3.5vw, 2.25rem);
}

.lp-steps-cta .lp-btn {
  width: 100%;
  max-width: 20rem;
}

/* Compare */
.lp-compare {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .lp-compare {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.lp-compare-col {
  padding: 1.375rem 1.5rem;
  border-radius: var(--lp-radius);
  height: 100%;
}

.lp-compare-before {
  background: #f1f2f6;
  border: 1px dashed rgba(45, 52, 54, 0.15);
}

.lp-compare-after {
  background: rgba(232, 86, 63, 0.06);
  border: 1px solid rgba(232, 86, 63, 0.2);
}

.lp-compare-col h3 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  line-height: 1.4;
}

.lp-compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
}

.lp-compare-col li + li {
  margin-top: 0.25rem;
}

.lp-compare-col li::before {
  margin-right: 0.5rem;
}

.lp-compare-before li::before {
  content: "×";
  color: #b2bec3;
}

.lp-compare-after li::before {
  content: "✓";
  color: var(--lp-brand);
  font-weight: 800;
  font-size: 1rem;
}

/* Pricing teaser */
.lp-pricing-card {
  margin-top: clamp(2rem, 5vw, 2.75rem);
  padding: clamp(1.25rem, 3.5vw, 2rem);
  background: #141b2d;
  color: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(20, 27, 45, 0.35);
  overflow: hidden;
}

.lp-pricing-card-grid {
  display: grid;
  gap: clamp(1.25rem, 3.5vw, 1.75rem);
  align-items: center;
}

.lp-pricing-copy {
  width: 100%;
  text-align: center;
}

.lp-pricing-action {
  width: 100%;
  text-align: center;
}

.lp-pricing-highlight {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.35;
}

.lp-pricing-points {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  text-align: left;
  max-width: 22rem;
  margin-inline: auto;
}

.lp-pricing-points li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9375rem;
  line-height: 1.68;
  opacity: 0.98;
  font-weight: 500;
}

.lp-pricing-points li + li {
  margin-top: 0.5rem;
}

.lp-pricing-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--lp-brand);
  box-shadow: 0 0 0 2px rgba(232, 86, 63, 0.35);
}

.lp-pricing-em {
  color: #fecaca;
  font-weight: 700;
}

.lp-pricing-plan-note {
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  opacity: 0.78;
  line-height: 1.6;
}

.lp-pricing-visual {
  margin: 0 auto;
  width: 100%;
  max-width: 20.5rem;
  border-radius: var(--lp-img-radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  flex-shrink: 0;
}

.lp-pricing-visual picture {
  display: block;
  line-height: 0;
}

.lp-pricing-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lp-pricing-cta {
  display: inline-flex;
  width: 100%;
  max-width: 22rem;
}

.lp-pricing-card .lp-btn-primary {
  box-shadow: 0 6px 20px rgba(232, 86, 63, 0.5);
}

.lp-pricing-card .lp-btn-primary:hover {
  box-shadow: 0 10px 28px rgba(232, 86, 63, 0.55);
}

@media (min-width: 768px) {
  .lp-pricing-card {
    padding: clamp(1.75rem, 3vw, 2.5rem);
  }

  .lp-pricing-card-grid {
    grid-template-columns: 1fr min(38%, 23.5rem);
    grid-template-areas:
      "copy visual"
      "action visual";
    column-gap: clamp(1.75rem, 3.5vw, 2.75rem);
    row-gap: 1.125rem;
  }

  .lp-pricing-copy {
    grid-area: copy;
    text-align: left;
  }

  .lp-pricing-action {
    grid-area: action;
    text-align: left;
  }

  .lp-pricing-points {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }

  .lp-pricing-visual {
    grid-area: visual;
    grid-row: 1 / -1;
    align-self: center;
    max-width: 23.5rem;
    width: 92%;
  }

  .lp-pricing-cta {
    margin-inline: 0;
  }
}

/* FAQ — 横長 pic_faq_support.png */
.lp-faq-support-image {
  max-width: min(67.5rem, 100%);
  margin: clamp(1.5rem, 4vw, 1.75rem) auto clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--lp-img-radius-lg);
  overflow: hidden;
  box-shadow: var(--lp-shadow-media);
}

.lp-faq-support-image picture {
  display: block;
  line-height: 0;
}

.lp-faq-support-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
}

@media (min-width: 769px) {
  .lp-faq-support-image {
    margin: 1.75rem auto 2rem;
    max-width: min(67.5rem, 100%);
  }

  .lp-faq-support-image img {
    height: clamp(15rem, 20vw, 19rem);
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 768px) {
  .lp-faq-support-image {
    margin: 1.125rem auto 1.5rem;
    max-width: min(22rem, 100%);
  }

  .lp-faq-support-image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
  }
}

.lp-faq {
  margin-top: 0;
  max-width: 40rem;
  margin-inline: auto;
}

.lp-faq details {
  background: #fff;
  border: 1px solid rgba(45, 52, 54, 0.08);
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.lp-faq summary {
  padding: 1.1875rem 1.375rem;
  min-height: 3.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.lp-faq summary:hover {
  background: rgba(250, 248, 246, 0.9);
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--lp-brand);
  flex-shrink: 0;
}

.lp-faq details[open] summary::after {
  content: "−";
}

.lp-faq details p {
  padding: 0 1.125rem 1rem;
  font-size: 0.875rem;
  color: var(--lp-muted);
  line-height: 1.7;
}

/* CTA band */
.lp-cta-band {
  padding: clamp(2rem, 5vw, 3.25rem) 0;
  background: linear-gradient(
    135deg,
    #e04f38 0%,
    var(--lp-brand) 42%,
    var(--lp-brand-dark) 100%
  );
  color: #fff;
}

.lp-cta-band-inner {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: center;
}

.lp-cta-visual {
  margin: 0;
  width: 100%;
  max-width: min(100%, 24rem);
  margin-inline: auto;
  border-radius: var(--lp-img-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.375rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.lp-cta-visual picture {
  display: block;
  line-height: 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.lp-cta-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.lp-cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 0;
}

.lp-cta-band h2 {
  font-size: clamp(1.3125rem, 4vw, 1.875rem);
  font-weight: 800;
  line-height: 1.35;
  text-wrap: balance;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin: 0;
}

.lp-cta-band p {
  margin-top: 0.75rem;
  font-size: clamp(0.875rem, 2.5vw, 1rem);
  opacity: 1;
  line-height: 1.72;
  padding-inline: 0.25rem;
  max-width: var(--lp-prose);
}

.lp-cta-btn {
  margin-top: 1.375rem;
  align-self: center;
  background: #fff;
  color: var(--lp-brand);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  width: 100%;
  max-width: 20rem;
  font-weight: 700;
  font-size: 1.0625rem;
}

.lp-cta-btn:hover {
  background: #faf8f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

@media (min-width: 768px) {
  .lp-cta-band-inner {
    grid-template-columns: minmax(0, 27.5rem) minmax(0, 1fr);
    column-gap: clamp(2rem, 4vw, 3rem);
  }

  .lp-cta-visual {
    order: 0;
    max-width: min(100%, 27.5rem);
    margin-inline: 0;
  }

  .lp-cta-copy {
    order: 1;
    text-align: left;
    align-items: flex-start;
    align-self: center;
    padding-block: 0.25rem;
  }

  .lp-cta-band p {
    padding-inline: 0;
    margin-inline: 0;
  }

  .lp-cta-btn {
    margin-inline: 0;
    align-self: flex-start;
  }
}

/* Sticky mobile CTA */
.lp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(45, 52, 54, 0.1);
  display: flex;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.lp-sticky-cta.is-visible {
  transform: translateY(0);
}

.lp-sticky-cta .lp-btn {
  flex: 1;
  min-width: 0;
  padding-block: 0.875rem;
  font-size: 0.875rem;
}

.lp-sticky-cta .lp-btn-primary {
  flex: 1.35;
}

@media (min-width: 992px) {
  .lp-sticky-cta {
    display: none;
  }
}

@media (max-width: 991px) {
  .lp-sticky-cta {
    display: flex;
  }
}

/* LP 埋め込みチャット（widget.js）— 100vw 起因の横ブレ防止 */
@media (max-width: 767px) {
  #faq-salon-widget-panel-root {
    right: max(12px, env(safe-area-inset-right, 0px)) !important;
    left: auto !important;
    width: min(360px, calc(100% - 24px)) !important;
    max-width: calc(100% - 24px) !important;
    box-sizing: border-box;
  }

  #faq-salon-widget-launcher-root {
    right: max(12px, env(safe-area-inset-right, 0px)) !important;
    max-width: calc(100% - 24px);
  }

  body.lp-has-sticky-cta #faq-salon-widget-launcher-root {
    bottom: calc(var(--faq-launcher-bottom, 20px) + 4.75rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  body.lp-has-sticky-cta #faq-salon-widget-panel-root {
    bottom: calc(var(--faq-launcher-bottom, 20px) + 5.5rem + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* 各セクションの微調整 */
@media (max-width: 639px) {
  .lp-container {
    padding-inline: 1rem;
  }

  .lp-section {
    padding-block: clamp(2.25rem, 7vw, 3.25rem);
  }

  #faq.lp-section {
    padding-block: clamp(2rem, 6vw, 2.75rem);
  }

  .lp-feature-grid,
  .lp-benefit-list,
  .lp-interview-grid,
  .lp-steps,
  .lp-compare,
  .lp-stat-row {
    margin-top: 1.5rem;
  }

  .lp-feature-card,
  .lp-benefit-item,
  .lp-step,
  .lp-compare-col {
    padding: 1rem;
  }

  .lp-owner-benefit-image {
    margin: 2rem auto 2.5rem;
    border-radius: 1.125rem;
  }

  .lp-faq-support-image {
    margin: 1.25rem auto 1.5rem;
    border-radius: var(--lp-img-radius-lg);
  }

  .lp-pricing-visual {
    max-width: 22.5rem;
    border-radius: 1.125rem;
  }

  .lp-faq summary {
    padding: 1rem 1.125rem;
    min-height: 3rem;
    font-size: 0.875rem;
    align-items: center;
  }

  .lp-faq details p {
    padding: 0 1rem 0.875rem;
    font-size: 0.8125rem;
  }

  .lp-stat {
    padding: 1rem 0.5rem;
    min-height: 5rem;
  }

  .lp-stat::before {
    width: 1.75rem;
    height: 1.75rem;
    line-height: 1.75rem;
    margin-bottom: 0.375rem;
  }

  .lp-stat-label {
    font-size: 0.75rem;
  }
}

@media (min-width: 640px) and (max-width: 991px) {
  .lp-feature-grid {
    gap: 1.25rem;
  }

  .lp-hero-cta .lp-btn {
    width: auto;
    min-width: 12rem;
  }

  .lp-hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (min-width: 640px) {
  .lp-pricing-cta,
  .lp-cta-btn,
  .lp-steps-cta .lp-btn {
    width: auto;
  }
}

/* Footer */
.lp-footer {
  padding: 2rem 0 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--lp-muted);
}

.lp-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
}

.lp-footer a:hover {
  color: var(--lp-brand);
}
