<?php
    $primary_school_name=$item->primary_school_name;
    if(!strstr($primary_school_name,'義務教育学校')){$primary_school_name=str_replace('学校','',$primary_school_name);}
    $primary_school_name2=$item->primary_school_name2;
    if(!strstr($primary_school_name2,'義務教育学校')){$primary_school_name2=str_replace('学校','',$primary_school_name2);}
    $primary_school_name3=$item->primary_school_name3;
    if(!strstr($primary_school_name3,'義務教育学校')){$primary_school_name3=str_replace('学校','',$primary_school_name3);}
    $secondary_school_name=$item->secondary_school_name;
    if(!strstr($secondary_school_name,'義務教育学校')){$secondary_school_name=str_replace('学校','',$secondary_school_name);}
    $secondary_school_name2=$item->secondary_school_name2;
    if(!strstr($secondary_school_name2,'義務教育学校')){$secondary_school_name2=str_replace('学校','',$secondary_school_name2);}
    $secondary_school_name3=$item->secondary_school_name3;
    if(!strstr($secondary_school_name3,'義務教育学校')){$secondary_school_name3=str_replace('学校','',$secondary_school_name3);}
?>
<div class="p-detail-main-sheet__right fright origin-content-table-detail">





    <table class="p-detail-main-sheet__right-tbl"  style="margin-top: 0px; table-layout: fixed">
        <tr>
            <th>物件種別</th>
            <td colspan="3">
                <?php echo e($item->property_name); ?>

                <?php if($item->occupied): ?>
                    （未入居）
                <?php endif; ?>
                <?php if($item->classfication==2): ?>
                    （事業用）
                <?php elseif($item->classfication==3): ?>
                    （投資用）
                <?php endif; ?>
                <?php if($item->land_not): ?>
                    （再建築不可）
                <?php endif; ?>
            </td>
        </tr>
        <?php if($item->status == 4): ?>
            <tr>
                <th>価格</th>
                <td colspan="3">
                    <?php if($item->price_closing): ?>
                        成約：<?php echo e(number_format($item->price_closing, 0, ",", ",")); ?>

                        <span>万円</span>
                        <?php if($item->close_date != null): ?>
                            (<?php echo e(date('y/m/d', strtotime($item->close_date))); ?>)
                        <?php endif; ?>
                    <?php else: ?>
                        -
                    <?php endif; ?>
                    ／ 最終：<span><?php if($item->price): ?><?php echo e(number_format($item->price, 0, ",", ",")); ?>万円<?php else: ?> - <?php endif; ?></span>
                </td>
            </tr>
        <?php elseif($item->status == 5): ?>
            <tr>
                <th>物件価格</th>
                <td colspan="3">
                    <?php if($item->price): ?><?php echo e(number_format($item->price, 0, ",", ",")); ?><?php else: ?>-<?php endif; ?></span>万円
                </td>
            </tr>
        <?php endif; ?>
        <tr>
            <th style="height: auto">所在地</th>
            <td style="height: auto" colspan="3" <?php if(isset($item->town_name) && !strstr($item->address,$item->town_name) && isset($item->other_address)): ?> class="p-detail-main-sheet__right-tbl-double" <?php endif; ?>>
                
                    <?php echo e($item->address_info); ?>

                    <br>

                <?php if(request('action') == null): ?>
                    <?php
                        if($item->lat != ''){
                            $google = "https://maps.google.co.jp/maps/search/".$item->lat.",".$item->lng;
                        }else{
                            $google = "https://www.google.com/maps/embed/v1/place?q=".$item->address_info."&key=AIzaSyAvLqHslDD75YM0_3ZZYv_C9lYVKNLR_i0";
                        }
                    ?>
                    <a class="ml-2 float-right p-detail-main-sheet__right-tbl-link" target="_blank"
                       href="<?php echo e($google); ?>">&gt;Googleマップ</a>
                <?php endif; ?>




            </td>
        </tr>
        <tr>
            <th class="<?php if($mansion ? $mansion->main_traffic_bus_time : $item->main_traffic_bus_time): ?> p-detail-main-sheet__right-tbl-double <?php endif; ?>">主要交通</th>
            <td colspan="3" class="<?php if($mansion ? $mansion->main_traffic_bus_time : $item->main_traffic_bus_time): ?> p-detail-main-sheet__right-tbl-double <?php endif; ?>">
                <?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>
        <?php if($item->property == 1 || $item->property == 2 || $item->property == 3): ?>
            <tr>
                <th>土地面積</th>
                <td colspan="3"><?php echo e($item->land_area_val?? '-'); ?>&nbsp;m&sup2;</td>
            </tr>
            <tr>
                <th>土地条件</th>
                <td colspan="3">
                    <?php if($item->land_condition1 or $item->land_condition2 or $item->land_condition3): ?>
                        <?php if($item->land_condition_area1): ?>
                            傾斜部分<?php echo e($item->land_condition_area1); ?><?php if($item->land_condition_unit1==2): ?>
                                m&sup2;
                            <?php elseif($item->land_condition_unit1==3): ?>
                                ％
                            <?php endif; ?>
                        <?php endif; ?>
                        <?php if($item->land_condition_area2): ?>
                            路地上部分<?php echo e($item->land_condition_area2); ?><?php if($item->land_condition_unit2==2): ?>
                                m&sup2;
                            <?php elseif($item->land_condition_unit2==3): ?>
                                ％
                            <?php endif; ?>
                        <?php endif; ?>
                        <?php if($item->land_condition_area3): ?>
                            高圧線下<?php echo e($item->land_condition_area3); ?>m&sup2;
                        <?php endif; ?>
                    <?php else: ?>
                        -
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>その他費用</th>
                <td colspan="3" class="p-detail-main-sheet__right-tbl-small">
                    <?php if($item->another_cost1): ?>
                        <?php echo e(getAnotherCost($item, [1])); ?>

                    <?php endif; ?>
                    <?php if($item->another_cost2): ?>
                        ／<?php echo e(getAnotherCost($item, [2])); ?>

                    <?php endif; ?>
                    <?php if($item->another_cost3): ?>
                        他
                    <?php endif; ?>
                    <?php if(!$item->another_cost1 and !$item->another_cost2 and !$item->another_cost3): ?>
                        -
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th class="p-detail-main-sheet__right-tbl-double">接道</th>
                <td colspan="3" class="p-detail-main-sheet__right-tbl-double">
                    <?php if($item->getLanDirectionNameShort()): ?>
                        <?php echo $item->getLanDirectionNameShort(); ?>

                    <?php else: ?>
                        -
                    <?php endif; ?>
                </td>
            </tr>
            <?php if($item->garage): ?>
                <!--<tr>
                    <th>車庫</th>
                    <td colspan="3"><?php echo e($item->garage == 1 ? '掘込車庫' : '-'); ?></td>
                </tr>-->
            <?php endif; ?>
            <tr>
                <th>土地権利</th>
                <td colspan="3">
                    <?php if($dataLand->land_right==1): ?>
                        所有権
                    <?php elseif($dataLand->land_right==2): ?>
                        <span>借地権のみ</span>
                    <?php elseif($dataLand->land_right==3): ?>
                        <span>所有権・借地権混在</span>
                    <?php else: ?>
                        -
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>セットバック</th>
                <td colspan="3"><?php echo e($item->getSetPropName()); ?></td>
            </tr>
            <tr>
                <th>私道負担</th>
                <td colspan="3">
                    <?php echo e($item->getRoadBurdenName()); ?>

                </td>
            </tr>
            <tr>
                <th>地役権</th>
                <td colspan="3"><?php echo e($item->getEasement()); ?></td>
            </tr>
            <tr>
                <th>用途地域</th>
                <td colspan="3">
                  <div class="use-area-content">
                    <span class=use-area-info>
                      <?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 != ""): ?>
                          ・<?php echo e($item->use_area_name_sub); ?>

                      <?php endif; ?>
                    </span>
                    <?php if($item->use_area_name_sub2 != ""): ?>
                    <span class="use-area-others">他</span>
                    <?php endif; ?>
                  </div>
                </td>
            </tr>
            <tr>
                <th>都市計画</th>
                <td class="p-detail-main-sheet__right-tbl-half">
                    <?php if($dataLand->city_plan == 2): ?>
                        <?php echo e($dataLand->getCityPlanName()); ?>

                    <?php else: ?>
                        <?php echo e($dataLand->getCityPlanName()); ?>

                    <?php endif; ?>
                </td>
                <th>地目</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->ground_name); ?></td>
            </tr>
            <tr>
                <th>建ぺい率</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e(intval($item->building_rate)?? '-'); ?>%</td>
                <th>容積率</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e(intval($item->volume_rate)?? '-'); ?>%</td>
            </tr>
            <tr>
                <th>建築条件</th>
                <td colspan="3">
                    <?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>
            <?php if($item->section): ?>
                <tr>
                    <th>総区画数</th>
                    <td colspan="3"><?php echo e($item->section?? '-'); ?>区画</td>
                </tr>
            <?php endif; ?>
            <tr>
                <th>現況</th>
                <td colspan="3">
                    <?php echo e(getCurrentStatusName($item->current_status, $item->property)); ?>

                    <?php if($item->current_status==3): ?>
                        <?php if($item->comp_year): ?>
                            （造成工事完了予定年月：<?php echo e($item->comp_year); ?>年
                            <?php if($item->comp_month): ?>
                                <?php echo e($item->comp_month); ?>月
                            <?php endif; ?>
                            ）
                        <?php endif; ?>
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>引渡し</th>
                <td colspan="3">
                    <?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; ?>
                    <?php if($item->move_in_conditions): ?>
                        ／<?php echo e($item->move_in_conditions); ?>

                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>設備</th>
                <td class="p-detail-main-sheet__right-tbl-small" colspan="3">
                    上水道：<?php echo e(getWaterSupplyName($item->water_supply)); ?> ／
                    下水道：<?php echo e($item->getSewerageName()); ?> ／
                    ガス：<?php echo e($item->getGasName()); ?>

                </td>
            </tr>
            <tr>
                <th class="p-detail-main-sheet__right-tbl-triple">学校区</th>
                <td colspan="3" class="p-detail-main-sheet__right-tbl-triple">
                    <?php if(!isset($item->primary_school_name) and !isset($item->secondary_school_name) && !isset($item->other_secondary_school_2) && !isset($item->other_primary_school_2)): ?>
                        -
                    <?php endif; ?>
                    <?php if(isset($item->primary_school_name)): ?>
                        <?php echo e($primary_school_name); ?> <?php if(isset($item->primary_school_distance)): ?>
                            約<?php echo e($item->primary_school_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->primary_school_time)): ?>
                            /&nbsp;徒歩<?php echo e($item->primary_school_time); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->primary_school_name2)): ?>
                        <?php echo e($primary_school_name2); ?> <?php if(isset($item->primary_school2_distance)): ?>
                            約<?php echo e($item->primary_school2_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->primary_school_time2)): ?>
                            /&nbsp;徒歩<?php echo e($item->primary_school_time2); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->primary_school_name3)): ?>
                        <?php echo e($primary_school_name3); ?> <?php if(isset($item->primary_school3_distance)): ?>
                            約<?php echo e($item->primary_school3_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->primary_school_time3)): ?>
                            /&nbsp;徒歩<?php echo e($item->primary_school_time3); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->secondary_school_name)): ?>
                        <?php echo e($secondary_school_name); ?> <?php if(isset($item->secondary_school_distance)): ?>
                            約<?php echo e($item->secondary_school_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->secondary_school_time)): ?>
                            /&nbsp;徒歩<?php echo e($item->secondary_school_time); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->secondary_school_name2)): ?>
                        <?php echo e($secondary_school_name2); ?> <?php if(isset($item->secondary_school2_distance)): ?>
                            約<?php echo e($item->secondary_school2_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->secondary_school_time2)): ?>
                            /&nbsp;徒歩<?php echo e($item->secondary_school_time2); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->secondary_school_name3)): ?>
                        <?php echo e($secondary_school_name3); ?> <?php if(isset($item->secondary_school3_distance)): ?>
                            約<?php echo e($item->secondary_school3_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->secondary_school_time3)): ?>
                            /&nbsp;徒歩<?php echo e($item->secondary_school_time3); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                        <?php if(isset($item->other_primary_school_2)): ?>
                            <?php echo e($item->other_primary_school_2); ?>約<?php echo e($item->other_primary_school_3); ?>m
                            <?php if(isset($item->other_primary_school_3)): ?>
                                /徒歩<?php echo e(ceil($item->other_primary_school_3/80)); ?>分　
                            <?php endif; ?>
                        <?php endif; ?>
                        <?php if(isset($item->other_secondary_school_2)): ?>
                            <?php echo e($item->other_secondary_school_2); ?>約<?php echo e($item->other_secondary_school_3); ?>m
                            <?php if(isset($item->other_secondary_school_3)): ?>
                                /徒歩<?php echo e(ceil($item->other_secondary_school_3/80)); ?>分　
                            <?php endif; ?>
                        <?php endif; ?>
                </td>
            </tr>
        <?php elseif($item->property == 4 || $item->property == 5): ?>
            <tr>
                <th>間取り</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->floor_plan); ?><?php echo e($item->floor_plan_name); ?></td>
                <th>階数</th>
                <td class="p-detail-main-sheet__right-tbl-half">
                    <?php if($item->underground): ?>
                        地上<?php echo e($item->floor ? $item->floor.'階' : ''); ?>地下<?php echo e($item->underground ? $item->underground.'階' : ''); ?>

                        建
                    <?php else: ?>
                        <?php echo e($item->floor ? $item->floor.'階' : ''); ?>建
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>土地面積</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->land_area_val); ?>m&sup2;</td>
                <th>建物面積</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->total_area_val); ?>m&sup2;</td>
            </tr>
            <tr>
                <th>建物構造</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->construction_name); ?>

                    <?php if($item->construction_sub_name != ""): ?>
                        ・一部<?php echo e($item->construction_sub_name); ?>

                    <?php endif; ?></td>
                <?php if(empty($mansion)): ?>
                    <?php if($item->age_year == null && $item->age_month == null && $item->completed_contract_month != null): ?>
                        <th>完成予定</th>
                        <td class="p-detail-main-sheet__right-tbl-half">契約後<?php echo e($item->completed_contract_month); ?>ヶ月</td>
                    <?php elseif($item->age_year > date("Y") || ($item->age_year == date("Y") && $item->age_month >= date("m") )): ?>
                        <th>完成予定</th>
                        <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->age_year?? "-"); ?>

                            年<?php echo e($item->age_month?? "-"); ?>月<?php echo e($item->completed_text??''); ?></td>
                    <?php else: ?>
                        <th>築年月</th>
                        <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->age_year?? "-"); ?>

                            年<?php echo e($item->age_month?? "-"); ?>月<?php echo e($item->completed_text??''); ?></td>
                    <?php endif; ?>
                <?php else: ?>
                    <?php if($mansion->age_year == null && $mansion->age_month == null): ?>
                        <th>築年月</th>
                        <td class="p-detail-main-sheet__right-tbl-half">-</td>
                    <?php elseif($mansion->age_year > date("Y") || ($mansion->age_year == date("Y") && $mansion->age_month >= date("m") )): ?>
                        <th>完成予定</th>
                        <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($mansion->age_year?? "-"); ?>

                            年<?php echo e($mansion->age_month?? "-"); ?>月<?php echo e($item->completed_text??''); ?></td>
                    <?php else: ?>
                        <th>築年月</th>
                        <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($mansion->age_year?? "-"); ?>

                            年<?php echo e($mansion->age_month?? "-"); ?>月<?php echo e($item->completed_text??''); ?></td>
                    <?php endif; ?>
                <?php endif; ?>
            </tr>
            <tr>
                <th>土地条件</th>
                <td colspan="3">
                    <?php if($item->land_condition1 and $item->land_condition_area1 or $item->land_condition_2 and $item->land_condition_area2 or $item->land_condition3 and $item->land_condition_area3): ?>

                        <?php if($item->land_condition_area1): ?>
                            傾斜部分<?php echo e($item->land_condition_area1); ?><?php if($item->land_condition_unit1==2): ?>
                                m&sup2;
                            <?php elseif($item->land_condition_unit1==3): ?>
                                ％
                            <?php endif; ?>

                        <?php endif; ?>
                        <?php if($item->land_condition_area2): ?>
                            路地上部分<?php echo e($item->land_condition_area2); ?><?php if($item->land_condition_unit2==2): ?>
                                m&sup2;
                            <?php elseif($item->land_condition_unit2==3): ?>
                                ％
                            <?php endif; ?>

                        <?php endif; ?>
                        <?php if($item->land_condition_area3): ?>
                            高圧線下<?php echo e($item->land_condition_area3); ?>m&sup2;
                        <?php endif; ?>

                    <?php else: ?>
                        -
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>建物条件</th>
                <td colspan="3">
                    <?php if(isset($item->building_condition1) or isset($item->building_condition2) or isset($item->building_condition3) or isset($item->building_condition_select)): ?>
                        <?php echo $item->getBuildingCondition(); ?>

                    <?php else: ?>
                        -
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>その他費用</th>
                <td colspan="3" class="p-detail-main-sheet__right-tbl-small">
                    <?php if($item->another_cost1): ?>
                        <?php echo e(getAnotherCost($item, [1])); ?>

                    <?php endif; ?>
                    <?php if($item->another_cost2): ?>
                        ／<?php echo e(getAnotherCost($item, [2])); ?>

                    <?php endif; ?>
                    <?php if($item->another_cost3): ?>
                        他
                    <?php endif; ?>
                    <?php if(!$item->another_cost1 and !$item->another_cost2 and !$item->another_cost3): ?>
                        -
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th class="p-detail-main-sheet__right-tbl-double">接道</th>
                <td colspan="3" class="p-detail-main-sheet__right-tbl-double">
                    <?php if($item->getLanDirectionNameShort()): ?>
                        <?php echo $item->getLanDirectionNameShort(); ?>

                    <?php else: ?>
                        -
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>セットバック</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->getSetPropName()); ?></td>
                <th>土地権利</th>
                <td class="p-detail-main-sheet__right-tbl-half">
                    <?php if($dataLand->land_right==1): ?>
                        所有権
                    <?php elseif($dataLand->land_right==2): ?>
                        <span>借地権のみ</span>
                    <?php elseif($dataLand->land_right==3): ?>
                        <span>所有権・借地権混在</span>
                    <?php else: ?>
                        -
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>私道負担</th>
                <td colspan="3"><?php echo e($item->getRoadBurdenName()); ?></td>
            </tr>
            <tr>
                <th>地役権</th>
                <td colspan="3"><?php echo e($item->getEasement()); ?></td>
            </tr>
            <tr>
                <th>用途地域</th>
                <td colspan="3">
                    <?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 != ""): ?>
                        ・<?php echo e($item->use_area_name_sub); ?>

                    <?php endif; ?>
                    <?php if($item->use_area_name_sub2 != ""): ?>
                        他
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>都市計画</th>
                <td class="p-detail-main-sheet__right-tbl-half">
                    <?php if($dataLand->city_plan == 2): ?>
                        <?php echo e($dataLand->getCityPlanName()); ?>

                    <?php else: ?>
                        <?php echo e($dataLand->getCityPlanName()); ?>

                    <?php endif; ?>
                </td>
                <th>地目</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->ground_name); ?></td>
            </tr>
            <tr>
                <th>建ぺい率</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->building_rate?? '-'); ?>%</td>
                <th>容積率</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->volume_rate?? '-'); ?>%</td>
            </tr>
            <?php if($item->parking): ?>
                <tr>
                    <th>駐車場</th>
                    <td colspan="3">
                        <?php if($item->parking == 1): ?>
                            無
                        <?php elseif($item->parking == 2): ?>
                            空無
                        <?php elseif($item->parking == 3): ?>
                            空有
                        <?php elseif($item->parking == 4): ?>
                            分譲（必購入）
                        <?php elseif($item->parking == 5): ?>
                            分譲（任意購入）
                        <?php elseif($item->parking == 6): ?>
                            専用使用権付
                        <?php elseif($item->parking == 7): ?>
                            敷地外有
                        <?php elseif($item->parking == 8): ?>
                            掘込車庫
                        <?php elseif($item->parking == 9): ?>
                            車庫
                        <?php elseif($item->parking == 10): ?>
                            地下車庫
                        <?php elseif($item->parking == 11): ?>
                            カースペース
                        <?php elseif($item->parking == 12): ?>
                            カーポート
                        <?php elseif($item->parking == 13): ?>
                            ２台以上
                        <?php else: ?>
                            -
                        <?php endif; ?>
                        <?php if($item->parking != null): ?>
                            <?php echo e($parNames[$item->parking] ?? ''); ?>

                            <?php if($item->parking_num != null && $item->parking != 1): ?>
                                /<?php echo e($item->parking_num ?? 0); ?>台
                            <?php endif; ?>
                        <?php endif; ?>
                        <?php if($item->parking != 1 && $item->parking != null): ?>
                            <?php if($item->parking_yes == 1): ?>
                                <?php echo e(number_format($item->parking_yes_cost_from, 0, ",", ",")); ?>

                                〜<?php echo e(number_format($item->parking_yes_cost_to, 0, ",", ",")); ?>

                                円/<?php if($item->parking_yes_cost_unit == 1): ?>
                                    月
                                <?php else: ?>
                                    年
                                <?php endif; ?>
                            <?php endif; ?>
                        <?php endif; ?>
                    </td>
                </tr>
            <?php endif; ?>
            <tr>
                <th>現況</th>
                <td colspan="3">
                    <?php echo e(getCurrentStatusName($item->current_status, $item->property)); ?>

                    <?php if(getCurrentStatusName($item->current_status, $item->property)=='賃貸中' and ($item->current_status_val or $item->current_status_rate)): ?>
                        （
                        <?php if($item->current_status_val): ?>
                            賃料：<?php echo e(number_format(is_numeric($item->current_status_val) ? $item->current_status_val : intval(str_replace(',', '', $item->current_status_val)), 0, ",", ",")); ?>円/月　
                        <?php endif; ?>
                        <?php if($item->current_status_rate): ?>
                            利回り：<?php echo e($item->current_status_rate); ?>％
                        <?php endif; ?>
                        ）
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>引渡し</th>
                <td colspan="3">
                    <?php if($item->move_in == 1): ?>
                        即
                    <?php elseif($item->move_in == 2): ?>
                        相談
                    <?php elseif($item->move_in == 3): ?>
                        指定有：<?php echo e($item->move_in_year); ?>年<?php echo e($item->move_in_month); ?>月
                    <?php elseif($item->move_in == 4): ?>
                        契約後<?php echo e($item->move_in_contract_month); ?>ヶ月
                    <?php elseif($item->move_in == 5): ?>
                        不明
                    <?php else: ?>
                        -
                    <?php endif; ?>
                    <?php if($item->move_in_conditions): ?>
                        ／<?php echo e($item->move_in_conditions); ?>

                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>設備</th>
                <td class="p-detail-main-sheet__right-tbl-small" colspan="3">
                    上水道：<?php echo e(getWaterSupplyName($item->water_supply)); ?> ／
                    下水道：<?php echo e($item->getSewerageName()); ?> ／
                    ガス：<?php echo e($item->getGasName()); ?>

                </td>
            </tr>
            <?php if($item->getExteriorHTML() and $item->getExteriorHTML()!='無'): ?>
                <!--<tr>
                    <th>リフォーム外装</th>
                    <td colspan="3">
                        <?php echo $item->getExteriorHTML(); ?>

                </td>
            </tr>-->
            <?php endif; ?>
            <?php if($item->getInteriorHTML() and $item->getInteriorHTML()!='無'): ?>
                <!--<tr>
                    <th>リフォーム内装</th>
                    <td colspan="3">
                        <?php echo $item->getInteriorHTML(); ?>

                </td>
            </tr>-->
            <?php endif; ?>
            <?php if($item->architecture_no or $item->develop_num): ?>
                <!--<tr>
                    <th>建築確認番号</th>
                    <td <?php if($item->property == 4): ?>
                    colspan="3"


                <?php else: ?>
                    class="p-detail-main-sheet__right-tbl-half"


                <?php endif; ?>><?php echo e($item->architecture_no??'-'); ?></td>
                    <?php if($item->property != 4): ?>
                    <th>開発許可番号</th>
                    <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->develop_num??'-'); ?></td>



                <?php endif; ?>
                </tr>-->
            <?php endif; ?>
            <tr>
                <th class="p-detail-main-sheet__right-tbl-double">学校区</th>
                <td colspan="3" class="p-detail-main-sheet__right-tbl-double">
                    <?php if(!isset($item->primary_school_name) && !isset($item->other_primary_school_2)): ?>
                        -
                    <?php endif; ?>
                    <?php if(isset($item->primary_school_name)): ?>
                        <?php echo e($primary_school_name); ?> <?php if(isset($item->primary_school_distance)): ?>
                            約<?php echo e($item->primary_school_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->primary_school_time)): ?>
                            /&nbsp;徒歩<?php echo e($item->primary_school_time); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->primary_school_name2)): ?>
                        <?php echo e($primary_school_name2); ?> <?php if(isset($item->primary_school2_distance)): ?>
                            約<?php echo e($item->primary_school2_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->primary_school_time2)): ?>
                            /&nbsp;徒歩<?php echo e($item->primary_school_time2); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->primary_school_name3)): ?>
                        <?php echo e($primary_school_name3); ?> <?php if(isset($item->primary_school3_distance)): ?>
                            約<?php echo e($item->primary_school3_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->primary_school_time3)): ?>
                            /&nbsp;徒歩<?php echo e($item->primary_school_time3); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                    &ensp;/&ensp;
                    <?php if(!isset($item->secondary_school_name) && !isset($item->other_secondary_school_2)): ?>
                        -
                    <?php endif; ?>
                    <?php if(isset($item->secondary_school_name)): ?>
                        <?php echo e($secondary_school_name); ?> <?php if(isset($item->secondary_school_distance)): ?>
                            約<?php echo e($item->secondary_school_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->secondary_school_time)): ?>
                            /&nbsp;徒歩<?php echo e($item->secondary_school_time); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->secondary_school_name2)): ?>
                        <?php echo e($secondary_school_name2); ?> <?php if(isset($item->secondary_school2_distance)): ?>
                            約<?php echo e($item->secondary_school2_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->secondary_school_time2)): ?>
                            /&nbsp;徒歩<?php echo e($item->secondary_school_time2); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->secondary_school_name3)): ?>
                        <?php echo e($secondary_school_name3); ?> <?php if(isset($item->secondary_school3_distance)): ?>
                            約<?php echo e($item->secondary_school3_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->secondary_school_time3)): ?>
                            /&nbsp;徒歩<?php echo e($item->secondary_school_time3); ?>分　
                        <?php endif; ?>
                    <?php endif; ?>
                        <?php if(isset($item->other_primary_school_2)): ?>
                            <?php echo e($item->other_primary_school_2); ?>約<?php echo e($item->other_primary_school_3); ?>m
                            <?php if(isset($item->other_primary_school_3)): ?>
                                /徒歩<?php echo e(ceil($item->other_primary_school_3/80)); ?>分　
                            <?php endif; ?><br>
                        <?php endif; ?>
                        <?php if(isset($item->other_secondary_school_2)): ?>
                            <?php echo e($item->other_secondary_school_2); ?>約<?php echo e($item->other_secondary_school_3); ?>m
                            <?php if(isset($item->other_secondary_school_3)): ?>
                                /徒歩<?php echo e(ceil($item->other_secondary_school_3/80)); ?>分　
                            <?php endif; ?><br>
                <?php endif; ?>

            </tr>
        <?php elseif($item->property == 6 || $item->property == 7 || $item->property == null): ?>
            <tr>
                <th>間取り</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->floor_plan); ?><?php echo e($item->floor_plan_name); ?></td>
                <th>所在・階数</th>
                <td class="p-detail-main-sheet__right-tbl-half">
                    <?php if($item->maisonette==1): ?>
                        <?php echo e($item->maisonette_from ? $item->maisonette_from : ''); ?>

                        〜<?php echo e($item->maisonette_to ? $item->maisonette_to : ''); ?>

                    <?php else: ?>
                        <?php echo e($item->whereabouts ? $item->whereabouts : '-'); ?>

                    <?php endif; ?>
                    階/
                    <?php if(optional($mansion)->underground>0): ?>
                        地上
                    <?php endif; ?><?php echo e(!empty(optional($mansion)->floor) ? optional($mansion)->floor : '-'); ?>階
                    <?php if(optional($mansion)->underground>0): ?>
                        地下<?php echo e($mansion->underground ? $mansion->underground.'階' : ''); ?>

                    <?php endif; ?>建
                </td>
            </tr>
            <tr>
                <th>構造</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->construction_name); ?>

                    <?php if($item->construction_sub_name != ""): ?>
                        ・<?php echo e($item->construction_sub_name); ?>

                    <?php endif; ?></td>
                <?php if(empty($mansion)): ?>
                    <?php if($item->age_year == null && $item->age_month == null && $item->completed_contract_month != null): ?>
                        <th>完成予定</th>
                        <td class="p-detail-main-sheet__right-tbl-half">契約後<?php echo e($item->completed_contract_month); ?>ヶ月</td>
                    <?php elseif($item->age_year > date("Y") || ($item->age_year == date("Y") && $item->age_month >= date("m") )): ?>
                        <th>完成予定</th>
                        <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->age_year?? "-"); ?>

                            年<?php echo e($item->age_month?? "-"); ?>月
                        </td>
                    <?php else: ?>
                        <th>築年月</th>
                        <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->age_year?? "-"); ?>

                            年<?php echo e($item->age_month?? "-"); ?>月
                        </td>
                    <?php endif; ?>
                <?php else: ?>
                    <?php if($mansion->age_year == null && $mansion->age_month == null): ?>
                        <th>築年月</th>
                        <td class="p-detail-main-sheet__right-tbl-half">-</td>
                    <?php elseif($mansion->age_year > date("Y") || ($mansion->age_year == date("Y") && $mansion->age_month >= date("m") )): ?>
                        <th>完成予定</th>
                        <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($mansion->age_year?? "-"); ?>

                            年<?php echo e($mansion->age_month?? "-"); ?>月
                        </td>
                    <?php else: ?>
                        <th>築年月</th>
                        <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($mansion->age_year?? "-"); ?>

                            年<?php echo e($mansion->age_month?? "-"); ?>月
                        </td>
                    <?php endif; ?>
                <?php endif; ?>
            </tr>
            <tr>
                <th>専有面積</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->total_area_val); ?>&nbsp;m&sup2;</td>
                <th>バルコニー</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php if($item->balcony_direction): ?>
                        <?php echo e($item->getDirectionName($item->balcony_direction)); ?>向き
                    <?php endif; ?><?php echo e($item->balcony_area_val); ?>&nbsp;m&sup2;
                </td>
            </tr>
            <?php if($item->loof_balcony_area or $item->terrace_area or $item->garden_area): ?>
                <tr>
                    <th>面積</th>
                    <td colspan="3" class="p-detail-main-sheet__right-tbl-small">
                        <?php if($item->loof_balcony_area): ?>
                            ルーフバルコニー：<?php echo e($item->loof_balcony_area_val); ?>&nbsp;m&sup2;
                            （<?php echo e(number_format($item->loof_balcony_area_cost, 0, ",", ",")); ?>

                            円／<?php if($item->loof_balcony_area_unit==1): ?>
                                月
                            <?php else: ?>
                                年
                            <?php endif; ?>）
                        <?php endif; ?>
                        <?php if($item->terrace_area): ?>
                            テラス：<?php echo e($item->terrace_area_val); ?>&nbsp;m&sup2;
                            （<?php echo e(number_format($item->terrace_area_cost, 0, ",", ",")); ?>円／<?php if($item->terrace_area_unit==1): ?>
                                月
                            <?php else: ?>
                                年
                            <?php endif; ?>）
                        <?php endif; ?>
                        <?php if($item->garden_area): ?>
                            専用庭：<?php echo e($item->garden_area_val); ?>&nbsp;m&sup2;
                            （<?php echo e(number_format($item->garden_area_cost, 0, ",", ",")); ?>円／<?php if($item->garden_area_unit==1): ?>
                                月
                            <?php else: ?>
                                年
                            <?php endif; ?>）
                        <?php endif; ?>
                    </td>
                </tr>
            <?php endif; ?>
            <tr>
                <th>管理費</th>
                <td class="p-detail-main-sheet__right-tbl-half">
                    <?php if($item->management_cost): ?>
                        <?php echo e(number_format($item->management_cost, 0, ",", ",")); ?>円／<?php if($item->management_cost_unit==1): ?>
                            月
                        <?php else: ?>
                            年
                        <?php endif; ?>
                    <?php else: ?>
                        -
                    <?php endif; ?></td>
                <th>修繕積立金</th>
                <td class="p-detail-main-sheet__right-tbl-half">
                    <?php if($item->repair_cost): ?>
                        <?php echo e(number_format($item->repair_cost, 0, ",", ",")); ?>円／<?php if($item->repair_cost_unit==1): ?>
                            月
                        <?php else: ?>
                            年
                        <?php endif; ?>
                    <?php else: ?>
                        -
                    <?php endif; ?></td>
            </tr>
            <?php if($item->repair_fund==1): ?>
                <tr>
                    <th>修繕積立基金</th>
                    <td colspan="3"><?php echo e(number_format($item->repair_fund_unit, 0, ",", ",")); ?>円／一括</td>
                </tr>
            <?php endif; ?>
            <tr>
                <th>その他費用</th>
                <td colspan="3" class="p-detail-main-sheet__right-tbl-small">
                    <?php if($item->another_cost1): ?>
                        <?php echo e(getAnotherCost($item, [1])); ?>

                    <?php endif; ?>
                    <?php if($item->another_cost2): ?>
                        ／<?php echo e(getAnotherCost($item, [2])); ?>

                    <?php endif; ?>
                    <?php if($item->another_cost3): ?>
                        他
                    <?php endif; ?>
                    <?php if(!$item->another_cost1 and !$item->another_cost2 and !$item->another_cost3): ?>
                        -
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>用途地域</th>
                <td colspan="3">
                    <?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 != ""): ?>
                        ・<?php echo e($item->use_area_name_sub); ?>

                    <?php endif; ?>
                    <?php if($item->use_area_name_sub2 != ""): ?>
                        他
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>都市計画</th>
                <td colspan="3">
                    <?php if($dataLand->city_plan == 2): ?>
                        <?php echo e($dataLand->getCityPlanName()); ?>

                    <?php else: ?>
                        <?php echo e($dataLand->getCityPlanName()); ?>

                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>土地権利</th>
                <td class="p-detail-main-sheet__right-tbl-half">
                    <?php if($dataLand->land_right==1): ?>
                        所有権
                    <?php elseif($dataLand->land_right==2): ?>
                        <span>借地権のみ</span>
                    <?php elseif($dataLand->land_right==3): ?>
                        <span>所有権・借地権混在</span>
                    <?php else: ?>
                        -
                    <?php endif; ?>
                </td>
                <th>総戸数</th>
                <td class="p-detail-main-sheet__right-tbl-half"><?php echo e($item->total_unit); ?>戸</td>
            </tr>
            <?php if($item->property != null): ?>
                <tr>
                    <th>引渡し</th>
                    <td colspan="3">
                        <?php if($item->land_delivery == 1): ?>
                            即
                        <?php elseif($item->land_delivery == 3): ?>
                            <?php echo e($item->delivery_year); ?>年<?php echo e($item->delivery_month); ?>月
                            <?php if($item->land_delivery_time == 1): ?>
                                初旬
                            <?php elseif($item->land_delivery_time == 2): ?>
                                上旬
                            <?php elseif($item->land_delivery_time == 3): ?>
                                中旬
                            <?php elseif($item->land_delivery_time == 4): ?>
                                下旬
                            <?php elseif($item->land_delivery_time == 5): ?>
                                末
                            <?php endif; ?>
                        <?php else: ?>
                            -
                        <?php endif; ?>
                        <?php if($item->move_in_conditions): ?>
                            ／<?php echo e($item->move_in_conditions); ?>

                        <?php endif; ?>
                    </td>
                </tr>
            <?php else: ?>
                <tr>
                    <th>引渡し</th>
                    <td colspan="3">
                        <?php if($item->move_in == 1): ?>
                            即
                        <?php elseif($item->move_in == 2): ?>
                            相談
                        <?php elseif($item->move_in == 3): ?>
                            指定有：<?php echo e($item->move_in_year); ?>年<?php echo e($item->move_in_month); ?>月
                        <?php elseif($item->move_in == 4): ?>
                            契約後<?php echo e($item->move_in_contract_month); ?>ヶ月
                        <?php elseif($item->move_in == 5): ?>
                            不明
                        <?php else: ?>
                            -
                        <?php endif; ?>
                        <?php if($item->move_in_conditions): ?>
                            ／<?php echo e($item->move_in_conditions); ?>

                        <?php endif; ?>
                    </td>
                </tr>
            <?php endif; ?>
            <tr>
                <th>駐車場</th>
                <td colspan="3" style="font-size: 9px; height: auto">
                    <?php echo e($item->getParkingText()); ?>

                </td>
            </tr>
            <tr>
                <th>現況</th>
                <td colspan="3">
                    <?php echo e(getCurrentStatusName($item->current_status, $item->property)); ?>

                    <?php if(getCurrentStatusName($item->current_status, $item->property)=='賃貸中' and ($item->current_status_val or $item->current_status_rate)): ?>
                        （
                        <?php if($item->current_status_val): ?>
                            賃料：<?php echo e(number_format(is_numeric($item->current_status_val) ? $item->current_status_val : intval(str_replace(',', '', $item->current_status_val)), 0, ",", ",")); ?>円/月　
                        <?php endif; ?>
                        <?php if($item->current_status_rate): ?>
                            利回り：<?php echo e($item->current_status_rate); ?>％
                        <?php endif; ?>
                        ）
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th>設備</th>
                <td class="p-detail-main-sheet__right-tbl-small" colspan="3">
                    <?php echo e($item->getGasName()); ?>

                </td>
            </tr>
            <?php if($item->getInteriorText() and $item->getInteriorText()!='無'): ?>
                <tr>
                    <th class="<?php echo e(isCompanyThree() ? 'h-50px' : ''); ?>">リフォーム</th>
                    <td colspan="3" class="<?php echo e(isCompanyThree() ? 'h-50px' : ''); ?>"><?php echo e($item->getInteriorText()); ?></td>
                </tr>
            <?php endif; ?>
            <tr>
                <th>管理形態</th>
                <td colspan="3"><?php if($item->management_name): ?>
                        <?php echo e($item->management_name); ?><?php else: ?>-
                    <?php endif; ?></td>
            </tr>
            <tr>
                <th>管理会社</th>
                <td colspan="3">
                    <?php if(!isset($item->management_company) and !isset($mansion->management_company)): ?>
                        -
                    <?php else: ?>
                        <?php if(empty($mansion)): ?>
                            <?php echo e($item->management_company); ?>

                        <?php else: ?>
                            <?php echo e($mansion->management_company); ?>

                        <?php endif; ?>
                    <?php endif; ?>
                </td>
            </tr>
            <tr>
                <th class="p-detail-main-sheet__right-tbl-double">学校区</th>
                <td colspan="3" class="p-detail-main-sheet__right-tbl-double">
                    <?php if(!isset($item->primary_school_name) and !isset($item->secondary_school_name) && !isset($item->other_secondary_school_2) && !isset($item->other_primary_school_2)): ?>
                        -
                    <?php endif; ?>
                    <?php if(isset($item->primary_school_name)): ?>
                        <?php echo e($primary_school_name); ?> <?php if(isset($item->primary_school_distance)): ?>
                            約<?php echo e($item->primary_school_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->primary_school_time)): ?>
                            /&nbsp;徒歩<?php echo e($item->primary_school_time); ?>分
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->primary_school_name2)): ?>
                        <?php echo e($primary_school_name2); ?> <?php if(isset($item->primary_school2_distance)): ?>
                            約<?php echo e($item->primary_school2_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->primary_school_time2)): ?>
                            /&nbsp;徒歩<?php echo e($item->primary_school_time2); ?>分
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->primary_school_name3)): ?>
                        <?php echo e($primary_school_name3); ?> <?php if(isset($item->primary_school3_distance)): ?>
                            約<?php echo e($item->primary_school3_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->primary_school_time3)): ?>
                            /&nbsp;徒歩<?php echo e($item->primary_school_time3); ?>分
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->secondary_school_name)): ?>
                        <?php echo e($secondary_school_name); ?> <?php if(isset($item->secondary_school_distance)): ?>
                            約<?php echo e($item->secondary_school_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->secondary_school_time)): ?>
                            /&nbsp;徒歩<?php echo e($item->secondary_school_time); ?>分
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->secondary_school_name2)): ?>
                        <?php echo e($secondary_school_name2); ?> <?php if(isset($item->secondary_school2_distance)): ?>
                            約<?php echo e($item->secondary_school2_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->secondary_school_time2)): ?>
                            /&nbsp;徒歩<?php echo e($item->secondary_school_time2); ?>分
                        <?php endif; ?>
                    <?php endif; ?>
                    <?php if(isset($item->secondary_school_name3)): ?>
                        <?php echo e($secondary_school_name3); ?> <?php if(isset($item->secondary_school3_distance)): ?>
                            約<?php echo e($item->secondary_school3_distance); ?>m
                        <?php endif; ?> <?php if(isset($item->secondary_school_time3)): ?>
                            /&nbsp;徒歩<?php echo e($item->secondary_school_time3); ?>分
                        <?php endif; ?>
                    <?php endif; ?>

                    <?php if(isset($item->other_primary_school_2)): ?>
                        <?php echo e($item->other_primary_school_2); ?>約<?php echo e($item->other_primary_school_3); ?>m
                        <?php if(isset($item->other_primary_school_3)): ?>
                            /徒歩<?php echo e(ceil($item->other_primary_school_3/80)); ?>分　
                        <?php endif; ?><br>
                    <?php endif; ?>
                    <?php if(isset($item->other_secondary_school_2)): ?>
                        <?php echo e($item->other_secondary_school_2); ?>約<?php echo e($item->other_secondary_school_3); ?>m
                        <?php if(isset($item->other_secondary_school_3)): ?>
                            /徒歩<?php echo e(ceil($item->other_secondary_school_3/80)); ?>分　
                        <?php endif; ?><br>
                    <?php endif; ?>

                </td>
            </tr>
        <?php endif; ?>
    </table>




























































































































































</div>
