
/* ================================
   ロゴ表示ON/OFF
================================ */
@media (min-width: 768px) {
    .pslm-store.pslm-hide-logo-pc .pslm-card {
        grid-template-columns: 1fr;
    }

    .pslm-store.pslm-hide-logo-pc .pslm-card-logo {
        display: none;
    }
}

@media (max-width: 767px) {
    .pslm-store.pslm-hide-logo-sp .pslm-card-logo {
        display: none;
    }
}


/* ================================
   LP上部ファーストビュー
================================ */
.pslm-lp {
    width: 100%;
}

.pslm-hero {
    margin: 0 auto 34px;
    padding: 46px 24px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 34%),
        linear-gradient(135deg, #0f172a 0%, #1e3a8a 58%, #2563eb 100%);
    border-radius: 24px;
    color: #fff;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.20);
    overflow: hidden;
}

.pslm-hero-inner {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.pslm-hero-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 16px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.pslm-hero-title {
    margin: 0;
    padding: 0;
    color: #fff;
    border: none;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.pslm-hero-lead {
    max-width: 760px;
    margin: 18px auto 0;
    color: #e0f2fe;
    font-size: 17px;
    line-height: 2;
}

.pslm-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.pslm-hero-main-button,
.pslm-hero-sub-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none !important;
}

.pslm-hero-main-button {
    background: #fff;
    color: #0f172a !important;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.pslm-hero-sub-button {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.pslm-hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 640px;
    margin: 30px auto 0;
}

.pslm-hero-points div {
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
}

.pslm-hero-points strong {
    display: block;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
}

.pslm-hero-points span {
    display: block;
    margin-top: 4px;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
}

.pslm-store {
    width: 100%;
    margin: 0 auto;
}

.pslm-store-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pslm-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 22px;
    align-items: center;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.pslm-card-logo {
    width: 150px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    overflow: hidden;
}

.pslm-card-logo img {
    max-width: 100%;
    max-height: 100px;
    display: block;
}

.pslm-logo-placeholder {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    color: #fff;
    font-size: 30px;
    font-weight: 800;
}

.pslm-card-content {
    min-width: 0;
}

.pslm-card-title {
    margin: 0 0 8px;
    padding: 0;
    font-size: clamp(22px, 2.3vw, 30px);
    line-height: 1.35;
    font-weight: 800;
    color: #0f172a;
    border: none;
}

.pslm-card-url {
    margin: 0 0 12px;
    font-size: 14px;
    word-break: break-all;
}

.pslm-card-url a {
    color: #2563eb;
    text-decoration: none;
}

.pslm-card-url a:hover {
    text-decoration: underline;
}

.pslm-card-description {
    margin: 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.8;
}

.pslm-card-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.pslm-demo-button,
.pslm-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pslm-demo-button {
    background: #0f172a;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
}

.pslm-contact-button {
    background: #eff6ff;
    color: #1d4ed8 !important;
    border: 1px solid #bfdbfe;
}

.pslm-demo-button:hover,
.pslm-contact-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

@media (max-width: 767px) {
    .pslm-hero {
        margin-bottom: 24px;
        padding: 34px 18px;
        border-radius: 18px;
    }

    .pslm-hero-title {
        font-size: 28px;
    }

    .pslm-hero-lead {
        font-size: 15px;
        line-height: 1.85;
    }

    .pslm-hero-actions {
        flex-direction: column;
    }

    .pslm-hero-main-button,
    .pslm-hero-sub-button {
        width: 100%;
    }

    .pslm-hero-points {
        grid-template-columns: 1fr;
    }

    .pslm-store-inner {
        gap: 16px;
    }

    .pslm-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .pslm-card-logo {
        width: 100%;
        min-height: 120px;
    }

    .pslm-card-title {
        font-size: 22px;
    }

    .pslm-card-description {
        font-size: 15px;
    }
}
