<div class="p-search-common">
    <table class="p-search-common__tbl">
        <tr>
            <td rowspan="5" class="p-search-common__tbl-number">01</td>
            <th>分譲地名</th>
            <td  colspan="5" class="p-search-common__name">
                @include('business.objects.components.hidden', ['name' => 'property', 'value' => '99'])
                @include('business.objects.components.input', ['name' => 'name', 'placeholder' => ''])
            </td>
            <th>分譲地ID</th>
            <td>
                @include('business.objects.components.input', ['name' => 'id', 'placeholder' => ''])
            </td>
        </tr>

        <tr>
            <th>所在地</th>
            <td colspan="5" class="p-search-common__address">
                @include('business.objects.components.selectbox', ['name' => 'address1', 'options' => $pref])
                @include('business.objects.components.selectbox', ['name' => 'address2', 'options' => $city, 'title' => '市区郡'])
                @include('business.objects.components.selectbox', ['name' => 'address3', 'options' => $town, 'title' => '町村'])
                @include('business.objects.components.input', ['name' => 'address4'])
            </td>
            <th>総区画数</th>
            <td class="p-search-common__floor">
                @include('business.objects.components.input', ['name' => '', 'placeholder' => '下限なし'])〜
                @include('business.objects.components.input', ['name' => '', 'placeholder' => '上限なし'])区画
            </td>
        </tr>
        <tr>
            <th>交通</th>
            <td colspan="5" class="p-search-common__access">
                @include('business.objects.components.selectbox', ['name' => 'access1', 'options' => $line, 'title' => '沿線'])
                @include('business.objects.components.selectbox', ['name' => 'access2', 'options' => [], 'title' => '駅'])
                @include('business.objects.components.selectbox', ['name' => 'access3', 'options' => $walk, 'title' => '徒歩/バス'])
                <span>バス</span>@include('business.objects.components.input', ['name' => 'bus'])<span>分以内 / 徒歩</span>
                @include('business.objects.components.input', ['name' => 'walk'])<span>分以内</span>
            </td>
            <th>用途地域</th>
            <td>
                @include('business.objects.components.selectbox', ['name' => 'use_area', 'options' => $use_area, 'title' => '用途地域'])
            </td>
        </tr>
        <tr>
            <th>学校区</th>
            <td colspan="5" >
                <div class="mb-3">
                @include('business.objects.components.selectbox', ['name' => 'primary_school', 'options' => $primary_school, 'title' => '小学校区'])
                徒歩@include('business.objects.components.input', ['name' => 'primary_school_time'])<span>分以内</span>
                </div>
                <div>
                @include('business.objects.components.selectbox', ['name' => 'secondary_school', 'options' => $secondary_school, 'title' => '中学校区'])
                徒歩@include('business.objects.components.input', ['name' => 'secondary_school_time'])<span>分以内</span>
                </div>
            </td>
            <th>事業主</th>
            <td>
                @include('business.objects.components.input', ['name' => '', 'placeholder' => ''])
            </td>
        </tr>
        <tr>
            <td colspan="8">
                <ul class="p-search-common__search-clear">
                    <li><a href="javascript:void(0);" class="clear-button">この条件をクリア</a></li>
                    <li><a href="javascript:void(0);" class="delete-form-button">この条件を削除</a></li>
                </ul>
            </td>
        </tr>
    </table>
</div>