{{-- 写真あり
    $type : 'for-sale', 'close', 'houses', 'mansion'のいずれかを設定。詳細リンクURLに利用。
--}}
<style>
    .btn-action-buyer{
        border: 1px solid #79797f;
        color: #79797f;
        background: #ffffff;
        padding: .3rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .btn-action-buyer.open-modal-article {
        border: 1px solid #ee96bd;
        color: #ee96bd;
    }
    .pointer {
        cursor: pointer;
    }

    .label-buyer {
        background: #F8E4EF;
        margin-right: 5px;
        color: #ee96bd;
        font-size: 10px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .label-buyer.u-checkbox {
        background: #f8e4ef;
        color: #e7a4c5;
    }

    .label-buyer img {
        width: 14px;
        margin: auto;
    }
</style>
@push('styles')
    <link href="{{ asset('/business/css/buyer.css') }}" rel="stylesheet">
@endpush
@php
    $routeName = '';
    $type = $type ?? 'for-sale';
    if ($type == 'for-sale') {
        $routeName = 'business-for-sale-detail';
    } else if($type == 'close') {
        $routeName = 'business-close-detail';
    } else if($type == 'lot') {
        $routeName = 'business-houses-detail';
    } else {
        $routeName = 'business-mansion-detail';
    }
    $hide_items = isset($hide_items) ? $hide_items : [];
@endphp
<ul class="p-results-image list-unstyled articles-list-custom" id="page-content-image">
    @include('business.objects.components.article_list_image', ['isShowOwnCompany' => $isShowOwnCompany ?? false])
</ul>
@include('business.objects.components.preview-image')
