<div class="p-detail-main-sheet__right fright vertical-table-detail">
    <div>
        <table class="p-detail-main-sheet__right-tbl table-striped custom-table">
        <tr>
            <th class="w-100">建築条件</th>
        </tr>
        <tr>
            <td class="w-100">
                <?php echo e($item->land_condition_name); ?>

                <?php if($item->land_condition==1): ?>
                    <?php if($item->land_condition_not==1): ?>
                        （条件外し：可）
                    <?php endif; ?>
                    <?php if($item->building_plan_place or $item->building_plan_area): ?>
                        <br />【建物プラン】
                        <?php if($item->building_plan_place): ?>建物価格：<?php echo e(number_format($item->building_plan_place, 0, ",", ",")); ?>万円<?php endif; ?>
                        <?php if($item->building_plan_area): ?>建物面積：<?php echo e($item->building_plan_area); ?>m²<?php endif; ?>
                    <?php endif; ?>
                <?php endif; ?>
            </td>
        </tr>

        <tr>
            <th class="w-100">所在地</th>
        </tr>
        <tr>
            <td class="clearfix w-100" style="height: auto">
                

                <?php echo e($item->address_info); ?>

















            </td>
        </tr>

        <tr>
            <th class="w-100">交通</th>
        </tr>
        <tr>
            <td class="w-100">
                <?php echo $__env->make('business.objects.projects.traffic-info-other', ['article' => $mansion ?? $item], \Illuminate\Support\Arr::except(get_defined_vars(), array('__data', '__path')))->render(); ?>
            </td>
        </tr>
        <tr>
            <th class="w-100">土地面積</th>
        </tr>
        <tr>
            <td class="w-100"><?php echo e($item->land_area_val?? '-'); ?>&nbsp;m&sup2;</td>
        </tr>

        <tr>
            <th class="w-50">建ぺい率</th>
            <th class="w-50">容積率</th>
        </tr>
        <tr>
            <td class="w-50"><?php echo e(intval($item->building_rate)?? '-'); ?>%</td>
            <td class="w-50"><?php echo e(intval($item->volume_rate)?? '-'); ?>%</td>
        </tr>

        <tr>
            <th class="w-50">私道負担</th>
            <th class="w-50">地目</th>
        </tr>
        <tr>
            <td class="w-50">
                <?php echo e($item->getRoadBurdenNamePrint()); ?>

            </td>
            <td class="w-50"><?php echo e($item->ground_name); ?></td>
        </tr>
        <tr>
            <th class="w-50">現況</th>
            <th class="w-50">引渡し</th>
        </tr>

        <tr>
            <td class="w-50">








                <?php if(getCurrentStatusName($item->current_status, $item->property) || ($item->current_status==3 && $item->comp_year) ): ?>
                    未造成
                <?php endif; ?>
            </td>
            <td class="w-50">
                <?php if($item->land_delivery == 1): ?>
                    即
                <?php elseif($item->land_delivery == 2): ?>
                    相談
                <?php elseif($item->land_delivery == 3): ?>
                    <?php echo e($item->delivery_year); ?>年<?php echo e($item->delivery_month); ?>月
                <?php elseif($item->land_delivery == 4): ?>
                    契約後<?php echo e($item->land_delivery_month); ?>ヶ月
                <?php else: ?>
                    -
                <?php endif; ?>
                
            </td>
        </tr>

        <tr>
            <th  class="w-100">セットバック</th>
        </tr>
        <tr>
            <td  class="w-100"><?php echo e($item->getSetPropName()); ?></td>
        </tr>
        <tr>
            <th class="w-100">用途地域</th>
        </tr>
        <tr>
            <td class="w-100">
                <?php echo e($item->use_area_name??'-'); ?><?php if($item->use_area_name != "" || $item->use_area_name != null): ?>
                <?php endif; ?>








                <?php if($item->use_area_name_sub != "" || $item->use_area_name_sub2 != ""): ?>
                    ・他
                <?php endif; ?>
            </td>
        </tr>
    </table>
    </div>
</div>
