/*
Theme Name: Luxeritas Child
Template: luxeritas
Description: Luxeritas Child Theme for LP project
*/

/**
 * LP layout aligned with Figma export (top.svg): 1440 artboard, #F3F0F0 / #E23351 bands.
 * Scope: body.page-template-page-lp
 */

/**
 * File guide (kept in original rule order to avoid cascade changes):
 * - Design tokens / base scope
 * - Header + navigation + CTAs
 * - Hero
 * - Shared layout helpers (container/bands/anchors)
 * - Section components (reasons/about/voice/func/faq/service/footer/media/drawer)
 * - Responsive overrides (1024px / 768px)
 * - Animations
 */

/* -------------------------------------------------------------------------- */
/* Common UI (global primitives)                                               */
/* -------------------------------------------------------------------------- */
/* Keep these unscoped so archive/single templates can reuse them. */

:root {
  --ui-container: 1200px;
  /* Match LP featured-article card look */
  --ui-radius-card: 8px;
  --ui-shadow-card: 0 16px 40px rgba(179, 10, 39, 0.14);
  --ui-primary: #db0025;
  --ui-text: #1a1a1a;
  --ui-text-muted: #4d4d4d;
  --ui-border: rgba(0, 0, 0, 0.08);
  --ui-surface: #ffffff;
  --ui-card-outer: #242424;
}

header#header { display: none !important; }
div#primary.clearfix { margin-top: 0 !important; border: none !important; }
main#main { margin-bottom: 0 !important; }


.container {
  max-width: var(--ui-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.section {
  padding-top: 120px;
  padding-bottom: 160px;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0 80px 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 2px solid var(--ui-primary);
  background: var(--ui-primary);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
}

.btn:hover {
  opacity: 0.92;
}

.btn:focus-visible {
  outline: 3px solid rgba(219, 0, 37, 0.28);
  outline-offset: 2px;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
}

.card {
  background: var(--ui-card-outer);
  border-radius: var(--ui-radius-card);
  box-shadow: var(--ui-shadow-card);
  border: 0;
  overflow: hidden;
  color: var(--ui-text);
  height: 100%;
  min-width: 320px;
}

.card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  width: 100%;
}

.card-link:focus-visible {
  outline: 3px solid rgba(219, 0, 37, 0.28);
  outline-offset: 3px;
  border-radius: var(--ui-radius-card);
}

.card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e8e8;
  width: 100%;
}

.card-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card-body {
  padding: 16px 16px 24px 16px;
  background: var(--ui-surface);
  flex: 1 1 auto;
}

.card-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: #000;
}

.card-body p {
  margin: 0 0 12px;
  color: #000;
  line-height: 1.4;
}

/* Optional tag pill (archive/category cards) */
.card-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  height: 27px;
  width: 103px;
  border-radius: 100px;
  background: #e23351;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Article (single post) */
.post {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .single .post {
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }
}

.entry-content {
  line-height: 1.8;
}

.entry-content h2 {
  margin-top: 32px;
  font-size: 22px;
}

.entry-content p {
  margin-bottom: 16px;
}

.entry-content ul {
  margin: 0 0 16px 1.2em;
}

.entry-content img {
  max-width: 100%;
  height: auto;
}

/* Posts list grid (archive/category) */
.ep-archive .posts,
.ep-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  justify-items: stretch;
}

.ep-archive .posts > .card,
.ep-archive__grid > .card {
  width: 100%;
  min-width: 0;
}

.ep-archive .posts > .lp2-featured-article-card,
.ep-archive__grid > .lp2-featured-article-card {
  width: 100%;
  min-width: 0;
  height: 100%;
}

@media (max-width: 1024px) {
  .ep-archive .posts,
  .ep-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ep-archive .posts,
  .ep-archive__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* -------------------------------------------------------------------------- */
/* Archive / Category (ARTICLES grid page)                                     */
/* -------------------------------------------------------------------------- */


/* Archive: LP header should be in normal flow (no absolute overlay) */
.archive .lp2-header-wrap, .single .lp2-header-wrap {
  position: static !important;
}

/* Archive: red top band behind the header (matches design) */
body.page-template-page-lp .lp2.archive .lp2-archive-top {
  background: linear-gradient(135deg, #c0001e 0%, #db0025 40%, #a8001a 100%);
  padding: 16px 0 56px;
}

/* Single: reuse the same top band as archive */
body.page-template-page-lp .lp2.single .lp2-archive-top {
  background: linear-gradient(135deg, #c0001e 0%, #db0025 40%, #a8001a 100%);
  padding: 16px 0 56px;
}
.lp2.archive .lp2-archive-content {
  margin-top: -24px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background-color: var(--lp2-bg-mist);
  background-image: var(--lp2-bg-gradients);
  background-attachment: fixed;
}

.lp2.single .lp2-archive-content {
  margin-top: -24px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background-color: var(--lp2-bg-mist);
  background-image: var(--lp2-bg-gradients);
  background-attachment: fixed;
}
.lp2.archive .lp2-surface-title, .lp2.single .lp2-surface-title {
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .lp2.archive .lp2-archive-content {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .lp2.archive .lp2-surface-title, .lp2.single .lp2-surface-title {
    margin-bottom: 24px;
  }

  .lp2.single .lp2-archive-content {
    border-top-left-radius: 26px;
    border-top-right-radius: 26px;
  }
}

.ep-single__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
  padding: 80px 0 160px;
  box-sizing: border-box;
}

.ep-single__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 16px;
}

@media (max-width: 768px) {
  .ep-single__header {
    gap: 8px 16px;
  }
}

.ep-single__meta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex-wrap: nowrap;
  gap: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.0;
  color: #999999;
  letter-spacing: 0;
}

.ep-single__meta-sep {
  flex: 0 0 auto;
  padding: 0 12px;
  color: rgba(0, 0, 0, 0.35);
  font-weight: 300;
  user-select: none;
}

.ep-single__title {
  flex: 1 1 100%;
  margin: 0;
  font-size: 36px;
  line-height: 1.35;
  font-weight: 500;
  color: #1A1A1A;
  letter-spacing: 0;
}

.ep-single__thumb {
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.ep-single__thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.ep-single__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

#article-navigation.ep-single__nav {
  gap: 16px;
  margin-top: 56px;
}

.ep-single__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  width: 200px;
  box-sizing: border-box;
  border-radius: 999px;
  border: 2px solid #db0025;
  background: #fff;
  color: #db0025;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ep-single__nav-btn span {
  width: 144px;
  text-align: center;
}

.ep-single__nav-btn:hover:not(.is-disabled) {
  background: rgba(219, 0, 37, 0.06);
}

.ep-single__nav-btn.is-disabled {
  border-color: #cccccc;
  color: #999999;
  cursor: not-allowed;
  pointer-events: none;
}

.ep-single__nav-btn .ep-single__nav-icon {
  display: block;
  flex-shrink: 0;
}

.ep-single__nav-btn--prev .ep-single__nav-icon {
  margin-right: 2px;
}

.ep-single__nav-btn--next .ep-single__nav-icon {
  margin-left: 2px;
}

@media (max-width: 768px) {
  /* Single post nav: circular prev/next (icon only) + pill 記事一覧 — matches mobile design */
  #article-navigation.ep-single__nav,
  .ep-single__nav {
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    padding: 0 4px;
    box-sizing: border-box;
  }

  .ep-single__nav-btn {
    width: 124px;
  }
  .ep-single__nav-btn--prev,
  .ep-single__nav-btn--next {
    position: relative;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-radius: 50%;
    gap: 0;
  }

  .ep-single__nav-btn--prev .ep-single__nav-label,
  .ep-single__nav-btn--next .ep-single__nav-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
  }

  .ep-single__nav-btn--prev .ep-single__nav-icon,
  .ep-single__nav-btn--next .ep-single__nav-icon {
    margin: 0;
  }

  .ep-single__nav-btn--list {
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 120px);
    padding: 10px 18px;
    font-size: 14px;
  }

  .ep-single__thumb {
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .ep-single__card {
    padding: 24px 0 40px;
    border-radius: 14px;
  }

  .ep-single__title {
    font-size: 22px;
    line-height: 1.3;
  }
}
/* Reinforce card styles against parent theme overrides on archives */
.ep-archive .card {
  background: var(--ui-card-outer);
  border-radius: var(--ui-radius-card);
  box-shadow: var(--ui-shadow-card);
  border: 0;
  overflow: hidden;
  color: var(--ui-text);
  height: 100%;
  min-width: 320px;
}

.ep-archive .card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
  width: 100%;
}

.ep-archive .card-photo {
  aspect-ratio: 16 / 10;
  background: #000;
  overflow: hidden;
}

.ep-archive .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ep-archive__head {
  text-align: left;
}

.ep-archive__eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #e23351;
  text-transform: uppercase;
}

.ep-archive__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 600;
  color: #1a1a1a;
}

.ep-archive__desc {
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  max-width: 70ch;
}

@media (max-width: 768px) {
  .ep-archive__title {
    font-size: 26px;
    line-height: 1.3;
  }
}

/* Pagination: circular numbers like design */
.ep-archive__pagination {
  margin-top: 56px;
}

@media (max-width: 768px) {
  .ep-archive__pagination {
    margin-top: 32px;
  }
}

.ep-archive__pagination .navigation.pagination {
  display: flex;
  justify-content: center;
}

.ep-archive__pagination .nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ep-archive__pagination .page-numbers {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #db0025;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #db0025;
  box-sizing: border-box;
}

.ep-archive__pagination .page-numbers:hover {
  background: rgba(219, 0, 37, 0.08);
  border-color: #db0025;
  color: #db0025;
}

.ep-archive__pagination .page-numbers.current {
  background: #db0025;
  border-color: #db0025;
  color: #fff;
}

.ep-archive__pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  box-sizing: border-box;
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  max-height: 32px;
  padding: 0;
  color: transparent;
  position: relative;
  pointer-events: none;
  overflow: hidden;
  line-height: 0;
}

.ep-archive__pagination .page-numbers.prev,
.ep-archive__pagination .page-numbers.next {
  line-height: 0;
  padding: 0;
  place-content: center;
}

.ep-archive__pagination .page-numbers.prev .ep-archive__nav-arrow,
.ep-archive__pagination .page-numbers.next .ep-archive__nav-arrow {
  display: block;
  width: 28px;
  height: 28px;
  overflow: visible;
  flex-shrink: 0;
}

/* Optical centering only (SVG path mass is ~1px off in 24×24 viewBox);*/
.ep-archive__pagination .page-numbers.prev .ep-archive__nav-arrow {
  transform: translateX(-1px);
}

.ep-archive__pagination .page-numbers.next .ep-archive__nav-arrow {
  transform: translateX(1px);
}

.ep-archive__pagination a.page-numbers.prev:hover,
.ep-archive__pagination a.page-numbers.next:hover {
  background: rgba(219, 0, 37, 0.08);
  border-color: #db0025;
  color: #db0025;
}

.ep-archive__pagination span.page-numbers.prev,
.ep-archive__pagination span.page-numbers.next {
  background: rgba(0, 0, 0, 0.08);
  border-color: #999999;
  color: #999999;
  opacity: 1;
}

/* —— Design tokens (from top.svg) —— */
body.page-template-page-lp {
  --lp2-primary: var(--ui-primary);
  --lp2-section-accent: #e23351;
  --lp2-bg-mist: #f3f0f0;
  --lp2-text: #333333;
  --lp2-text-muted: #666666;
  --lp2-header-fill: rgba(254, 251, 251, 0.85);
  --lp2-header-radius: 8px;
  --lp2-header-height: 60px;
  --lp2-shadow-header: var(--ui-shadow-card);
  --lp2-container: var(--ui-container);
  --lp2-bg-gradients:
    radial-gradient(ellipse 60% 70% at 0% 25%, rgba(243, 20, 120, 0.32) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 105% 15%, rgba(255, 150, 150, 0.38) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 50% 110%, rgba(219, 0, 37, 0.28) 0%, transparent 65%);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--lp2-text);
  background-color: var(--lp2-bg-mist);
  background-image: var(--lp2-bg-gradients);
  background-attachment: fixed;
  line-height: 1.6;


  & .lp2 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: transparent;
    overflow-x: clip;
  }

  /* —— Sticky header —— */
  & .lp2-header-wrap {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 16px;
    box-sizing: border-box;
  }

  & .lp2-header {
    width: 100%;
    min-height: var(--lp2-header-height);
    background: var(--lp2-header-fill);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--lp2-header-radius);
    box-shadow: var(--lp2-shadow-header);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-sizing: border-box;
  }

  & .lp2-logo a {
    display: inline-block;
    position: relative;
    z-index: 2;
    line-height: 0;
  }

  & .lp2-logo img {
    height: 28px;
    width: auto;
    display: block;
  }

  & .lp2-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  & .lp2-nav ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px 40px;
    justify-content: center;
  }

  & .lp2-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.2s ease;
  }

  & .lp2-nav a:hover {
    color: var(--lp2-primary);
  }

  & .lp2-header-actions {
    display: flex;
    flex-shrink: 0;
    gap: 16px;
    align-items: center;
  }

  /* Header CTAs: 140×36 primary, 138×34 outline (Figma) */
  & .lp2-btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 36px;
    width: 140px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  & .lp2-btn-header--primary {
    background: var(--lp2-primary);
    color: #fff;
    border: 2px solid var(--lp2-primary);
  }

  & .lp2-btn-header--primary:hover {
    background: #c9153a;
    border-color: #c9153a;
  }

  & .lp2-btn-header--outline {
    background: transparent;
    color: var(--lp2-primary);
    border: 2px solid var(--lp2-primary);
    height: 34px;
    padding: 0 16px;
    border-radius: 17px;
  }

  & .lp2-btn-header--outline:hover {
    background: rgba(219, 0, 37, 0.06);
  }

  & .lp2-hamburger {
    display: none;
    background: transparent;
    border: 0;
    color: #111;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
  }

  & .lp2-hamburger svg {
    display: block;
  }

  /* —— Hero (full-bleed photo; no tint/bokeh overlay) —— */
  & .lp2-hero {
    position: relative;
    min-height: min(100vh, 900px);
    min-height: min(100dvh, 900px);
    padding: 0;
    color: #fff;
    overflow: hidden;
    background-color: #db0025;
    background-image: url("/wp-content/uploads/2026/04/hero-banner-bg-scaled.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }

  @media (max-width: 767px) {
    & .lp2-hero {
      background-image: url("/wp-content/uploads/2026/05/hero-banner-bg-scaled-2.png");
      background-size: cover;
      background-position: top center;
    }
  }

  & .lp2-hero__container {
    position: relative;
    z-index: 1;
    max-width: var(--lp2-container);
    margin: 0 auto;
    padding: 0;
    min-height: min(700px, 100vh);
    min-height: min(700px, 100dvh);
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  & .lp2-hero__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 700px;
  }

  & .lp2-hero__content {
    padding: 120px 0 72px;
  }

  & .lp2-hero__visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    align-self: flex-end;
  }

  & .lp2-hero__mockup {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.30));
  }

  & .lp2-hero__eyebrow {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
  }

  & .lp2-hero__title {
    margin: 0;
    font-size: 56px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0;
  }

  & .lp2-hero__actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Figma: outline ~198×54 / solid ~200×56 */
  & .lp2-btn-hero {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 16px 16px 14px;
    gap: 8px;
    width: 200px;
    height: 56px;
    border-radius: 100px;
    flex: none;
    flex-grow: 0;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
  }

  & .lp2-btn-hero:hover {
    opacity: 0.94;
  }

  & .lp2-btn-hero--outline {
    background: transparent;
    color: #fff;
    border: 2px solid #ffffff;
  }

  & .lp2-btn-hero--solid {
    background: #ffffff;
    color: var(--lp2-primary);
    border: none;
  }

  & .lp2-btn-hero svg {
    flex-shrink: 0;
  }

  /* —— Bands —— */
  & .lp2-band {
    padding: 120px 0 160px;
  }

  & .lp2-band-0-top-space {
    padding-top: 0px !important;
  }

  & .lp2-band-0-bottom-space {
    padding-bottom: 0px !important;
  }

  /* Body-colored band (mist BG shows through); replaces duplicate white/mist modifiers */
  & .lp2-band--surface {
    background: transparent;
    color: var(--lp2-text);
  }

  /* Shared gradient background: ABOUT + 5 REASONS + FAQ */
  & .lp2-band.lp2-about-band,
  & .lp2-band.lp2-reasons-band,
  & .lp2-band.lp2-faq-band {
    background-color: var(--lp2-bg-mist);
    background-image: var(--lp2-bg-gradients);
    background-attachment: fixed;
  }

  /* ABOUT: white panel overlapping hero with rounded top edge */
  & .lp2-band.lp2-about-band {
    position: relative;
    z-index: 2;
    margin-top: -48px;
    padding-top: 120px;
    padding-bottom: 160px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  & .lp2-band--feature {
    background: var(--lp2-section-accent);
    color: #fff;
    padding-top: 100px;
  }

  & .lp2-band--voice {
    background: var(--lp2-section-accent);
    color: #fff;
    padding-top: 60px;
  }

  & .lp2-band--svc {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #c0001e 0%, #db0025 40%, #a8001a 100%);
    margin-top: -48px;
    padding: 120px 0 130px;
  }

  /* FAQ → サービス一覧: curved bottom into red band */
  & .lp2-band.lp2-faq-band {
    position: relative;
    z-index: 2;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    padding-bottom: 160px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
  }

  & .lp2-container {
    max-width: var(--lp2-container);
    margin: 0 auto;
  }

  & .lp2-section-title {
    text-align: center;
    font-size: clamp(22px, 48px, 48px);
    font-weight: 600;
    margin: 0 0 40px;
    color: var(--lp2-primary);
    line-height: 1.3;
    letter-spacing: 0;
  }

  & .lp2-section-title--on-accent {
    color: #fff;
  }

  /* Flow list on mist */
  & .lp2-flow-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
  }

  & .lp2-flow-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  }

  & .lp2-flow-num {
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--lp2-primary);
    min-width: 88px;
  }

  & .lp2-flow-text {
    font-size: 16px;
    font-weight: 700;
  }

  /* —— ABOUT —— */
  & .lp2-about__eyebrow {
    font-size: 26px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, #DB0025, #DA1460);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 20px;
  }

  & .lp2-about__subline-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0 0 4px;
    align-items: center;
  }

  & .lp2-about__subline.lp2-about__subline--sp {
    display: none;
  }

  & .lp2-about__subline {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 135%;
    color: #fff;
    margin: 0;
    padding: 10px 12px;
    border-radius: 4px;
    background: linear-gradient(90deg, #DB0025 0%, #DA1460 100%);
  }

  & .lp2-about__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 130%;
    color: #DB0025;
    margin: 0 0 56px;
    letter-spacing: 0;
  }

  /* —— About cards (horizontal rows) —— */
  & .lp2-about-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  & .lp2-about-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px 40px;
    gap: 64px;
    width: 1120px;
    max-width: 100%;
    height: 368px;
    background: rgba(254, 251, 251, 0.5);
    border: 1px solid #FBFBFB;
    box-shadow: 0px 16px 40px rgba(179, 10, 39, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
  }

  & .lp2-about-card__body {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  & .lp2-about-card__tag {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    padding: 0;
    margin: 0 0 30px;
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 160%;
    letter-spacing: 0.04em;
    color: #DB0025;
  }

  & .lp2-about-card__num {
    letter-spacing: 0;
    font-family: 'DIN Condensed', 'DIN', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    color: #DB0025;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: -500px;
    margin: 0;
    flex: none;
    flex-grow: 0;
    min-height: calc(32px * 1.5);
  }

  & .lp2-reason-card__num {
    letter-spacing: 0;
    font-family: 'DIN Condensed', 'DIN', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    color: #DB0025;
    padding: 0;
    margin: 0;
    flex: none;
    flex-grow: 0;
  }

  & .lp2-about-card__label {
    /* flex (not inline-flex): avoids baseline/line-box quirks with siblings in some engines */
    display: flex;
    align-items: center;
    box-sizing: border-box;
    min-height: calc(32px * 1.5);
    line-height: 1.6;
  }

  & .lp2-about-card__sub {
    letter-spacing: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 135%;
    color: #1A1A1A;
    margin: 0 0 4px;
  }

  & .lp2-about-card__heading {
    font-size: 36px;
    font-weight: 500;
    line-height: 135%;
    color: #1A1A1A;
    margin: 0 0 40px;
    letter-spacing: 0;
  }

  & .lp2-about-card__text {
    font-size: 17px;
    font-weight: 400;
    line-height: 160%;
    color: #4D4D4D;
    margin: 0;
  }

  & .lp2-about-card__visual {
    width: 320px;
    height: 320px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  & .lp2-about-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* —— 5 Reasons section —— */
  & .lp2-reasons__eyebrow {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, #DB0025 0%, #DA1460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    margin: 0 0 10px;
    line-height: 1.6;
  }

  & .lp2-reasons__title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: var(--lp2-primary);
    margin: 0 0 40px;
    line-height: 1.3;
  }

  & .lp2-reasons-wrap {
    padding: 40px;
    background: rgba(251, 251, 251, 0.5);
    border: 1px solid #FBFBFB;
    box-shadow: 0px 16px 40px rgba(179, 10, 39, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
  }

  & .lp2-reasons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }

  &.lp2-reason-card__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  & .lp2-reason-card {
    grid-column: span 2;
    background: #fff;
    border-radius: 8px;
    padding: 24px 0 24px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0px 16px 40px rgba(176, 112, 112, 0.2);
  }

  & .lp2-reason-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  & .lp2-reason-card:nth-child(5) {
    grid-column: span 2;
  }


  & .lp2-reason-card__name {
    font-size: 24px;
    font-weight: 500;
    color: var(--lp2-text);
    margin: 0 0 16px;
    line-height: 1.35;
  }

  & .lp2-reason-card__visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    min-height: 160px;
  }

  & .lp2-reason-card__visual img {
    max-width: 100%;
    object-fit: contain;
  }

  & .lp2-reason-card__heading {
    font-size: 17px;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.4;
  }

  & .lp2-reason-card__text {
    font-size: 15px;
    color: #4D4D4D;
    line-height: 1.5;
    text-align: left;
    margin: 8px 24px 0 24px;
  }

  & .lp2-reasons-dots {
    display: none;
  }

  & .lp2-sp-only {
    display: none;
  }

  @media (max-width: 768px) {
    & .lp2-pc-only {
      display: none;
    }

    & .lp2-sp-only {
      display: inline;
      font-size: 20px;
    }
  }


  /* —— 機能一覧 (Feature list) —— */
  & .lp2-func__eyebrow {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.6;
    text-transform: uppercase;
  }

  & .lp2-func-group {
    margin-top: 48px;
  }

  & .lp2-func-group__label {
    display: inline-block;
    border: 1.5px solid #FFF;
    border-radius: 4px;
    padding: 5px 16px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.4;
  }

  & .lp2-func-grid {
    display: grid;
    gap: 16px;
  }

  & .lp2-func-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }

  & .lp2-func-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }

  & .lp2-func-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px 24px 20px;
    gap: 20px;
    isolation: isolate;
    background:
      radial-gradient(ellipse 160px 120px at 0% 0%, rgba(226, 51, 81, 0.14) 0%, transparent 70%),
      radial-gradient(ellipse 160px 120px at 100% 100%, rgba(226, 51, 81, 0.14) 0%, transparent 70%),
      #ffffff;
    border-radius: 8px;
    flex: none;
    flex-grow: 1;
  }

  & .lp2-func-card--opt {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    padding: 12px 24px;
    gap: 0px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
  }


  & .lp2-func-card__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  & .lp2-func-card__thumb {
    align-self: flex-end;
    margin-bottom: auto;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  & .lp2-func-card__thumb img {
    width: 64px;
    height: 64px;
    object-fit: contain;
  }

  & .lp2-func-card__icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }


  & .lp2-func-card__body {
    flex: 1;
    min-width: 0;
  }

  & .lp2-func-card__title {
    margin: 0 0 8px;
    font-weight: 500;
    color: #1A1A1A;
  }

  & .lp2-func-card__title--up {
    font-size: 20px;
    line-height: 1.35;
  }

  & .lp2-func-card__title--down {
    font-size: 17px;
    line-height: 1.00;
    margin: 0 0 8px;
  }

  & .lp2-func-card--opt .lp2-func-card__body {
    margin-top: auto;
    width: 100%;
  }

  & .lp2-func-card--opt {
    margin: 0 0 8px;
    font-size: 15px;
  }

  & .lp2-func-card__text {
    margin: 0;
    color: #4D4D4D;
  }

  & .lp2-func-card__text--up {
    font-size: 17px;
    line-height: 1.6;
  }

  & .lp2-func-card__text--down {
    font-size: 15px;
    line-height: 1.5;
  }

  & .lp2-surface-eyebrow {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #DB0025 0%, #DA1460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 8px;
    line-height: 1.6;
  }

  & .lp2-surface-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 48px;
    line-height: 1.3;
  }

  & #usecase .lp2-surface-eyebrow,
  & #usecase .lp2-surface-title {
    text-align: left;
  }

  & .lp2-surface-action {
    text-align: center;
    margin-top: 40px;
  }

  & .lp2-btn-outline-primary {
    display: inline-block;
    background: #fff;
    padding-top: 22px;
    padding-bottom: 22px;
    border: 2px solid var(--lp2-primary);
    border-radius: 100px;
    color: var(--lp2-primary);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    width: 200px
  }

  & .lp2-btn-outline-primary:hover {
    background: rgba(219, 0, 37, 0.08);
    border-color: var(--lp2-section-accent);
  }

  /* —— USE CASE / 導入事例 —— */
  & .lp2-usecase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  & .lp2-usecase-card {
    overflow: hidden;
  }

  & .lp2-usecase-card__photo {
    aspect-ratio: 3 / 2;
    border-radius: 8px;
    overflow: hidden;
    background: #e8e8e8;
  }

  & .lp2-usecase-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  & .lp2-usecase-card__body {
    padding: 24px 8px 0;
  }

  & .lp2-usecase-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--lp2-primary);
    line-height: 1.4;
    margin: 0 0 12px;
  }

  & .lp2-usecase-card__sep {
    color: var(--lp2-primary);
    font-weight: 400;
  }

  & .lp2-usecase-card__text {
    font-size: 20px;
    color: #1A1A1A;
    margin: 0;
    line-height: 1.4;
  }

  /* —— Gradient border card (SUPPORT & ARTICLES) —— */
  & .lp2-gradient-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 80px 80px 80px;
    gap: 56px;
    background: #ffffff;
    box-shadow: 0px 16px 40px rgba(176, 112, 112, 0.2);
    border-radius: 16px;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
  }

  & .lp2-gradient-card__inner {
    width: 100%;
  }

  & .lp2-gradient-card__inner--compact {
    padding: 28px;
  }

  /* —— SUPPORT / サポート体制 —— */
  & .lp2-support__eyebrow {
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 160%;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, #DB0025 0%, #DA1460 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex: none;
    flex-grow: 0;
    margin: 0 0 8px;
  }

  & .lp2-support__title {
    font-style: normal;
    font-weight: 600;
    font-size: 48px;
    line-height: 130%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1a1a1a;
    align-self: stretch;
    flex-grow: 0;
    margin: 0 0 56px;
  }

  & .lp2-support-phase {
    text-align: center;
    margin: 14px 0;
  }

  & .lp2-support-phase span {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 200px;
    height: 36px;
    background: #E23351;
    border-radius: 4px;
    flex: none;
    flex-grow: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #ffffff;
    flex: none;
    flex-grow: 0;
    margin: 0 auto;
  }

  & .lp2-support-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  & .lp2-support-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px 24px 24px 32px;
    gap: 0;
    width: 960px;
    max-width: 100%;
    height: 208px;
    background: #ffffff;
    box-shadow: 0px 16px 40px rgba(176, 112, 112, 0.2);
    border-radius: 8px;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
  }


  & .lp2-support-step__num {
    font-family: 'DIN Condensed', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 64px;
    line-height: 150%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #E23351;
    flex: none;
    flex-grow: 0;
    align-self: stretch;
    margin: 0 24px 0 0;
  }

  & .lp2-support-step__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  & .lp2-support-step__title {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  & .lp2-support-step__text {
    font-size: 17px;
    color: #4D4D4D;
    line-height: 1.6;
    margin: 0;
  }

  & .lp2-support-step__icon {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp2-primary);
  }

  & .lp2-support-step__icon img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
  }

  /* —— ARTICLES / アプリに関連する記事 —— */
  & .lp2-featured-article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  & .lp2-featured-article-card {
    background: rgba(254, 251, 251, 0.5);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 16px 40px rgba(179, 10, 39, 0.14);
    backdrop-filter: blur(10px);
    border: 1px solid #FEFBFB;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
  }

  /* Links inside the card should not be underlined */
  & .lp2-featured-article-card a {
    text-decoration: none;
    color: inherit;
  }

  & .lp2-featured-article-card a:focus-visible {
    outline: 3px solid rgba(219, 0, 37, 0.28);
    outline-offset: 3px;
    border-radius: 8px;
  }

  /* Full-card link overlay (category link stays clickable above) */
  & .lp2-featured-article-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 8px;
  }

  & .lp2-featured-article-card__photo,
  & .lp2-featured-article-card__body {
    position: relative;
    z-index: 2;
    pointer-events: none;
  }

  & .lp2-featured-article-card__tag {
    pointer-events: auto;
  }

  & .lp2-featured-article-card__photo {
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  & .lp2-featured-article-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  & .lp2-featured-article-card__body {
    padding: 16px 16px 24px 16px;
    background: #fff;
    flex: 1 1 auto;
  }

  & .lp2-featured-article-card__tag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    height: 27px;
    box-sizing: border-box;
    background: #E23351;
    border-radius: 100px;
    flex: none;
    flex-grow: 0;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
  }

  /* Keep category tag text white even for visited/hover states */
  & .lp2-featured-article-card__tag,
  & .lp2-featured-article-card__tag:visited,
  & .lp2-featured-article-card__tag:hover,
  & .lp2-featured-article-card__tag:active {
    color: #fff;
    text-decoration: none;
  }

  /* Extra specificity for page-lp/articles section + archive grid */
  & #articles .lp2-featured-article-card__tag,
  & #articles .lp2-featured-article-card__tag:visited,
  & #articles .lp2-featured-article-card__tag:hover,
  & #articles .lp2-featured-article-card__tag:active,
  & .ep-archive .lp2-featured-article-card__tag,
  & .ep-archive .lp2-featured-article-card__tag:visited,
  & .ep-archive .lp2-featured-article-card__tag:hover,
  & .ep-archive .lp2-featured-article-card__tag:active {
    color: #fff;
  }

  & .single .lp2-featured-article-card__tag {
    margin-bottom: 0;
  }

  & .lp2-featured-article-card__title {
    font-size: 20px;
    font-weight: 500;
    color: #1A1A1A;
    margin: 0 0 12px;
    line-height: 1.35;
  }

  & .lp2-featured-article-card__text {
    font-size: 15px;
    color: #4D4D4D;
    margin: 0;
    line-height: 1.4;
  }

  /* —— User Voice / お客様の声 —— */
  & .lp2-voice__eyebrow {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.6;
  }

  & #voice .lp2-voice__title.lp2-section-title {
    margin-bottom: 64px;
  }

  & .lp2-voice-carousel {
    overflow: hidden;
    margin-left: calc(((var(--lp2-container) - 100vw) / 2) - 40px);
    margin-right: calc(((var(--lp2-container) - 100vw) / 2) - 40px);
    padding-top: 24px;
    padding-bottom: 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  & .lp2-voice-carousel__track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    animation: lp2-voice-marquee 48s linear infinite;
    will-change: transform;
  }

  & .lp2-voice-carousel:hover .lp2-voice-carousel__track {
    animation-play-state: paused;
  }

  @media (prefers-reduced-motion: reduce) {
    & .lp2-voice-carousel {
      margin-left: auto;
      margin-right: auto;
      max-width: var(--lp2-container);
      padding-left: 16px;
      padding-right: 16px;
      -webkit-mask-image: none;
      mask-image: none;
    }

    & .lp2-voice-carousel__track {
      animation: none;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      max-width: var(--lp2-container);
      margin-left: auto;
      margin-right: auto;
      row-gap: 20px;
    }

    & .lp2-voice-card[aria-hidden="true"] {
      display: none;
    }
  }

  & .lp2-voice-card {
    flex: 0 0 auto;
    width: clamp(260px, 26vw, 320px);
    box-sizing: border-box;
    background: #fff;
    background-image: radial-gradient(180px 120px at 78% 10%, rgba(226, 51, 81, 0.22) 0%, rgba(226, 51, 81, 0) 70%);
    border-radius: 20px;
    padding: 32px 40px 24px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 20px;
  }

  & .lp2-voice-card__quote {
    position: absolute;
    top: -16px;
    left: 20px;
    color: var(--lp2-section-accent);
    pointer-events: none;
    line-height: 0;
  }

  & .lp2-voice-card__quote-svg {
    display: block;
    width: 36px;
    height: auto;
    overflow: visible;
  }

  & .lp2-voice-card::after {
    content: '';
    position: absolute;
    bottom: -17px;
    right: 30px;
    width: 22px;
    height: 18px;
    background: #fff;
    pointer-events: none;
    /* Fallback: exact same right triangle as the old border trick */
    clip-path: polygon(0 0, 100% 0, 0 100%);
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.10));
  }

  /* If supported, round ONLY the downward tip (bottom-left) */
  @supports (clip-path: path('M0 0 L1 0 L0 1 Z')) {
    & .lp2-voice-card::after {
      /*
        Same triangle (0,0) → (22,0) → (0,18),
        but replace the sharp tip at (0,18) with a small curve.
      */
      clip-path: path('M0 0 H22 L6 13 Q0 18 0 11 Z');
    }
  }

  & .lp2-voice-card__text {
    flex: 1;
    margin: 0 0 8px;
    font-weight: 500;
    color: #1A1A1A;
    line-height: 1.4;
    letter-spacing: 0;
    font-size: 17px;
  }

  & .lp2-voice-card__industry {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: #4D4D4D;
    letter-spacing: 0;
  }

  /* —— Article / Media cards —— */
  & .lp2-article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  & .lp2-article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  & .lp2-article-card__thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8e4e4;
  }

  & .lp2-article-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  & .lp2-article-card__body {
    padding: 18px 20px 24px;
  }

  & .lp2-article-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--lp2-primary);
    background: rgba(219, 0, 37, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
  }

  & .lp2-article-card__title {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 800;
    color: var(--lp2-text);
    line-height: 1.5;
  }

  & .lp2-article-card__text {
    margin: 0;
    font-size: 13px;
    color: var(--lp2-text-muted);
    line-height: 1.7;
  }

  /* App cards */
  & .lp2-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  & .lp2-app-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
  }

  & .lp2-app-card__thumb {
    aspect-ratio: 400 / 250;
    background: linear-gradient(135deg, #e8e4e4 0%, #d4d0d0 100%);
    overflow: hidden;
  }

  & .lp2-app-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  & .lp2-app-card__body {
    padding: 18px 20px 22px;
  }

  & .lp2-app-card__title {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--lp2-text);
  }

  & .lp2-app-card__text {
    margin: 0;
    font-size: 14px;
    color: var(--lp2-text-muted);
  }

  /* FAQ */
  & .lp2-faq-eyebrow {
    margin: 0 0 8px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--lp2-primary);
    line-height: 1.6;
  }

  & .lp2-faq-title {
    margin: 0 0 56px;
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #1A1A1A;
  }

  & .lp2-faq-list {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  & .lp2-faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(219, 0, 37, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid #FEFBFB;
    min-width: 0;
    box-sizing: border-box;
  }

  & .lp2-faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 15px;
    color: #222;
    box-sizing: border-box;
  }

  & details > summary.lp2-faq-q::-webkit-details-marker {
    display: none;
  }

  /* Hide the native disclosure marker (Firefox/Chromium) so it doesn't overlap our icon */
  & details > summary.lp2-faq-q::marker {
    content: "";
  }

  & .lp2-faq-a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-top: 0;
    background: transparent;
    position: relative;
  }

  /* Divider between Q and A (aligned to .lp2-faq-a padding) */
  & .lp2-faq-a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    width: auto;
    background: #E5E5E5;
  }

  & .lp2-faq-badge {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    background: linear-gradient(270deg, #EB8493 0%, #E23351 100%);
    border-radius: 1000px;
    flex: none;
    flex-grow: 0;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.35;
    color: #fff;
  }

  & .lp2-faq-badge--a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    background: #EE8A9B;
    border-radius: 1000px;
    flex: none;
    flex-grow: 0;
    flex-shrink: 0;
    color: #fff;
  }

  & .lp2-faq-q__text {
    flex: 1;
    min-width: 0;
    font-weight: 500;
    font-size: 20px;
    color: #1A1A1A;
    line-height: 1.4;
    letter-spacing: 0;
  }

  & .lp2-faq-q__chev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.78);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    line-height: 0;
    margin-left: auto;
  }

  & .lp2-faq-chevron {
    display: block;
    width: 22px;
    height: 22px;
    overflow: visible;
    transition: transform 0.22s ease;
  }

  & details[open] > summary .lp2-faq-chevron {
    transform: rotate(180deg);
  }

  & .lp2-faq-a__text {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    color: #4D4D4D;
    letter-spacing: 0;
  }

  /* Service grid */
  & .lp2-svc-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin: 0 auto 42px;
    padding-bottom: 16px;
    position: relative;
    line-height: 1.35;
    width: fit-content;
    max-width: 100%;
  }

  & .lp2-svc-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFFFFF; 
  }

  & .lp2-svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 8px;
    row-gap: 16px;
  }

  & .lp2-svc-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  & .lp2-svc-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--lp2-primary);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  & .lp2-svc-card__body {
    flex: 1;
    min-width: 0;
  }

  & .lp2-svc-card__name {
    font-size: 17px;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0 0 8px;
    line-height: 1.00;
    letter-spacing: 0;
  }

  & .lp2-svc-card__label {
    font-size: 13px;
    color: #4D4D4D;
    margin: 0;
    font-weight: 500;
  }

  /* Footer white block + 4 cards (Figma ~274×80, rx 8) */
  & .lp2-footer {
    background: rgba(255, 255, 255, 0.85);
    padding: 56px 20px 48px;
  }

  & .lp2-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  & .lp2-footer-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 80px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: var(--lp2-text);
    font-weight: 700;
    font-size: 14px;
    transition: box-shadow 0.2s ease, transform 0.15s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  & .lp2-footer-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }

  & .lp2-footer-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background: var(--lp2-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  & .lp2-footer-card__label {
    text-align: left;
    line-height: 1.35;
  }

  /* Media (メディア) */
  & .lp2-media-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  & .lp2-media-item {
    display: grid;
    grid-template-columns: 110px 120px 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  & .lp2-media-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  & .lp2-media-item__date {
    font-size: 13px;
    color: var(--lp2-text-muted);
    font-weight: 500;
    white-space: nowrap;
  }

  & .lp2-media-item__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(219, 0, 37, 0.08);
    color: var(--lp2-primary);
    white-space: nowrap;
  }

  & .lp2-media-item__title {
    font-size: 15px;
    color: var(--lp2-text);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.55;
  }

  & .lp2-media-item__title:hover {
    color: var(--lp2-primary);
    text-decoration: underline;
  }

  /* Black bar ~154px total height region in Figma */
  & .lp2-footer-bar {
    background: #000;
    color: rgba(255, 255, 255, 0.85);
    padding: 40px 0 24px;
    box-sizing: border-box;
  }

  & .lp2-footer-bar__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
  }

  & .lp2-footer-bar__bottom {
    text-align: center;
    padding-top: 24px;
  }

  & .lp2-footer-bar__copy {
    margin: 0;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0;
    text-decoration: none;
  }

  & .lp2-footer-bar__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
  }

  & .lp2-footer-bar__links a {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    color: #fff;
    letter-spacing: 0;
    text-decoration: none;
  }

  & .lp2-footer-bar__links a:hover {
    text-decoration: underline;
  }

  & .lp2-footer-bar__social {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
  }

  & .lp2-footer-bar__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    width: 32px;
    height: 32px;
  }

  & .lp2-footer-bar__social-link:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
  }

  & .lp2-anchor {
    display: block;
    height: 1px;
  }

  /* —— Drawer (mobile sidebar) —— */
  & .lp2-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1998;
  }

  & .lp2-drawer-overlay.is-open {
    display: block;
  }

  & .lp2-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 420px;
    background: #fff;
    z-index: 1999;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  @media (max-width: 1024px) {
    & .lp2-drawer {
      display: flex;
    }
  }

  & .lp2-drawer.is-open {
    transform: translateX(0);
  }

  & .lp2-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 24px 40px 24px;
  }

  & .lp2-drawer__logo a {
    display: inline-block;
    line-height: 0;
  }

  & .lp2-drawer__logo img {
    height: 28px;
    width: auto;
    display: block;
  }

  & .lp2-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--lp2-primary);
    background: transparent;
    cursor: pointer;
    color: #333;
    flex-shrink: 0;
  }

  & .lp2-drawer__nav {
    flex: none;
  }

  & .lp2-drawer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  & .lp2-drawer__nav li {
    border-top: 1px solid #E5E5E5;
  }

  & .lp2-drawer__nav li:last-child {
    border-bottom: 1px solid #E5E5E5;
  }

  & .lp2-drawer__nav a {
    display: block;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    letter-spacing: 0;
    text-decoration: none;
  }

  & .lp2-drawer__actions {
    padding: 40px 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  & .lp2-drawer__actions a span {
    width: 138px;
    text-align: center;
  }

  & .lp2-drawer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
    transition: opacity 0.2s ease;
  }

  & .lp2-drawer__btn:hover {
    opacity: 0.85;
  }

  & .lp2-drawer__btn--solid {
    background: var(--lp2-primary);
    color: #fff;
    border: none;
  }

  & .lp2-drawer__btn--outline {
    background: transparent;
    color: var(--lp2-primary);
    border: 2px solid var(--lp2-primary);
  }

  & .lp2-drawer__social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 20px 28px 40px;
    color: var(--lp2-primary);
  }

  & .lp2-drawer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp2-primary);
    transition: opacity 0.2s ease;
  }

  & .lp2-drawer__social a:hover {
    opacity: 0.7;
  }

  /* —— Responsive —— */
  @media (max-width: 1024px) {
    & .lp2-container {
      margin-left: 16px;
      margin-right: 16px;
    }

    /* —— Header —— tablet: single bar (logo + hamburger). Inline nav + header CTAs
       move to drawer — avoids cramped wrap / misaligned logo on ~1024px widths */
    & .lp2-header-wrap {
      top: 12px;
    }

    & .lp2-header {
      flex-wrap: nowrap;
      align-items: center;
      gap: 12px;
      padding: 10px 16px;
    }

    & .lp2-logo {
      flex-shrink: 0;
    }

    & .lp2-header-actions {
      display: none;
    }

    & .lp2-nav {
      display: none !important;
    }

    & .lp2-hamburger {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      flex-shrink: 0;
    }

    /* —— Hero —— tablet */

    & .lp2-hero {
      min-height: min(100dvh, 840px);
      background-position: 82% center;
    }

    & .lp2-hero__container {
      min-height: min(580px, 92vh);
      min-height: min(580px, 92dvh);
    }

    & .lp2-hero__inner {
      min-height: min(520px, 88vh);
      min-height: min(520px, 88dvh);
    }

    & .lp2-hero__content {
      padding: 96px 0 56px;
      max-width: 38rem;
    }

    & .lp2-hero__eyebrow {
      font-size: 18px;
      margin-bottom: 14px;
    }

    & .lp2-hero__title {
      font-size: 42px;
      line-height: 1.28;
    }

    & .lp2-hero__actions {
      margin-top: 24px;
      gap: 12px;
    }

    & .lp2-btn-hero {
      width: 188px;
      height: 52px;
      font-size: 14px;
      padding: 14px 14px 14px 12px;
    }

    & .lp2-reasons-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    & .lp2-reason-card {
      grid-column: span 2;
    }

    /* Same as cards 1–3: two columns of 4-col grid; don’t reuse desktop “centered last row”
       placement — that left an empty cell beside card 03 on tablet */
    & .lp2-reason-card:nth-child(4),
    & .lp2-reason-card:nth-child(5) {
      grid-column: span 2;
    }

    & .lp2-about-card {
      padding: 32px 28px;
      gap: 24px;
    }

    & .lp2-voice-carousel {
      margin-left: -32px;
      margin-right: -32px;
    }

    & .lp2-voice-carousel .lp2-voice-card {
      width: clamp(240px, 36vw, 300px);
    }

    & .lp2-card-grid,
    & .lp2-article-grid {
      grid-template-columns: 1fr;
    }

    & .lp2-func-grid--2col {
      grid-template-columns: 1fr;
    }

    & .lp2-func-grid--3col {
      grid-template-columns: repeat(2, 1fr);
    }

    & .lp2-about-card__num{
      padding-top: 5px;
    }

    & .lp2-usecase-grid,
    & .lp2-featured-article-grid {
      grid-template-columns: 1fr;
    }

    & .lp2-gradient-card__inner {
      padding: 32px 28px;
    }

    /* SUPPORT — tablet: loosen fixed row height / padding so copy doesn’t overflow */
    & #support .lp2-gradient-card {
      padding: 48px 40px 64px;
      gap: 40px;
      box-sizing: border-box;
    }

    & #support .lp2-gradient-card__inner {
      padding: 0;
      box-sizing: border-box;
    }

    & #support .lp2-support__title {
      margin-bottom: 40px;
    }

    & #support .lp2-support-step {
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
      height: auto;
      min-height: 0;
      padding: 22px 20px 22px 28px;
      gap: 16px;
      align-items: flex-start;
    }

    & #support .lp2-support-step__num {
      font-size: 56px;
      line-height: 1.05;
      align-self: flex-start;
      margin: 4px 16px 0 0;
    }

    & #support .lp2-support-step__icon {
      width: 120px;
      height: 120px;
    }

    & #support .lp2-support-step__icon img {
      width: 120px;
      height: 120px;
    }

    & #support .lp2-support-step__title {
      font-size: 22px;
    }

    & #support .lp2-support-step__text {
      font-size: 16px;
    }

    & .lp2-footer__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    & .lp2-surface-eyebrow {
      font-size: 17px;
    }

    & .lp2-surface-title {
      font-size: 26px;
      margin-bottom: 24px;
      line-height: 1.35;
    }

    & .lp2-usecase-card__body {
      padding: 12px 8px 0;
    }

    & .lp2-btn-outline-primary {
      padding-top: 18px;
      padding-bottom: 18px;
    }

    & .lp2-surface-action {
      margin-top: 32px;
    }

    & .lp2-usecase-card__meta {
      margin-bottom: 8px;
    }

    & .lp2-reasons__eyebrow {
      font-size: 17px;
      margin-bottom: 8px;
    }

    & .lp2-faq-eyebrow {
      font-size: 17px;
    }

    & .lp2-faq-badge,
    & .lp2-faq-badge--a {
      width: 40px;
      height: 40px;
      font-size: 17px;
    }

    & .lp2-faq-title {
      font-size: 26px;
      margin-bottom: 24px;
      line-height: 1.35;
    }

    & .lp2-faq-q__text {
      font-size: 15px;
    }

    & .lp2-faq-a__text {
      font-size: 15px;
    }

    & .lp2-reasons__title {
      font-size: 26px;
      margin-bottom: 24px;
      line-height: 1.35;
    }

    & .lp2-about-card__num {
      font-size: 28px;
      padding-top: 5px;
    }

    & .lp2-reason-card__num {
      font-size: 24px;
    }

    & .lp2-reasons-wrap {
      /* card_set (Figma) */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 24px;
      gap: 20px;
      width: 100%;
      margin-left: auto;
      margin-right: auto;
      flex: none;
      flex-grow: 0;
      order: 1;
      align-self: stretch;
      background: rgba(251, 251, 251, 0.5);
      border: 1px solid #FBFBFB;
      box-shadow: 0px 16px 40px rgba(179, 10, 39, 0.14);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 12px;
    }

    & .lp2-reasons-grid {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      grid-template-columns: unset;
      gap: 8px;
      isolation: isolate;
      width: 100%;
      min-height: 417.38px;
      margin: 0;
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      padding: 0;
      scrollbar-width: none;
      box-sizing: border-box;
    }

    & .lp2-reasons-grid::-webkit-scrollbar {
      display: none;
    }

    & .lp2-reason-card,
    & .lp2-reason-card:nth-child(4),
    & .lp2-reason-card:nth-child(5) {
      grid-column: auto;
      flex: none;
      order: 0;
      align-self: stretch;
      flex-grow: 0;
      width: 100%;
      flex-shrink: 0;
      scroll-snap-align: center;
      padding-top: 24px;
      padding-bottom: 24px;
      box-sizing: border-box;
    }

    & .lp2-reason-card__visual {
      flex: 1 1 auto;
      min-height: 180px;
      width: 100%;
    }

    & .lp2-reasons-dots {
      align-self: stretch;
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 0;
    }

    & .lp2-reasons-dots__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #CCCCCC;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.2s;
    }

    & .lp2-reasons-dots__dot.is-active {
      background: var(--lp2-section-accent);
    }

    /* USER VOICE — mobile: 2 staggered rows + horizontal peek scroll (design) */
    & .lp2-band--voice#voice {
      padding-top: 40px;
      padding-bottom: 40px;
    }

    & #voice .lp2-voice__eyebrow {
      font-size: 17px;
      letter-spacing: 0.04em;
    }

    & #voice .lp2-voice__title.lp2-section-title {
      font-size: 26px;
      margin-bottom: 40px;
    }

    & #voice .lp2-voice-carousel {
      overflow-x: auto;
      overflow-y: visible;
      max-width: none;
      margin-left: 0;
      margin-right: 0;
      padding: 20px 0 36px;
      -webkit-mask-image: none;
      mask-image: none;
      scroll-snap-type: x proximity;
      scroll-padding-inline: 16px;
      scrollbar-width: none;
      overscroll-behavior-x: contain;
    }

    & #voice .lp2-voice-carousel::-webkit-scrollbar {
      display: none;
    }

    & #voice .lp2-voice-carousel__track {
      animation: lp2-voice-marquee 48s linear infinite;
      will-change: transform;
      display: grid;
      grid-auto-flow: column;
      grid-template-rows: repeat(2, auto);
      /* 20px between the two rows, 8px between cards along the scroll axis */
      gap: 52px 8px;
      align-items: start;
      justify-items: stretch;
      width: max-content;
      max-width: none;
      min-height: 0;
      flex-wrap: nowrap;
      justify-content: flex-start;
      margin: 0;
      padding-inline: 16px 24px;
      padding-bottom: 8px;
    }

    & #voice .lp2-voice-card {
      width: 310px;
      margin-bottom: 0;
      padding: 32px 24px 24px 16px;
      border-radius: 16px;
      scroll-snap-align: start;
      scroll-snap-stop: normal;
      background-image:
        radial-gradient(140px 90px at 75% -5%, rgba(226, 51, 81, 0.18) 0%, transparent 72%),
        radial-gradient(180px 120px at 78% 10%, rgba(226, 51, 81, 0.16) 0%, transparent 70%);
    }

    /* Stagger bottom row visually without widening grid tracks (margin breaks column-gap) */
    & #voice .lp2-voice-card:nth-child(even) {
      margin-inline-start: 0;
      transform: translateX(clamp(28px, 9vw, 44px));
    }

    & #voice .lp2-voice-card__quote {
      top: -12px;
      left: 16px;
    }

    & #voice .lp2-voice-card__quote svg {
      width: 28px;
      height: 28px;
      display: block;
    }

    & #voice .lp2-voice-card__text {
      font-size: 15px;
      line-height: 1.4;
      margin-bottom: 8px;
    }

    & #voice .lp2-voice-card__industry {
      font-size: 13px;
    }

    & #voice .lp2-voice-card::after {
      right: 22px;
      bottom: -16px;
    }

    /* ARTICLES — mobile: horizontal peek carousel like design */
    & #articles .lp2-surface-eyebrow {
      font-size: 17px;
      margin-bottom: 8px;
    }

    & #articles .lp2-surface-title {
      font-size: 26px;
      margin-bottom: 24px;
      line-height: 1.35;
    }

    & #articles .lp2-gradient-card__inner--compact {
      padding: 0;
      margin-bottom: 24px;
    }

    & #articles .lp2-featured-article-grid {
      display: flex;
      flex-direction: row;
      gap: 16px;
      overflow-x: auto;
      overflow-y: visible;
      padding-inline: 16px 48px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      overscroll-behavior-x: contain;
    }

    & #articles .lp2-featured-article-grid::-webkit-scrollbar {
      display: none;
    }

    & #articles .lp2-featured-article-card {
      flex: 0 0 auto;
      width: min(340px, calc(100vw - 64px));
      background: rgba(254, 251, 251, 0.5);
      border: 1px solid #FEFBFB;
      box-shadow: 0px 16px 40px rgba(179, 10, 39, 0.14);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 8px;
      scroll-snap-align: start;
    }

    & #articles .lp2-featured-article-card__photo {
      aspect-ratio: 4 / 3;
    }

    & #articles .lp2-surface-action {
      margin-top: 20px;
      text-align: center;
    }

    /* prefers-reduced-motion: same 2-row strip; no row offset (only 4 visible cards) */
    @media (prefers-reduced-motion: reduce) {
      & #voice .lp2-voice-carousel__track {
        display: grid;
        grid-auto-flow: column;
        grid-template-rows: repeat(2, auto);
        gap: 20px 8px;
        width: max-content;
        max-width: none;
        flex-wrap: nowrap;
      }

      & #voice .lp2-voice-card:nth-child(even) {
        transform: none;
      }
    }

    & .lp2-func__eyebrow {
      text-align: left;
      font-size: 17px;
    }

    & .lp2-func__eyebrow + .lp2-section-title {
      text-align: left;
      font-size: 26px;
      margin-bottom: 0px;
    }

    & .lp2-func-group {
      margin-top: 24px;
    }

    & .lp2-func-group__label {
      font-size: 17px;
      margin-bottom: 16px;
    }

    & .lp2-func-card__icon,  & .lp2-func-card__icon img{
      width: 72px;
      height: 72px;
    }

    & .lp2-func-card{
      gap: 16px;
    }

    & .lp2-func-card__title.lp2-func-card__title--up {
      margin-bottom: 4px;
      font-size: 17px;
      line-height: 1.4;
    }

    & .lp2-func-card__text.lp2-func-card__text--up {
      font-size: 15px;
      line-height: 1.5;
    }
    & .lp2-band--feature .lp2-func-group .lp2-func-grid {
      gap: 8px;
    }

    & .lp2-func-grid--2col {
      grid-template-columns: 1fr;
    }

    & .lp2-func-grid--3col {
      grid-template-columns: repeat(2, 1fr);
    }

    & .lp2-gradient-card__inner {
      padding: 28px 20px;
    }

    /* SUPPORT / サポート体制 — mobile (stacked cards: num+icon row, then copy) */
    & #support .lp2-gradient-card {
      padding: 40px 24px;
      gap: 0;
      align-items: stretch;
      border-radius: 12px;
    }

    & #support .lp2-gradient-card__inner {
      padding: 0;
    }

    & #support .lp2-support__eyebrow {
      font-size: 17px;
      margin: 0 0 8px;
    }

    & #support .lp2-support__title {
      font-size: 26px;
      margin: 0 0 20px;
      line-height: 1.35;
    }

    & #support .lp2-support-phase {
      margin: 0 0 16px;
    }

    & #support .lp2-support-phase span {
      box-sizing: border-box;
      width: 100px;
      height: auto;
      min-height: 36px;
      padding: 8px 20px;
      font-size: 15px;
    }

    & #support .lp2-support-steps {
      gap: 16px;
    }

    & #support .lp2-support-steps:not(:last-of-type) {
      margin-bottom: 16px;
    }

    & #support .lp2-support-step {
      display: grid;
      grid-template-columns: 1fr auto;
      grid-template-rows: auto auto;
      column-gap: 12px;
      row-gap: 16px;
      align-items: start;
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
      height: auto;
      min-height: 0;
      padding: 20px 16px;
      border-radius: 8px;
    }

    & #support .lp2-support-step__num {
      grid-column: 1;
      grid-row: 1;
      align-self: center;
      justify-self: start;
      margin: 0;
      font-size: 56px;
      line-height: 1;
    }

    & #support .lp2-support-step__icon {
      grid-column: 2;
      grid-row: 1;
      display: flex;
      align-self: center;
      justify-self: end;
      width: 100px;
      height: 100px;
      margin: 0;
    }

    & #support .lp2-support-step__icon img {
      width: 100px;
      height: 100px;
    }

    & #support .lp2-support-step__content {
      grid-column: 1 / -1;
      grid-row: 2;
      text-align: left;
      justify-content: flex-start;
      align-items: flex-start;
    }

    & #support .lp2-support-step__title {
      font-size: 20px;
      text-align: left;
      margin: 0 0 8px;
    }

    & #support .lp2-support-step__text {
      font-size: 15px;
      line-height: 1.5;
      text-align: left;
    }

    & .lp2-func-card--opt {
      padding-right: 24px;
      margin-bottom: 0;
    }

    & .lp2-func-card--opt .lp2-func-card__icon {
      position: static;
      margin-bottom: 16px;
    }

    & .lp2-header-actions {
      display: none;
    }

    & .lp2-header {
      flex-wrap: wrap;
    }

    & .lp2-nav {
      display: none !important;
    }

    & .lp2-nav ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      justify-content: flex-start;
    }

    & .lp2-hamburger {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: auto;
      order: 2;
    }

    & .lp2-logo {
      order: 1;
    }

    & .lp2-hero__inner {
      margin-top: 92px;
      padding: 48px 0 0;
      justify-content: flex-start;
      min-height: min(100dvh, 900px);
    }

    & .lp2-hero__content {
      padding: 0 0 24px;
    }

    & .lp2-hero__eyebrow {
      font-size: 17px;
      margin-bottom: 12px;
    }

    & .lp2-hero__title {
      font-size: 32px;
      letter-spacing: -0.02em;
    }

    & .lp2-hero__actions {
      display: none;
    }

    & .lp2-hero__visual {
      align-self: center;
      flex: 1;
      width: 100%;
    }

    & .lp2-hero__mockup {
      max-width: 80vw;
      margin: 0 auto;
    }

    & .lp2-band {
      padding: 56px 0;
    }

    & .lp2-band#reasons {
      margin-bottom: 24px;
    }

    & .lp2-band#support {
      padding-top: 40px;
      padding-bottom: 80px;
    }

    & .lp2-band#articles {
      padding-bottom: 80px;
    }

    & .lp2-band.lp2-about-band {
      margin-top: -36px;
      padding-top: 76px;
      padding-bottom: 80px;
      border-top-left-radius: 16px;
      border-top-right-radius: 16px;
    }

    & .lp2-band#faq {
      padding-top: 40px;
      padding-bottom: 80px;
    }

    & .lp2-band#contact {
      padding-top: 72px;
      padding-bottom: 40px;
    }

    & .lp2-container {
      margin-left: 16px;
      margin-right: 16px;
    }

    & .lp2-band--voice .lp2-container {
      margin-left: 0;
      margin-right: 0;
    }

    & .lp2-about__eyebrow {
      font-size: 20px;
      margin-bottom: 16px;
    }

    & .lp2-about__subline-wrap {
      flex-direction: column;
      align-items: flex-start;
      gap: 2px;
      margin-bottom: 0;
    }

    & .lp2-about__subline.lp2-about__subline--pc {
      display: none;
    }

    & .lp2-about__subline.lp2-about__subline--sp {
      display: inline-flex;
      padding: 0 4px 0 4px;

    }

    & .lp2-about__subline {
      font-size: 15px;
    }

    & .lp2-about__title {
      font-size: 26px;
      margin: 4px 0 24px;
      line-height: 1.35;
    }

    & .lp2-about-card {
      flex-direction: column;
      height: auto;
      padding: 24px;
      gap: 0;
    }

    & .lp2-about-card__tag {
      margin-bottom: 8px;
    }

    & .lp2-about-card__sub {
      font-size: 15px;
    }

    & .lp2-about-card__heading {
      font-size: 24px;
      margin-bottom: 12px;
    }

    & .lp2-about-card__text {
      font-size: 15px;
    }

    & .lp2-about-card__visual {
      order: 1;
      width: 100%;
      height: 240px;
      width: 240px;
      margin-top: 16px;
    }

    & .lp2-about-card__visual img {
      max-height: none;
      object-fit: contain;
    }

    & .lp2-band.lp2-faq-band {
      padding-bottom: 72px;
      border-bottom-left-radius: 28px;
      border-bottom-right-radius: 28px;
    }

    & .lp2-band.lp2-band--svc {
      margin-top: -32px;
      padding-top: 88px;
      padding-bottom: 64px;
    }

    /* Services list — mobile (match design screenshot) */
    & .lp2-svc-title {
      text-align: center;
      font-size: 17px;
      margin: 0 auto 24px;
      padding-bottom: 12px;
      width: fit-content;
      max-width: 100%;
    }


    & .lp2-svc-grid {
      grid-template-columns: 1fr;
      row-gap: 8px;
      column-gap: 0;
    }

    & .lp2-svc-card {
      border-radius: 12px;
      padding: 14px 16px;
      gap: 14px;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    }

    & .lp2-svc-card__icon {
      width: 48px;
      height: 48px;
    }

    & .lp2-svc-card__icon svg {
      width: 28px;
      height: 28px;
      display: block;
    }

    & .lp2-svc-card__name {
      font-size: 15px;
      margin-bottom: 6px;
      line-height: 1.2;
    }

    & .lp2-svc-card__label {
      font-size: 13px;
      line-height: 1.1;
    }

    & .lp2-footer__grid {
      grid-template-columns: 1fr;
    }

    & .lp2-footer-bar__inner {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding-bottom: 0;
    }

    & .lp2-footer-bar__bottom {
      text-align: center;
      padding-top: 40px;
    }

    & .lp2-footer-bar {
      padding: 40px 0 24px;
    }

    & .lp2-footer-bar__links {
      width: 100%;
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    & .lp2-footer-bar__links a {
      display: block;
      width: 100%;
      padding: 18px 16px;
      font-size: 15px;
      line-height: 1.35;
      border-bottom: 0.5px solid #4D4D4D;
    }

    & .lp2-footer-bar__social {
      width: 100%;
      justify-content: center;
      gap: 44px;
      padding-top: 40px;
    }
  }
}

@keyframes lp2-voice-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-25%, 0, 0);
  }
}
