/* =============================================================
 * okazaki-erase-shared.css
 * 「安心のデータ消去処理」ブロック共有スタイル。
 * 元ページ /okazaki-pc-kaishu の <style> 内 okpc-lp-* 定義をそのまま切り出したもの。
 * 製造業ページ（/corporation-manufacturing）でも同一クラス構造で使い、UIを完全一致させる。
 * 【自動同期のしくみ】元ページのこのブロックを変えたら、ここにも同じ差分を反映すれば両ページが揃う。
 * クラス名・構造は元ページと一字一句同じにすること（勝手にリネームしない）。
 * 切り出し元: /okazaki-pc-kaishu インラインstyle 1225-1696行
 * ============================================================= */

    /* --- ベースレイアウト（元ページ okpc-lp-block/inner/heading 相当）---
     * 製造業ページには .okpc-lp-root ラッパーが無いため #pcw-corp-erase を起点に同じ見た目を再現する。
     * 元ページ定義（max-width:1200px / 中央寄せ / 見出しアンダーライン）と一致させる。 */
    .okpc-lp-block {
        padding: 60px 0;
    }

    .okpc-lp-inner {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .okpc-lp-bg-white {
        background-color: #ffffff;
    }

    .okpc-lp-bg-light {
        background-color: #f8f9fa;
    }

    /* 詳細度を製造業ページのmainクラス起点で上げ、corporation.css / home_2.css の汎用h2ルールに勝たせる */
    .pcdo-corporation-mfg-main .okpc-lp-heading,
    .okpc-lp-heading {
        font-size: 28px;
        font-weight: 700;
        text-align: center;
        margin: 0 0 40px;
        color: #0056b3;
        line-height: 1.25;
        letter-spacing: 0;
        position: relative;
    }

    .pcdo-corporation-mfg-main .okpc-lp-heading::after,
    .okpc-lp-heading::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background-color: #f59e0b;
        margin: 15px auto 0;
    }

    /* Material Icons（元ページ .okpc-lp-root スコープを #pcw-corp-erase に置換） */
    #pcw-corp-erase .material-symbols-outlined {
        font-family: 'Material Symbols Outlined';
        font-weight: normal;
        font-style: normal;
        font-size: 24px;
        line-height: 1;
        letter-spacing: normal;
        text-transform: none;
        display: inline-block;
        white-space: nowrap;
        word-wrap: normal;
        direction: ltr;
        vertical-align: middle;
    }

    .okpc-lp-download {
        max-width: 800px;
        margin: 40px auto 0;
        text-align: center;
        padding: 30px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .okpc-lp-download-title {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
    }

    .okpc-lp-download-text {
        font-size: 14px;
        color: #666;
        margin-bottom: 16px;
    }

    .okpc-lp-consent-name {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #f0fdf4;
        color: #166534;
        font-size: 14px;
        font-weight: 500;
        padding: 12px 20px;
        border-radius: 8px;
        border: 1px solid #bbf7d0;
    }

    .okpc-lp-consent-name .material-symbols-outlined {
        font-size: 20px;
    }

    .okpc-lp-download-btns {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .okpc-lp-download-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #059669;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        padding: 16px 32px;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s;
        box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
    }

    .okpc-lp-download-btn:hover {
        background: #047857;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
    }

    .okpc-lp-download-btn .material-symbols-outlined {
        font-size: 22px;
    }

    @media (max-width: 767px) {
        .okpc-lp-download-btns {
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .okpc-lp-download-btn {
            width: 100%;
            max-width: 300px;
            justify-content: center;
        }
    }

    /* ========================================
       セキュリティ
       ======================================== */
    .okpc-lp-security-card {
        max-width: 800px;
        margin: 0 auto;
        background: #fff;
        padding: 40px;
        border-radius: 12px;
        box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        border-top: 4px solid #0056b3;
    }

    .okpc-lp-security-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .okpc-lp-security-header .material-symbols-outlined {
        font-size: 40px;
        color: #0056b3;
    }

    .okpc-lp-security-title {
        font-size: 22px;
        font-weight: 700;
        color: #333;
    }

    .okpc-lp-security-text {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .okpc-lp-security-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .okpc-lp-security-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .okpc-lp-security-list .material-symbols-outlined {
        color: #22c55e;
        font-size: 20px;
    }

    .okpc-lp-security-note {
        font-size: 14px;
        color: #dc2626;
        margin-top: 15px;
        font-weight: 500;
    }

    /* セキュリティカード横並びレイアウト */
    .okpc-lp-security-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
        align-items: start;
    }

    @media (min-width: 768px) {
        .okpc-lp-security-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    .okpc-lp-security-img-wrap {
        text-align: center;
    }

    .okpc-lp-security-img {
        width: 100%;
        max-width: 400px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .okpc-lp-security-caption {
        font-size: 12px;
        color: #888;
        margin-top: 10px;
    }

    /* オプションカード */
    .okpc-lp-option-card {
        max-width: 800px;
        margin: 30px auto 0;
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        padding: 25px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .okpc-lp-option-badge {
        background: #0056b3;
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 4px;
        margin-right: 10px;
    }

    .okpc-lp-option-name {
        font-size: 18px;
        font-weight: 700;
        color: #333;
        display: inline;
    }

    .okpc-lp-option-desc {
        font-size: 14px;
        color: #666;
        margin-top: 8px;
    }

    .okpc-lp-option-sample {
        margin-top: 15px;
        text-align: center;
    }

    .okpc-lp-option-sample-img {
        max-width: 100%;
        max-height: 200px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border: 1px solid #e0e0e0;
    }

    .okpc-lp-option-sample-label {
        display: block;
        font-size: 12px;
        color: #888;
        margin-top: 8px;
    }

    /* 証明書サンプルギャラリー（カード外に配置） */
    .okpc-lp-certificate-samples {
        background: #f0f7ff;
        border-radius: 12px;
        padding: 25px;
        margin-top: 20px;
        border: 1px solid #bfdbfe;
    }

    .okpc-lp-certificate-samples-title {
        font-size: 16px;
        font-weight: 700;
        color: #0056b3;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .okpc-lp-certificate-samples-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .okpc-lp-certificate-sample-item {
        text-align: center;
        background: #fff;
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .okpc-lp-certificate-sample-item img {
        max-width: 100%;
        max-height: 180px;
        border-radius: 4px;
        border: 1px solid #e0e0e0;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .okpc-lp-certificate-sample-item img:hover {
        transform: scale(1.08);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .okpc-lp-certificate-sample-label {
        font-size: 13px;
        font-weight: 700;
        color: #333;
        margin-top: 10px;
    }

    @media (max-width: 480px) {
        .okpc-lp-certificate-samples {
            padding: 15px;
        }

        .okpc-lp-certificate-samples-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .okpc-lp-certificate-sample-item img {
            max-height: 150px;
        }
    }

    /* ライトボックス（全画面表示） */
    .okpc-lp-lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 99999;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .okpc-lp-lightbox.is-active {
        display: flex;
    }

    .okpc-lp-lightbox img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 0 30px rgba(0,0,0,0.5);
    }

    .okpc-lp-lightbox-close {
        position: absolute;
        top: 20px;
        right: 30px;
        color: #fff;
        font-size: 40px;
        font-weight: 300;
        cursor: pointer;
        transition: opacity 0.2s;
        line-height: 1;
    }

    .okpc-lp-lightbox-close:hover {
        opacity: 0.7;
    }

    .okpc-lp-lightbox-hint {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255,255,255,0.7);
        font-size: 14px;
    }

    .okpc-lp-option-price {
        text-align: right;
    }

    .okpc-lp-option-price-label {
        font-size: 13px;
        color: #666;
    }

    .okpc-lp-option-price-num {
        font-size: 28px;
        font-weight: 900;
        color: #333;
    }

    .okpc-lp-option-price-unit {
        font-size: 14px;
        font-weight: normal;
    }

    /* 基本料金カード */
    .okpc-lp-option-card--base {
        border: 2px solid #0056b3;
        background: #f0f7ff;
    }

    .okpc-lp-option-badge--base {
        background: #0056b3;
    }

    /* 無料オプションカード */
    .okpc-lp-option-card--free {
        border: 2px solid #22c55e;
        background: #f0fdf4;
    }

    .okpc-lp-option-badge--free {
        background: #22c55e;
    }

    .okpc-lp-option-note {
        font-size: 13px;
        color: #dc2626;
        margin-top: 6px;
        margin-bottom: 4px;
    }

    .okpc-lp-option-price-num--free {
        color: #22c55e;
    }

    /* サービス説明ボックス */
    .okpc-lp-service-info {
        max-width: 800px;
        margin: 30px auto 0;
        background: #f8f9fa;
        border-radius: 12px;
        padding: 25px 30px;
    }

    .okpc-lp-service-info-title {
        font-size: 16px;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
    }

    .okpc-lp-service-info-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .okpc-lp-service-info-list li {
        font-size: 14px;
        color: #666;
        line-height: 1.8;
        padding-left: 1.5em;
        position: relative;
        margin-bottom: 8px;
    }

    .okpc-lp-service-info-list li::before {
        content: "・";
        position: absolute;
        left: 0;
    }

    .okpc-lp-service-info-list li strong {
        color: #dc2626;
    }

    @media (max-width: 767px) {
        .okpc-lp-security-card,
        .okpc-lp-option-card {
            padding: 25px 20px;
        }

        .okpc-lp-option-card {
            flex-direction: column;
            text-align: center;
        }

        .okpc-lp-option-price {
            text-align: center;
        }

        .okpc-lp-service-info {
            padding: 20px;
        }
    }

/* ── このような状態でも無料で回収可能です（/okazaki-pc-kaishu から移植）── */
.pcdo-corporation-mfg-main .okpc-lp-conditions {
    max-width: 1000px;
    margin: 40px auto 0;
    padding-bottom: 50px;
}
.pcdo-corporation-mfg-main .okpc-lp-conditions-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}
.pcdo-corporation-mfg-main .okpc-lp-conditions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.pcdo-corporation-mfg-main .okpc-lp-condition-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}
.pcdo-corporation-mfg-main .okpc-lp-condition-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.pcdo-corporation-mfg-main .okpc-lp-condition-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}
.pcdo-corporation-mfg-main .okpc-lp-condition-label {
    padding: 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}
@media (max-width: 600px) {
    .pcdo-corporation-mfg-main .okpc-lp-conditions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
