<style>
    .btn_blue {
        background: #fff;
        border: 1px solid #1d7fe4;
        color: #1d7fe4;
        padding: 0 20px;
        cursor: pointer;
    }

    .cs-data-list .filter-address {
        border: none;
    }

    .p-search-common__access input[type=text] {
        width: 60px;
    }
</style>
<div class="p-search-common">
    @php
        if(!isset($isclose)){
             $statuses = [
                ['code' => '', 'name' => '未選択'],
                ['code' => '1', 'name' => '販売中'],
                ['code' => '2', 'name' => '商談中'],
                ['code' => '3', 'name' => '契約予定']
            ];
        }else{
            $statuses = [
                ['code' => '', 'name' => '未選択'],
                ['code' => '4', 'name' => '契約済'],
                ['code' => '5', 'name' => '売りやめ'],
                //['code' => '6', 'name' => '保留']
            ];
        }
        $countSearch = !empty(request()->get('address1')) ? count(request()->get('address1')) : 0;
    /*dd($countSearch);*/
    @endphp
    @if($countSearch > 1)
        @for($i = 0; $i < $countSearch; $i++)
            <table class="p-search-common__tbl">
                <tr class="p-search-common__height0">
                    <th class="p-search-common__bal"></th><td></td><th></th><td></td><th></th><td></td><th></th><td></td>
                </tr>
                <tr>
                    <th>物件種別</th>
                    <td class="w230">
                        @include('admin.objects.components.selectbox', ['name' => 'property[]', 'options' => $property, 'title' => '物件種別'])
                        @if(isset($un_revenue))
                            <div>
                                @endif
                                @include('admin.objects.components.checkbox', ['name' => 'revenue[]', 'checkbox' => $revenue])
                                @if(isset($un_revenue))
                                    @include('admin.objects.components.checkbox', ['name' => 'un_revenue[]', 'checkbox' => $un_revenue])
                                @endif
                                @if(isset($un_revenue))
                            </div>
                        @endif
                    </td>
                    <th>所在地</th>
                    <td colspan="3" class="p-search-common__address">
                        <div class="cs-flex">
                            @include('admin.objects.components.selectbox', ['name' => 'address1[]', 'options' => $pref])
                            <div class="h-100 data-address">
                                @include('admin.objects.components.data-list', ['name' => 'list-address2[]', 'options' => $city, 'placeholder' => '市区郡選択',
                                'class' => 'list-address2', 'value' => !empty(request()->get('list-address2')[$i]) ? request()->get('list-address2')[$i] : "",
                                'code' => !empty(request()->get('address2')[$i]) ? request()->get('address2')[$i] : ""])
                                <div style="display: none">
                                    @include('admin.objects.components.selectbox', ['name' => 'address2[]', 'options' => $city, 'title' => '市区郡'])
                                </div>
                            </div>
                            <div class="h-100 data-address">
                                @include('admin.objects.components.input', ['name' => 'town_name[]', 'class' => 'c-selectbox w-auto mx-1'])
                                {{--                        @include('admin.objects.components.data-list', ['name' => 'list-address3[]', 'placeholder' => '町村選択',--}}
                                {{--                        'class' => 'list-address3', 'value' => !empty(request()->get('list-address3')[$i]) ? request()->get('list-address3')[$i] : "",--}}
                                {{--                        'code' => !empty(request()->get('address3')[$i]) ? request()->get('address3')[$i] : ""])--}}
                                {{--                        <div style="display: none">--}}
                                {{--                            @include('admin.objects.components.selectbox', ['name' => 'address3[]', 'options' => $town, 'title' => '町村'])--}}
                                {{--                        </div>--}}
                                <span class="p-search-common__town">{{ getDescriptionForTownName() }}</span>
                            </div>
                            @include('admin.objects.components.input', ['name' => 'address4[]', 'class' => 'w100'])
                        </div>
                    </td>
                    <th>物件ID</th>
                    <td class="p-search-common__id w220">
                        @include('admin.objects.components.input', ['name' => 'building_id[]'])
                    </td>
                </tr>
                <tr>
                    <th>価格</th>
                    <td class="p-search-common__price">
                        @include('admin.objects.components.input', ['name' => 'price_from[]', 'placeholder' => '下限なし'])〜
                        @include('admin.objects.components.input', ['name' => 'price_to[]', 'placeholder' => '上限なし'])万円
                    </td>
                    <th>交通</th>
                    <td colspan="5" class="p-search-common__access">
                        @include('admin.objects.components.selectbox', ['name' => 'access1[]', 'options' => $line, 'title' => '沿線'])
                        @include('admin.objects.components.selectbox', ['name' => 'access2[]', 'options' => [], 'title' => '駅'])
                        <input type="hidden" name="" id="hidden-access2" value="{{ isset(request()->get('access2')[$i]) ? request()->get('access2')[$i] : "" }}">
                        @include('admin.objects.components.selectbox', ['name' => 'access3[]', 'options' => $walk, 'title' => '徒歩/バス'])
                        <span>バス</span>@include('admin.objects.components.input', ['name' => 'bus[]'])<span>分以内 / 徒歩</span>
                        @include('admin.objects.components.input', ['name' => 'walk[]'])<span>分以内</span>
                    </td>
                </tr>
                <tr>
                    <th>学校区</th>
                    <td>
                        <div class="cs-flex" style="margin-left: -5px; margin-right: -5px">
                            <div class="h-100 data-address w-50">
                                @include('admin.objects.components.data-list', ['name' => 'list-primary_school[]', 'options' => $primary_school, 'placeholder' => '小学校区を選択',
                                'class' => 'list-primary_school', 'value' => !empty(request()->get('list-primary_school')[0]) ? request()->get('list-primary_school')[0] : "",
                                'code' => !empty(request()->get('primary_school')[0]) ? request()->get('primary_school')[0] : ""])

                                <div class="d-none">
                                    @include('admin.objects.components.selectbox', ['name' => 'primary_school[]', 'options' => $primary_school, 'title' => '小学校区', 'class' => 'w100 mb10'])

                                </div>

                            </div>
                            <div class="h-100 data-address w-50">
                                @include('admin.objects.components.data-list', ['name' => 'list-secondary_school[]', 'options' => $secondary_school, 'placeholder' => '中学校区を選択',
                                'class' => 'list-secondary_school', 'value' => !empty(request()->get('list-secondary_school')[0]) ? request()->get('list-secondary_school')[0] : "",
                                'code' => !empty(request()->get('secondary_school')[0]) ? request()->get('secondary_school')[0] : ""])

                                <div class="d-none">
                                    @include('admin.objects.components.selectbox', ['name' => 'secondary_school[]', 'options' => $secondary_school, 'title' => '中学校区', 'class' => 'w100'])
                                </div>
                            </div>
                        </div>
                        <span class="p-search-common__pet">※所在地の市区を選択済みの時、選択可能</span>
                    </td>
                    <th>土地面積</th>
                    <td class="p-search-common__land w210">
                        @include('admin.objects.components.input', ['name' => 'land_from[]', 'placeholder' => '下限なし'])〜
                        @include('admin.objects.components.input', ['name' => 'land_to[]', 'placeholder' => '上限なし'])m&sup2;
                    </td>
                    <th>延床面積</th>
                    <td class="p-search-common__floor-area w200">
                        @include('admin.objects.components.input', ['name' => 'floor_area_from[]', 'placeholder' => '下限なし'])〜
                        @include('admin.objects.components.input', ['name' => 'floor_area_to[]', 'placeholder' => '上限なし'])m&sup2;
                    </td>
                    <th>間取り</th>
                    <td class="p-search-common__access w200">
                        @include('admin.objects.components.input', ['name' => 'floor_plan_from[]', 'placeholder' => '下限なし'])〜
                        @include('admin.objects.components.input', ['name' => 'floor_plan_to[]', 'placeholder' => '上限なし'])R・SLDK
                    </td>
                </tr>
                <tr>
                    <th>物件名</th>
                    <td class="p-search-common__name">
                        @include('admin.objects.components.input', ['name' => 'name[]', 'placeholder' => ''])
                    </td>
                    <th>築年数</th>
                    <td class="p-search-common__years">
                        @include('admin.objects.components.input', ['name' => 'years_from[]', 'placeholder' => '下限なし'])〜
                        @include('admin.objects.components.input', ['name' => 'years_to[]', 'placeholder' => '上限なし'])年
                    </td>
                    <th>築年月</th>
                    <td class="p-search-common__year-month">
                        @include('admin.objects.components.input', ['name' => 'year_month_from[]', 'placeholder' => '0000/00'])〜
                        @include('admin.objects.components.input', ['name' => 'year_month_to[]', 'placeholder' => '0000/00'])
                    </td>
                    <th>構造</th>
                    <td>
                        @include('admin.objects.components.selectbox', ['name' => 'construction[]', 'options' => $construction, 'title' => '構造'])
                    </td>
                </tr>
                <tr>
                    <th>駐車場</th>
                    <td>
                        @include('admin.objects.components.selectbox', ['name' => 'parking[]', 'options' => $parking, 'title' => '駐車場'])
                    </td>
                    <th>現況</th>
                    <td>
                        @include('admin.objects.components.selectbox', ['name' => 'current_status[]', 'options' => $land_status, 'title' => '現況'])
                        <span class="p-search-common__pet">※物件種別を選択済みの時、選択可能</span>
                    </td>
                    <th>用途地域</th>
                    <td>
                        @include('admin.objects.components.selectbox', ['name' => 'use_area[]', 'options' => $use_area, 'title' => '用途地域'])
                    </td>
                    <th>マンション所在階</th>
                    <td class="p-search-common__floor">
                        @include('admin.objects.components.input', ['name' => 'whereabouts[]'])階
                        {{--                @include('admin.objects.components.input', ['name' => 'floor_from[]', 'placeholder' => '下限なし'])〜--}}
                        {{--                @include('admin.objects.components.input', ['name' => 'floor_to[]', 'placeholder' => '上限なし'])階--}}
                    </td>
                </tr>
                <tr>
                    <th>建築条件</th>
                    <td>
                        @include('admin.objects.components.checkbox', ['name' => 'land_condition[]',
                            'checkbox' => [['code'=>'1', 'name'=>'建築条件付']]
                        ])
                        @include('admin.objects.components.checkbox', ['name' => 'land_condition[]',
                            'checkbox' => [['code'=>'0', 'name'=>'建築条件無']]
                        ])
                    </td>
                    </td>
                    <th>条件外し</th>
                    <td>
                        @include('admin.objects.components.checkbox', ['name' => 'remove_condition[]',
                            'checkbox' => [['code'=>'1', 'name'=>'条件外し可']]
                        ])
                    </td>
                    </td>
                    <th>接道方向</th>
                    <td>
                        @include('admin.objects.components.selectbox', ['name' => 'land_kind[]', 'options' => $land_direction, 'title' => '接道方向'])
                    </td>
                    <th>取扱店舗</th>
                    <td>
                        @include('admin.objects.components.selectbox', ['name' => 'search_shop[]', 'options' => $shop, 'title' => '取扱店舗'])
                    </td>
                </tr>
                <tr>
                    <th>バルコニー</th>
                    <td class="p-search-common__balcony">
                        @include('admin.objects.components.selectbox', ['name' => 'balcony_direction[]', 'options' => $balcony])
                        @include('admin.objects.components.input', ['name' => 'balcony_area[]', 'placeholder' => ''])m&sup2;以上
                    </td>
                    <th>ペット</th>
                    <td>
                        @include('admin.objects.components.selectbox', ['name' => 'is_pet[]', 'options' => $pet, 'title' => '可or不可', 'class' => 'w125'])
                        @include('admin.objects.components.selectbox', ['name' => 'pet_num[]', 'options' => $pet_num, 'title' => '', 'class' => 'w50'])
                        <span class="p-search-common__pet">※匹数をお客様にお伝えする際には、管理規約を確認してください。</span>
                    </td>
                    <th>分譲会社</th>
                    <td class="p-search-common__company">
                        @include('admin.objects.components.input', ['name' => 'sales_company[]', 'placeholder' => ''])
                    </td>
                    <th>施工会社</th>
                    <td class="p-search-common__company">
                        @include('admin.objects.components.input', ['name' => 'construction_name[]', 'placeholder' => ''])
                    </td>
                </tr>
                <tr>
                    <th>リフォーム</th>
                    <td colspan="2" class="p-search-common__balcony">
                        @include('admin.objects.components.checkbox', ['name' => 'exterior[]',
                            'checkbox' => [['code'=>'1', 'name'=>'外装']]
                        ])
                        @include('admin.objects.components.checkbox', ['name' => 'interior[]',
                            'checkbox' => [['code'=>'1', 'name'=>'内装']]
                        ])
                        @include('admin.objects.components.selectbox', ['name' => 'reform_info[]', 'options' => Config::get('const.REFORM_SEARCH'), 'class' => 'w125'])
                    </td>
                    <td colspan="3" class="p-search-common__company">
                        @include('admin.objects.components.selectbox', ['name' => 'reform_year_from[]', 'options' => Config::get('const.REFORM_YEAR'), 'title' => true])
                        年
                        @include('admin.objects.components.selectbox', ['name' => 'reform_month_from[]', 'options' => Config::get('const.MONTH'), 'title' => true])
                        月 ~
                        @include('admin.objects.components.selectbox', ['name' => 'reform_year_to[]', 'options' => Config::get('const.REFORM_YEAR'), 'title' => true])
                        年
                        @include('admin.objects.components.selectbox', ['name' => 'reform_month_to[]', 'options' => Config::get('const.MONTH'), 'title' => true])
                        月
                    </td>
                    <th>ステータス</th>
                    <td class="p-search-common__company">
                        @include('admin.objects.components.selectbox', ['name' => 'status[]', 'options' => $statuses])
                    </td>
                </tr>
                <tr>
                    <td colspan="8" class="p-search-common__collapse">
                        <a class="p-search-common__collapse-link p-search-common__collapse-link--open" data-toggle="collapse" href="#searchUnique" role="button" aria-expanded="false" aria-controls="searchUnique"></a>
                        <div class="collapse p-search-common__collapse-contains" id="searchUnique">
                            @if ($isForSale ?? false)
                                @include('admin.objects.projects.search-for-sale-multi')
                            @else
                                @include('admin.objects.projects.search-close')
                            @endif
                        </div>
                    </td>
                </tr>
                @if( !isset($isregistRecommend))
                    <tr>
                        <td colspan="8">
                            <ul class="p-search-common__search-clear">
                                <li>この条件を</li>
                                @if(isset($isBusiness) && $isBusiness)

                                    <li><a href="javascript:void(0);" id="copyCondition">複製</a></li>
                                    <li><a href="javascript:void(0);" class="clear-button">クリア</a></li>
                                    <li><a href="javascript:void(0);" class="delete-form-button">削除</a></li>
                                @else
                                    <li>@include('admin.objects.components.btn', ['title' => '複製', 'type' => 'button', 'class' => 'btn_icon_plus btn_gray btn_blue', 'id' => 'copyCondition'])</li>
                                    <li>@include('admin.objects.components.btn', ['title' => 'クリア', 'type' => 'button', 'class' => 'clear-button btn_blue', 'id' => ''])</li>
                                    <li>@include('admin.objects.components.btn', ['title' => '削除', 'type' => 'button', 'class' => 'delete-form-button btn_blue', 'id' => ''])</li>
                                @endif
                            </ul>
                        </td>
                    </tr>
                @endif
            </table>
        @endfor
    @else
        <table class="p-search-common__tbl">
            <tr class="p-search-common__height0">
                <th class="p-search-common__bal"></th><td></td><th></th><td></td><th></th><td></td><th></th><td></td>
            </tr>
            <tr>
                <th>物件種別</th>
                <td class="w230">
                    @include('admin.objects.components.selectbox', ['name' => 'property[]', 'options' => $property, 'title' => '物件種別'])
                    @if(isset($un_revenue))
                        <div>
                            @endif
                            @include('admin.objects.components.checkbox', ['name' => 'revenue[]', 'checkbox' => $revenue])
                            @if(isset($un_revenue))
                                @include('admin.objects.components.checkbox', ['name' => 'un_revenue[]', 'checkbox' => $un_revenue])
                            @endif
                            @if(isset($un_revenue))
                        </div>
                    @endif

                </td>
                <th>所在地</th>
                <td colspan="3" class="p-search-common__address">
                    <div class="cs-flex">
                        @include('admin.objects.components.selectbox', ['name' => 'address1[]', 'options' => $pref])
                        <div class="h-100 data-address">
                            @include('admin.objects.components.data-list', ['name' => 'list-address2[]', 'options' => $city, 'placeholder' => '市区郡選択',
                            'class' => 'list-address2', 'value' => !empty(request()->get('list-address2')[0]) ? request()->get('list-address2')[0] : "",
                            'code' => !empty(request()->get('address2')[0]) ? request()->get('address2')[0] : ""])
                            <div style="display: none">
                                @include('admin.objects.components.selectbox', ['name' => 'address2[]', 'options' => $city, 'title' => '市区郡'])
                            </div>
                        </div>
                        <div class="h-100 data-address">
                            @include('admin.objects.components.input', ['name' => 'town_name[]', 'class' => 'c-selectbox w-auto mx-1'])
                            {{--                            @include('admin.objects.components.data-list', ['name' => 'list-address3[]', 'placeholder' => '町村選択',--}}
                            {{--                            'class' => 'list-address3', 'value' => !empty(request()->get('list-address3')[0]) ? request()->get('list-address3')[0] : "",--}}
                            {{--                            'code' => !empty(request()->get('address3')[0]) ? request()->get('address3')[0] : ""])--}}
                            {{--                            <div style="display: none">--}}
                            {{--                                @include('admin.objects.components.selectbox', ['name' => 'address3[]', 'options' => $town, 'title' => '町村'])--}}
                            {{--                            </div>--}}
                            <span class="p-search-common__town">{{ getDescriptionForTownName() }}</span>
                        </div>
                        @include('admin.objects.components.input', ['name' => 'address4[]', 'class' => 'w100'])
                    </div>
                </td>
                <th>物件ID</th>
                <td class="p-search-common__id w220">
                    @include('admin.objects.components.input', ['name' => 'building_id[]'])
                </td>
            </tr>
            <tr>
                <th>価格</th>
                <td class="p-search-common__price">
                    @include('admin.objects.components.input', ['name' => 'price_from[]', 'placeholder' => '下限なし'])〜
                    @include('admin.objects.components.input', ['name' => 'price_to[]', 'placeholder' => '上限なし'])万円
                </td>
                <th>交通</th>
                <td colspan="5" class="p-search-common__access">
                    @include('admin.objects.components.selectbox', ['name' => 'access1[]', 'options' => $line, 'title' => '沿線','id' => 'traffic_forsale'])
                    <input type="hidden" name="" id="hidden-access2" value="{{ isset(request()->get('access2')[0]) ? request()->get('access2')[0] : "" }}">
                    @include('admin.objects.components.selectbox', ['name' => 'access2[]', 'options' => [], 'title' => '駅'])
                    @include('admin.objects.components.selectbox', ['name' => 'access3[]', 'options' => $walk, 'title' => '徒歩/バス'])
                    <span>バス</span>@include('admin.objects.components.input', ['name' => 'bus[]'])<span>分以内 / 徒歩</span>
                    @include('admin.objects.components.input', ['name' => 'walk[]'])<span>分以内</span>
                </td>
            </tr>
            <tr>
                <th>学校区</th>
                <td>
                    <div class="cs-flex" style="margin-left: -5px; margin-right: -5px">
                        <div class="h-100 data-address w-50">
                            @include('admin.objects.components.data-list', ['name' => 'list-primary_school[]', 'options' => $primary_school, 'placeholder' => '小学校区を選択',
                            'class' => 'list-primary_school', 'value' => !empty(request()->get('list-primary_school')[0]) ? request()->get('list-primary_school')[0] : "",
                            'code' => !empty(request()->get('primary_school')[0]) ? request()->get('primary_school')[0] : ""])

                            <div class="d-none">
                                @include('admin.objects.components.selectbox', ['name' => 'primary_school[]', 'options' => $primary_school, 'title' => '小学校区', 'class' => 'w100 mb10'])

                            </div>
                        </div>
                        <div class="h-100 data-address w-50">
                            @include('admin.objects.components.data-list', ['name' => 'list-secondary_school[]', 'options' => $secondary_school, 'placeholder' => '中学校区を選択',
                            'class' => 'list-secondary_school', 'value' => !empty(request()->get('list-secondary_school')[0]) ? request()->get('list-secondary_school')[0] : "",
                            'code' => !empty(request()->get('secondary_school')[0]) ? request()->get('secondary_school')[0] : ""])

                            <div class="d-none">
                                @include('admin.objects.components.selectbox', ['name' => 'secondary_school[]', 'options' => $secondary_school, 'title' => '中学校区', 'class' => 'w100'])
                            </div>
                        </div>
                    </div>
                    <span class="p-search-common__pet">※所在地の市区を選択済みの時、選択可能</span>
                </td>
                <th>土地面積</th>
                <td class="p-search-common__land w210">
                    @include('admin.objects.components.input', ['name' => 'land_from[]', 'placeholder' => '下限なし'])〜
                    @include('admin.objects.components.input', ['name' => 'land_to[]', 'placeholder' => '上限なし'])m&sup2;
                </td>
                <th>延床面積</th>
                <td class="p-search-common__floor-area w200">
                    @include('admin.objects.components.input', ['name' => 'floor_area_from[]', 'placeholder' => '下限なし'])〜
                    @include('admin.objects.components.input', ['name' => 'floor_area_to[]', 'placeholder' => '上限なし'])m&sup2;
                </td>
                <th>間取り</th>
                <td class="p-search-common__access w200">
                    @include('admin.objects.components.input', ['name' => 'floor_plan_from[]', 'placeholder' => '下限なし'])〜
                    @include('admin.objects.components.input', ['name' => 'floor_plan_to[]', 'placeholder' => '上限なし'])R・SLDK
                </td>
            </tr>
            <tr>
                <th>物件名</th>
                <td class="p-search-common__name">
                    @include('admin.objects.components.input', ['name' => 'name[]', 'placeholder' => ''])
                </td>
                <th>築年数</th>
                <td class="p-search-common__years">
                    @include('admin.objects.components.input', ['name' => 'years_from[]', 'placeholder' => '下限なし'])〜
                    @include('admin.objects.components.input', ['name' => 'years_to[]', 'placeholder' => '上限なし'])年
                </td>
                <th>築年月</th>
                <td class="p-search-common__year-month">
                    @include('admin.objects.components.input', ['name' => 'year_month_from[]', 'placeholder' => '0000/00'])〜
                    @include('admin.objects.components.input', ['name' => 'year_month_to[]', 'placeholder' => '0000/00'])
                </td>
                <th>構造</th>
                <td>
                    @include('admin.objects.components.selectbox', ['name' => 'construction[]', 'options' => $construction, 'title' => '構造'])
                </td>
            </tr>
            <tr>
                <th>駐車場</th>
                <td>
                    @include('admin.objects.components.selectbox', ['name' => 'parking[]', 'options' => $parking, 'title' => '駐車場'])
                </td>
                <th>現況</th>
                <td>
                    @include('admin.objects.components.selectbox', ['name' => 'current_status[]', 'options' => [], 'title' => '現況', 'class' => 'statusResult'])
                    <span class="p-search-common__pet">※物件種別を選択済みの時、選択可能</span>
                </td>
                <th>用途地域</th>
                <td>
                    @include('admin.objects.components.selectbox', ['name' => 'use_area[]', 'options' => $use_area, 'title' => '用途地域'])
                </td>
                <th>マンション所在階</th>
                <td class="p-search-common__floor">
                    @include('admin.objects.components.input', ['name' => 'whereabouts_from[]', 'placeholder' => '下限なし'])〜
                    @include('admin.objects.components.input', ['name' => 'whereabouts_to[]', 'placeholder' => '上限なし'])階
                    {{--                    @include('admin.objects.components.input', ['name' => 'floor_from[]', 'placeholder' => '下限なし'])〜--}}
                    {{--                    @include('admin.objects.components.input', ['name' => 'floor_to[]', 'placeholder' => '上限なし'])階--}}
                </td>
            </tr>
            <tr>
                <th>建築条件</th>
                <td>
                    @include('admin.objects.components.checkbox', ['name' => 'land_condition[]',
                        'checkbox' => [['code'=>'1', 'name'=>'建築条件付']]
                    ])
                    @include('admin.objects.components.checkbox', ['name' => 'land_condition[]',
                        'checkbox' => [['code'=>'0', 'name'=>'建築条件無']]
                    ])
                </td>
                </td>
                <th>条件外し</th>
                <td>
                    @include('admin.objects.components.checkbox', ['name' => 'remove_condition[]',
                        'checkbox' => [['code'=>'1', 'name'=>'条件外し可']]
                    ])
                </td>
                </td>
                <th>接道方向</th>
                <td>
                    @include('admin.objects.components.selectbox', ['name' => 'land_kind[]', 'options' => $land_direction, 'title' => '接道方向'])
                </td>
                <th>取扱店舗</th>
                <td>
                    @include('admin.objects.components.selectbox', ['name' => 'search_shop[]', 'options' => $shop, 'title' => '取扱店舗'])
                </td>
            </tr>
            <tr>
                <th>バルコニー</th>
                <td class="p-search-common__balcony">
                    @include('admin.objects.components.selectbox', ['name' => 'balcony_direction[]', 'options' => $balcony])
                    @include('admin.objects.components.input', ['name' => 'balcony_area[]', 'placeholder' => ''])m&sup2;以上
                </td>
                <th>ペット</th>
                <td>
                    @include('admin.objects.components.selectbox', ['name' => 'is_pet[]', 'options' => $pet, 'title' => '可or不可', 'class' => 'w125'])
                    @include('admin.objects.components.selectbox', ['name' => 'pet_num[]', 'options' => $pet_num, 'title' => '', 'class' => 'w80'])
                    <span class="p-search-common__pet">※匹数をお客様にお伝えする際には、管理規約を確認してください。</span>
                </td>
                <th>分譲会社</th>
                <td class="p-search-common__company">
                    @include('admin.objects.components.input', ['name' => 'sales_company[]', 'placeholder' => ''])
                </td>
                <th>施工会社</th>
                <td class="p-search-common__company">
                    @include('admin.objects.components.input', ['name' => 'construction_name[]', 'placeholder' => ''])
                </td>
            </tr>
            <tr>
                <th>リフォーム</th>
                <td colspan="2" class="p-search-common__balcony">
                    @include('admin.objects.components.checkbox', ['name' => 'exterior[]',
                        'checkbox' => [['code'=>'1', 'name'=>'外装']]
                    ])
                    @include('admin.objects.components.checkbox', ['name' => 'interior[]',
                        'checkbox' => [['code'=>'1', 'name'=>'内装']]
                    ])
                    @include('admin.objects.components.selectbox', ['name' => 'reform_info[]', 'options' => Config::get('const.REFORM_SEARCH'), 'class' => 'w125'])
                </td>
                <td colspan="3" class="p-search-common__company">
                    @include('admin.objects.components.selectbox', ['name' => 'reform_year_from[]', 'options' => Config::get('const.REFORM_YEAR'), 'title' => true])
                    年
                    @include('admin.objects.components.selectbox', ['name' => 'reform_month_from[]', 'options' => Config::get('const.MONTH'), 'title' => true])
                    月 ~
                    @include('admin.objects.components.selectbox', ['name' => 'reform_year_to[]', 'options' => Config::get('const.REFORM_YEAR'), 'title' => true])
                    年
                    @include('admin.objects.components.selectbox', ['name' => 'reform_month_to[]', 'options' => Config::get('const.MONTH'), 'title' => true])
                    月
                </td>
                <th>ステータス</th>
                <td class="p-search-common__company">
                    @include('admin.objects.components.selectbox', ['name' => 'status[]', 'options' => $statuses])
                </td>
            </tr>
            <tr>
                <td colspan="8" class="p-search-common__collapse">
                    <a class="p-search-common__collapse-link p-search-common__collapse-link--open" data-toggle="collapse" href="#searchUnique" role="button" aria-expanded="false" aria-controls="searchUnique"></a>
                    <div class="collapse p-search-common__collapse-contains" id="searchUnique">
                        @if ($isForSale ?? false)
                            @include('admin.objects.projects.search-for-sale-multi')
                        @else
                            @include('admin.objects.projects.search-close')
                        @endif
                    </div>
                </td>
            </tr>
            @if( !isset($isregistRecommend))
                <tr>
                    <td colspan="8" class="p-search-common__search-buttons">
                        @include('admin.objects.components.action-search-form')
                    </td>
                </tr>
            @endif
        </table>
    @endif
</div>
