/* ============================================================
   Vehicle Purchase Service Page — Custom CSS
   Tailwind で対応できない部分のみ記述
   ============================================================ */

/* ---- Mobile nav overlay ---- */
#vp-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 400px);
    height: 100vh;
    height: 100dvh;
    background-color: #141F23;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 200;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#vp-nav-overlay.is-open {
    transform: translateX(0);
}

#vp-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#vp-nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* ---- Step connector arrow (desktop only) ---- */
@media (min-width: 769px) {
    .vp-step-connector {
        display: flex;
        align-items: flex-start;
        padding-top: 18px;
        color: #567D0A;
        font-size: 20px;
        flex-shrink: 0;
    }
}

/* ---- FAQ card border accent ---- */
.vp-faq-card {
    border-left: 3px solid #567D0A;
}

/* ---- Highlight bullet ---- */
.vp-highlight-item {
    position: relative;
    padding-left: 8px;
}

.vp-highlight-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: #141F23;
    border-radius: 50%;
}

/* ---- KV / Testimonials テキスト側の左余白（PCのみ） ---- */
@media (min-width: 769px) {
    .vp-bleed-left {
        padding-left: max(80px, calc((100vw - 1280px) / 2));
    }
}