/* Product landing page system / プロダクトLP共通デザインシステム */
:root {
  color-scheme: light;
  --lp-ink: #12221d;
  --lp-muted: #5c6b66;
  --lp-line: rgba(18, 34, 29, 0.12);
  --lp-paper: #ffffff;
  --lp-canvas: #f7f8f4;
  --lp-accent: #295ee7;
  --lp-accent-dark: #1746c5;
  --lp-accent-soft: #e9efff;
  --lp-accent-rgb: 41, 94, 231;
  --lp-secondary: #0b8d79;
  --lp-shadow-sm: 0 10px 30px rgba(25, 45, 38, 0.08);
  --lp-shadow-lg: 0 32px 80px rgba(25, 45, 38, 0.16);
  --lp-radius-sm: 14px;
  --lp-radius: 24px;
  --lp-radius-lg: 36px;
  --lp-container: 1180px;
  --lp-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.product-lp--note {
  --lp-accent: #7652d6;
  --lp-accent-dark: #5734b8;
  --lp-accent-soft: #eee8ff;
  --lp-accent-rgb: 118, 82, 214;
  --lp-secondary: #d45587;
}

.product-lp--group {
  --lp-accent: #14835f;
  --lp-accent-dark: #096346;
  --lp-accent-soft: #e2f5ed;
  --lp-accent-rgb: 20, 131, 95;
  --lp-secondary: #d59a25;
}

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

html {
  scroll-behavior: smooth;
}

body.product-lp {
  margin: 0;
  overflow-x: hidden;
  color: var(--lp-ink);
  background: var(--lp-canvas);
  font-family: var(--lp-font);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.product-lp a {
  color: inherit;
  text-decoration: none;
}

.product-lp img,
.product-lp svg {
  display: block;
  max-width: 100%;
}

.product-lp h1,
.product-lp h2,
.product-lp h3,
.product-lp p,
.product-lp figure,
.product-lp ul,
.product-lp ol {
  margin-top: 0;
}

.product-lp h1,
.product-lp h2,
.product-lp h3 {
  letter-spacing: -0.035em;
  line-height: 1.22;
}

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

.lp-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.lp-skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff !important;
  background: var(--lp-ink);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.lp-skip-link:focus {
  transform: translateY(0);
}

.product-lp :focus-visible {
  outline: 3px solid rgba(var(--lp-accent-rgb), 0.45);
  outline-offset: 4px;
}

/* Header / ヘッダー */
.lp-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(18, 34, 29, 0.08);
  background: rgba(247, 248, 244, 0.86);
  backdrop-filter: blur(18px);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 28px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.lp-brand__mark {
  display: grid;
  overflow: hidden;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(var(--lp-accent-rgb), 0.2);
}

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

.lp-brand__text strong {
  font-weight: 850;
}

.lp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-left: auto;
  color: var(--lp-muted);
  font-size: 14px;
  font-weight: 650;
}

.lp-nav a {
  position: relative;
  padding-block: 8px;
}

.lp-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--lp-accent);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.lp-nav a:hover::after {
  transform: scaleX(1);
}

/* Buttons / ボタン */
.lp-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.lp-actions--center {
  justify-content: center;
}

.lp-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lp-button:hover {
  transform: translateY(-2px);
}

.lp-button--small {
  min-height: 42px;
  padding: 10px 17px;
  border-radius: 12px;
  font-size: 13px;
}

.lp-button--primary,
.lp-button--secondary {
  color: #fff !important;
  background: var(--lp-accent);
  box-shadow: 0 13px 30px rgba(var(--lp-accent-rgb), 0.25);
}

.lp-button--primary:hover,
.lp-button--secondary:hover {
  background: var(--lp-accent-dark);
  box-shadow: 0 16px 34px rgba(var(--lp-accent-rgb), 0.32);
}

.lp-button--ghost {
  border-color: var(--lp-line);
  background: rgba(255, 255, 255, 0.72);
}

.lp-button--ghost:hover {
  border-color: rgba(var(--lp-accent-rgb), 0.3);
  background: #fff;
  box-shadow: var(--lp-shadow-sm);
}

.lp-button--light {
  color: var(--lp-accent-dark) !important;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.lp-button--outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

/* Hero / ファーストビュー */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
  background:
    radial-gradient(circle at 82% 17%, rgba(var(--lp-accent-rgb), 0.13), transparent 30%),
    radial-gradient(circle at 10% 82%, rgba(var(--lp-accent-rgb), 0.07), transparent 27%),
    linear-gradient(180deg, #fbfcf9 0%, var(--lp-canvas) 100%);
}

.lp-hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -240px;
  right: -190px;
  border: 1px solid rgba(var(--lp-accent-rgb), 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(var(--lp-accent-rgb), 0.025),
    0 0 0 160px rgba(var(--lp-accent-rgb), 0.018);
}

.lp-hero__grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(52px, 7vw, 98px);
}

.lp-hero__content {
  position: relative;
  z-index: 2;
}

.lp-eyebrow,
.lp-kicker,
.lp-section__eyebrow {
  color: var(--lp-accent-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 7px 12px;
  border: 1px solid rgba(var(--lp-accent-rgb), 0.18);
  border-radius: 999px;
  background: rgba(var(--lp-accent-rgb), 0.07);
  letter-spacing: 0.03em;
}

.lp-eyebrow > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-accent);
  box-shadow: 0 0 0 5px rgba(var(--lp-accent-rgb), 0.1);
}

.lp-hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 1.08;
}

.lp-hero h1 span {
  color: var(--lp-accent);
}

.lp-hero__lead {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--lp-muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.85;
}

.lp-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--lp-muted);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.lp-check-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lp-check-list li > span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--lp-accent-dark);
  background: var(--lp-accent-soft);
  font-size: 11px;
}

/* Product mockups / 製品画面モック */
.lp-mockup,
.lp-product-visual {
  position: relative;
  z-index: 1;
  margin: 0;
}

.lp-page-shot {
  overflow: hidden;
  border: 1px solid rgba(18, 34, 29, 0.1);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--lp-shadow-lg);
  transform: rotate(1deg);
}

.lp-page-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
}

.lp-product-visual::before {
  position: absolute;
  z-index: -1;
  inset: -32px;
  border-radius: 52px;
  background: linear-gradient(145deg, rgba(var(--lp-accent-rgb), 0.12), transparent 64%);
  content: "";
  transform: rotate(-3deg);
}

.lp-note-mock__window,
.lp-mockup__window,
.lp-browser,
.lp-room-mock {
  overflow: hidden;
  border: 1px solid rgba(18, 34, 29, 0.1);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--lp-shadow-lg);
}

.lp-note-mock__window {
  transform: rotate(1.2deg);
}

.lp-note-mock__topbar {
  display: grid;
  min-height: 60px;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 20px;
  border-bottom: 1px solid #e8ecea;
  background: #fbfcfb;
  font-size: 12px;
}

.lp-window-dots {
  display: flex;
  gap: 6px;
}

.lp-window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9dfdc;
}

.lp-window-dots span:first-child {
  background: #ff7b6c;
}

.lp-window-dots span:nth-child(2) {
  background: #f6c75f;
}

.lp-window-dots span:nth-child(3) {
  background: #5fcf9c;
}

.lp-note-mock__room {
  color: #53615c;
  font-weight: 700;
}

.lp-note-mock__people {
  display: flex;
  justify-content: flex-end;
}

.lp-note-mock__people span {
  display: grid;
  width: 27px;
  height: 27px;
  margin-left: -7px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--lp-accent);
  font-size: 9px;
  font-weight: 800;
}

.lp-note-mock__people span:nth-child(2) {
  background: var(--lp-secondary);
}

.lp-note-mock__people span:nth-child(3) {
  background: #258bb5;
}

.lp-note-mock__body {
  display: grid;
  min-height: 410px;
  grid-template-columns: 55px 1fr;
}

.lp-note-mock__rail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  border-right: 1px solid #edf0ef;
  background: #fafbfa;
}

.lp-note-mock__rail span {
  width: 20px;
  height: 6px;
  border-radius: 999px;
  background: #dfe4e2;
}

.lp-note-mock__rail .is-active {
  height: 20px;
  border-radius: 7px;
  background: var(--lp-accent);
}

.lp-note-mock__editor {
  position: relative;
  overflow: hidden;
  padding: 32px 40px;
}

.lp-note-mock__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
  color: #8a9692;
  font-size: 10px;
}

.lp-save-state {
  color: #268768;
}

.lp-note-mock__title {
  margin-bottom: 25px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.lp-note-mock__line {
  height: 8px;
  margin-bottom: 12px;
  border-radius: 99px;
  background: #e5e9e7;
}

.lp-note-mock__line--long {
  width: 94%;
}

.lp-note-mock__line--medium {
  width: 76%;
}

.lp-note-mock__line--short {
  width: 52%;
}

.lp-note-mock__section {
  margin: 34px 0 16px;
  font-size: 13px;
  font-weight: 800;
}

.lp-note-mock__task {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  color: #6b7773;
  font-size: 11px;
}

.lp-note-mock__task > span:first-child {
  display: grid;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #d9dfdc;
  border-radius: 5px;
  color: #fff;
  background: #fff;
  font-size: 9px;
}

.lp-note-mock__task:first-of-type > span:first-child {
  border-color: var(--lp-accent);
  background: var(--lp-accent);
}

.lp-cursor {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 3px;
}

.lp-cursor i {
  display: block;
  width: 2px;
  height: 22px;
  background: var(--lp-secondary);
}

.lp-cursor b {
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  background: var(--lp-secondary);
  font-size: 8px;
  line-height: 1.4;
}

.lp-cursor--one {
  top: 136px;
  left: 62%;
}

.lp-cursor--two {
  right: 12%;
  bottom: 83px;
}

.lp-cursor--two i,
.lp-cursor--two b {
  background: #258bb5;
}

.lp-floating-status {
  position: absolute;
  right: -18px;
  bottom: -25px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(18, 34, 29, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--lp-shadow-sm);
  font-size: 11px;
}

.lp-floating-status span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--lp-accent);
}

/* FS!QR transfer mockup / FS!QR転送画面モック */
.lp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 7px 12px;
  border: 1px solid rgba(var(--lp-accent-rgb), 0.18);
  border-radius: 999px;
  color: var(--lp-accent-dark);
  background: rgba(var(--lp-accent-rgb), 0.07);
  font-size: 12px;
  font-weight: 850;
}

.lp-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lp-accent);
  box-shadow: 0 0 0 5px rgba(var(--lp-accent-rgb), 0.1);
}

.lp-hero__actions,
.lp-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-button--large {
  min-height: 56px;
  padding-inline: 25px;
}

.lp-browser {
  transform: rotate(1.2deg);
}

.lp-browser__bar {
  display: grid;
  min-height: 54px;
  align-items: center;
  grid-template-columns: 1fr 2fr 1fr;
  padding: 0 18px;
  border-bottom: 1px solid #e7ecea;
  background: #f8faf9;
  color: #83908b;
  font-size: 9px;
}

.lp-browser__dots {
  display: flex;
  gap: 5px;
}

.lp-browser__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9dfdc;
}

.lp-browser__dots i:first-child {
  background: #ff7b6c;
}

.lp-browser__dots i:nth-child(2) {
  background: #f6c75f;
}

.lp-browser__dots i:nth-child(3) {
  background: #5fcf9c;
}

.lp-browser__address {
  overflow: hidden;
  padding: 5px 12px;
  border: 1px solid #e4e9e7;
  border-radius: 7px;
  background: #fff;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-browser__secure {
  justify-self: end;
  color: #258768;
  font-weight: 750;
}

.lp-browser__content {
  min-height: 440px;
  padding: 34px;
  background:
    linear-gradient(rgba(var(--lp-accent-rgb), 0.025), rgba(var(--lp-accent-rgb), 0.025)),
    #fff;
}

.lp-upload-card,
.lp-share-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #e3e8e6;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(25, 45, 38, 0.07);
}

.lp-upload-card {
  padding: 17px;
}

.lp-upload-card__icon {
  position: relative;
  width: 44px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--lp-accent-soft);
}

.lp-upload-card__icon::before {
  position: absolute;
  top: 10px;
  right: 9px;
  bottom: 10px;
  left: 9px;
  border: 2px solid var(--lp-accent);
  border-radius: 4px;
  content: "";
}

.lp-upload-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.lp-upload-card__body strong {
  overflow: hidden;
  color: #33423d;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-ui-label,
.lp-ui-meta {
  color: #8a9692;
  font-size: 9px;
}

.lp-upload-card__done {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #22896a;
  font-size: 12px;
}

.lp-transfer-line {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  padding: 18px 20px;
}

.lp-transfer-line span {
  height: 1px;
  background: #dfe5e2;
}

.lp-transfer-line i {
  color: var(--lp-accent-dark);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.lp-share-card {
  align-items: stretch;
  justify-content: space-between;
  padding: 24px;
}

.lp-share-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.lp-share-card__copy strong {
  margin: 5px 0 4px;
  font-size: 15px;
}

.lp-share-card__copy p {
  margin: 0 0 14px;
  color: var(--lp-muted);
  font-size: 9px;
}

.lp-expiry-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 7px;
  color: #6a5b26;
  background: #fff4cb;
  font-size: 8px;
  font-weight: 750;
}

.lp-qr {
  display: grid;
  width: 126px;
  height: 126px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: #f5f7f6;
}

.lp-qr__pattern {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  padding: 8px;
  background: #fff;
}

.lp-qr__pattern > span {
  border-radius: 2px;
  background: #1a2924;
}

.lp-qr__pattern > span:nth-of-type(2n) {
  transform: scale(0.52);
}

.lp-qr__finder {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  border: 6px solid #16221e;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
}

.lp-qr__finder--one {
  top: 5px;
  left: 5px;
}

.lp-qr__finder--two {
  top: 5px;
  right: 5px;
}

.lp-qr__finder--three {
  bottom: 5px;
  left: 5px;
}

.lp-floating-badge {
  position: absolute;
  right: -18px;
  bottom: -25px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--lp-shadow-sm);
  font-size: 10px;
  font-weight: 750;
}

.lp-floating-badge span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--lp-accent);
}

.lp-device-bridge {
  position: absolute;
  right: 42px;
  bottom: 52px;
  left: 42px;
  display: flex;
  height: 190px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.lp-device {
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.lp-device--desktop {
  width: 104px;
  height: 70px;
  border-radius: 7px;
  box-shadow: 0 11px 0 -8px rgba(255, 255, 255, 0.7);
}

.lp-device--phone {
  width: 45px;
  height: 80px;
  border-radius: 9px;
}

.lp-device-bridge__flow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* Group room mockup / Groupルーム画面モック */
.lp-room-mockup {
  overflow: hidden;
  border: 1px solid rgba(18, 34, 29, 0.1);
  border-radius: 25px;
  background: #fff;
  box-shadow: var(--lp-shadow-lg);
  transform: rotate(1deg);
}

.lp-mockup__bar {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-bottom: 1px solid #e7ecea;
  background: #f8faf9;
}

.lp-mockup__bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9dfdc;
}

.lp-mockup__bar > span:first-child {
  background: #ff7b6c;
}

.lp-mockup__bar > span:nth-child(2) {
  background: #f6c75f;
}

.lp-mockup__bar > span:nth-child(3) {
  background: #5fcf9c;
}

.lp-mockup__bar p {
  overflow: hidden;
  min-width: 0;
  flex: 1;
  margin: 0 42px 0 12px;
  padding: 4px 10px;
  border: 1px solid #e3e8e6;
  border-radius: 7px;
  color: #89958f;
  background: #fff;
  font-size: 8px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-room-mockup__body {
  display: grid;
  min-height: 440px;
  grid-template-columns: 155px 1fr;
}

.lp-room-mockup__sidebar {
  padding: 25px 20px;
  color: rgba(255, 255, 255, 0.68);
  background: #103c31;
}

.lp-room-mockup__logo {
  display: grid;
  width: 35px;
  height: 35px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 10px;
  color: #0b4b38;
  background: #fff;
  font-weight: 850;
}

.lp-room-mockup__label {
  margin: 0 0 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.lp-room-mockup__room {
  margin-bottom: 13px;
  color: #fff;
  font-size: 15px;
  font-weight: 850;
}

.lp-room-mockup__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 26px;
  padding: 4px 8px;
  border-radius: 99px;
  color: #b9ffe2;
  background: rgba(80, 220, 161, 0.12);
  font-size: 8px;
}

.lp-room-mockup__status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #62e5ad;
}

.lp-room-mockup__sidebar dl {
  margin: 0;
}

.lp-room-mockup__sidebar dl > div {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-room-mockup__sidebar dt {
  font-size: 7px;
}

.lp-room-mockup__sidebar dd {
  margin: 1px 0 0;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
}

.lp-room-mockup__members {
  display: flex;
  margin-top: 24px;
}

.lp-room-mockup__members span {
  display: grid;
  width: 28px;
  height: 28px;
  margin-right: -6px;
  place-items: center;
  border: 2px solid #103c31;
  border-radius: 50%;
  color: #fff;
  background: var(--lp-accent);
  font-size: 7px;
  font-weight: 800;
}

.lp-room-mockup__members span:nth-child(2) {
  background: #ca8c26;
}

.lp-room-mockup__members span:nth-child(3) {
  background: #66746f;
}

.lp-room-mockup__main {
  padding: 26px;
  background: #fbfcfb;
}

.lp-room-mockup__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 19px;
}

.lp-room-mockup__heading p {
  margin: 0;
  color: #9aa49f;
  font-size: 7px;
}

.lp-room-mockup__heading strong {
  font-size: 16px;
}

.lp-room-mockup__upload {
  padding: 7px 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--lp-accent);
  font-size: 8px;
  font-weight: 750;
}

.lp-room-mockup__files {
  display: grid;
  gap: 8px;
}

.lp-room-file {
  display: grid;
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px;
  border: 1px solid #e7ebe9;
  border-radius: 10px;
  background: #fff;
}

.lp-room-file__icon {
  display: grid;
  width: 35px;
  height: 39px;
  place-items: center;
  border-radius: 7px;
  color: #b33a51;
  background: #ffe9ed;
  font-size: 7px;
  font-weight: 850;
}

.lp-room-file__icon--sheet {
  color: #197254;
  background: #e1f5ec;
}

.lp-room-file__icon--image {
  color: #6c54bb;
  background: #eee9ff;
}

.lp-room-file > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.lp-room-file strong {
  overflow: hidden;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-room-file small,
.lp-room-file i {
  color: #96a09c;
  font-size: 7px;
  font-style: normal;
}

.lp-room-mockup__drop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 13px;
  padding: 14px;
  border: 1px dashed rgba(var(--lp-accent-rgb), 0.38);
  border-radius: 10px;
  color: var(--lp-accent-dark);
  background: var(--lp-accent-soft);
}

.lp-room-mockup__drop > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--lp-accent);
}

.lp-room-mockup__drop p {
  display: flex;
  margin: 0;
  flex-direction: column;
  font-size: 8px;
}

.lp-room-mockup__drop small {
  color: var(--lp-muted);
  font-size: 7px;
}

/* Trust band / 信頼訴求 */
.lp-trust {
  border-block: 1px solid var(--lp-line);
  background: #fff;
}

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

.lp-trust__item {
  display: flex;
  min-height: 128px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid var(--lp-line);
}

.lp-trust__item:last-child {
  border-right: 0;
}

.lp-trust__item p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 13px;
  line-height: 1.55;
}

.lp-trust__item strong {
  color: var(--lp-ink);
  font-size: 15px;
}

.lp-trust__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  color: var(--lp-accent-dark);
  background: var(--lp-accent-soft);
  font-size: 11px;
  font-weight: 850;
}

.product-lp--fsqr .lp-trust {
  padding: 34px 0;
}

.lp-trust__lead {
  margin-bottom: 18px;
  color: var(--lp-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: center;
}

.lp-trust__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.lp-trust__items .lp-trust__item {
  min-height: auto;
  flex-direction: column;
  gap: 1px;
  padding: 7px 18px;
}

.lp-trust__items .lp-trust__item span,
.product-lp--group .lp-trust__item > span {
  color: var(--lp-muted);
  font-size: 10px;
  text-align: center;
}

.product-lp--group .lp-trust__item {
  flex-direction: column;
  gap: 3px;
}

.product-lp--group .lp-trust__item > strong {
  color: var(--lp-accent-dark);
  font-size: 23px;
  letter-spacing: -0.04em;
}

/* Content sections / コンテンツセクション */
.lp-section {
  padding: 116px 0;
}

.lp-section--tint,
.lp-section--steps {
  background: #fff;
}

.lp-section--tint {
  background: linear-gradient(180deg, #fff, rgba(var(--lp-accent-rgb), 0.035));
}

.lp-section-heading,
.lp-section__heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.lp-kicker,
.lp-section__eyebrow {
  margin-bottom: 12px;
}

.lp-section__title,
.lp-section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 830;
}

.lp-section-heading > p:last-child,
.lp-faq-intro > p,
.lp-card > p,
.lp-use-case-card__body > p:last-child {
  color: var(--lp-muted);
}

.lp-section__heading--left {
  max-width: 760px;
  margin-inline: 0;
  text-align: left;
}

.lp-section__description,
.lp-section__lead {
  color: var(--lp-muted);
}

.lp-section__action {
  margin-top: 34px;
  text-align: center;
}

.lp-section--tinted {
  background: linear-gradient(180deg, #fff, rgba(var(--lp-accent-rgb), 0.04));
}

.lp-grid {
  display: grid;
  gap: 22px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.lp-card {
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-radius);
  background: #fff;
  box-shadow: 0 2px 0 rgba(18, 34, 29, 0.02);
}

.lp-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.lp-card p:last-child {
  margin-bottom: 0;
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-step-card {
  position: relative;
  min-height: 300px;
  padding: 32px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lp-step-card:hover {
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-5px);
}

.lp-step-card__number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(var(--lp-accent-rgb), 0.22);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.lp-step-card__icon,
.lp-feature-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--lp-accent-dark);
  background: var(--lp-accent-soft);
  font-size: 22px;
  font-weight: 800;
}

.lp-step-card p {
  margin-bottom: 0;
  color: var(--lp-muted);
  font-size: 14px;
}

.lp-feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-grid--features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-grid--three,
.lp-grid--use-cases {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-feature-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  padding: 34px;
}

.lp-feature-card--wide {
  grid-row: span 2;
  min-height: 552px;
  padding: 42px;
  background: var(--lp-ink);
}

.lp-feature-card--wide h3,
.lp-feature-card--wide p {
  position: relative;
  z-index: 2;
  color: #fff;
}

.lp-feature-card--wide p {
  color: rgba(255, 255, 255, 0.68);
}

.lp-feature-card__icon {
  margin-bottom: 28px;
}

.lp-feature-card--wide .lp-feature-card__icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.lp-feature-card__demo,
.lp-live-lines {
  position: absolute;
  right: 42px;
  bottom: 46px;
  left: 42px;
  height: 190px;
  padding: 40px 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.lp-live-lines span {
  display: block;
  width: 86%;
  height: 9px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
}

.lp-live-lines span:nth-child(2) {
  width: 62%;
}

.lp-live-lines i {
  position: absolute;
  top: 76px;
  left: 58%;
  width: 2px;
  height: 27px;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--lp-accent-rgb), 0.35);
}

.lp-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  color: var(--lp-accent-dark);
  background: var(--lp-accent-soft);
  font-size: 22px;
  font-weight: 800;
}

.lp-feature-card--wide .lp-card__icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.lp-feature-card--accent {
  border-color: rgba(var(--lp-accent-rgb), 0.2);
  background: var(--lp-accent-soft);
}

.lp-share-visual {
  position: absolute;
  right: 42px;
  bottom: 42px;
  left: 42px;
  display: grid;
  min-height: 180px;
  align-content: center;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 12%, rgba(117, 222, 178, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.055);
}

.lp-share-visual__label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.lp-share-visual__link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.lp-share-visual__signal {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid rgba(157, 245, 204, 0.65);
  border-radius: 50%;
}

.lp-share-visual__signal::before,
.lp-share-visual__signal::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9df5cc;
  content: "";
  transform: translate(-50%, -50%);
}

.lp-share-visual__signal::after {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(157, 245, 204, 0.25);
  background: transparent;
}

.lp-share-visual__url {
  flex: 1;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-share-visual__arrow {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #163d30;
  background: #9df5cc;
  font-size: 14px;
  font-weight: 800;
}

.lp-share-visual__recipients {
  display: flex;
  align-items: center;
  min-height: 26px;
  padding-left: 3px;
}

.lp-share-visual__recipients > span,
.lp-share-visual__recipients > i {
  display: grid;
  width: 26px;
  height: 26px;
  margin-left: -5px;
  place-items: center;
  border: 2px solid #1a4435;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  background: #477463;
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.lp-share-visual__recipients > span:first-child {
  margin-left: 0;
  background: #739c84;
}

.lp-share-visual__recipients > span:nth-child(2) {
  background: #356653;
}

.lp-share-visual__recipients > span:nth-child(3) {
  background: #5b8976;
}

.lp-share-visual__recipients > i {
  color: #9df5cc;
  background: #285846;
}

.lp-share-visual__recipients p {
  margin: 0 0 0 11px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 600;
}

.product-lp--group .lp-step {
  position: relative;
  min-height: 280px;
  padding: 34px 34px 34px 78px;
  border-top: 1px solid var(--lp-line);
}

.product-lp--group .lp-step:last-child {
  border-bottom: 1px solid var(--lp-line);
}

.lp-step__number {
  position: absolute;
  top: 36px;
  left: 0;
  color: rgba(var(--lp-accent-rgb), 0.33);
  font-size: 17px;
  font-weight: 900;
}

.lp-step__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 45px;
  place-items: center;
  border-radius: 17px;
  color: var(--lp-accent-dark);
  background: var(--lp-accent-soft);
  font-size: 22px;
  font-weight: 850;
}

.lp-step h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.lp-step p {
  margin: 0;
  color: var(--lp-muted);
  font-size: 13px;
}

.lp-use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-use-case-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lp-use-case-card:hover {
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-5px);
}

.lp-use-case-card__visual {
  position: relative;
  display: flex;
  height: 210px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--lp-accent-soft), #f9faf8);
}

.lp-use-case-card__visual::before {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(var(--lp-accent-rgb), 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 35px rgba(var(--lp-accent-rgb), 0.035);
}

.lp-use-case-card__visual span,
.lp-use-case-card__visual i {
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 45, 38, 0.1);
}

.lp-use-case-card__visual--meeting span {
  width: 54px;
  height: 75px;
  border-top: 5px solid var(--lp-accent);
}

.lp-use-case-card__visual--ideas span {
  width: 55px;
  height: 55px;
  transform: rotate(-6deg);
}

.lp-use-case-card__visual--ideas span:nth-child(even) {
  background: var(--lp-accent);
  transform: translateY(18px) rotate(8deg);
}

.lp-use-case-card__visual--learning span {
  width: 150px;
  height: 92px;
  border-left: 5px solid var(--lp-accent);
}

.lp-use-case-card__visual--learning i {
  width: 55px;
  height: 65px;
  margin-left: -36px;
  background: var(--lp-accent);
  transform: translateY(30px) rotate(8deg);
}

.lp-use-case-card__body {
  padding: 28px;
}

.lp-use-case-card__tag {
  margin-bottom: 8px;
  color: var(--lp-accent-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.lp-use-case-card__body > p:last-child {
  margin-bottom: 0;
  font-size: 14px;
}

.product-lp--fsqr .lp-use-case-card {
  position: relative;
  min-height: 245px;
  padding: 36px;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, var(--lp-accent-soft));
}

.product-lp--fsqr .lp-use-case-card::after {
  position: absolute;
  width: 140px;
  height: 140px;
  right: -62px;
  bottom: -62px;
  border: 1px solid rgba(var(--lp-accent-rgb), 0.18);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 28px rgba(var(--lp-accent-rgb), 0.035);
}

.lp-use-case-card__label,
.lp-use-card__tag {
  margin-bottom: 11px;
  color: var(--lp-accent-dark);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.lp-use-card {
  overflow: hidden;
}

.lp-use-card__content {
  padding: 28px;
}

.lp-use-card__content > p:last-child {
  margin: 0;
  color: var(--lp-muted);
  font-size: 14px;
}

/* FAQ / よくある質問 */
.lp-section--faq {
  background: #eef1ed;
}

.lp-faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 88px;
}

.lp-faq-intro {
  position: sticky;
  top: 40px;
}

.lp-faq-intro .lp-section__title {
  margin-bottom: 18px;
}

.lp-text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 10px;
  color: var(--lp-accent-dark) !important;
  font-size: 14px;
  font-weight: 750;
}

.lp-faq-list {
  border-top: 1px solid rgba(18, 34, 29, 0.16);
}

.lp-faq-item {
  border-bottom: 1px solid rgba(18, 34, 29, 0.16);
}

.lp-faq-item summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
  list-style: none;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary span {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}

.lp-faq-item summary span::before,
.lp-faq-item summary span::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 2px;
  border-radius: 99px;
  background: var(--lp-accent);
  content: "";
}

.lp-faq-item summary span::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.lp-faq-item[open] summary span::after {
  transform: rotate(0deg);
}

.lp-faq-item > p {
  max-width: 690px;
  margin: -3px 0 26px;
  padding-right: 36px;
  color: var(--lp-muted);
  font-size: 14px;
}

.product-lp--fsqr .lp-faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--lp-accent);
  content: "+";
  font-size: 20px;
  font-weight: 500;
  transform: translateY(-50%);
}

.product-lp--fsqr .lp-faq-item[open] summary::after {
  content: "−";
}

/* Conversion footer / 最終CTA */
.lp-final-cta {
  position: relative;
  overflow: hidden;
  padding: 106px 0;
  color: #fff;
  background: var(--lp-accent-dark);
  text-align: center;
}

.lp-final-cta::before,
.lp-final-cta::after,
.lp-final-cta__glow {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.lp-final-cta::before {
  width: 420px;
  height: 420px;
  top: -260px;
  left: -100px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.025);
}

.lp-final-cta::after {
  width: 330px;
  height: 330px;
  right: -110px;
  bottom: -230px;
  background: rgba(255, 255, 255, 0.045);
}

.lp-final-cta__glow {
  width: 400px;
  height: 300px;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(90px);
  transform: translate(-50%, -50%);
}

.lp-final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.lp-final-cta .lp-kicker,
.lp-final-cta .lp-section__eyebrow {
  color: rgba(255, 255, 255, 0.67);
}

.lp-final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.7vw, 58px);
  font-weight: 850;
}

.lp-final-cta__inner > p:not(.lp-kicker) {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.74);
}

.lp-final-cta .lp-button--primary {
  color: var(--lp-accent-dark) !important;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.lp-final-cta .lp-button--secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.lp-final-cta__checks {
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
}

.lp-footer {
  padding: 68px 0 28px;
  color: rgba(255, 255, 255, 0.64);
  background: #111a17;
}

.lp-footer__main {
  display: grid;
  align-items: start;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 42px;
  padding-bottom: 48px;
}

.lp-footer__inner,
.lp-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 44px;
}

.lp-brand--footer {
  color: #fff !important;
}

.lp-footer__main > p {
  max-width: 450px;
  margin: 5px 0 0;
  font-size: 13px;
}

.lp-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 28px;
  font-size: 12px;
}

.lp-footer a:hover {
  color: #fff;
}

.lp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

/* Responsive layout / レスポンシブ対応 */
@media (max-width: 980px) {
  .lp-hero__grid {
    grid-template-columns: 1fr;
  }

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

  .lp-product-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .lp-feature-card--wide {
    min-height: 500px;
  }

  .lp-use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-use-case-card:last-child {
    grid-column: 1 / -1;
  }

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

  .lp-footer__main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .lp-room-mockup__body {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .lp-container {
    width: min(calc(100% - 32px), var(--lp-container));
  }

  .lp-header__inner {
    min-height: 68px;
  }

  .lp-nav {
    display: none;
  }

  .lp-header .lp-button {
    display: none;
  }

  .lp-hero {
    padding: 64px 0 70px;
  }

  .lp-hero__grid {
    gap: 56px;
  }

  .lp-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .lp-actions .lp-button {
    width: 100%;
  }

  .lp-hero__actions .lp-button,
  .lp-final-cta__actions .lp-button {
    width: 100%;
  }

  .lp-check-list {
    display: grid;
    gap: 8px;
  }

  .lp-product-visual::before {
    inset: -15px;
  }

  .lp-note-mock__body {
    min-height: 340px;
    grid-template-columns: 42px 1fr;
  }

  .lp-note-mock__editor {
    padding: 26px 22px;
  }

  .lp-note-mock__topbar {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 0 14px;
  }

  .lp-note-mock__room {
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lp-note-mock__people span:nth-child(2),
  .lp-note-mock__people span:nth-child(3) {
    display: none;
  }

  .lp-browser__content {
    min-height: 390px;
    padding: 22px;
  }

  .lp-share-card {
    padding: 18px;
  }

  .lp-qr {
    width: 104px;
    height: 104px;
  }

  .lp-qr__pattern {
    transform: scale(0.82);
  }

  .lp-room-mockup__body {
    min-height: 385px;
    grid-template-columns: 105px 1fr;
  }

  .lp-room-mockup__sidebar {
    padding: 20px 13px;
  }

  .lp-room-mockup__members,
  .lp-room-mockup__sidebar dl > div:first-child {
    display: none;
  }

  .lp-room-mockup__main {
    padding: 18px;
  }

  .lp-room-file:nth-child(3) {
    display: none;
  }

  .lp-floating-status {
    right: 10px;
  }

  .lp-trust__grid,
  .lp-steps,
  .lp-feature-grid,
  .lp-use-case-grid,
  .lp-faq-layout {
    grid-template-columns: 1fr;
  }

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

  .lp-trust__items .lp-trust__item:nth-child(2) {
    border-right: 0;
  }

  .lp-trust__item {
    min-height: auto;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--lp-line);
  }

  .lp-trust__item:last-child {
    border-bottom: 0;
  }

  .lp-section {
    padding: 82px 0;
  }

  .lp-section-heading,
  .lp-section__heading {
    margin-bottom: 40px;
    text-align: left;
  }

  .lp-step-card {
    min-height: 260px;
  }

  .lp-feature-card--wide {
    grid-row: auto;
    min-height: 500px;
  }

  .lp-grid--features,
  .lp-grid--three,
  .lp-grid--use-cases {
    grid-template-columns: 1fr;
  }

  .product-lp--group .lp-step {
    min-height: 240px;
  }

  .lp-use-case-card:last-child {
    grid-column: auto;
  }

  .lp-faq-layout {
    gap: 38px;
  }

  .lp-faq-intro {
    position: static;
  }

  .lp-final-cta {
    padding: 82px 0;
  }

  .lp-footer__main {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .lp-footer__inner,
  .lp-footer__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .lp-footer__main > p {
    grid-column: auto;
    grid-row: auto;
  }

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

  .lp-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 430px) {
  .lp-hero h1 {
    font-size: 41px;
  }

  .lp-note-mock__editor {
    padding-inline: 18px;
  }

  .lp-browser__content {
    padding: 16px;
  }

  .lp-share-card__copy p {
    display: none;
  }

  .lp-qr {
    width: 86px;
    height: 86px;
  }

  .lp-qr__pattern {
    transform: scale(0.7);
  }

  .lp-room-mockup__body {
    grid-template-columns: 84px 1fr;
  }

  .lp-room-mockup__sidebar {
    padding-inline: 10px;
  }

  .lp-room-mockup__heading > div p,
  .lp-room-mockup__drop {
    display: none;
  }

  .lp-room-mockup__upload {
    padding: 6px;
  }

  .lp-cursor--one {
    left: 52%;
  }

  .lp-feature-card,
  .lp-step-card {
    padding: 27px;
  }

  .lp-feature-card--wide {
    min-height: 470px;
  }

  .lp-feature-card__demo,
  .lp-live-lines {
    right: 27px;
    left: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================================================
   FS!QR landing refinements / FS!QR ランディングページの意匠調整
   すべて .product-lp--fsqr にスコープし、Note / Group には影響させない。
   目的：生成イラストや過剰な装飾に頼らず、実際の操作を想像できるUI図解と
   編集的な余白・タイポグラフィで、信頼感のあるファイル共有LPに整える。
   ================================================================ */

.product-lp--fsqr {
  --lp-ink: #172033;
  --lp-muted: #5d6677;
  --lp-line: rgba(23, 32, 51, 0.13);
  --lp-canvas: #f6f6f3;
  --lp-accent: #2858c7;
  --lp-accent-dark: #1f469f;
  --lp-accent-soft: #e9eef9;
  --lp-accent-rgb: 40, 88, 199;
  --lp-shadow-sm: 0 8px 22px rgba(23, 32, 51, 0.08);
  --lp-shadow-lg: 0 24px 60px rgba(23, 32, 51, 0.13);
  color: var(--lp-ink);
  background: var(--lp-canvas);
}

/* Header / 常に現在地が分かる、静かな固定ヘッダー */
.product-lp--fsqr .lp-header {
  position: sticky;
  top: 0;
  border-color: rgba(23, 32, 51, 0.1);
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(12px);
}

.product-lp--fsqr .lp-brand__mark {
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 9px;
  box-shadow: none;
}

.product-lp--fsqr .lp-nav {
  color: #525c6d;
}

.product-lp--fsqr .lp-button {
  border-radius: 10px;
  box-shadow: none;
}

.product-lp--fsqr .lp-button:hover {
  box-shadow: 0 8px 18px rgba(31, 70, 159, 0.18);
  transform: translateY(-1px);
}

.product-lp--fsqr .lp-button--secondary {
  border-color: rgba(23, 32, 51, 0.18);
  color: var(--lp-ink) !important;
  background: rgba(255, 255, 255, 0.72);
}

.product-lp--fsqr .lp-button--secondary:hover {
  border-color: rgba(23, 32, 51, 0.3);
  background: #fff;
}

/* Typography / 和文を無理に詰めず、見出しと本文の差を明快にする */
.product-lp--fsqr h1,
.product-lp--fsqr h2,
.product-lp--fsqr h3 {
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.product-lp--fsqr .lp-hero h1 {
  max-width: 9em;
  margin-bottom: 26px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.product-lp--fsqr .lp-section__title {
  font-size: clamp(29px, 3.4vw, 43px);
  font-weight: 760;
  line-height: 1.38;
}

.product-lp--fsqr .lp-hero h1,
.product-lp--fsqr .lp-section__title,
.product-lp--fsqr .lp-final-cta h2 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.product-lp--fsqr .lp-card h3 {
  font-size: 20px;
  line-height: 1.45;
}

.product-lp--fsqr .lp-hero__lead,
.product-lp--fsqr .lp-section__description {
  line-height: 1.85;
}

/* Labels / 装飾的な英字ラベルを避け、短い罫線で章立てを示す */
.product-lp--fsqr .lp-section__eyebrow,
.product-lp--fsqr .lp-use-case-card__label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--lp-accent-dark);
  letter-spacing: 0.04em;
}

.product-lp--fsqr .lp-section__eyebrow::before,
.product-lp--fsqr .lp-use-case-card__label::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 1px;
  background: currentColor;
}

/* Hero / コピーと実際の利用フローを示すUI図解 */
.product-lp--fsqr .lp-hero {
  padding: 82px 0 92px;
  border-bottom: 1px solid var(--lp-line);
  background: #f6f6f3;
}

.product-lp--fsqr .lp-hero::before {
  display: none;
}

.product-lp--fsqr .lp-hero__grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(54px, 7vw, 96px);
}

.product-lp--fsqr .lp-hero__eyebrow {
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 700;
}

.product-lp--fsqr .lp-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  box-shadow: none;
}

.product-lp--fsqr .lp-hero__title span {
  color: var(--lp-accent);
}

.product-lp--fsqr .lp-hero__lead {
  max-width: 34em;
  font-size: 17px;
}

.product-lp--fsqr .lp-page-shot {
  padding: 10px;
  border-color: rgba(23, 32, 51, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--lp-shadow-lg);
  transform: none;
}

.product-lp--fsqr .lp-page-shot img {
  border-radius: 13px;
}

.product-lp--fsqr .lp-check-list li::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(var(--lp-accent-rgb), 0.25);
  border-radius: 50%;
  color: var(--lp-accent-dark);
  background: #fff;
  content: "✓";
  font-size: 10px;
}

.product-lp--fsqr .lp-mockup--fsqr {
  padding: 10px;
  border: 1px solid rgba(23, 32, 51, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--lp-shadow-lg);
}

.product-lp--fsqr .lp-browser {
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.12);
  border-radius: 14px;
  box-shadow: none;
  transform: none;
}

.product-lp--fsqr .lp-browser__bar {
  min-height: 48px;
  border-color: rgba(23, 32, 51, 0.1);
  background: #f2f3f5;
}

.product-lp--fsqr .lp-browser__address {
  border-color: rgba(23, 32, 51, 0.1);
  border-radius: 6px;
  color: #6f7785;
}

.product-lp--fsqr .lp-browser__secure {
  color: #24705d;
}

.product-lp--fsqr .lp-browser__content {
  min-height: 418px;
  padding: 34px;
  background: #f6f7f9;
}

.product-lp--fsqr .lp-upload-card,
.product-lp--fsqr .lp-share-card {
  border-color: rgba(23, 32, 51, 0.12);
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(23, 32, 51, 0.06);
}

.product-lp--fsqr .lp-upload-card {
  padding: 18px 20px;
}

.product-lp--fsqr .lp-upload-card__icon {
  border-radius: 8px;
}

.product-lp--fsqr .lp-upload-card__body strong {
  font-size: 13px;
}

.product-lp--fsqr .lp-ui-label,
.product-lp--fsqr .lp-ui-meta {
  font-size: 10px;
}

.product-lp--fsqr .lp-transfer-line {
  padding-block: 19px;
}

.product-lp--fsqr .lp-transfer-line i {
  font-size: 10px;
}

.product-lp--fsqr .lp-share-card {
  padding: 26px;
}

.product-lp--fsqr .lp-share-card__copy strong {
  font-size: 17px;
}

.product-lp--fsqr .lp-share-card__copy p {
  max-width: 23em;
  font-size: 10px;
}

.product-lp--fsqr .lp-qr {
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 9px;
  background: #fff;
}

.product-lp--fsqr .lp-floating-badge {
  right: -16px;
  bottom: -18px;
  border-color: rgba(23, 32, 51, 0.14);
  border-radius: 9px;
  box-shadow: var(--lp-shadow-sm);
}

.product-lp--fsqr .lp-process-preview {
  width: min(100%, 760px);
  margin: 54px auto 0;
}

/* Trust band / 事実を簡潔に並べる情報帯 */
.product-lp--fsqr .lp-trust {
  padding: 28px 0 34px;
}

.product-lp--fsqr .lp-trust__lead {
  margin-bottom: 16px;
  color: #697181;
  letter-spacing: 0.04em;
}

.product-lp--fsqr .lp-trust__items {
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 10px;
}

.product-lp--fsqr .lp-trust__items .lp-trust__item {
  gap: 6px;
  padding: 17px 20px;
  border-right: 1px solid var(--lp-line);
}

.product-lp--fsqr .lp-trust__items .lp-trust__item:last-child {
  border-right: 0;
}

.product-lp--fsqr .lp-trust__items .lp-trust__item strong {
  color: var(--lp-ink);
  font-size: 15px;
}

/* Sections and cards / 影よりも罫線と余白で情報を整理する */
.product-lp--fsqr .lp-section {
  padding: 104px 0;
}

.product-lp--fsqr .lp-section__heading {
  margin-bottom: 50px;
}

.product-lp--fsqr .lp-section--steps {
  background: #fff;
}

.product-lp--fsqr .lp-card {
  border-color: rgba(23, 32, 51, 0.12);
  border-radius: 14px;
  box-shadow: none;
}

.product-lp--fsqr .lp-step-card__icon svg,
.product-lp--fsqr .lp-feature-card__icon svg {
  width: 26px;
  height: 26px;
}

.product-lp--fsqr .lp-step-card {
  min-height: 286px;
  padding: 30px;
  border-top: 3px solid var(--lp-accent);
}

.product-lp--fsqr .lp-step-card:hover {
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-2px);
}

.product-lp--fsqr .lp-step-card__icon {
  margin-bottom: 32px;
  border-radius: 10px;
}

/* Feature cards / 大きな価値と補足機能を明快な段組みで見せる */
.product-lp--fsqr .lp-section--tinted {
  background: #f0f2f5;
}

.product-lp--fsqr .lp-feature-card--wide {
  min-height: 340px;
  grid-column: 1 / -1;
  grid-row: auto;
  padding: 42px;
  background: #172033;
}

.product-lp--fsqr .lp-feature-card--wide h3,
.product-lp--fsqr .lp-feature-card--wide > p {
  max-width: 45%;
}

.product-lp--fsqr .lp-feature-card {
  min-height: 235px;
}

.product-lp--fsqr .lp-feature-card__icon {
  border-radius: 10px;
}

.product-lp--fsqr .lp-feature-card--wide .lp-feature-card__icon {
  background: rgba(255, 255, 255, 0.1);
}

.product-lp--fsqr .lp-device-bridge {
  top: 42px;
  right: 42px;
  bottom: 42px;
  left: auto;
  width: 45%;
  height: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.product-lp--fsqr .lp-device-bridge__flow {
  position: relative;
  width: 46px;
  height: 0;
  border-top: 1.5px dashed rgba(255, 255, 255, 0.5);
}

.product-lp--fsqr .lp-device-bridge__flow::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.6);
  border-right: 1.5px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
}

/* Use cases / 日常の場面を読み物のようなカードで見せる */
.product-lp--fsqr .lp-section--use-cases {
  background: #fff;
}

.product-lp--fsqr .lp-use-case-card {
  min-height: 230px;
  padding: 30px;
  border-left: 3px solid var(--lp-accent);
  background: #fff;
}

.product-lp--fsqr .lp-use-case-card::after {
  display: none;
}

/* FAQ and conversion / 装飾を抑え、質問と行動導線に集中させる */
.product-lp--fsqr .lp-section--faq {
  background: #f1f2f0;
}

.product-lp--fsqr .lp-faq-list {
  border-color: rgba(23, 32, 51, 0.18);
}

.product-lp--fsqr .lp-faq-item {
  border-color: rgba(23, 32, 51, 0.16);
}

.product-lp--fsqr .lp-faq-item summary {
  font-weight: 700;
}

.product-lp--fsqr .lp-final-cta {
  padding: 96px 0;
  background: #1a2740;
}

.product-lp--fsqr .lp-final-cta::before,
.product-lp--fsqr .lp-final-cta::after {
  display: none;
}

.product-lp--fsqr .lp-final-cta h2 {
  font-weight: 760;
}

.product-lp--fsqr .lp-final-cta .lp-button--secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
  background: transparent;
}

.product-lp--fsqr .lp-footer {
  background: #101827;
}

@media (max-width: 980px) {
  .product-lp--fsqr .lp-hero__grid {
    grid-template-columns: 1fr;
  }

  .product-lp--fsqr .lp-mockup--fsqr,
  .product-lp--fsqr .lp-page-shot {
    width: min(100%, 680px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .product-lp--fsqr .lp-hero {
    padding: 58px 0 72px;
  }

  .product-lp--fsqr .lp-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .product-lp--fsqr .lp-browser__secure {
    display: none;
  }

  .product-lp--fsqr .lp-browser__bar {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .product-lp--fsqr .lp-browser__content {
    min-height: 378px;
    padding: 20px;
  }

  .product-lp--fsqr .lp-floating-badge {
    right: 8px;
  }

  .product-lp--fsqr .lp-trust__items .lp-trust__item:nth-child(even) {
    border-right: 0;
  }

  .product-lp--fsqr .lp-section {
    padding: 78px 0;
  }

  .product-lp--fsqr .lp-feature-card--wide {
    min-height: 510px;
    padding: 30px;
  }

  .product-lp--fsqr .lp-feature-card--wide h3,
  .product-lp--fsqr .lp-feature-card--wide > p {
    max-width: none;
  }

  .product-lp--fsqr .lp-device-bridge {
    top: auto;
    right: 30px;
    bottom: 30px;
    left: 30px;
    width: auto;
    height: 190px;
  }
}

@media (max-width: 430px) {
  .product-lp--fsqr .lp-mockup--fsqr {
    padding: 6px;
    border-radius: 16px;
  }

  .product-lp--fsqr .lp-browser__content {
    padding: 14px;
  }

  .product-lp--fsqr .lp-upload-card {
    padding: 14px;
  }

  .product-lp--fsqr .lp-share-card {
    padding: 16px;
  }

  .product-lp--fsqr .lp-share-card__copy strong {
    font-size: 14px;
  }

  .product-lp--fsqr .lp-floating-badge {
    display: none;
  }
}

/* ================================================================
   Note & Group landing refinements / Note・Group LP の意匠調整
   生成イラストを概念説明として残し、実利用UIの図解と編集的なレイアウトで
   各サービスの用途と操作を具体的に伝える。
   ================================================================ */

.product-lp--note {
  --lp-ink: #211d2d;
  --lp-muted: #696273;
  --lp-line: rgba(33, 29, 45, 0.13);
  --lp-canvas: #f7f5f3;
  --lp-accent: #6852a3;
  --lp-accent-dark: #4d3a80;
  --lp-accent-soft: #eeeaf6;
  --lp-accent-rgb: 104, 82, 163;
  --lp-shadow-sm: 0 8px 22px rgba(33, 29, 45, 0.08);
  --lp-shadow-lg: 0 24px 60px rgba(33, 29, 45, 0.13);
}

.product-lp--group {
  --lp-ink: #17251f;
  --lp-muted: #5e6b65;
  --lp-line: rgba(23, 37, 31, 0.13);
  --lp-canvas: #f4f6f3;
  --lp-accent: #197654;
  --lp-accent-dark: #115c40;
  --lp-accent-soft: #e5f1eb;
  --lp-accent-rgb: 25, 118, 84;
  --lp-shadow-sm: 0 8px 22px rgba(23, 37, 31, 0.08);
  --lp-shadow-lg: 0 24px 60px rgba(23, 37, 31, 0.13);
}

/* Header and controls / 影と丸みを抑えた固定ヘッダー */
.product-lp--note .lp-header,
.product-lp--group .lp-header {
  position: sticky;
  top: 0;
  border-color: var(--lp-line);
  background: rgba(250, 249, 247, 0.94);
  backdrop-filter: blur(12px);
}

.product-lp--note .lp-brand__mark,
.product-lp--group .lp-brand__mark {
  border: 1px solid var(--lp-line);
  border-radius: 9px;
  box-shadow: none;
}

.product-lp--note .lp-button,
.product-lp--group .lp-button {
  border-radius: 10px;
  box-shadow: none;
}

.product-lp--note .lp-button:hover,
.product-lp--group .lp-button:hover {
  box-shadow: 0 8px 18px rgba(var(--lp-accent-rgb), 0.18);
  transform: translateY(-1px);
}

.product-lp--group .lp-button--secondary {
  border-color: var(--lp-line);
  color: var(--lp-ink) !important;
  background: rgba(255, 255, 255, 0.78);
}

.product-lp--group .lp-button--secondary:hover {
  border-color: rgba(var(--lp-accent-rgb), 0.32);
  background: #fff;
}

/* Typography / 和文の読みやすさを優先した字間と行間 */
.product-lp--note h1,
.product-lp--note h2,
.product-lp--note h3,
.product-lp--group h1,
.product-lp--group h2,
.product-lp--group h3 {
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.product-lp--note .lp-hero h1,
.product-lp--group .lp-hero h1 {
  max-width: 10em;
  margin-bottom: 26px;
  font-size: clamp(42px, 4.8vw, 64px);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.2;
}

.product-lp--note .lp-section__title,
.product-lp--group .lp-section__title {
  font-size: clamp(29px, 3.4vw, 43px);
  font-weight: 760;
  line-height: 1.38;
}

.product-lp--note .lp-card h3,
.product-lp--group .lp-card h3 {
  font-size: 20px;
  line-height: 1.45;
}

.product-lp--note .lp-hero h1,
.product-lp--note .lp-section__title,
.product-lp--note .lp-final-cta h2,
.product-lp--group .lp-hero h1,
.product-lp--group .lp-section__title,
.product-lp--group .lp-final-cta h2 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* Labels / 英字の装飾ラベルを日本語の章立てへ置き換える */
.product-lp--note .lp-section__eyebrow,
.product-lp--note .lp-use-case-card__tag,
.product-lp--group .lp-section__eyebrow,
.product-lp--group .lp-use-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--lp-accent-dark);
  letter-spacing: 0.04em;
}

.product-lp--note .lp-section__eyebrow::before,
.product-lp--note .lp-use-case-card__tag::before,
.product-lp--group .lp-section__eyebrow::before,
.product-lp--group .lp-use-card__tag::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 1px;
  background: currentColor;
}

/* Hero / 生成イラストを白いフレーム内の概念図として扱う */
.product-lp--note .lp-hero,
.product-lp--group .lp-hero {
  padding: 82px 0 92px;
  border-bottom: 1px solid var(--lp-line);
}

.product-lp--note .lp-hero {
  background: #f7f5f3;
}

.product-lp--group .lp-hero {
  background: #f4f6f3;
}

.product-lp--note .lp-hero::before,
.product-lp--group .lp-hero::before {
  display: none;
}

.product-lp--note .lp-hero__grid,
.product-lp--group .lp-hero__grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(54px, 7vw, 96px);
}

.product-lp--note .lp-eyebrow,
.product-lp--group .lp-eyebrow {
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 700;
}

.product-lp--note .lp-eyebrow > span:first-child,
.product-lp--group .lp-eyebrow > span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  box-shadow: none;
}

.product-lp--note .lp-hero__lead,
.product-lp--group .lp-hero__lead {
  max-width: 34em;
  font-size: 17px;
}

.product-lp--note .lp-page-shot,
.product-lp--group .lp-page-shot {
  padding: 10px;
  border-color: var(--lp-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--lp-shadow-lg);
  transform: none;
}

.product-lp--note .lp-page-shot img,
.product-lp--group .lp-page-shot img {
  border-radius: 13px;
}

/* Trust band / 数値の演出ではなく利用上の事実を並べる */
.product-lp--note .lp-trust,
.product-lp--group .lp-trust {
  padding: 28px 0 34px;
}

.product-lp--note .lp-trust__lead,
.product-lp--group .lp-trust__lead {
  margin-bottom: 16px;
  color: var(--lp-muted);
  letter-spacing: 0.04em;
}

.product-lp--note .lp-trust__items,
.product-lp--group .lp-trust__items {
  overflow: hidden;
  border: 1px solid var(--lp-line);
  border-radius: 10px;
}

.product-lp--note .lp-trust__items .lp-trust__item,
.product-lp--group .lp-trust__items .lp-trust__item {
  gap: 6px;
  padding: 17px 20px;
  border-right: 1px solid var(--lp-line);
}

.product-lp--note .lp-trust__items .lp-trust__item:last-child,
.product-lp--group .lp-trust__items .lp-trust__item:last-child {
  border-right: 0;
}

.product-lp--note .lp-trust__items .lp-trust__item strong,
.product-lp--group .lp-trust__items .lp-trust__item strong {
  color: var(--lp-ink);
  font-size: 15px;
}

/* Sections and steps / 罫線と余白で情報の順序を明確にする */
.product-lp--note .lp-section,
.product-lp--group .lp-section {
  padding: 104px 0;
}

.product-lp--note .lp-section__heading,
.product-lp--group .lp-section__heading {
  margin-bottom: 50px;
}

.product-lp--note .lp-section--steps,
.product-lp--group .lp-section--steps {
  background: #fff;
}

.product-lp--note .lp-card,
.product-lp--group .lp-card {
  border-color: var(--lp-line);
  border-radius: 14px;
  box-shadow: none;
}

.product-lp--note .lp-step-card,
.product-lp--group .lp-step {
  min-height: 286px;
  padding: 30px;
  border: 1px solid var(--lp-line);
  border-top: 3px solid var(--lp-accent);
  border-radius: 14px;
  background: #fff;
}

.product-lp--note .lp-step-card:hover {
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-2px);
}

.product-lp--note .lp-step-card__number,
.product-lp--group .lp-step__number {
  top: 24px;
  right: 26px;
  left: auto;
  color: rgba(var(--lp-accent-rgb), 0.26);
  font-size: 27px;
}

.product-lp--note .lp-step-card__icon,
.product-lp--group .lp-step__icon {
  margin-bottom: 32px;
  border-radius: 10px;
}

.product-lp--note .lp-step-card__icon svg,
.product-lp--note .lp-feature-card__icon svg,
.product-lp--group .lp-step__icon svg,
.product-lp--group .lp-card__icon svg {
  width: 26px;
  height: 26px;
}

/* Product UI previews / 共同編集画面とファイルルームの利用イメージ */
.product-lp--note .lp-process-preview--note,
.product-lp--group .lp-process-preview--group {
  width: min(100%, 760px);
  margin: 54px auto 0;
}

.product-lp--note .lp-product-visual::before {
  display: none;
}

.product-lp--note .lp-note-mock__window,
.product-lp--group .lp-room-mockup {
  border-color: var(--lp-line);
  border-radius: 14px;
  box-shadow: var(--lp-shadow-lg);
  transform: none;
}

.product-lp--note .lp-floating-status {
  right: -16px;
  bottom: -18px;
  border-color: var(--lp-line);
  border-radius: 9px;
}

.product-lp--group .lp-room-mockup__sidebar {
  background: #173b2f;
}

/* Features / 大きな価値を上段、補足機能を下段に整理する */
.product-lp--note .lp-section--tint {
  background: #f1eff4;
}

.product-lp--group .lp-section--tint {
  background: #edf2ef;
}

.product-lp--note .lp-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-lp--note .lp-feature-card--wide,
.product-lp--group .lp-feature-card--wide {
  min-height: 340px;
  grid-column: 1 / -1;
  grid-row: auto;
  padding: 42px;
}

.product-lp--note .lp-feature-card--wide {
  background: #292238;
}

.product-lp--group .lp-feature-card--wide {
  background: #173b2f;
}

.product-lp--note .lp-feature-card--wide h3,
.product-lp--note .lp-feature-card--wide > p,
.product-lp--group .lp-feature-card--wide h3,
.product-lp--group .lp-feature-card--wide > p {
  max-width: 44%;
}

.product-lp--note .lp-feature-card,
.product-lp--group .lp-feature-card {
  min-height: 235px;
}

.product-lp--group .lp-feature-card--accent {
  min-height: 190px;
  grid-column: 1 / -1;
}

.product-lp--note .lp-feature-card__icon,
.product-lp--group .lp-card__icon {
  border-radius: 10px;
}

.product-lp--note .lp-feature-card__demo,
.product-lp--group .lp-share-visual {
  top: 42px;
  right: 42px;
  bottom: 42px;
  left: auto;
  width: 44%;
  height: auto;
  min-height: 0;
  border-radius: 12px;
}

/* Use cases / 抽象装飾を減らし、用途の文章を主役にする */
.product-lp--note #use-cases,
.product-lp--group #use-cases {
  background: #fff;
}

.product-lp--note .lp-use-case-card {
  min-height: 230px;
  border-left: 3px solid var(--lp-accent);
}

.product-lp--note .lp-use-case-card__visual {
  display: none;
}

.product-lp--note .lp-use-case-card__body {
  padding: 30px;
}

.product-lp--note .lp-use-case-card:hover {
  box-shadow: var(--lp-shadow-sm);
  transform: translateY(-2px);
}

.product-lp--group .lp-use-card {
  min-height: 230px;
  border-left: 3px solid var(--lp-accent);
}

.product-lp--group .lp-use-card__content {
  padding: 30px;
}

/* FAQ, CTA and footer / 質問と行動導線に集中させる */
.product-lp--note .lp-section--faq,
.product-lp--group .lp-section--faq {
  background: #f1f0ee;
}

.product-lp--note .lp-faq-list,
.product-lp--group .lp-faq-list,
.product-lp--note .lp-faq-item,
.product-lp--group .lp-faq-item {
  border-color: var(--lp-line);
}

.product-lp--note .lp-faq-item summary,
.product-lp--group .lp-faq-item summary {
  font-weight: 700;
}

.product-lp--note .lp-final-cta,
.product-lp--group .lp-final-cta {
  padding: 96px 0;
}

.product-lp--note .lp-final-cta {
  background: #292238;
}

.product-lp--group .lp-final-cta {
  background: #173b2f;
}

.product-lp--note .lp-final-cta::before,
.product-lp--note .lp-final-cta::after,
.product-lp--note .lp-final-cta__glow,
.product-lp--group .lp-final-cta::before,
.product-lp--group .lp-final-cta::after {
  display: none;
}

.product-lp--note .lp-final-cta h2,
.product-lp--group .lp-final-cta h2 {
  font-weight: 760;
}

.product-lp--group .lp-final-cta .lp-button--primary {
  color: var(--lp-accent-dark) !important;
  background: #fff;
}

.product-lp--group .lp-final-cta .lp-button--secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff !important;
  background: transparent;
}

.product-lp--note .lp-footer {
  background: #171420;
}

.product-lp--group .lp-footer {
  background: #101b16;
}

@media (max-width: 980px) {
  .product-lp--note .lp-hero__grid,
  .product-lp--group .lp-hero__grid {
    grid-template-columns: 1fr;
  }

  .product-lp--note .lp-page-shot,
  .product-lp--group .lp-page-shot {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .product-lp--note .lp-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-lp--note .lp-feature-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .product-lp--note .lp-hero,
  .product-lp--group .lp-hero {
    padding: 58px 0 72px;
  }

  .product-lp--note .lp-hero h1,
  .product-lp--group .lp-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .product-lp--note .lp-trust__items .lp-trust__item:nth-child(even),
  .product-lp--group .lp-trust__items .lp-trust__item:nth-child(even) {
    border-right: 0;
  }

  .product-lp--note .lp-section,
  .product-lp--group .lp-section {
    padding: 78px 0;
  }

  .product-lp--note .lp-feature-grid {
    grid-template-columns: 1fr;
  }

  .product-lp--note .lp-feature-card:last-child {
    grid-column: auto;
  }

  .product-lp--note .lp-feature-card--wide,
  .product-lp--group .lp-feature-card--wide {
    min-height: 510px;
    padding: 30px;
  }

  .product-lp--note .lp-feature-card--wide h3,
  .product-lp--note .lp-feature-card--wide > p,
  .product-lp--group .lp-feature-card--wide h3,
  .product-lp--group .lp-feature-card--wide > p {
    max-width: none;
  }

  .product-lp--note .lp-feature-card__demo,
  .product-lp--group .lp-share-visual {
    top: auto;
    right: 30px;
    bottom: 30px;
    left: 30px;
    width: auto;
    height: 190px;
  }
}

@media (max-width: 430px) {
  .product-lp--note .lp-page-shot,
  .product-lp--group .lp-page-shot {
    padding: 6px;
    border-radius: 16px;
  }

  .product-lp--note .lp-floating-status {
    display: none;
  }
}
