/* Security Page Specific Styles */
        

        @media (max-width: 767px) {
            
        }

        

        

        /* Quality Section */
        .quality-list {
            list-style: none;
            padding: 0;
            margin-top: 32px;
        }

        .quality-list li {
            position: relative;
            padding-left: 36px;
            margin-bottom: 24px;
        }

        .quality-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 4px;
            width: 20px;
            height: 20px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A065' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: contain;
        }

        .quality-item-title {
            display: block;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--color-text-dark);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .quality-item-desc {
            display: block;
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
        }

        @media (max-width: 768px) {
            .quality-list li {
                padding-left: 32px;
                margin-bottom: 20px;
            }

            .quality-item-title {
                font-size: 1.05rem;
            }

            .quality-item-desc {
                font-size: 0.9rem;
            }
        }

        /* Theft Risk */
        .theft-risk-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .risk-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .risk-card {
            background: #fff;
            border: 1px solid #eee;
            padding: 32px 24px;
            border-radius: 8px;
            text-align: left;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }

        .risk-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            border-color: var(--color-accent-gold);
        }

        .risk-card-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .risk-card-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--color-text-dark);
            border-bottom: 2px solid var(--color-accent-gold);
            padding-bottom: 8px;
            display: inline-block;
            align-self: flex-start;
        }

        .risk-card-desc {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.7;
            margin: 0;
        }

        @media (max-width: 900px) {
            .risk-cards {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        /* Product Cards */
        .product-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 32px;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .product-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transform: translateY(-4px);
        }

        .product-img-wrap {
            width: 100%;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: #fff;
            border-radius: 4px;
            overflow: hidden;
            padding: 16px;
        }

        .product-img-wrap a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }

        .product-img-wrap img {
            width: auto;
            height: auto;
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img-wrap img {
            transform: scale(1.05);
        }

        .product-target-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 4px 0 24px;
        }

        .product-target-tags span {
            display: inline-flex;
            align-items: center;
            min-height: 28px;
            padding: 5px 10px;
            border: 1px solid rgba(197, 160, 101, 0.35);
            border-radius: 999px;
            background: rgba(197, 160, 101, 0.08);
            color: #6d562f;
            font-size: 0.8rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .product-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        @media (max-width: 768px) {
            .product-card {
                padding: 20px;
            }
            .product-img-wrap {
                height: 120px;
                margin-bottom: 16px;
                padding: 12px;
            }
        }

        @media (max-width: 600px) {
            .product-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Tab UI for Packs */
        .pack-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }

        .pack-tab-btn {
            background: #fff;
            border: 1px solid #ddd;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .pack-tab-btn.active,
        .pack-tab-btn:hover {
            background: #111;
            color: #fff;
            border-color: #111;
        }

        .pack-content {
            display: none;
            animation: fadeIn 0.5s;
        }

        .pack-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .pack-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .pack-card {
            background: #fff;
            border: 1px solid #eee;
            padding: 24px;
            border-radius: 8px;
        }

        .lc300-plan-table {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            background: #fff;
            border: 1px solid #eee;
            overflow: hidden;
        }

        .lc300-plan-card {
            display: grid;
            grid-template-rows: auto auto 1fr;
            border-right: 1px solid #eee;
            text-align: center;
        }

        .lc300-plan-card:last-child {
            border-right: 0;
        }

        .lc300-plan-card--recommend .lc300-plan-head {
            background: #fffbf0;
        }

        .lc300-plan-head {
            min-height: 82px;
            padding: 18px 20px;
            border-bottom: 1px solid #eee;
        }

        .lc300-plan-label {
            display: block;
            min-height: 1.3em;
            margin-bottom: 6px;
            color: #999;
            font-size: 0.8rem;
            font-weight: 700;
        }

        .lc300-plan-card--recommend .lc300-plan-label {
            color: var(--color-accent-gold);
        }

        .lc300-plan-name {
            margin: 0;
            color: var(--color-text-dark);
            font-size: 1.2rem;
            font-weight: 700;
        }

        .lc300-plan-price {
            padding: 26px 20px;
            border-bottom: 1px solid #eee;
            color: var(--color-text-dark);
            font-size: 1.25rem;
            font-weight: 700;
        }

        .lc300-plan-equipment {
            margin: 0;
            padding: 20px;
            color: #333;
            font-size: 0.92rem;
            line-height: 1.8;
            word-break: keep-all;
            overflow-wrap: anywhere;
        }

        @media (max-width: 768px) {
            .lc300-plan-table {
                display: block;
                border: 0;
                background: transparent;
            }

            .lc300-plan-card {
                display: block;
                margin-bottom: 18px;
                border: 1px solid #eee;
                background: #fff;
            }

            .lc300-plan-card:last-child {
                border-right: 1px solid #eee;
            }
        }

        .cta-btn-item:hover {
            opacity: 0.9;
        }

        /* Flow Section */
        .flow-steps {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .flow-step-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 24px 16px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .flow-step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }

        .flow-icon-wrap {
            width: 56px;
            height: 56px;
            background: #f9f9f9;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: #333;
        }

        .flow-icon-wrap svg {
            width: 28px;
            height: 28px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .flow-step-num {
            color: var(--color-accent-gold);
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            margin-bottom: 8px;
        }

        .flow-step-title {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 12px;
            color: #111;
            line-height: 1.4;
        }

        .flow-step-desc {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.6;
            text-align: left;
        }

        .flow-assurances {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 32px;
        }

        .flow-assurance-badge {
            background: #fdfdfd;
            border: 1px solid #eaeaea;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            color: #555;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .flow-assurance-badge::before {
            content: "✓";
            color: var(--color-accent-gold);
            font-weight: bold;
        }

        @media (max-width: 991px) {
            .flow-steps {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 767px) {
            .flow-steps {
                grid-template-columns: 1fr;
            }
        }
/* =============================================
   security.html ページ固有スタイル
   （インラインstyleをここに集約）
   ============================================= */

/* パック選び方カード（白背景BOX） */
.pack-guide-box {
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.security-intro-lead {
    font-size: 1.05rem;
}

.security-quality-image {
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    filter: contrast(1.1);
}

.security-quality-caption {
    margin-top: 8px;
    color: #999;
    font-size: 0.8rem;
    text-align: right;
}

.security-risk-lead {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.security-works-lead {
    max-width: 700px;
    margin: 0 auto 32px;
}

#security-works-grid .work-card:nth-child(n+4) {
    display: none;
}

@media (max-width: 600px) {
    #security-works-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    #security-works-grid .work-card:nth-child(-n+4) {
        display: block;
    }

    #security-works-grid .work-card:nth-child(n+5) {
        display: none;
    }

    #security-works-grid .work-info {
        padding: 12px;
    }

    #security-works-grid .work-tags {
        gap: 4px;
        margin-bottom: 8px;
    }

    #security-works-grid .work-tag {
        font-size: 0.68rem;
    }

    #security-works-grid .work-title {
        font-size: 0.9rem;
        line-height: 1.35;
    }
}

.pack-guide-box__title {
    font-size: 1.2rem;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 700;
}

/* 選び方ステップ アイテム */
.pack-step-item {
    text-align: center;
}

.pack-step-number {
    width: 48px;
    height: 48px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    line-height: 48px;
    font-weight: 700;
    margin: 0 auto 16px;
    display: block;
}

.pack-step-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.pack-step-desc {
    font-size: 0.9rem;
    color: #666;
}

/* セキュリティパック概要カード */
.security-pack-summary {
    margin: 56px 0 40px;
}

.security-pack-summary__header {
    margin-bottom: 32px;
}

.security-pack-summary__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.security-pack-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.security-pack-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    text-align: left;
}

.security-pack-card__title {
    display: inline-block;
    margin: 0 0 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-accent-gold);
    color: var(--color-text-dark);
    font-size: 1.3rem;
    font-weight: 700;
}

.security-pack-card__target {
    margin-bottom: 14px;
    color: #555;
    font-size: 0.85rem;
    font-weight: 700;
}

.security-pack-card__list {
    flex-grow: 1;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}

.security-pack-card__list li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 18px;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
}

.security-pack-card__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent-gold);
    font-weight: 700;
}

.security-pack-card__bottom {
    margin-top: auto;
}

.security-pack-card__point {
    margin-bottom: 14px;
    padding: 10px 14px;
    background: #f9f9f9;
    border-radius: 4px;
    color: #555;
    font-size: 0.85rem;
    line-height: 1.5;
}

.security-pack-card__price {
    margin: 0;
    color: var(--color-text-dark);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: right;
}

/* パックカード（ダーク：カスタムプラン用） */
.pack-card--dark {
    background: var(--color-bg-dark);
    color: #fff;
    border: none;
}

.pack-card--dark .pack-card-sub {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pack-card--dark .pack-card-link {
    color: #fff;
    text-decoration: underline;
}

/* パックカード内共通 */
.pack-card-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.pack-card-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pack-card-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.pack-models-link-wrap {
    margin-top: 24px;
}

.pack-models-link-btn {
    background: #111;
    border-color: #111;
    color: #fff;
}

.pack-models-link-btn:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

/* パックCTAボタンエリア */
.pack-cta-flex {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pack-cta-btn {
    padding: 14px 40px;
    width: 350px;
    max-width: 100%;
    text-align: center;
    white-space: nowrap;
}

/* パックセクション 注記テキスト */
.pack-note-text {
    margin-top: 40px;
    font-size: 0.85rem;
    color: #777;
    text-align: center;
}

/* パックセクション FAQ誘導ボタンエリア */
.pack-faq-wrap {
    margin-top: 32px;
    text-align: center;
}

/* その他車種セクション */
.pack-others-inner {
    text-align: center;
    padding: 40px;
}

.pack-others-text {
    margin-bottom: 24px;
}

/* 施工事例セクション works-grid 下マージン */
.works-grid--mb {
    margin-bottom: 40px;
    text-align: left;
}

/* 施工事例説明テキスト */
.works-lead-text {
    max-width: 700px;
    margin: 0 auto 32px;
}

/* 施工品質 画像キャプション */
.quality-img-caption {
    font-size: 0.8rem;
    color: #999;
    margin-top: 8px;
    text-align: right;
}

@media (max-width: 768px) {
    .security-pack-card-grid {
        display: flex;
        gap: 14px;
        margin-right: calc(50% - 50vw);
        padding-right: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .security-pack-card-grid::-webkit-scrollbar {
        display: none;
    }

    .security-pack-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }

    .security-pack-summary {
        margin: 40px 0 32px;
    }

    .pack-cta-btn {
        width: 100%;
    }
}

/* Smartphone information-density tuning */
@media (max-width: 767px) {
    .theft-risk-container {
        text-align: left;
    }

    .risk-cards,
    .product-grid,
    .pack-guide-box .grid-3 {
        display: flex;
        grid-template-columns: none;
        gap: 14px;
        margin-right: calc(50% - 50vw);
        padding-right: 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .risk-cards::-webkit-scrollbar,
    .product-grid::-webkit-scrollbar,
    .pack-guide-box .grid-3::-webkit-scrollbar,
    .lc300-plan-table::-webkit-scrollbar {
        display: none;
    }

    .risk-card,
    .product-grid .product-card,
    .pack-guide-box .pack-step-item {
        flex: 0 0 78%;
        scroll-snap-align: start;
    }

    .risk-card {
        padding: 22px 20px;
    }

    .risk-card-icon {
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .product-grid .product-card {
        padding: 20px;
    }

    .product-grid .hub-content-text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-img-wrap {
        height: 96px;
    }

    .pack-guide-box {
        padding: 24px 20px;
    }

    .pack-guide-box__title {
        text-align: left;
    }

    .pack-step-item {
        padding: 18px;
        border: 1px solid #eef0f2;
        border-radius: 8px;
        background: #fff;
        text-align: left;
    }

    .pack-step-number {
        width: 36px;
        height: 36px;
        margin: 0 0 12px;
        line-height: 36px;
        text-align: center;
    }

    .lc300-plan-table {
        display: flex;
        gap: 14px;
        margin-right: calc(50% - 50vw);
        padding-right: 20px;
        border: 0;
        background: transparent;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .lc300-plan-card,
    .lc300-plan-card:last-child {
        flex: 0 0 84%;
        margin-bottom: 0;
        border: 1px solid #eee;
        background: #fff;
        scroll-snap-align: start;
    }

    .lc300-plan-head {
        min-height: auto;
        padding: 16px 18px;
    }

    .lc300-plan-price {
        padding: 18px;
        font-size: 1.08rem;
    }

    .lc300-plan-equipment {
        padding: 16px 18px 20px;
        font-size: 0.84rem;
        line-height: 1.65;
    }

    .flow-steps {
        display: block;
        margin-top: 28px;
        text-align: left;
    }

    .flow-step-card {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 0 14px;
        margin-bottom: 14px;
        padding: 18px;
        text-align: left;
    }

    .flow-icon-wrap {
        grid-row: span 3;
        width: 44px;
        height: 44px;
        margin: 0;
    }

    .flow-icon-wrap svg {
        width: 22px;
        height: 22px;
    }

    .flow-step-num {
        margin-bottom: 4px;
        font-size: 0.74rem;
    }

    .flow-step-title {
        margin-bottom: 6px;
        font-size: 0.98rem;
    }

    .flow-step-title br {
        display: none;
    }

    .flow-step-desc {
        font-size: 0.82rem;
    }
}
