@charset "UTF-8";
/*
 * manufacturer-detail.css
 * メーカー別 処分・回収ページ（/pc-manufacturer-recycling-in-okazaki/{slug}/）専用スタイル。
 *
 * 【出自】pages/area/_common.html に内包されていた okpc-lp 系スタイルを外部化したもの。
 *         地域ページ（/area/{slug}/）とデザインを揃えるため、クラス名・値はそのまま踏襲する。
 *         地域ページ側の _common.html は変更していない（既存ページへの影響を避けるため）。
 *
 * 【なぜ外部CSSか】メーカーページは Mac / 富士通 / NEC / 東芝 / Dell / HP / Lenovo と
 *                  7ページ以上に増える。HTMLに内包すると同じ 100KB 超を毎ページ転送する。
 *                  assets/css/okazaki-erase-shared.css と同じ「共通CSSの外出し」方針。
 *
 * 【編集方針】okpc-lp-* / okpc-voice-* / okpc-cf7-* / opct-trust-* / pcw-* は地域ページと共通の見た目。
 *             メーカーページ固有の追加分は末尾の「メーカーページ固有」ブロックにのみ書く。
 */

/* ========================================
   【重要】WordPress親テーマ要素の強制非表示
   ======================================== */
.column_sub,
.sidebar,
#sidebar,
#secondary,
.widget_wrap,
h1.wow,
.page-header,
header,
.primary_header,
#masthead,
.site-header,
.global-header,
#colophon,
.site-footer,
.global-footer,
.breadcrumb,
.breadcrumbs,
.entry-title,
.page-title,
h1.entry-title {
    display: none !important;
}

.column_main,
#main,
#primary,
.site-main,
.content-area,
.entry-content {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sec08,
main,
.container,
.site-content {
    padding-top: 0 !important;
    background: none !important;
    max-width: 100% !important;
}

html, body {
    overflow-x: hidden;
}

/* ========================================
   リセット・ベーススタイル
   ======================================== */
.okpc-lp-root * {
    box-sizing: border-box;
}

.okpc-lp-root {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
    line-height: 1.8;
}

.okpc-lp-root img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* h3タグの独立化（親テーマの継承を防止） */
.okpc-lp-root h3 {
    all: unset;
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #333;
    margin: 0;
    padding: 0;
}

.okpc-lp-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.okpc-lp-block {
    padding: 60px 0;
}

/* PC時のみ WordPress親テーマのsection margin-bottom(7%)を上書き */
@media (min-width: 768px) {
    .okpc-lp-root section {
        margin-bottom: 0% !important;
    }
    /* ヒーローセクションのみ下パディングを維持 */
    .okpc-lp-hero {
        padding-bottom: 5% !important;
    }
}

.okpc-lp-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #0056b3;
    position: relative;
}

.okpc-lp-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #f59e0b;
    margin: 15px auto 0;
}

.okpc-lp-bg-light {
    background-color: #f8f9fa;
}

.okpc-lp-bg-white {
    background-color: #ffffff;
}

.okpc-lp-bg-softblue {
    background: linear-gradient(180deg, #eef6ff 0%, #f7fbff 100%);
}

/* Material Icons */
.okpc-lp-root .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-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.okpc-lp-sticky.is-visible {
    transform: translateY(0);
}

.okpc-lp-sticky-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.okpc-lp-sticky-logo {
    width: 180px;
    height: 36px;
    object-fit: contain;
}

.okpc-lp-sticky-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.okpc-lp-sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0056b3;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.okpc-lp-sticky-btn:hover {
    background: #004494;
    color: #fff;
}

.okpc-lp-sticky-btn-label {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.85;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .okpc-lp-sticky-inner {
        padding: 8px 12px;
    }

    .okpc-lp-sticky-logo {
        width: 120px;
        height: 24px;
    }

    .okpc-lp-sticky-btns {
        gap: 4px;
    }

    .okpc-lp-sticky-btn {
        font-size: 12px;
        padding: 6px 8px;
        gap: 3px;
    }

    .okpc-lp-sticky-btn .material-symbols-outlined {
        font-size: 16px;
    }

    .okpc-lp-sticky-btn-label {
        display: none;
    }
}

/* 曜日切替：平日のみ表示される要素（デフォルト表示、土日祝にJSで非表示） */
.okpc-weekend .okpc-weekday-only {
    display: none;
}

/* ========================================
   モバイル固定フッター
   ======================================== */
.okpc-lp-mobilebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    padding: 12px;
    display: flex;
    gap: 10px;
}

.okpc-lp-mobilebar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 6px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.okpc-lp-mobilebar-btn--primary {
    background: #0056b3;
    color: #fff;
}

.okpc-lp-mobilebar-btn--accent {
    background: #f59e0b;
    color: #fff;
}

@media (min-width: 768px) {
    .okpc-lp-mobilebar {
        display: none;
    }
}

/* ========================================
   ヘッダー
   ======================================== */
.okpc-lp-header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.okpc-lp-header-top {
    background: #0056b3;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-weight: 500;
}

.okpc-lp-header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.okpc-lp-header-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.okpc-lp-header-logo {
    width: 200px;
    height: 44px;
    object-fit: contain;
}

.okpc-lp-header-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.okpc-lp-header-sub {
    font-size: 12px;
    color: #666;
}

.okpc-lp-header-cta {
    display: none;
    align-items: center;
    gap: 20px;
}

.okpc-lp-header-tel {
    text-align: right;
}

.okpc-lp-header-tel-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    margin-bottom: 2px;
}

.okpc-lp-header-tel-row:last-child {
    margin-bottom: 0;
}

.okpc-lp-header-tel-label {
    font-size: 11px;
    color: #fff;
    background: #0056b3;
    padding: 1px 8px;
    border-radius: 3px;
    display: inline-block;
    white-space: nowrap;
    line-height: 1.6;
}

.okpc-lp-header-tel-label--sub {
    background: #e8833a;
}

.okpc-lp-header-tel-num {
    font-size: 22px;
    font-weight: 700;
    color: #0056b3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.okpc-lp-header-tel-hours {
    font-size: 10px;
    color: #888;
    white-space: nowrap;
}

.okpc-lp-header-btn {
    background: #f59e0b;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.okpc-lp-header-btn:hover {
    background: #d97706;
    color: #fff;
}

@media (min-width: 768px) {
    .okpc-lp-header-cta {
        display: flex;
    }
}

/* ========================================
   ヒーローセクション
   ======================================== */
.okpc-lp-hero {
    background: linear-gradient(135deg, #ffffff 0%, #e6f0fa 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.okpc-lp-hero::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: rgba(0,86,179,0.03);
    transform: skewX(-12deg) translateX(80px);
    display: none;
}

@media (min-width: 1024px) {
    .okpc-lp-hero::before {
        display: block;
    }
}

.okpc-lp-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .okpc-lp-hero-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.okpc-lp-hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .okpc-lp-hero-content {
        text-align: left;
    }
}

.okpc-lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e6f0fa;
    border: 1px solid #0056b3;
    color: #0056b3;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.okpc-lp-hero-title {
    font-size: 36px;
    font-weight: 900;
    /* 回収ページ(camera-recovery等)と同じ「白地・紺文字・背景なし」FVに揃える。
       home_2.css インライン時にカスケード順が変わり外部CSSの h1 背景(紺)が
       勝ってしまうため、!important で正解値を確実に当てる。 */
    color: #333 !important;
    background: transparent !important;
    line-height: 1.3;
    margin-bottom: 20px;
    padding: 0 !important;
}

@media (min-width: 1024px) {
    .okpc-lp-hero-title {
        font-size: 48px;
    }
}

.okpc-lp-hero-title-em {
    /* home_2.css インライン時に span/em が display:block・font-size:22px に
       化けて強調語だけ小さい別行に浮くため、回収ページと同じ「親と同サイズの
       インライン強調」を !important で固定する。 */
    display: inline !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    color: #0056b3 !important;
    background: transparent !important;
    text-decoration: underline;
    text-decoration-color: #f59e0b;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

.okpc-lp-hero-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 500px;
    /* 固定<br>を撤去し自然折り返しに任せる。balanceで各行の文字数を
       均し、行頭1文字残り・中途半端な割れ（「ウイルスが心配」だけ次行）を防ぐ。 */
    text-wrap: balance;
}

@media (min-width: 1024px) {
    .okpc-lp-hero-text {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 1023px) {
    .okpc-lp-hero-text {
        margin-left: auto;
        margin-right: auto;
    }
}

.okpc-lp-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0056b3;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,86,179,0.3);
    transition: all 0.3s;
}

.okpc-lp-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,86,179,0.4);
    color: #fff;
}

.okpc-lp-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.okpc-lp-hero-stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.okpc-lp-hero-stat-num {
    font-size: 32px;
    font-weight: 900;
    color: #0056b3;
}

.okpc-lp-hero-stat-unit {
    font-size: 16px;
    color: #333;
}

/* ヒーロー画像（右カラム） */
.okpc-lp-hero-visual {
    position: relative;
    padding: 0 20px;
}

.okpc-lp-hero-img-frame {
    background: #fff;
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transform: rotate(2deg);
    transition: transform 0.5s;
}

.okpc-lp-hero-img-frame:hover {
    transform: rotate(0deg);
}

.okpc-lp-hero-img {
    width: 100%;
    border-radius: 12px;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.okpc-lp-hero-badges {
    position: absolute;
    bottom: -20px;
    left: 0;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.okpc-lp-hero-badges-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.okpc-lp-hero-badges-item .material-symbols-outlined {
    font-size: 32px;
    color: #0056b3;
}

.okpc-lp-hero-badges-item span:last-child {
    font-size: 10px;
    font-weight: 700;
    color: #666;
}

.okpc-lp-hero-badges-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}

@media (max-width: 767px) {
    .okpc-lp-hero {
        padding: 40px 20px;
    }

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

    .okpc-lp-hero-text {
        font-size: 16px;
    }

    .okpc-lp-hero-btn {
        width: 100%;
        justify-content: center;
        font-size: 18px;
        padding: 16px 30px;
    }

    .okpc-lp-hero-stats {
        gap: 8px;
    }

    .okpc-lp-hero-stat-label {
        font-size: 11px;
    }

    .okpc-lp-hero-stat-num {
        font-size: 22px;
    }

    .okpc-lp-hero-stat-unit {
        font-size: 12px;
    }

    .okpc-lp-hero-badges {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        justify-content: center;
    }
}

/* ========================================
   3つの特徴
   ======================================== */
.okpc-lp-points {
    padding: 30px 20px;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.okpc-lp-points-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.okpc-lp-point-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.okpc-lp-point-icon {
    width: 56px;
    height: 56px;
    background: #f59e0b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.okpc-lp-point-icon .material-symbols-outlined {
    font-size: 28px;
}

.okpc-lp-point-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.okpc-lp-point-text {
    font-size: 14px;
    color: #666;
}

@media (max-width: 767px) {
    .okpc-lp-points-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   3ステップ
   ======================================== */
.okpc-lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.okpc-lp-step-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

.okpc-lp-step-num {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #f59e0b;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}

.okpc-lp-step-icon {
    width: 100%;
    height: 200px;
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
}

.okpc-lp-step-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.okpc-lp-step-text {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .okpc-lp-steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ========================================
   ダウンロードセクション
   ======================================== */
.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;
}

.okpc-lp-download-btn-text {
    display: block;
    line-height: 1.45;
    text-align: center;
}

.okpc-lp-security-points {
    padding: 8px 0 0;
}

.okpc-lp-security-points .okpc-lp-security-list li {
    margin-bottom: 14px;
}

.okpc-lp-security-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.okpc-lp-security-actions {
    gap: 12px;
    margin-top: 18px;
}

@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;
    }
}

@media (min-width: 768px) {
    .okpc-lp-security-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .okpc-lp-security-actions .okpc-lp-download-btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        padding: 16px 20px;
        text-align: center;
        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-alert {
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 12px;
    padding: 18px 20px;
    margin: 0 0 20px;
}

.okpc-lp-security-alert-title {
    font-size: 16px;
    font-weight: 700;
    color: #c2410c;
    margin-bottom: 10px;
}

.okpc-lp-security-alert-list {
    margin: 0;
    padding-left: 1.2em;
    color: #7c2d12;
    font-size: 14px;
    line-height: 1.9;
}

.okpc-lp-download-btn--secondary {
    background: #0056b3;
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.3);
}

.okpc-lp-download-btn--secondary:hover {
    background: #004494;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.4);
}

/* セキュリティカード横並びレイアウト */
.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;
    }
}

/* ========================================
   FAQ
   ======================================== */
.okpc-lp-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.okpc-lp-faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.okpc-lp-faq-item[open] {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.okpc-lp-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 20px;
    cursor: pointer;
}

.okpc-lp-faq-q h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    flex: 1;
    margin: 0;
}

.okpc-lp-faq-q::-webkit-details-marker {
    display: none;
}

.okpc-lp-faq-toggle {
    transition: transform 0.3s;
}

.okpc-lp-faq-item[open] .okpc-lp-faq-toggle {
    transform: rotate(180deg);
}

.okpc-lp-faq-a {
    padding: 0 20px 20px;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

/* ========================================
   フッターCTA
   ======================================== */
.okpc-lp-cta {
    background: #1a202c;
    color: #fff;
    padding: 60px 20px 100px;
    text-align: center;
}

.okpc-lp-cta-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff !important;
}

.okpc-lp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #0056b3;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    margin: 10px;
    transition: all 0.3s;
}

.okpc-lp-cta-btn:hover {
    background: #f0f0f0;
    color: #0056b3;
    transform: translateY(-2px);
}

.okpc-lp-cta-phones {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.okpc-lp-cta-phone {
    padding: 24px 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    text-align: center;
    flex: 0 1 320px;
}

.okpc-lp-cta-phone--primary {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

.okpc-lp-cta-phone-store {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.okpc-lp-cta-phone-label {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.okpc-lp-cta-phone-num {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

.okpc-lp-cta-phone-time {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
}

@media (max-width: 767px) {
    .okpc-lp-cta {
        padding-bottom: 120px;
    }

    .okpc-lp-cta-title {
        font-size: 22px;
    }

    .okpc-lp-cta-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        margin: 10px 0;
    }

    .okpc-lp-cta-phones {
        flex-direction: column;
        align-items: center;
    }

    .okpc-lp-cta-phone {
        width: 100%;
        max-width: 340px;
        flex-basis: auto;
    }

    .okpc-lp-cta-phone-num {
        font-size: 28px;
    }
}

/* ========================================
   運営情報
   ======================================== */
.okpc-lp-company {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.okpc-lp-company-name {
    font-size: 20px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 5px;
}

.okpc-lp-company-sub {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.okpc-lp-company-table {
    width: 100%;
    font-size: 14px;
}

.okpc-lp-company-table dt {
    color: #666;
    font-weight: 700;
    width: 100px;
    float: left;
    clear: left;
    margin-bottom: 15px;
}

.okpc-lp-company-table dd {
    margin-left: 110px;
    margin-bottom: 15px;
}

.okpc-lp-company-table dd a {
    color: #0056b3;
    text-decoration: none;
    word-break: break-all;
}

.okpc-lp-company-table dd a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .okpc-lp-company {
        padding: 25px 20px;
    }

    .okpc-lp-company-table dt {
        float: none;
        width: auto;
        margin-bottom: 5px;
    }

    .okpc-lp-company-table dd {
        margin-left: 0;
        margin-bottom: 20px;
    }
}

/* ========================================
   フッター
   ======================================== */
.okpc-lp-footer {
    text-align: center;
    padding: 20px;
    background: #1a202c;
    color: #666;
    font-size: 12px;
}

/* ========================================
   ユーティリティクラス
   ======================================== */
/* スマホ表示時のみ改行 */
.okpc-lp-sp-only {
    display: none;
}

.okpc-lp-pc-only {
    display: inline;
}

@media (max-width: 767px) {
    .okpc-lp-sp-only {
        display: inline;
    }

    .okpc-lp-pc-only {
        display: none;
    }
}

/* 店舗注意書き */
.okpc-lp-company-note {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
}

/* 店舗説明文 */
.okpc-lp-company-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

.okpc-lp-company-desc p {
    margin: 0 0 8px 0;
}

.okpc-lp-company-desc .okpc-lp-company-note {
    margin-top: 10px;
}

/* ========================================
   その他回収品目
   ======================================== */
.okpc-lp-other-services {
    max-width: 1000px;
    margin: 0 auto;
}

.okpc-lp-other-services-lead {
    text-align: center;
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin: 0 auto 30px;
    max-width: 760px;
}

.okpc-lp-other-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.okpc-lp-other-services-card {
    background: #fff;
    border: 1px solid #dbe7f3;
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.okpc-lp-other-services-name {
    font-size: 17px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 8px;
}

.okpc-lp-other-services-note {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

.okpc-lp-other-services-box {
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 22px 24px;
}

.okpc-lp-other-services-box-title {
    font-size: 16px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 10px;
}

.okpc-lp-other-services-box-text {
    font-size: 14px;
    color: #333;
    line-height: 1.9;
}

@media (max-width: 767px) {
    .okpc-lp-other-services-grid {
        grid-template-columns: 1fr;
    }

    .okpc-lp-other-services-lead {
        font-size: 14px;
    }
}

/* ========================================
   ヒーロー画像
   ======================================== */
.okpc-lp-hero-img-wrap {
    margin-top: 40px;
    position: relative;
}

.okpc-lp-hero-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: block;
}

/* ========================================
   選ばれる理由
   ======================================== */
.okpc-lp-reasons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 6枚（多いご相談）専用。5列だと5+1で割れて見栄えが悪いため、
   PCでは3列（3+3）で均等に並べる。幅も6枚に合わせて絞る。 */
.okpc-lp-reasons-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
    gap: 18px;
}

.okpc-lp-reason-card {
    background: #f8f9fa;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.okpc-lp-reason-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.okpc-lp-reason-icon {
    width: 48px;
    height: 48px;
    background: #e6f0fa;
    color: #0056b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.okpc-lp-reason-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.okpc-lp-reason-text {
    font-size: 12px;
    color: #666;
}

@media (max-width: 767px) {
    .okpc-lp-reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .okpc-lp-reasons-grid > *:last-child {
        grid-column: span 2;
    }

    /* 6枚グリッドは2列で3行ちょうど割り切れる。
       5枚用の「最後の1枚を横いっぱい」打ち消し、通常の1セル幅に戻す。 */
    .okpc-lp-reasons-grid--3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: none;
    }

    .okpc-lp-reasons-grid--3 > *:last-child {
        grid-column: auto;
    }
}

/* ========================================
   なぜ無料か
   ======================================== */
.okpc-lp-whyfree {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.okpc-lp-whyfree-label {
    color: #0056b3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.okpc-lp-whyfree-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.okpc-lp-whyfree-title em {
    color: #0056b3;
    font-style: normal;
}

.okpc-lp-whyfree-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.okpc-lp-whyfree-box {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #0056b3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.okpc-lp-whyfree-box-title {
    font-size: 14px;
    font-weight: 700;
    color: #0056b3;
    margin-bottom: 5px;
}

.okpc-lp-whyfree-box-text {
    font-size: 13px;
    color: #666;
}

.okpc-lp-whyfree-img-wrap {
    position: relative;
}

.okpc-lp-whyfree-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.okpc-lp-whyfree-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.okpc-lp-whyfree-badge-label {
    font-size: 10px;
    color: #666;
    font-weight: 700;
    margin-bottom: 5px;
}

.okpc-lp-whyfree-badge-tags {
    display: flex;
    gap: 6px;
}

.okpc-lp-whyfree-badge-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}

.okpc-lp-whyfree-badge-tag--gold {
    background: #fef3c7;
    color: #b45309;
}

.okpc-lp-whyfree-badge-tag--silver {
    background: #e5e7eb;
    color: #4b5563;
}

.okpc-lp-whyfree-badge-tag--copper {
    background: #ffedd5;
    color: #c2410c;
}

@media (max-width: 767px) {
    .okpc-lp-whyfree {
        grid-template-columns: 1fr;
    }

    .okpc-lp-whyfree-title {
        font-size: 22px;
    }
}

/* ========================================
   回収対象品目
   ======================================== */
.okpc-lp-items {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.okpc-lp-items-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.okpc-lp-items-box--ok {
    border: 2px solid #0056b3;
    background: #f0f7ff;
}

.okpc-lp-items-box--ng {
    border: 2px solid #d32f2f;
    background: #fff5f5;
}

.okpc-lp-items-header {
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.okpc-lp-items-header--ok {
    background: #0056b3;
}

.okpc-lp-items-header--ng {
    background: #d32f2f;
}

.okpc-lp-items-body {
    padding: 25px;
    background: #fff;
}

.okpc-lp-items-body--ok {
    background: #f0f7ff;
}

.okpc-lp-items-body--ng {
    background: #fff5f5;
}

/* カード画像の背景を各セクションに合わせる */
.okpc-lp-items-body--ng .okpc-lp-items-card-img {
    background: transparent;
}

.okpc-lp-items-body--paid .okpc-lp-items-card-img {
    background: transparent;
}

.okpc-lp-items-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.okpc-lp-items-brand {
    background: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    font-size: 12px;
    font-weight: 700;
    color: #666;
}

.okpc-lp-items-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 15px;
    margin-bottom: 15px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #0056b3 #e0e0e0;
}

.okpc-lp-items-grid::-webkit-scrollbar {
    height: 8px;
}

.okpc-lp-items-grid::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-radius: 4px;
}

.okpc-lp-items-grid::-webkit-scrollbar-thumb {
    background: #0056b3;
    border-radius: 4px;
}

/* 回収不可セクションのスクロールバー色 */
.okpc-lp-items-body--ng .okpc-lp-items-grid {
    scrollbar-color: #dc2626 #fecaca;
}

.okpc-lp-items-body--ng .okpc-lp-items-grid::-webkit-scrollbar-track {
    background: #fecaca;
}

.okpc-lp-items-body--ng .okpc-lp-items-grid::-webkit-scrollbar-thumb {
    background: #dc2626;
}

/* スクロールヒント */
.okpc-lp-items-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    padding-right: 5px;
}

.okpc-lp-items-scroll-hint .material-symbols-outlined {
    font-size: 18px;
    animation: okpc-scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes okpc-scroll-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* PC表示時: 回収不可・有料回収はカード数が少ないためスクロールヒント非表示 */
@media (min-width: 768px) {
    .okpc-lp-items-body--ng .okpc-lp-items-scroll-hint,
    .okpc-lp-items-body--paid .okpc-lp-items-scroll-hint {
        display: none;
    }
    .okpc-lp-items-body--ng .okpc-lp-items-grid-wrapper::after,
    .okpc-lp-items-body--paid .okpc-lp-items-grid-wrapper::after {
        display: none;
    }
}

/* グリッドコンテナ - 右端フェード効果 */
.okpc-lp-items-grid-wrapper {
    position: relative;
}

.okpc-lp-items-grid-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: calc(100% - 15px);
    background: linear-gradient(to right, transparent, rgba(240,247,255,0.9));
    pointer-events: none;
}

.okpc-lp-items-body--ng .okpc-lp-items-grid-wrapper::after {
    background: linear-gradient(to right, transparent, rgba(254,242,242,0.9));
}

.okpc-lp-items-body--paid .okpc-lp-items-grid-wrapper::after {
    background: linear-gradient(to right, transparent, rgba(255,251,235,0.9));
}

.okpc-lp-items-card {
    text-align: center;
    flex: 0 0 260px;
    min-width: 260px;
}

.okpc-lp-items-card-img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

@media (max-width: 767px) {
    .okpc-lp-items-card {
        flex: 0 0 160px;
        min-width: 160px;
    }

    .okpc-lp-items-card-img {
        height: 120px;
        padding: 10px;
    }
}

.okpc-lp-items-card-icon {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 10px;
}

.okpc-lp-items-card-icon .material-symbols-outlined {
    font-size: 48px;
    color: #999;
}

.okpc-lp-items-card-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.okpc-lp-items-card-note {
    font-size: 11px;
    color: #666;
}

.okpc-lp-items-note {
    background: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}

.okpc-lp-items-note--ok {
    border: 1px solid #bfdbfe;
}

.okpc-lp-items-note--ng {
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-weight: 700;
}

/* その他品目テキストリスト */
.okpc-lp-items-text-list {
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 15px 20px;
    margin-top: 15px;
    font-size: 14px;
    color: #333;
    line-height: 1.8;
}

.okpc-lp-items-text-list strong {
    color: #0056b3;
    display: block;
    margin-bottom: 5px;
}

.okpc-lp-items-text-list--ng {
    background: #fef2f2;
    border-color: #fecaca;
}

.okpc-lp-items-text-list--ng strong {
    color: #b91c1c;
}

/* 有料回収セクション */
.okpc-lp-items-paid {
    margin-top: 30px;
}

.okpc-lp-items-box--paid {
    border: 2px solid #f59e0b;
    background: #fffbeb;
}

.okpc-lp-items-header--paid {
    background: #f59e0b;
}

.okpc-lp-items-body--paid {
    background: #fffbeb;
}

.okpc-lp-items-grid--paid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.okpc-lp-items-grid--paid .okpc-lp-items-card {
    flex: 0 0 auto;
    width: 150px;
}

.okpc-lp-items-note--paid {
    border: 1px solid #fde68a;
    color: #b45309;
    font-weight: 700;
}

/* ========================================
   状態写真
   ======================================== */
.okpc-lp-conditions {
    max-width: 1000px;
    margin: 40px auto 0;
}

.okpc-lp-conditions-title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.okpc-lp-conditions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.okpc-lp-condition-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s;
}

.okpc-lp-condition-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.okpc-lp-condition-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.okpc-lp-condition-label {
    padding: 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

@media (max-width: 767px) {
    .okpc-lp-conditions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   マップポップアップ付きCTA
   ======================================== */
.okpc-lp-cta-with-map {
    position: relative;
    display: inline-block;
}

.okpc-lp-map-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.okpc-lp-map-popup::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #fff;
}

.okpc-lp-cta-with-map:hover .okpc-lp-map-popup {
    opacity: 1;
    visibility: visible;
}

.okpc-lp-map-popup iframe {
    border-radius: 8px;
    display: block;
}

.okpc-lp-map-popup-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    margin-top: 8px;
}

@media (max-width: 767px) {
    .okpc-lp-map-popup {
        display: none;
    }
}

/* ========================================
   信頼訴求セクション（PC堂 About Us）
   ======================================== */
.opct-trust {
background: #fdf9f0;
padding: 72px 0;
}
.opct-trust-inner {
max-width: 1000px;
margin: 0 auto;
padding: 0 20px;
}

/* ヘッダー */
.opct-trust-header {
margin-bottom: 40px;
}
.opct-trust-label {
font-size: 11px;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: #ee9d2b;
margin-bottom: 12px;
display: block;
}
.opct-trust-title {
font-size: clamp(22px, 4vw, 34px);
font-weight: 800;
line-height: 1.4;
color: #1a1a1a;
margin-bottom: 16px;
/* WordPress親テーマ h2 装飾を強制リセット */
padding: 0 !important;
border: none !important;
background: none !important;
text-align: left !important;
box-shadow: none !important;
}
.opct-trust-title::before,
.opct-trust-title::after,
.opct-trust-inner h2::before,
.opct-trust-inner h2::after {
display: none !important;
content: none !important;
}
.opct-trust-subtitle {
font-size: 15px;
color: #555;
line-height: 1.85;
}

/* 2カラムレイアウト */
.opct-trust-layout {
display: grid;
grid-template-columns: 1fr;
gap: 32px;
margin-bottom: 40px;
}

/* 左: 写真カラム */
.opct-trust-photos {
display: flex;
flex-direction: column;
gap: 10px;
}
.opct-trust-main-photo {
width: 100%;
border-radius: 12px;
overflow: hidden;
aspect-ratio: 4 / 3;
position: relative;
background: #e0d8cc;
}
.opct-trust-main-photo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.opct-trust-photo-caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.5);
color: #fff;
font-size: 12px;
padding: 8px 14px;
text-align: center;
letter-spacing: 0.04em;
}
.opct-trust-sub-photos {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
.opct-trust-sub-photo {
border-radius: 8px;
overflow: hidden;
aspect-ratio: 4 / 3;
background: #e0d8cc;
}
.opct-trust-sub-photo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

/* 右: テキストカラム */
.opct-trust-text-col {
display: flex;
flex-direction: column;
gap: 20px;
justify-content: center;
}
.opct-trust-text {
font-size: 15px;
line-height: 1.9;
color: #444;
}

/* お客様の声カード（手書きアンケート風） */
.opct-trust-voice {
background: #fffef8 !important;
border: 1px solid #d5cfc3 !important;
border-left: none !important;
border-radius: 4px !important;
padding: 0 !important;
box-shadow: 3px 4px 10px rgba(0,0,0,0.07) !important;
transform: rotate(-0.4deg) !important;
overflow: hidden !important;
}
.opct-trust-voice-label {
font-size: 12px !important;
font-weight: 600 !important;
color: #8a8172 !important;
letter-spacing: 0.08em !important;
text-transform: none !important;
margin: 0 !important;
background: #f0ece2 !important;
border-bottom: 1px dashed #c9c3b5 !important;
padding: 10px 18px !important;
}
.opct-trust-voice-text {
font-family: 'Klee One', cursive !important;
font-size: 20px !important;
font-weight: 600 !important;
color: #1a1a1a !important;
line-height: 2 !important;
margin: 0 !important;
padding: 20px 22px 0 !important;
background-image: repeating-linear-gradient(
    transparent,
    transparent 31px,
    #e8e2d6 31px,
    #e8e2d6 32px
) !important;
background-position: 0 8px !important;
}
.opct-trust-voice-text::before { content: '「' !important; }
.opct-trust-voice-text::after  { content: '」' !important; }
.opct-trust-voice-from {
font-size: 14px !important;
color: #666 !important;
padding: 10px 22px 20px !important;
margin: 0 !important;
border-top: 1px solid #e0dbd0 !important;
margin: 8px 22px 0 !important;
padding: 8px 0 20px !important;
}

/* CTA */
.opct-trust-cta-wrap {
text-align: center;
padding-top: 8px;
}
.opct-trust-cta-note {
font-size: 14px;
color: #666;
margin-bottom: 16px;
line-height: 1.7;
}
.opct-trust-cta {
display: flex;
flex-direction: column;
gap: 12px;
justify-content: center;
align-items: center;
}
.opct-trust-btn-phone {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
background: #0056b3;
color: #fff;
font-size: 16px;
font-weight: 700;
padding: 16px 32px;
border-radius: 8px;
text-decoration: none;
width: 100%;
max-width: 280px;
box-shadow: 0 4px 15px rgba(0,86,179,0.3);
transition: all 0.3s;
}
.opct-trust-btn-phone:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,86,179,0.4);
color: #fff;
}
.opct-trust-btn-map {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 8px;
background: #fff;
color: #0056b3;
font-size: 14px;
font-weight: 600;
padding: 16px 32px;
border-radius: 8px;
border: 1.5px solid #0056b3;
text-decoration: none;
width: 100%;
max-width: 280px;
transition: all 0.3s;
}
.opct-trust-btn-map:hover {
background: #f0f5ff;
color: #0056b3;
transform: translateY(-2px);
}

@media (min-width: 768px) {
.opct-trust-layout {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.opct-trust-cta {
    flex-direction: row;
}
.opct-trust-btn-phone,
.opct-trust-btn-map {
    width: auto;
}
}

/* ========================================
   お申し込みフォーム（Contact Form 7）
   ======================================== */
.okpc-cf7-section {
background: #f7f9fc !important;
padding: 72px 0 !important;
}
.okpc-cf7-inner {
max-width: 680px !important;
margin: 0 auto !important;
padding: 0 20px !important;
}
.okpc-cf7-label-tag {
display: inline-block !important;
font-size: 11px !important;
font-weight: 700 !important;
letter-spacing: 0.14em !important;
text-transform: uppercase !important;
color: #0056b3 !important;
margin-bottom: 12px !important;
}
.okpc-cf7-title {
font-size: clamp(20px, 4vw, 30px) !important;
font-weight: 800 !important;
color: #1a1a1a !important;
margin-bottom: 10px !important;
padding: 0 !important;
border: none !important;
background: none !important;
box-shadow: none !important;
text-align: left !important;
}
.okpc-cf7-title::before,
.okpc-cf7-title::after {
display: none !important;
content: none !important;
}
.okpc-cf7-desc {
font-size: 14px !important;
color: #555 !important;
line-height: 1.8 !important;
margin-bottom: 36px !important;
}

/* 法人案内バナー */
.okpc-cf7-corp-note {
background: #eef4fb !important;
border: 1.5px solid #b3d1f0 !important;
border-radius: 8px !important;
padding: 14px 18px !important;
font-size: 14px !important;
color: #1a5a96 !important;
line-height: 1.7 !important;
margin-bottom: 32px !important;
}

/* フォーム行 */
.okpc-cf7-section .wpcf7 {
max-width: 100% !important;
margin: 0 !important;
padding: 0 !important;
}
.okpc-cf7-row {
display: flex !important;
flex-direction: column !important;
gap: 6px !important;
margin-bottom: 22px !important;
}
.okpc-cf7-row label {
font-size: 14px !important;
font-weight: 600 !important;
color: #333 !important;
display: flex !important;
align-items: center !important;
gap: 8px !important;
margin-bottom: 0 !important;
}

/* 必須・任意バッジ */
.okpc-cf7-req {
font-size: 11px !important;
font-weight: 700 !important;
color: #fff !important;
background: #e03a3a !important;
padding: 2px 7px !important;
border-radius: 3px !important;
line-height: 1 !important;
}
.okpc-cf7-opt {
font-size: 11px !important;
font-weight: 700 !important;
color: #fff !important;
background: #aaa !important;
padding: 2px 7px !important;
border-radius: 3px !important;
line-height: 1 !important;
}

/* 入力フィールド */
.okpc-cf7-section .wpcf7-form-control-wrap {
display: block !important;
}
.okpc-cf7-section input[type="text"],
.okpc-cf7-section input[type="tel"],
.okpc-cf7-section input[type="email"],
.okpc-cf7-section input[type="date"],
.okpc-cf7-section select,
.okpc-cf7-section textarea {
width: 100% !important;
padding: 14px 16px !important;
border: 1.5px solid #ccc !important;
border-radius: 8px !important;
font-size: 15px !important;
color: #333 !important;
background: #fff !important;
transition: border-color 0.2s, box-shadow 0.2s !important;
box-sizing: border-box !important;
font-family: inherit !important;
-webkit-appearance: none !important;
appearance: none !important;
margin: 0 !important;
line-height: 1.5 !important;
}
.okpc-cf7-section input:focus,
.okpc-cf7-section select:focus,
.okpc-cf7-section textarea:focus {
outline: none !important;
border-color: #0056b3 !important;
box-shadow: 0 0 0 3px rgba(0,86,179,0.12) !important;
}

/* セレクトボックス */
.okpc-cf7-section select {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23555' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
background-repeat: no-repeat !important;
background-position: right 14px center !important;
padding-right: 40px !important;
cursor: pointer !important;
}

/* テキストエリア */
.okpc-cf7-section textarea {
resize: vertical !important;
min-height: 120px !important;
}

/* 送信ボタン */
.okpc-cf7-section input[type="submit"] {
display: block !important;
width: 100% !important;
background: #0056b3 !important;
color: #fff !important;
font-size: 17px !important;
font-weight: 700 !important;
padding: 18px !important;
border-radius: 8px !important;
border: none !important;
cursor: pointer !important;
box-shadow: 0 4px 15px rgba(0,86,179,0.3) !important;
transition: all 0.3s !important;
margin-top: 12px !important;
font-family: inherit !important;
-webkit-appearance: none !important;
appearance: none !important;
letter-spacing: 0.04em !important;
}
.okpc-cf7-section input[type="submit"]:hover {
transform: translateY(-2px) !important;
box-shadow: 0 6px 20px rgba(0,86,179,0.4) !important;
}

/* CF7 スピナー */
.okpc-cf7-section .wpcf7-spinner {
display: block !important;
margin: 12px auto 0 !important;
}

/* バリデーション */
.okpc-cf7-section .wpcf7-not-valid {
border-color: #e03a3a !important;
}
.okpc-cf7-section .wpcf7-not-valid-tip {
color: #e03a3a !important;
font-size: 12px !important;
margin-top: 4px !important;
}

/* 送信結果メッセージ */
.okpc-cf7-section .wpcf7-response-output {
margin: 20px 0 0 !important;
padding: 16px 20px !important;
border-radius: 8px !important;
font-size: 14px !important;
font-weight: 600 !important;
text-align: center !important;
}
.okpc-cf7-section .wpcf7 form.sent .wpcf7-response-output {
background: #e8f5e9 !important;
border-color: #4caf50 !important;
color: #2e7d32 !important;
}
.okpc-cf7-section .wpcf7 form.failed .wpcf7-response-output,
.okpc-cf7-section .wpcf7 form.spam .wpcf7-response-output,
.okpc-cf7-section .wpcf7 form.invalid .wpcf7-response-output {
background: #fdecea !important;
border-color: #e03a3a !important;
color: #b71c1c !important;
}

/* CF7送信ボタン下の余白を詰める */
.wpcf7-form p:last-of-type {
margin-bottom: 0 !important;
}

/* プライバシー注記 */
.okpc-cf7-privacy {
margin-top: 8px !important;
font-size: 12px !important;
color: #888 !important;
text-align: center !important;
line-height: 1.7 !important;
}

/* ========================================
   お客様の声セクション（手書きアンケート風）
   ======================================== */
section.okpc-voice-section,
.okpc-voice-section {
background: #f5f0e8 !important;
padding: 72px 0 !important;
margin: 0 !important;
border: none !important;
box-shadow: none !important;
width: 100% !important;
box-sizing: border-box !important;
display: block !important;
}
.okpc-voice-section .okpc-voice-inner,
.okpc-voice-inner {
max-width: 1000px !important;
margin: 0 auto !important;
padding: 0 20px !important;
box-sizing: border-box !important;
}

/* 見出し */
.okpc-voice-section h2.okpc-voice-heading,
h2.okpc-voice-heading,
.okpc-voice-heading {
font-size: clamp(20px, 4vw, 28px) !important;
font-weight: 800 !important;
color: #3a3a3a !important;
text-align: center !important;
margin: 0 0 12px 0 !important;
padding: 0 !important;
border: none !important;
background: none !important;
box-shadow: none !important;
letter-spacing: 0.06em !important;
line-height: 1.4 !important;
}
.okpc-voice-section h2.okpc-voice-heading::before,
.okpc-voice-section h2.okpc-voice-heading::after,
h2.okpc-voice-heading::before,
h2.okpc-voice-heading::after {
display: none !important;
content: none !important;
width: 0 !important;
height: 0 !important;
border: none !important;
background: none !important;
}

/* 見出し下の補足テキスト */
.okpc-voice-section .okpc-voice-sub,
.okpc-voice-sub {
font-size: 14px !important;
color: #777 !important;
text-align: center !important;
margin: 0 0 40px 0 !important;
padding: 0 !important;
line-height: 1.6 !important;
border: none !important;
background: none !important;
}

/* グリッド */
.okpc-voice-section .okpc-voice-grid,
.okpc-voice-grid {
display: grid !important;
grid-template-columns: 1fr !important;
gap: 24px !important;
list-style: none !important;
padding: 0 !important;
margin: 0 !important;
}
@media (min-width: 768px) {
.okpc-voice-section .okpc-voice-grid,
.okpc-voice-grid {
    grid-template-columns: 1fr 1fr !important;
}
}

/* カード（用紙風） */
.okpc-voice-section .okpc-voice-card,
.okpc-voice-card {
background: #fffef8 !important;
border-radius: 4px !important;
padding: 0 !important;
display: flex !important;
flex-direction: column !important;
gap: 0 !important;
box-sizing: border-box !important;
border: 1px solid #d5cfc3 !important;
box-shadow: 3px 4px 10px rgba(0,0,0,0.07) !important;
margin: 0 !important;
overflow: hidden !important;
position: relative !important;
}
.okpc-voice-section .okpc-voice-card:nth-child(odd),
.okpc-voice-card:nth-child(odd) {
transform: rotate(-0.6deg) !important;
}
.okpc-voice-section .okpc-voice-card:nth-child(even),
.okpc-voice-card:nth-child(even) {
transform: rotate(0.4deg) !important;
}

/* カードヘッダー（アンケート用紙タイトル） */
.okpc-voice-section .okpc-voice-card-header,
.okpc-voice-card-header {
background: #f0ece2 !important;
border-bottom: 1px dashed #c9c3b5 !important;
padding: 10px 18px !important;
margin: 0 !important;
display: flex !important;
align-items: center !important;
gap: 6px !important;
font-size: 12px !important;
font-weight: 600 !important;
color: #8a8172 !important;
letter-spacing: 0.08em !important;
}
.okpc-voice-card-header .material-symbols-outlined {
font-size: 16px !important;
color: #8a8172 !important;
}

/* カード本体 */
.okpc-voice-section .okpc-voice-card-body,
.okpc-voice-card-body {
padding: 20px 22px 22px !important;
margin: 0 !important;
display: flex !important;
flex-direction: column !important;
gap: 14px !important;
/* 便箋の罫線風 */
background-image: repeating-linear-gradient(
    transparent,
    transparent 31px,
    #e8e2d6 31px,
    #e8e2d6 32px
) !important;
background-position: 0 8px !important;
}

/* 手書き風メイン引用文 */
.okpc-voice-section .okpc-voice-quote,
.okpc-voice-quote {
font-family: 'Klee One', cursive !important;
font-size: 20px !important;
font-weight: 600 !important;
line-height: 2 !important;
color: #1a1a1a !important;
margin: 0 !important;
padding: 0 !important;
border: none !important;
background: none !important;
position: relative !important;
}

/* 補足本文 */
.okpc-voice-section .okpc-voice-body,
.okpc-voice-body {
font-size: 15px !important;
color: #444 !important;
line-height: 2 !important;
margin: 0 !important;
padding: 0 !important;
border: none !important;
background: none !important;
font-family: 'Klee One', cursive !important;
}

/* 属性フッター（画像＋名前） */
.okpc-voice-section .okpc-voice-footer,
.okpc-voice-footer {
display: flex !important;
align-items: center !important;
gap: 12px !important;
margin: 4px 0 0 0 !important;
padding: 12px 0 0 0 !important;
border-top: 1px solid #e0dbd0 !important;
}
.okpc-voice-section .okpc-voice-img,
.okpc-voice-img {
width: 48px !important;
height: 48px !important;
min-width: 48px !important;
border-radius: 50% !important;
object-fit: cover !important;
background: #f0ece2 !important;
flex-shrink: 0 !important;
}
.okpc-voice-section .okpc-voice-attr,
.okpc-voice-attr {
font-size: 14px !important;
color: #666 !important;
text-align: left !important;
margin: 0 !important;
padding: 8px 0 0 0 !important;
border-top: 1px solid #e0dbd0 !important;
background: none !important;
font-family: 'Noto Sans JP', sans-serif !important;
letter-spacing: 0.04em !important;
}

/* ===== 投稿カード（pcw-*）CSS：home_2.cssから最小抽出 ===== */
.pcw-product-card {
  position: relative;
  overflow: hidden;
}

.pcw-product-image-link {
  display: block;
  aspect-ratio: 16 / 9;
  background: #f7fbff;
  overflow: hidden;
}

.pcw-product-card img {
  display: block;
  width: 100%;
  height: 100%;
  background: #f7fbff;
  object-fit: cover;
}

.pcw-product-card > div:last-child {
  padding: 24px;
}

.pcw-product-card__badges {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.pcw-badge,
.pcw-product-card__type {
  display: inline-block;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

.pcw-badge {
  padding: 3px 7px;
  color: #fff;
}

.pcw-badge--rank {
  background: var(--pcw-red);
}

.pcw-badge--stock {
  background: var(--pcw-stock);
}

.pcw-product-card__type {
  margin-bottom: 7px;
  padding: 2px 7px;
  background: #e7f1fb;
  color: var(--pcw-blue);
}

.pcw-product-card h3 {
  margin: 0;
  min-height: 44px;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0;
}

.pcw-product-title-link {
  color: var(--pcw-navy);
  text-decoration: none;
}

.pcw-product-title-link:hover,
.pcw-product-title-link:focus-visible {
  color: var(--pcw-blue);
  text-decoration: underline;
}

.pcw-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 7px;
  margin: 8px 0;
  padding: 8px;
  border-radius: 6px;
  background: #f4f7fa;
  font-size: 12px;
  line-height: 1.35;
}

.pcw-spec-list div {
  display: flex;
  gap: 4px;
  min-width: 0;
}

.pcw-spec-list dt {
  flex: 0 0 auto;
  color: var(--pcw-muted);
  font-weight: 800;
}

.pcw-spec-list dd {
  min-width: 0;
  margin: 0;
  color: var(--pcw-text);
  font-weight: 700;
}

.pcw-product-card .pcw-price {
  margin: 8px 0 10px;
  color: var(--pcw-red);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.pcw-price small {
  margin-left: 2px;
  font-size: 12px;
  font-weight: 700;
}

.pcw-product-card .pcw-price--ask {
  font-size: 15px;
  line-height: 1.4;
}

.pcw-product-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 6px;
  background: var(--pcw-blue);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.pcw-empty-card {
  grid-column: 1 / -1;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--pcw-border);
  border-radius: 8px;
  background: #fff;
}

.pcw-empty-card strong {
  color: var(--pcw-navy);
  font-size: 18px;
}

.pcw-empty-card span {
  color: var(--pcw-muted);
  font-size: 14px;
}


.pcw-repair-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--pcw-border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.pcw-repair-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #eef4f9;
  overflow: hidden;
}

.pcw-repair-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcw-repair-card__body {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
}

.pcw-repair-card__body .pcw-product-card__badges {
  position: static;
  margin-bottom: 2px;
}

.pcw-repair-card h3 {
  min-height: 54px;
  margin: 0;
  color: var(--pcw-navy);
  font-size: 18px;
  line-height: 1.5;
}

.pcw-repair-card p {
  margin: 0;
  color: #51616f;
  font-size: 14px;
  line-height: 1.75;
}

.pcw-repair-meta-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.pcw-repair-meta-list div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #f5f8fb;
}

.pcw-repair-meta-list dt {
  color: var(--pcw-muted);
  font-size: 12px;
  font-weight: 800;
}

.pcw-repair-meta-list dd {
  margin: 0;
  color: var(--pcw-navy);
  font-size: 13px;
  font-weight: 800;
}

.pcw-repair-price {
  margin: auto 0 0;
  color: var(--pcw-red);
  font-size: 22px;
  font-weight: 900;
}

.pcw-repair-price small {
  margin-left: 2px;
  font-size: 12px;
}

.pcw-section--repair-guide {
  padding-top: 116px;
  padding-bottom: 126px;
  background: #fff;
}

/* ===== 安城LP 新規セクションCSS ===== */

/* ============================================================
   安城ページ追加スタイル（地域ページ量産用 / okpc-lp拡張）
   ============================================================ */

/* サブ見出し */
.okpc-lp-subheading {
font-size: 20px;
font-weight: 700;
text-align: center;
color: #1a2b4a;
margin: 0 0 8px;
}

/* 投稿自動取得カードのグリッド（pcw-*カードを内包） */
.okpc-lp-posts-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 24px;
margin-top: 8px;
}
@media (max-width: 900px) {
.okpc-lp-posts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
.okpc-lp-posts-grid { grid-template-columns: 1fr; }
}

/* 料金の目安 */
.okpc-lp-pricing {
max-width: 720px;
margin: 0 auto;
border: 1px solid #e0dbd0;
border-radius: 12px;
overflow: hidden;
background: #fff;
}
.okpc-lp-pricing-row {
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
padding: 16px 22px;
border-bottom: 1px solid #eee4d6;
}
.okpc-lp-pricing-row:last-child { border-bottom: none; }
.okpc-lp-pricing-name { font-weight: 600; color: #333; }
.okpc-lp-pricing-price { font-weight: 700; color: #0056b3; white-space: nowrap; }
.okpc-lp-pricing-link-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 16px 36px;
background: #1368b7;
color: #fff;
font-size: 17px;
font-weight: 800;
text-decoration: none;
border-radius: 10px;
box-shadow: 0 4px 14px rgba(19, 104, 183, 0.28);
transition: background .2s, transform .2s, box-shadow .2s;
}
.okpc-lp-pricing-link-btn:hover {
background: #0f5494;
transform: translateY(-2px);
box-shadow: 0 6px 18px rgba(19, 104, 183, 0.36);
}

/* アクセスカード */
.okpc-lp-access-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 20px;
}
@media (max-width: 800px) {
.okpc-lp-access-grid { grid-template-columns: 1fr; }
}
.okpc-lp-access-card {
background: #fff;
border: 1px solid #e0dbd0;
border-radius: 12px;
padding: 22px;
}
.okpc-lp-access-card-head {
display: flex;
align-items: center;
gap: 8px;
font-weight: 700;
color: #1a2b4a;
font-size: 16px;
margin-bottom: 12px;
}
.okpc-lp-access-card-head .material-symbols-outlined { color: #0056b3; }
.okpc-lp-access-card-body { color: #555; line-height: 1.9; font-size: 14px; }

/* 店舗情報 */
.okpc-lp-company-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 28px;
}
@media (max-width: 800px) {
.okpc-lp-company-grid { grid-template-columns: 1fr; }
}
.okpc-lp-company-card {
background: #fff;
border: 1px solid #e0dbd0;
border-radius: 12px;
padding: 22px;
}
.okpc-lp-company-name {
font-weight: 700;
font-size: 18px;
color: #1a2b4a;
margin-bottom: 14px;
padding-bottom: 10px;
border-bottom: 2px solid #0056b3;
}
.okpc-lp-company-table { width: 100%; border-collapse: collapse; }
.okpc-lp-company-table th,
.okpc-lp-company-table td {
text-align: left;
padding: 8px 6px;
font-size: 14px;
vertical-align: top;
border-bottom: 1px solid #f0ece2;
}
.okpc-lp-company-table th { width: 78px; color: #888; font-weight: 600; white-space: nowrap; }
.okpc-lp-company-table td { color: #333; }
.okpc-lp-company-table a { color: #0056b3; font-weight: 700; text-decoration: none; }
.okpc-lp-company-map { margin-top: 16px; border-radius: 8px; overflow: hidden; }

/* お客様の声テキスト（新規構造用） */
.okpc-voice-text {
font-size: 15px;
line-height: 1.9;
color: #333;
margin: 0 0 10px;
}
.okpc-voice-from {
font-size: 13px;
color: #888;
text-align: right;
margin: 0;
}

/* Trustindex口コミウィジェット */
.pcw-reviews-widget { margin-top: 24px; }

/* ========================================
   pcw-section 見出しの左寄せ復元
   ----------------------------------------
   home_2.css 本来の pcw-section__head は左寄せだが、グローバルテーマの
   h2{text-align:center} と ◆装飾(::before) が漏れて中央寄せ＋飾りになる。
   トップページ(/)の「修理メニュー」と同じ左寄せ基準に戻す。
   対象: パソコン修理メニュー / 最近の修理事例（どちらも pcw-section__head 配下）。
   ======================================== */
.pcw-section .pcw-section__head,
.pcw-section .pcw-section__head > div,
.pcw-section .pcw-section__head h2,
.pcw-section .pcw-section__head .pcw-eyebrow,
.pcw-section .pcw-section__head p {
text-align: left !important;
}
/* グローバル h2 が付ける ◆/下線などの擬似要素装飾を打ち消す */
.pcw-section .pcw-section__head h2::before,
.pcw-section .pcw-section__head h2::after {
content: none !important;
display: none !important;
}

/* ========================================
   法人セクション(pcw-business)の左寄せ復元
   ----------------------------------------
   pcw-business は pcw-section__head を持たない（直下 <div> 構造）ため、
   上の打ち消しが効かず、グローバル h2{text-align:center} と ◆装飾(::before)が
   漏れて中央寄せ＋飾りになる。トップページ(/)と同じ左寄せ基準に戻す。
   ======================================== */
#pcw-business .pcw-business > div,
#pcw-business .pcw-eyebrow,
#pcw-business h2,
#pcw-business p {
text-align: left !important;
}
#pcw-business h2::before,
#pcw-business h2::after {
content: none !important;
display: none !important;
}

/* ========================================
   お客様の声カード（手書きアンケート風・正本移植）
   ----------------------------------------
   回収LP(corporate-bulk-collection-in-okazaki)と同じカードUIを移植。
   見出しラベル＋手書き引用＋補足本文＋アイコン画像つき署名。2カラム。
   ======================================== */
.okpc-voice-grid {
display: grid !important;
grid-template-columns: 1fr !important;
gap: 24px !important;
list-style: none !important;
padding: 0 !important;
margin: 0 !important;
}
@media (min-width: 768px) {
.okpc-voice-grid { grid-template-columns: 1fr 1fr !important; }
}
.okpc-voice-card {
background: #fffef8 !important;
border-radius: 4px !important;
padding: 0 !important;
display: flex !important;
flex-direction: column !important;
gap: 0 !important;
box-sizing: border-box !important;
border: 1px solid #d5cfc3 !important;
box-shadow: 3px 4px 10px rgba(0,0,0,0.07) !important;
margin: 0 !important;
overflow: hidden !important;
position: relative !important;
}
.okpc-voice-card:nth-child(odd)  { transform: rotate(-0.6deg) !important; }
.okpc-voice-card:nth-child(even) { transform: rotate(0.4deg) !important; }
.okpc-voice-card-header {
background: #f0ece2 !important;
border-bottom: 1px dashed #c9c3b5 !important;
padding: 10px 18px !important;
margin: 0 !important;
display: flex !important;
align-items: center !important;
gap: 6px !important;
font-size: 12px !important;
font-weight: 600 !important;
color: #8a8172 !important;
letter-spacing: 0.08em !important;
}
.okpc-voice-card-header .material-symbols-outlined {
font-size: 16px !important;
color: #8a8172 !important;
}
.okpc-voice-card-body {
padding: 20px 22px 22px !important;
margin: 0 !important;
display: flex !important;
flex-direction: column !important;
gap: 14px !important;
background-image: repeating-linear-gradient(
    transparent, transparent 31px, #e8e2d6 31px, #e8e2d6 32px) !important;
background-position: 0 8px !important;
}
.okpc-voice-quote {
font-family: 'Klee One', cursive !important;
font-size: 20px !important;
font-weight: 600 !important;
line-height: 2 !important;
color: #1a1a1a !important;
margin: 0 !important;
padding: 0 !important;
border: none !important;
background: none !important;
position: relative !important;
}
.okpc-voice-body {
font-size: 15px !important;
color: #444 !important;
line-height: 2 !important;
margin: 0 !important;
padding: 0 !important;
border: none !important;
background: none !important;
font-family: 'Klee One', cursive !important;
}
.okpc-voice-footer {
display: flex !important;
align-items: center !important;
gap: 12px !important;
margin: 4px 0 0 0 !important;
padding: 12px 0 0 0 !important;
border-top: 1px solid #e0dbd0 !important;
}
.okpc-voice-img {
width: 48px !important;
height: 48px !important;
min-width: 48px !important;
border-radius: 50% !important;
object-fit: cover !important;
background: #f0ece2 !important;
flex-shrink: 0 !important;
}
.okpc-voice-attr {
font-size: 14px !important;
color: #666 !important;
text-align: left !important;
margin: 0 !important;
padding: 0 !important;
border: none !important;
background: none !important;
font-family: 'Noto Sans JP', sans-serif !important;
letter-spacing: 0.04em !important;
}


/* ============================================================
   メーカーページ固有（ここから下だけがメーカーページの追加分）
   地域ページには存在しないセクションのスタイル。
   色・角丸・影は上の okpc-lp 系と揃えてある。
   ============================================================ */

/* --- 「売る？処分する？」分岐セクション --------------------- */
.pcdo-mfg-choice-lead {
    text-align: center;
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin: 0 auto 28px;
    max-width: 760px;
}

.pcdo-mfg-choice-lead strong {
    color: #0056b3;
    font-weight: 700;
}

.pcdo-mfg-choice-start {
    max-width: 560px;
    margin: 0 auto 8px;
    background: #0056b3;
    color: #fff;
    border-radius: 12px;
    padding: 18px 24px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0, 86, 179, 0.18);
}

.pcdo-mfg-choice-start-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 3px 12px;
    margin-bottom: 8px;
}

.pcdo-mfg-choice-start-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.pcdo-mfg-choice-start-note {
    font-size: 14px;
    margin: 6px 0 0;
    opacity: 0.9;
}

.pcdo-mfg-choice-arrow {
    text-align: center;
    color: #0056b3;
    line-height: 1;
    margin-bottom: 4px;
}

.pcdo-mfg-choice-arrow .material-symbols-outlined {
    font-size: 40px;
}

.pcdo-mfg-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}

.pcdo-mfg-choice-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
}

.pcdo-mfg-choice-card--sell {
    border-color: #22c55e;
    background: #f3fdf7;
}

.pcdo-mfg-choice-card--free {
    border-color: #0056b3;
    background: #f0f7ff;
}

.pcdo-mfg-choice-badge {
    align-self: flex-start;
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 14px;
    margin-bottom: 12px;
    color: #fff;
}

.pcdo-mfg-choice-card--sell .pcdo-mfg-choice-badge { background: #16a34a; }
.pcdo-mfg-choice-card--free .pcdo-mfg-choice-badge { background: #0056b3; }

.pcdo-mfg-choice-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pcdo-mfg-choice-title .material-symbols-outlined {
    font-size: 28px;
}

.pcdo-mfg-choice-card--sell .pcdo-mfg-choice-title .material-symbols-outlined { color: #16a34a; }
.pcdo-mfg-choice-card--free .pcdo-mfg-choice-title .material-symbols-outlined { color: #0056b3; }

.pcdo-mfg-choice-desc {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    margin: 0 0 14px;
}

.pcdo-mfg-choice-points {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.pcdo-mfg-choice-points li {
    position: relative;
    padding-left: 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 6px;
}

.pcdo-mfg-choice-points li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pcdo-mfg-choice-card--sell .pcdo-mfg-choice-points li::before { background: #16a34a; }
.pcdo-mfg-choice-card--free .pcdo-mfg-choice-points li::before { background: #0056b3; }

.pcdo-mfg-choice-note {
    margin-top: auto;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    padding: 10px 12px;
}

.pcdo-mfg-choice-foot {
    max-width: 860px;
    margin: 20px auto 0;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

/* --- 想定Q&A（お客様からのご質問） -------------------------- */
.pcdo-mfg-qa {
    max-width: 820px;
    margin: 0 auto;
}

.pcdo-mfg-qa-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 18px;
}

.pcdo-mfg-qa-q,
.pcdo-mfg-qa-a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.pcdo-mfg-qa-q {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #e0e0e0;
}

.pcdo-mfg-qa-mark {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.pcdo-mfg-qa-q .pcdo-mfg-qa-mark { background: #8a8172; }
.pcdo-mfg-qa-a .pcdo-mfg-qa-mark { background: #0056b3; }

.pcdo-mfg-qa-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin: 0;
}

.pcdo-mfg-qa-q .pcdo-mfg-qa-text {
    color: #555;
}

.pcdo-mfg-qa-text strong {
    color: #0056b3;
    font-weight: 700;
}

/* --- 対応機種リスト ----------------------------------------- */
.pcdo-mfg-models {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.pcdo-mfg-model-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 18px 18px 16px;
    text-align: center;
}

.pcdo-mfg-model-card .material-symbols-outlined {
    font-size: 34px;
    color: #0056b3;
    margin-bottom: 6px;
}

.pcdo-mfg-model-name {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.5;
}

.pcdo-mfg-model-note {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.pcdo-mfg-models-foot {
    max-width: 900px;
    margin: 20px auto 0;
    background: #f0f7ff;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.85;
    color: #333;
}

.pcdo-mfg-models-foot strong {
    color: #0056b3;
}

/* --- 「こんな状態でもOK」チェックリスト --------------------- */
.pcdo-mfg-states {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    max-width: 820px;
    margin: 0 auto;
}

.pcdo-mfg-state {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 16px;
}

.pcdo-mfg-state .material-symbols-outlined {
    flex: 0 0 auto;
    font-size: 22px;
    color: #22c55e;
    margin-top: 2px;
}

.pcdo-mfg-state-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.pcdo-mfg-state-text strong {
    display: block;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

/* --- 関連ページ導線 ----------------------------------------- */
.pcdo-mfg-related {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.pcdo-mfg-related-card {
    display: block;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.pcdo-mfg-related-card:hover {
    border-color: #0056b3;
    transform: translateY(-2px);
}

.pcdo-mfg-related-title {
    font-size: 17px;
    font-weight: 700;
    color: #0056b3;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pcdo-mfg-related-title .material-symbols-outlined {
    font-size: 20px;
}

.pcdo-mfg-related-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* --- 免責注記 ------------------------------------------------ */
.pcdo-mfg-disclaimer {
    max-width: 900px;
    margin: 28px auto 0;
    font-size: 13px;
    line-height: 1.8;
    color: #777;
    text-align: center;
}

/* --- レスポンシブ -------------------------------------------- */
@media screen and (max-width: 834px) {
    .pcdo-mfg-choice-grid,
    .pcdo-mfg-models,
    .pcdo-mfg-states,
    .pcdo-mfg-related {
        grid-template-columns: 1fr;
    }

    .pcdo-mfg-choice-start-title { font-size: 20px; }
    .pcdo-mfg-choice-title { font-size: 19px; }
    .pcdo-mfg-qa-item { padding: 18px 16px; }
    .pcdo-mfg-qa-text { font-size: 15px; }
    .pcdo-mfg-choice-lead { font-size: 16px; text-align: left; }
}
