/* ==========================================================================
   pullcass 告知LP + お問い合わせ 共通デザインシステム
   - ライトモード / プルキャス紫（#7c3aed）基調
   - 管理画面（manage.css）とトンマナ統一
   - Apple 公式サイト風：白/濃紫の交互構成・大胆な余白・段階的な魅せ方
   - すべての操作要素にトランジション（§10.1 準拠）
   仕様書: docs/告知HP刷新_仕様書.md
   ========================================================================== */

:root {
    /* ブランド紫（manage.css ライトモードと統一） */
    --pc-primary: #7c3aed;
    --pc-primary-dark: #5b21b6;
    --pc-primary-light: #a78bfa;
    --pc-primary-bg: rgba(124, 58, 237, 0.08);
    --pc-primary-bg-strong: rgba(124, 58, 237, 0.14);
    --pc-primary-border: rgba(124, 58, 237, 0.22);
    --pc-gradient: linear-gradient(135deg, #7c3aed 0%, #de54f8 100%);
    --pc-gradient-hover: linear-gradient(135deg, #5b21b6 0%, #c040d9 100%);

    /* 背景 */
    --pc-bg: #ffffff;
    --pc-bg-alt: #f5f5f7;
    --pc-bg-dark: #150d28;
    --pc-bg-dark2: #2a1a4a;

    /* テキスト */
    --pc-text: #1d1d1f;
    --pc-text-sub: #6e6e73;
    --pc-text-inv: #ffffff;
    --pc-text-inv-sub: rgba(255, 255, 255, 0.72);

    /* 罫線・影 */
    --pc-border: rgba(0, 0, 0, 0.08);
    --pc-border-strong: rgba(0, 0, 0, 0.12);
    --pc-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --pc-shadow-card: 0 6px 28px rgba(0, 0, 0, 0.07);
    --pc-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --pc-shadow-primary: 0 12px 30px rgba(124, 58, 237, 0.28);

    /* レイアウト */
    --pc-container: 1120px;
    --pc-radius: 18px;
    --pc-radius-lg: 26px;
    --pc-radius-pill: 980px;

    /* トランジション（Apple 的イージング） */
    --pc-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --pc-transition: all 0.25s var(--pc-ease);

    --pc-font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo",
        -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--pc-font);
    background: var(--pc-bg);
    color: var(--pc-text);
    line-height: 1.7;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: var(--pc-primary);
    text-decoration: none;
    transition: var(--pc-transition);
}

img {
    max-width: 100%;
    display: block;
}

:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--pc-primary-bg-strong), 0 0 0 1.5px var(--pc-primary);
    border-radius: 6px;
}

/* ============================ レイアウト部品 ============================ */

.lp-container {
    width: 100%;
    max-width: var(--pc-container);
    margin: 0 auto;
    padding: 0 24px;
}

.lp-section {
    padding: 112px 0;
    position: relative;
}

.lp-section--alt {
    background: var(--pc-bg-alt);
}

.lp-section--dark {
    background:
        radial-gradient(ellipse at 15% 15%, rgba(124, 58, 237, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 85%, rgba(222, 84, 248, 0.22) 0%, transparent 55%),
        linear-gradient(160deg, var(--pc-bg-dark) 0%, var(--pc-bg-dark2) 100%);
    color: var(--pc-text-inv);
}

.lp-section--dark .lp-section-title {
    color: var(--pc-text-inv);
}

.lp-section--dark .lp-section-sub {
    color: var(--pc-text-inv-sub);
}

.lp-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}

.lp-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--pc-primary);
    margin-bottom: 14px;
    text-transform: uppercase;
}

.lp-section--dark .lp-eyebrow {
    color: var(--pc-primary-light);
}

.lp-section-title {
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--pc-text);
}

.lp-section-sub {
    margin-top: 18px;
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: var(--pc-text-sub);
    line-height: 1.8;
}

/* ============================ ボタン ============================ */

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    line-height: 1;
    border: 1.5px solid transparent;
    border-radius: var(--pc-radius-pill);
    cursor: pointer;
    transition: var(--pc-transition);
    white-space: nowrap;
}

.lp-btn--primary {
    background: var(--pc-gradient);
    color: var(--pc-text-inv);
    box-shadow: var(--pc-shadow-primary);
}

.lp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.38);
    color: var(--pc-text-inv);
}

.lp-btn--primary:active {
    transform: translateY(0) scale(0.98);
}

.lp-btn--ghost {
    background: transparent;
    color: var(--pc-primary);
    border-color: var(--pc-primary-border);
}

.lp-btn--ghost:hover {
    background: var(--pc-primary-bg);
    border-color: var(--pc-primary);
    transform: translateY(-2px);
}

.lp-btn--ghost:active {
    transform: translateY(0) scale(0.98);
}

.lp-btn--on-dark {
    background: #fff;
    color: var(--pc-primary-dark);
}

.lp-btn--on-dark:hover {
    background: #fff;
    color: var(--pc-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.lp-btn--lg {
    padding: 17px 40px;
    font-size: 1.08rem;
}

.lp-btn--block {
    width: 100%;
}

/* ============================ ヘッダー ============================ */

.lp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 24px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--pc-transition);
}

.lp-header.is-scrolled {
    border-bottom-color: var(--pc-border);
    box-shadow: var(--pc-shadow-sm);
}

.lp-logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--pc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-nav-links a {
    color: var(--pc-text);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 10px;
}

.lp-nav-links a:hover {
    color: var(--pc-primary);
    background: var(--pc-primary-bg);
}

.lp-nav .lp-btn {
    padding: 10px 22px;
    font-size: 0.92rem;
}

/* ヘッダー内のプライマリCTAは常に白文字（ナビリンクの色指定に負けないよう明示） */
.lp-nav .lp-btn--primary {
    color: var(--pc-text-inv);
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================ ヒーロー ============================ */

.lp-hero {
    position: relative;
    padding: 96px 0 80px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% -10%, var(--pc-primary-bg) 0%, transparent 60%),
        var(--pc-bg);
    overflow: hidden;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pc-primary-dark);
    background: var(--pc-primary-bg);
    border: 1px solid var(--pc-primary-border);
    border-radius: var(--pc-radius-pill);
    margin-bottom: 26px;
}

.lp-hero__title {
    font-size: clamp(2.4rem, 6.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--pc-text);
}

.lp-hero__title .grad {
    background: var(--pc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero__lead {
    max-width: 640px;
    margin: 24px auto 0;
    font-size: clamp(1.05rem, 2.3vw, 1.32rem);
    color: var(--pc-text-sub);
    line-height: 1.75;
}

.lp-hero__cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 38px;
}

.lp-hero__visual {
    max-width: 960px;
    margin: 64px auto 0;
    perspective: 1600px;
}

.lp-hero__visual .ui-mock {
    transform: rotateX(3deg);
    transition: transform 0.6s var(--pc-ease);
}

.lp-hero__visual:hover .ui-mock {
    transform: rotateX(0deg);
}

.lp-hero__cta:empty {
    display: none;
}

/* ============================ ヒーロー管理画面デモ（動画代わり） ============================ */

.ui-mock--video .ui-mock__body {
    padding: 0;
    min-height: 0;
    background: #0f0f14;
}

.ui-mock__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f0f14;
}

.ui-mock__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ui-mock__media video[data-ready="0"] {
    display: none;
}

.ui-mock--hero-demo .ui-mock__body,
.ui-mock--hero-demo .ui-mock__media {
    background: #f5f5f7;
}

.ui-mock--hero-demo .ui-mock__media {
    aspect-ratio: 16 / 10.2;
}

.ui-demo {
    position: absolute;
    inset: 0;
    background: #f0f0f3;
    overflow: hidden;
}

.ui-demo__shell {
    display: grid;
    grid-template-columns: 148px 1fr;
    height: 100%;
}

.ui-demo__sidebar {
    background: #fbfbfd;
    border-right: 1px solid var(--pc-border);
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ui-demo__brand {
    font-size: 0.82rem;
    font-weight: 800;
    background: var(--pc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 6px;
}

.ui-demo__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ui-demo__nav span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--pc-text-sub);
    transition: var(--pc-transition);
    white-space: nowrap;
    overflow: hidden;
}

.ui-demo__nav span i {
    width: 14px;
    text-align: center;
    color: var(--pc-primary-light);
}

.ui-demo__nav span.is-on {
    background: var(--pc-primary-bg);
    color: var(--pc-primary-dark);
}

.ui-demo__nav span.is-on i {
    color: var(--pc-primary);
}

.ui-demo__main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px 14px;
    min-width: 0;
}

.ui-demo__progress {
    display: flex;
    gap: 5px;
}

.ui-demo__progress span {
    flex: 1;
    height: 3px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.ui-demo__progress span::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: var(--pc-gradient);
}

.ui-demo.is-playing .ui-demo__progress span.is-active::after {
    animation: uiDemoBar 4.8s linear forwards;
}

@keyframes uiDemoBar {
    from { width: 0; }
    to { width: 100%; }
}

.ui-demo__caption {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--pc-primary-dark);
    letter-spacing: 0.01em;
    min-height: 1.2em;
    transition: opacity 0.25s var(--pc-ease);
}

.ui-demo__stage {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--pc-border);
    box-shadow: var(--pc-shadow-sm);
}

.ui-demo__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    transition: opacity 0.5s var(--pc-ease), transform 0.5s var(--pc-ease);
    pointer-events: none;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ui-demo__slide.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ui-panel__title {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--pc-text);
}

.ui-panel--grow {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ui-stat__label {
    margin-top: 8px;
    font-size: 0.68rem;
    color: var(--pc-text-sub);
    font-weight: 600;
}

.ui-chip--pulse {
    animation: uiChipPulse 1.2s ease-in-out infinite;
}

@keyframes uiChipPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.25); }
    50% { box-shadow: 0 0 0 6px rgba(124, 58, 237, 0); }
}

.ui-bars--animate span {
    height: 8%;
    background: var(--pc-gradient);
    opacity: 0.85;
    transform-origin: bottom;
    transition: height 0.7s var(--pc-ease);
}

.ui-demo__slide.is-active .ui-bars--animate span {
    height: var(--h);
}

.ui-scrape {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ui-scrape__bar {
    height: 8px;
    border-radius: 980px;
    background: #eceaf2;
    overflow: hidden;
}

.ui-scrape__bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--pc-gradient);
    transition: width 0.35s linear;
}

.ui-scrape__log {
    font-size: 0.72rem;
    color: var(--pc-text-sub);
    font-weight: 600;
}

.ui-cast-row {
    display: flex;
    gap: 8px;
    flex: 1;
    align-items: stretch;
}

.ui-cast {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 6px;
    border-radius: 12px;
    background: #fbfbfd;
    border: 1px solid var(--pc-border);
    opacity: 0;
    transform: translateY(10px) scale(0.92);
    transition: opacity 0.4s var(--pc-ease), transform 0.4s var(--pc-ease);
}

.ui-demo__slide.is-active .ui-cast.is-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ui-cast__face {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.ui-cast__face--2 { background: linear-gradient(135deg, #5b21b6, #de54f8); }
.ui-cast__face--3 { background: linear-gradient(135deg, #7c3aed, #c040d9); }
.ui-cast__face--4 { background: linear-gradient(135deg, #6d28d9, #e879f9); }
.ui-cast__face--5 { background: linear-gradient(135deg, #4c1d95, #a78bfa); }

.ui-cast__name {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--pc-text);
}

.ui-cal--demo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ui-cal__head {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--pc-text-sub);
}

.ui-cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    flex: 1;
}

.ui-cal--demo .ui-cal__cell {
    aspect-ratio: auto;
    min-height: 28px;
    height: 100%;
    border-radius: 8px;
    background: #f5f5f7;
    border: 1px solid transparent;
    transition: background 0.35s var(--pc-ease), border-color 0.35s var(--pc-ease), transform 0.35s var(--pc-ease);
}

.ui-cal--demo .ui-cal__cell.is-on {
    background: var(--pc-primary-bg);
    border-color: var(--pc-primary-border);
    transform: scale(1.04);
}

.ui-cal--demo .ui-cal__cell.is-on::before {
    content: "";
    width: 55%;
    height: 5px;
    border-radius: 3px;
    background: var(--pc-primary);
    margin: auto;
    display: block;
    margin-top: 40%;
}

.ui-diary-list,
.ui-push-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ui-diary,
.ui-push {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fbfbfd;
    border: 1px solid var(--pc-border);
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.4s var(--pc-ease), transform 0.4s var(--pc-ease), border-color 0.3s ease;
}

.ui-demo__slide.is-active .ui-diary.is-in,
.ui-demo__slide.is-active .ui-push.is-in {
    opacity: 1;
    transform: translateX(0);
}

.ui-diary .ui-cast__face {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.ui-diary__body,
.ui-push > div {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ui-diary__body strong,
.ui-push strong {
    font-size: 0.75rem;
    font-weight: 800;
}

.ui-diary__body span,
.ui-push span {
    font-size: 0.68rem;
    color: var(--pc-text-sub);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-diary em,
.ui-push em {
    font-style: normal;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--pc-primary);
    flex-shrink: 0;
}

.ui-push i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pc-primary-bg);
    color: var(--pc-primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.ui-push.is-send {
    border-color: var(--pc-primary-border);
    background: var(--pc-primary-bg);
}

.ui-demo__cursor {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50% 50% 50% 0;
    background: var(--pc-primary);
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
    transform: rotate(-35deg) translate(-50%, -50%);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: left 0.55s var(--pc-ease), top 0.55s var(--pc-ease), opacity 0.25s ease;
}

.ui-demo__cursor.is-on {
    opacity: 0.9;
}

.ui-demo__cursor.is-click {
    animation: uiCursorClick 0.35s var(--pc-ease);
}

@keyframes uiCursorClick {
    0%, 100% { transform: rotate(-35deg) translate(-50%, -50%) scale(1); }
    50% { transform: rotate(-35deg) translate(-50%, -50%) scale(0.75); }
}

.ui-mock--sm .ui-mock__media {
    aspect-ratio: 16 / 11;
}

.ui-mock--sm .ui-demo {
    padding: 0;
}

.ui-mock--sm .ui-demo__shell {
    grid-template-columns: 1fr;
}

.ui-mock--sm .ui-demo__sidebar {
    display: none;
}

@media (max-width: 720px) {
    .ui-demo__shell {
        grid-template-columns: 1fr;
    }

    .ui-demo__sidebar {
        display: none;
    }

    .ui-cast__name {
        font-size: 0.6rem;
    }

    .ui-mock__media {
        aspect-ratio: 16 / 12;
    }
}

/* ============================ キャストスクレイピング操作デモ（実画面寄せ） ============================ */

.scrape-demo {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 168px 1fr;
    background: #f5f5f7;
    overflow: hidden;
    font-size: 11px;
}

.scrape-demo__sidebar {
    background: #fbfbfd;
    border-right: 1px solid rgba(0,0,0,.08);
    padding: 10px 8px;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.scrape-demo__shop {
    font-size: 0.72rem;
    font-weight: 800;
    color: #1d1d1f;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scrape-demo__shop i { color: #7c3aed; }

.scrape-demo__shop-name {
    font-size: 0.65rem;
    color: #6e6e73;
    font-weight: 600;
    margin-bottom: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.scrape-demo__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.scrape-demo__item,
.scrape-demo__acc-btn,
.scrape-demo__sub {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    border: 0;
    background: transparent;
    font: inherit;
    color: #444;
    text-align: left;
    border-radius: 8px;
    padding: 7px 8px;
    cursor: default;
    transition: background .2s ease, color .2s ease;
}

.scrape-demo__item.is-on,
.scrape-demo__sub.is-on {
    background: rgba(124, 58, 237, 0.1);
    color: #5b21b6;
    font-weight: 700;
}

.scrape-demo__item i,
.scrape-demo__sub i {
    width: 12px;
    text-align: center;
    color: #a78bfa;
    font-size: 0.7rem;
}

.scrape-demo__item.is-on i,
.scrape-demo__sub.is-on i { color: #7c3aed; }

.scrape-demo__acc-btn {
    justify-content: space-between;
    font-weight: 700;
    color: #1d1d1f;
    padding: 8px;
}

.scrape-demo__acc-btn i {
    font-size: 0.6rem;
    color: #999;
    transition: transform .25s ease;
}

.scrape-demo__acc.is-open > .scrape-demo__acc-btn {
    background: rgba(124, 58, 237, 0.08);
    color: #5b21b6;
}

.scrape-demo__acc.is-open > .scrape-demo__acc-btn i {
    transform: rotate(180deg);
    color: #7c3aed;
}

.scrape-demo__acc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.scrape-demo__acc.is-open .scrape-demo__acc-panel {
    max-height: 280px;
}

.scrape-demo__sub {
    padding: 6px 8px 6px 12px;
    font-size: 0.62rem;
    color: #555;
}

.scrape-demo__acc.is-collapsed .scrape-demo__acc-panel {
    display: none;
}

.scrape-demo__main {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #f5f5f7;
}

.scrape-demo__view {
    position: absolute;
    inset: 0;
    padding: 10px 12px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
    overflow: hidden;
}

.scrape-demo__view.is-active {
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

.scrape-demo__pagehead h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1d1d1f;
    display: flex;
    align-items: center;
    gap: 8px;
}

.scrape-demo__pagehead h3 i { color: #7c3aed; }

.scrape-demo__pagehead p {
    margin-top: 2px;
    font-size: 0.68rem;
    color: #6e6e73;
}

/* ダッシュボード：お問い合わせパネル */
.scrape-demo__contact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.scrape-demo__contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.scrape-demo__contact-body { flex: 1; min-width: 0; }

.scrape-demo__contact-title {
    font-size: 0.68rem;
    font-weight: 800;
    color: #1d1d1f;
}

.scrape-demo__contact-msg {
    font-size: 0.58rem;
    color: #6e6e73;
    margin-top: 1px;
}

.scrape-demo__contact-arrow {
    color: #c7c7cc;
    font-size: 0.6rem;
}

/* ダッシュボード：スケジュールチェック */
.scrape-demo__sched {
    margin-top: 8px;
}

.scrape-demo__sched-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.scrape-demo__sched-head h4 {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 800;
    color: #1d1d1f;
    display: flex;
    align-items: center;
    gap: 5px;
}

.scrape-demo__sched-head h4 i { color: #7c3aed; }

.scrape-demo__sched-head > span {
    font-size: 0.5rem;
    color: #6e6e73;
    font-weight: 600;
}

.scrape-demo__sched-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 10px;
    padding: 8px 10px 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.scrape-demo__sched-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 5px;
}

.scrape-demo__sched-meta strong {
    font-size: 0.65rem;
    color: #1d1d1f;
}

.scrape-demo__sched-meta em {
    font-style: normal;
    font-size: 0.58rem;
    font-weight: 700;
    color: #7c3aed;
}

.scrape-demo__sched-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
}

.scrape-demo__sched-bars i {
    flex: 1;
    display: block;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, #a78bfa, #7c3aed);
    opacity: .9;
}

.scrape-demo__sched-axis {
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
    font-size: 0.48rem;
    color: #999;
    font-weight: 600;
}

/* ダッシュボード：クイックアクション */
.scrape-demo__qa-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    margin-bottom: 4px;
}

.scrape-demo__qa-head h4 {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 800;
    color: #1d1d1f;
    display: flex;
    align-items: center;
    gap: 5px;
}

.scrape-demo__qa-head h4 i { color: #7c3aed; }

.scrape-demo__qa-add {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.5rem;
    font-weight: 700;
    color: #555;
    background: #fff;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 6px;
    padding: 3px 7px;
}

.scrape-demo__qa {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.scrape-demo__qa-card {
    background: #fff;
    border-radius: 9px;
    padding: 7px 8px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.scrape-demo__qa-card strong {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.58rem;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 1px;
}

.scrape-demo__qa-card strong i {
    color: #7c3aed;
    font-size: 0.6rem;
}

.scrape-demo__qa-card span {
    display: block;
    font-size: 0.48rem;
    color: #6e6e73;
    line-height: 1.3;
}

.scrape-demo__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 12px 0;
}

.scrape-demo__stat {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.06);
}

.scrape-demo__stat strong {
    display: block;
    font-size: 1.05rem;
    color: #7c3aed;
    font-weight: 800;
}

.scrape-demo__stat span {
    font-size: 0.62rem;
    color: #6e6e73;
    font-weight: 600;
}

.scrape-demo__card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.06);
    padding: 12px;
    min-height: 90px;
}

.scrape-demo__bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
}

.scrape-demo__bars i {
    flex: 1;
    display: block;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(135deg, #7c3aed, #de54f8);
    opacity: .85;
}

.scrape-demo__section {
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 12px;
    padding: 10px 12px;
    margin-top: 10px;
}

.scrape-demo__section--bulk {
    border-color: rgba(124, 58, 237, 0.25);
    background: rgba(124, 58, 237, 0.06);
}

.scrape-demo__section h4 {
    font-size: 0.72rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1d1d1f;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scrape-demo__section h4 i { color: #7c3aed; }

.scrape-demo__sites,
.scrape-demo__execs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.scrape-demo__site,
.scrape-demo__exec {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 8px;
    border-radius: 9px;
    background: #fbfbfd;
    border: 1px solid rgba(0,0,0,.06);
    font-size: 0.62rem;
    font-weight: 700;
    color: #333;
}

.scrape-demo__site em {
    margin-left: auto;
    font-style: normal;
    font-size: 0.55rem;
    color: #16a34a;
    background: rgba(22,163,74,.1);
    padding: 2px 6px;
    border-radius: 980px;
}

.scrape-demo__fav {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: #2563eb;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.scrape-demo__fav--h { background: #e11d48; }
.scrape-demo__fav--d { background: #ea580c; }

.scrape-demo__bulk-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    border-radius: 980px;
    padding: 8px 14px;
    font: inherit;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #de54f8);
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.28);
    cursor: default;
    transition: transform .2s ease, box-shadow .2s ease;
}

.scrape-demo__bulk-btn.is-press {
    transform: scale(0.96);
}

.scrape-demo__sync {
    margin-left: auto;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 7px;
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.scrape-demo__sync.is-press {
    background: #7c3aed;
    color: #fff;
}

/* 本物寄せ：白ぼかし + くるくる矢印 */
.scrape-demo__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 5;
}

.scrape-demo__overlay.is-show {
    opacity: 1;
}

.scrape-demo__overlay-inner {
    text-align: center;
    color: #1d1d1f;
}

.scrape-demo__spinner {
    font-size: 2.8rem;
    color: #7c3aed;
    margin-bottom: 14px;
    animation: scrapeSpinPulse 1.5s ease-in-out infinite;
}

@keyframes scrapeSpinPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(1.05); }
}

.scrape-demo__overlay-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 14px;
    white-space: pre-line;
    color: #1d1d1f;
}

.scrape-demo__chips {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.scrape-demo__chips span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 980px;
    font-size: 0.65rem;
    font-weight: 700;
    background: #eee;
    color: #777;
    transition: background .25s ease, color .25s ease;
}

.scrape-demo__chips span i {
    font-size: 0.62rem;
}

.scrape-demo__chips span.is-running {
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
}

.scrape-demo__chips span.is-done {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
}

.scrape-demo__cursor {
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50% 50% 50% 0;
    background: #7c3aed;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.45);
    transform: rotate(-35deg);
    margin-left: -4px;
    margin-top: -4px;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    left: 40%;
    top: 40%;
    transition: left .55s cubic-bezier(0.16, 1, 0.3, 1), top .55s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s ease;
}

.scrape-demo__cursor.is-on { opacity: .95; }

.scrape-demo__cursor.is-click {
    animation: scrapeCursorClick .28s ease;
}

@keyframes scrapeCursorClick {
    0%, 100% { transform: rotate(-35deg) scale(1); }
    50% { transform: rotate(-35deg) scale(0.72); }
}

.scrape-demo__flash {
    outline: 2px solid rgba(124, 58, 237, 0.45);
    background: rgba(124, 58, 237, 0.1) !important;
}

/* スマホ用トップバー / ドロワー（PCでは非表示） */
.scrape-demo__topbar,
.scrape-demo__drawer-bg {
    display: none;
}

/* ============================ スマホ：管理画面スマホ版デモ（iPhone外枠＝プレビューと同系） ============================ */

/* PCでは外枠を透過（ブラウザ風モックのまま） */
.lp-phone__status,
.lp-phone__home {
    display: none;
}

.lp-phone__frame,
.lp-phone__inner,
.lp-phone__screen {
    display: contents;
}

@media (max-width: 720px) {
    .lp-hero__visual {
        max-width: 320px;
        margin-top: 36px;
        padding: 8px 4px 16px;
        perspective: none;
    }

    .lp-hero__visual .ui-mock {
        transform: none;
        border: 0;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }

    .lp-hero__visual:hover .ui-mock {
        transform: none;
    }

    /* free_preview_mobile / preview-common.css の .phone-frame 相当 */
    .lp-phone {
        display: block;
        width: 100%;
    }

    .lp-phone__frame {
        display: block;
        background: linear-gradient(145deg, #3a3a3c 0%, #1c1c1e 50%, #2c2c2e 100%);
        border-radius: 42px;
        padding: 8px;
        box-shadow:
            0 24px 48px rgba(0, 0, 0, 0.35),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        position: relative;
    }

    .lp-phone__frame::before {
        content: '';
        position: absolute;
        right: -2px;
        top: 108px;
        width: 3px;
        height: 58px;
        background: linear-gradient(180deg, #4a4a4c, #2a2a2c);
        border-radius: 0 2px 2px 0;
    }

    .lp-phone__frame::after {
        content: '';
        position: absolute;
        left: -2px;
        top: 92px;
        width: 3px;
        height: 26px;
        background: linear-gradient(180deg, #4a4a4c, #2a2a2c);
        border-radius: 2px 0 0 2px;
        box-shadow: 0 42px 0 #3a3a3c, 0 76px 0 #3a3a3c;
    }

    .lp-phone__inner {
        display: block;
        background: #000;
        border-radius: 36px;
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .lp-phone__status {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 38px;
        padding: 0 18px 6px;
        z-index: 40;
        background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.88) 100%);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        pointer-events: none;
    }

    .lp-phone__island {
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        width: 86px;
        height: 24px;
        background: #000;
        border-radius: 14px;
    }

    .lp-phone__time {
        font-size: 11px;
        font-weight: 700;
        color: #000;
        letter-spacing: -0.2px;
        font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Hiragino Sans', sans-serif;
    }

    .lp-phone__status-right {
        display: flex;
        align-items: center;
        gap: 4px;
        height: 12px;
    }

    .lp-phone__signal {
        width: 14px;
        height: 10px;
        background:
            linear-gradient(#000, #000) 0 100% / 2px 3px no-repeat,
            linear-gradient(#000, #000) 4px 100% / 2px 5px no-repeat,
            linear-gradient(#000, #000) 8px 100% / 2px 7px no-repeat,
            linear-gradient(#000, #000) 12px 100% / 2px 10px no-repeat;
    }

    .lp-phone__wifi {
        width: 12px;
        height: 9px;
        border: 2px solid transparent;
        border-top-color: #000;
        border-radius: 50%;
        transform: rotate(-45deg);
        margin-top: -2px;
    }

    .lp-phone__battery {
        width: 18px;
        height: 9px;
        border: 1.5px solid #000;
        border-radius: 2.5px;
        position: relative;
        box-sizing: border-box;
    }

    .lp-phone__battery::before {
        content: '';
        position: absolute;
        inset: 1.5px auto 1.5px 1.5px;
        width: 70%;
        background: #000;
        border-radius: 1px;
    }

    .lp-phone__battery::after {
        content: '';
        position: absolute;
        right: -3px;
        top: 2px;
        width: 2px;
        height: 4px;
        background: rgba(0,0,0,.45);
        border-radius: 0 1px 1px 0;
    }

    .lp-phone__screen {
        display: block;
        padding-top: 38px;
        padding-bottom: 14px;
        background: #f5f5f7;
        min-height: 0;
    }

    .lp-phone__home {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 4px;
        height: 14px;
        z-index: 40;
        pointer-events: none;
    }

    .lp-phone__home span {
        width: 96px;
        height: 4px;
        border-radius: 980px;
        background: #1d1d1f;
        opacity: .85;
    }

    .ui-mock--hero-demo .ui-mock__bar {
        display: none;
    }

    .ui-mock--hero-demo .ui-mock__body,
    .ui-mock--hero-demo .ui-mock__media {
        background: #f5f5f7;
    }

    .ui-mock--hero-demo .ui-mock__media {
        aspect-ratio: 9 / 15.6;
    }

    .scrape-demo {
        display: block;
        font-size: 10px;
    }

    .scrape-demo__topbar {
        display: flex;
        align-items: center;
        gap: 8px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 44px;
        padding: 0 8px;
        background: #fbfbfd;
        border-bottom: 1px solid rgba(0,0,0,.08);
        z-index: 12;
    }

    .scrape-demo__menu-btn {
        width: 36px;
        height: 36px;
        border: 0;
        border-radius: 10px;
        background: transparent;
        color: #1d1d1f;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        cursor: default;
        flex-shrink: 0;
        transition: background .15s ease, color .15s ease;
    }

    .scrape-demo__menu-btn.is-active {
        background: rgba(124, 58, 237, 0.1);
        color: #7c3aed;
    }

    .scrape-demo__menu-icon {
        position: relative;
        display: block;
        width: 18px;
        height: 12px;
    }

    .scrape-demo__menu-line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        border-radius: 1px;
        background: currentColor;
        transition: transform .22s cubic-bezier(0.16, 1, 0.3, 1), top .22s cubic-bezier(0.16, 1, 0.3, 1), opacity .15s ease;
    }

    .scrape-demo__menu-line:nth-child(1) { top: 0; }
    .scrape-demo__menu-line:nth-child(2) { top: 5px; }
    .scrape-demo__menu-line:nth-child(3) { top: 10px; }

    .scrape-demo__menu-btn.is-active .scrape-demo__menu-line:nth-child(1) {
        top: 5px;
        transform: rotate(45deg);
    }

    .scrape-demo__menu-btn.is-active .scrape-demo__menu-line:nth-child(2) {
        opacity: 0;
    }

    .scrape-demo__menu-btn.is-active .scrape-demo__menu-line:nth-child(3) {
        top: 5px;
        transform: rotate(-45deg);
    }

    .scrape-demo__topbar-brand {
        display: flex;
        align-items: center;
        gap: 6px;
        min-width: 0;
        font-size: 0.78rem;
        font-weight: 800;
        color: #1d1d1f;
    }

    .scrape-demo__topbar-brand i { color: #7c3aed; }
    .scrape-demo__topbar-brand span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .scrape-demo__drawer-bg {
        display: block;
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
        z-index: 14;
    }

    .scrape-demo.is-drawer-open .scrape-demo__drawer-bg {
        opacity: 1;
    }

    .scrape-demo__sidebar {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 78%;
        max-width: 220px;
        z-index: 16;
        transform: translate3d(-105%, 0, 0);
        transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
        border-right: 1px solid rgba(0,0,0,.08);
        box-shadow: none;
        padding-top: 12px;
        background: #fbfbfd;
    }

    .scrape-demo.is-drawer-open .scrape-demo__sidebar {
        transform: translate3d(0, 0, 0) !important;
        box-shadow: 8px 0 24px rgba(0,0,0,.12);
    }

    .scrape-demo__acc.is-collapsed {
        display: block;
    }

    .scrape-demo__main {
        position: absolute;
        inset: 0;
        padding-top: 44px;
    }

    .scrape-demo__view {
        padding: 10px;
        overflow: hidden;
    }

    .scrape-demo__qa {
        grid-template-columns: 1fr;
    }

    .scrape-demo__qa-card:nth-child(n+3) {
        display: none;
    }

    .scrape-demo__sites,
    .scrape-demo__execs {
        grid-template-columns: 1fr;
    }

    .scrape-demo__section:last-of-type {
        display: none;
    }

    .scrape-demo__overlay {
        top: 44px;
    }

    .scrape-demo__spinner {
        font-size: 2.2rem;
    }

    .scrape-demo__overlay-title {
        font-size: 0.9rem;
    }

    .scrape-demo__chips {
        gap: 6px;
    }

    .scrape-demo__chips span {
        font-size: 0.58rem;
        padding: 4px 8px;
    }

    /* スマホはタップ風カーソル */
    .scrape-demo__cursor {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: rgba(124, 58, 237, 0.35);
        border: 2px solid #7c3aed;
        box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
        transform: none;
        margin-left: -11px;
        margin-top: -11px;
    }

    .scrape-demo__cursor.is-click {
        animation: scrapeTapClick .28s ease;
    }

    @keyframes scrapeTapClick {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(0.7); }
    }
}

/* ============================ 選ばれる理由（3本柱） ============================ */

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

.lp-pillar {
    padding: 34px 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--pc-radius);
    transition: var(--pc-transition);
}

.lp-pillar:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.lp-pillar__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.4rem;
    color: #fff;
    background: var(--pc-gradient);
    margin-bottom: 20px;
    box-shadow: var(--pc-shadow-primary);
}

.lp-pillar__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--pc-text-inv);
}

.lp-pillar__desc {
    font-size: 0.98rem;
    color: var(--pc-text-inv-sub);
    line-height: 1.75;
}

/* ============================ 主力機能（交互レイアウト） ============================ */

.lp-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}

.lp-feature + .lp-feature {
    margin-top: 120px;
}

.lp-feature--reverse .lp-feature__body {
    order: 2;
}

.lp-feature__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.3rem;
    color: var(--pc-primary);
    background: var(--pc-primary-bg);
    margin-bottom: 22px;
}

.lp-feature__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 16px;
}

.lp-feature__desc {
    font-size: 1.05rem;
    color: var(--pc-text-sub);
    line-height: 1.85;
    margin-bottom: 22px;
}

.lp-feature__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-feature__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--pc-text);
}

.lp-feature__list li i {
    color: var(--pc-primary);
    margin-top: 4px;
    font-size: 0.95rem;
}

/* ============================ UIモック（CSSのみ・実画像なし） ============================ */

.ui-mock {
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: 16px;
    box-shadow: var(--pc-shadow-lg);
    overflow: hidden;
    transition: var(--pc-transition);
}

.ui-mock:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.16);
}

.ui-mock__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    background: #f5f5f7;
    border-bottom: 1px solid var(--pc-border);
}

.ui-mock__dots {
    display: flex;
    gap: 6px;
}

.ui-mock__dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d8d8de;
}

.ui-mock__dots span:nth-child(1) { background: #ff5f57; }
.ui-mock__dots span:nth-child(2) { background: #febc2e; }
.ui-mock__dots span:nth-child(3) { background: #28c840; }

.ui-mock__addr {
    flex: 1;
    margin-left: 8px;
    padding: 5px 12px;
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: 7px;
    font-size: 0.74rem;
    color: var(--pc-text-sub);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ui-mock__body {
    padding: 20px;
    background: #fbfbfd;
    min-height: 260px;
}

/* --- モック内 汎用パーツ --- */
.ui-row { display: flex; gap: 12px; }
.ui-row--wrap { flex-wrap: wrap; }
.ui-col { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ui-gap-sm { gap: 8px; }

.ui-panel {
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: 12px;
    padding: 14px;
    flex: 1;
}

.ui-stat {
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: 12px;
    padding: 14px;
    flex: 1;
}

.ui-stat__num {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pc-primary);
    line-height: 1;
}

.ui-txt {
    height: 10px;
    border-radius: 5px;
    background: #e9e9ee;
}

.ui-txt--accent { background: var(--pc-primary-bg-strong); }
.ui-txt--w40 { width: 40%; }
.ui-txt--w55 { width: 55%; }
.ui-txt--w70 { width: 70%; }
.ui-txt--w85 { width: 85%; }
.ui-txt--sm { height: 7px; }

.ui-chip {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 980px;
    background: var(--pc-primary-bg);
    color: var(--pc-primary-dark);
    font-size: 0.72rem;
    font-weight: 700;
}

.ui-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 90px;
    padding-top: 10px;
}

.ui-bars span {
    flex: 1;
    border-radius: 5px 5px 0 0;
    background: var(--pc-gradient);
    opacity: 0.85;
}

.ui-avatar {
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    background: linear-gradient(160deg, #efeaff 0%, #f7edff 100%);
    border: 1px solid var(--pc-border);
    position: relative;
    overflow: hidden;
}

.ui-avatar::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 30%;
    background: linear-gradient(transparent, rgba(124, 58, 237, 0.12));
}

.ui-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ui-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }

.ui-cal {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.ui-cal__cell {
    aspect-ratio: 1 / 1.2;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--pc-border);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 6px;
}

.ui-cal__cell.is-on {
    background: var(--pc-primary-bg);
    border-color: var(--pc-primary-border);
}

.ui-cal__cell.is-on::before {
    content: "";
    width: 60%;
    height: 6px;
    border-radius: 3px;
    background: var(--pc-primary);
}

.ui-bubble {
    max-width: 78%;
    padding: 9px 13px;
    border-radius: 14px;
    font-size: 0.75rem;
    line-height: 1.5;
}

.ui-bubble--in {
    align-self: flex-start;
    background: #eceaf2;
    color: #444;
    border-bottom-left-radius: 4px;
}

.ui-bubble--out {
    align-self: flex-end;
    background: var(--pc-gradient);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.ui-chat { display: flex; flex-direction: column; gap: 9px; }

/* ============================ 全機能グリッド ============================ */

.lp-cat + .lp-cat {
    margin-top: 56px;
}

.lp-cat__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--pc-border);
}

.lp-cat__title i {
    color: var(--pc-primary);
}

.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 16px;
}

.lp-fcard {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--pc-bg);
    border: 1px solid var(--pc-border);
    border-radius: 14px;
    transition: var(--pc-transition);
}

.lp-section--alt .lp-fcard {
    background: #fff;
}

.lp-fcard:hover {
    transform: translateY(-3px);
    border-color: var(--pc-primary-border);
    box-shadow: var(--pc-shadow-card);
}

.lp-fcard__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 1rem;
    color: var(--pc-primary);
    background: var(--pc-primary-bg);
    transition: var(--pc-transition);
}

.lp-fcard:hover .lp-fcard__icon {
    background: var(--pc-gradient);
    color: #fff;
}

.lp-fcard__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.lp-fcard__desc {
    font-size: 0.86rem;
    color: var(--pc-text-sub);
    line-height: 1.6;
}

/* ============================ 料金 ============================ */

.lp-pricing {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    box-shadow: var(--pc-shadow-card);
    padding: 44px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-pricing::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: var(--pc-gradient);
}

.lp-pricing__label {
    display: inline-block;
    padding: 7px 20px;
    background: var(--pc-primary-bg);
    color: var(--pc-primary-dark);
    border-radius: var(--pc-radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.lp-pricing__price {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.lp-pricing__price .unit {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pc-text-sub);
}

.lp-pricing__coming {
    display: inline-block;
    font-size: clamp(1.35rem, 3.2vw, 1.85rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    background: var(--pc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-pricing__note {
    color: var(--pc-text-sub);
    font-size: 0.92rem;
    margin-top: 12px;
}

.lp-pricing__list {
    list-style: none;
    text-align: left;
    margin: 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lp-pricing__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
}

.lp-pricing__list li i {
    color: var(--pc-primary);
    margin-top: 3px;
    font-size: 0.85rem;
}

/* ============================ 導入の流れ ============================ */

.lp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: step;
}

.lp-step {
    position: relative;
    padding: 30px 24px;
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    transition: var(--pc-transition);
}

.lp-section--alt .lp-step {
    background: #fff;
}

.lp-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--pc-shadow-card);
    border-color: var(--pc-primary-border);
}

.lp-step__num {
    counter-increment: step;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--pc-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.lp-step__num::before {
    content: counter(step);
}

.lp-step__title {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-step__desc {
    font-size: 0.9rem;
    color: var(--pc-text-sub);
    line-height: 1.7;
}

/* ============================ FAQ ============================ */

.lp-faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-faq__item {
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--pc-transition);
}

.lp-faq__item:hover {
    border-color: var(--pc-primary-border);
}

.lp-faq__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--pc-text);
    text-align: left;
    cursor: pointer;
    transition: var(--pc-transition);
}

.lp-faq__q:hover {
    color: var(--pc-primary);
}

.lp-faq__q i {
    flex-shrink: 0;
    color: var(--pc-primary);
    transition: transform 0.3s var(--pc-ease);
}

.lp-faq__item.is-open .lp-faq__q i {
    transform: rotate(45deg);
}

.lp-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--pc-ease), padding 0.35s var(--pc-ease);
    padding: 0 24px;
    color: var(--pc-text-sub);
    line-height: 1.8;
}

.lp-faq__item.is-open .lp-faq__a {
    max-height: 400px;
    padding: 0 24px 22px;
}

/* ============================ 最終CTA ============================ */

.lp-cta {
    text-align: center;
}

.lp-cta__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--pc-text-inv);
}

.lp-cta__lead {
    max-width: 560px;
    margin: 18px auto 34px;
    font-size: 1.1rem;
    color: var(--pc-text-inv-sub);
}

/* ============================ フッター ============================ */

.lp-footer {
    padding: 56px 0 40px;
    background: var(--pc-bg);
    border-top: 1px solid var(--pc-border);
    text-align: center;
}

.lp-footer__logo {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--pc-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    display: inline-block;
}

.lp-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 26px;
    margin-bottom: 22px;
}

.lp-footer__nav a {
    color: var(--pc-text-sub);
    font-size: 0.92rem;
    font-weight: 600;
}

.lp-footer__nav a:hover {
    color: var(--pc-primary);
}

.lp-footer__copy {
    color: var(--pc-text-sub);
    font-size: 0.84rem;
}

/* ============================ フォーム（LP / お問い合わせ共通） ============================ */

.lp-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.lp-card {
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius);
    box-shadow: var(--pc-shadow-card);
    padding: 32px 30px;
}

.lp-notice {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px 16px;
    border-radius: 12px;
    background: var(--pc-primary-bg);
    border: 1px solid var(--pc-primary-border);
}

.lp-notice__icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    color: #fff;
    background: var(--pc-gradient);
    font-size: 0.82rem;
}

.lp-notice__body {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--pc-text-sub);
}

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

.lp-field > label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 9px;
    color: var(--pc-text);
}

.lp-field .req {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: var(--pc-primary);
    border-radius: 6px;
    vertical-align: middle;
}

.lp-field input[type="text"],
.lp-field input[type="email"],
.lp-field select,
.lp-field textarea {
    width: 100%;
    padding: 13px 15px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--pc-text);
    background: var(--pc-bg-alt);
    border: 1.5px solid transparent;
    border-radius: 12px;
    transition: var(--pc-transition);
    -webkit-appearance: none;
    appearance: none;
}

.lp-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236e6e73' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--pc-primary);
    box-shadow: 0 0 0 3px var(--pc-primary-bg-strong);
}

.lp-field textarea {
    min-height: 168px;
    resize: vertical;
    line-height: 1.7;
}

.lp-char-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--pc-text-sub);
    margin-top: 6px;
}

.lp-check {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 16px;
    border: 1.5px solid var(--pc-border);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--pc-transition);
}

.lp-check:hover {
    border-color: var(--pc-primary-border);
    background: var(--pc-primary-bg);
}

.lp-check input {
    width: 20px;
    height: 20px;
    margin-top: 1px;
    accent-color: var(--pc-primary);
    cursor: pointer;
    flex-shrink: 0;
}

.lp-check__text {
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--pc-text);
}

.lp-check__text small {
    display: block;
    color: var(--pc-text-sub);
    font-size: 0.82rem;
    margin-top: 3px;
}

.lp-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* hCaptcha 共通パーツ（partial が出力するクラス） */
.contact-hcaptcha-wrap {
    margin: 10px 0 20px;
}

.contact-hcaptcha-notice {
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--pc-text-sub);
}

.contact-hcaptcha-notice a {
    color: var(--pc-primary);
    text-decoration: underline;
}

/* お問い合わせページ 単体レイアウト */
.lp-contact-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--pc-bg-alt);
}

.lp-contact-main {
    flex: 1;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 20px 72px;
}

.lp-contact-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.lp-contact-lead {
    color: var(--pc-text-sub);
    margin-bottom: 30px;
    font-size: 1rem;
}

.lp-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--pc-text-sub);
    font-size: 0.92rem;
    font-weight: 600;
}

.lp-back:hover {
    color: var(--pc-primary);
    gap: 12px;
}

/* 完了画面 */
.lp-complete {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--pc-bg-alt);
}

.lp-complete__card {
    max-width: 480px;
    width: 100%;
    text-align: center;
    background: #fff;
    border: 1px solid var(--pc-border);
    border-radius: var(--pc-radius-lg);
    box-shadow: var(--pc-shadow-card);
    padding: 48px 32px;
}

.lp-complete__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--pc-primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--pc-primary);
}

.lp-complete__card h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.lp-complete__card p {
    color: var(--pc-text-sub);
    margin-bottom: 28px;
    line-height: 1.8;
}

/* ============================ スクロール演出 ============================ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--pc-ease), transform 0.7s var(--pc-ease);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================ レスポンシブ ============================ */

@media (max-width: 900px) {
    .lp-pillars {
        grid-template-columns: 1fr;
    }

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

    .lp-feature {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lp-feature + .lp-feature {
        margin-top: 72px;
    }

    .lp-feature--reverse .lp-feature__body {
        order: 0;
    }

    .lp-feature__visual {
        order: 2;
    }
}

@media (max-width: 640px) {
    .lp-section {
        padding: 72px 0;
    }

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

    .lp-nav-links {
        display: none;
    }

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

    .lp-hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-hero__cta .lp-btn {
        width: 100%;
    }

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

    .lp-pricing {
        padding: 36px 24px;
    }

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

    .lp-card {
        padding: 24px 20px;
    }
}

/* ============================ モーション低減 ============================ */

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .lp-hero__visual .ui-mock {
        transform: none;
    }
}
