app/template/user_data/loan_examination.twig line 1

Open in your IDE?
  1. {% extends 'default_frame.twig' %}
  2. {% form_theme form 'Form/form_div_layout.twig' %}
  3. {% block stylesheet %}
  4.     <style type="text/css">
  5.         .horizontal{
  6.             display: flex;
  7.             justify-content: flex-start;
  8.             align-items: center;
  9.             flex-wrap: wrap;
  10.         }
  11.         .address .error-empty{
  12.             position: relative!important;
  13.             top: unset!important;
  14.         }
  15.         .horizontal .form-check{
  16.             padding-left: 0;
  17.             margin-right: 2rem;
  18.         }
  19.         .ec-form-inquiry__group .table table tr td:nth-child(2) .fill.horizontal label input{
  20.             margin-left: 0;
  21.         }
  22.         .ec-form-inquiry__group .table table tr td:nth-child(2) .fill.horizontal label input[type="text"]{
  23.             max-width: 100px;
  24.         }
  25.         .ec-form-inquiry__group .table table tr td:nth-child(2) .fill.horizontal label span{
  26.             margin-right: 2rem;
  27.         }
  28.         /*.ec-form-inquiry__group .step-content {
  29.             display: block; /*Debug*/
  30.         }*/
  31.     </style>
  32. {% endblock stylesheet %}
  33. {% block javascript %}
  34.     <script src="https://ajaxzip3.github.io/ajaxzip3.js" charset="UTF-8"></script>
  35.     <script type="text/javascript">
  36.         $(function() {
  37.             $('.postal_code').click(function(event) {
  38.                 AjaxZip3.zip2addr('loan[postal_code]', '', 'loan[address][pref]', 'loan[address][addr01]');
  39.                 return false;
  40.             });
  41.             $('.employed_postal_code').click(function(event) {
  42.                 AjaxZip3.zip2addr('loan[employed_postal_code]', '', 'loan[employed_address_pref]', 'loan[employed_address_addr01]');
  43.                 return false;
  44.             });
  45.             $('.guarantor_postal_code').click(function(event) {
  46.                 AjaxZip3.zip2addr('loan[guarantor_postal_code]', '', 'loan[guarantor_address_pref]', 'loan[guarantor_address_addr01]');
  47.                 return false;
  48.             });
  49.             $('.guarantor_company_postal_code').click(function(event) {
  50.                 AjaxZip3.zip2addr('loan[guarantor_company_postal_code]', '', 'loan[guarantor_company_address_pref]', 'loan[guarantor_company_address_addr01]');
  51.                 return false;
  52.             });
  53.         })
  54.     </script>
  55.     <script>
  56.         $(document).ready(function() {
  57.             $('form, input, select').attr('autocomplete', "off");
  58.             $('input[name="loan[spouse]"]').change(function() {
  59.                 var selectedValue = $('input[name="loan[spouse]"]:checked').val();
  60.                 if (selectedValue == "有り") {
  61.                     $('select[name="loan[spouse_job]"]').attr('required', 'required');
  62.                 } 
  63.                 else {
  64.                     $('select[name="loan[spouse_job]"]').removeAttr('required');
  65.                     $('select[name="loan[spouse_job]"]').closest('td').find('.error-empty').remove();
  66.                 }
  67.             });
  68.             $('input[name="loan[household_paying]"]').change(function() {
  69.                 var selectedValue = $('input[name="loan[household_paying]"]:checked').val();
  70.                 if (selectedValue == "有り") {
  71.                     $('input[name="loan[household_paying_amount]"]').attr('required', 'required');
  72.                 } 
  73.                 else {
  74.                     $('input[name="loan[household_paying_amount]"]').removeAttr('required');
  75.                     $('input[name="loan[household_paying_amount]"]').closest('td').find('.error-empty').remove();
  76.                 }
  77.             });
  78.             //Chỉ check phần trên hoặc phần dưới của お勤め先・ご収入について
  79.             $('#employed input, #employed select, #employed textarea').change(function(event) {
  80.                 $('#pensioner td').find('.error-empty').remove();
  81.             });
  82.             $('#pensioner input, #pensioner select, #pensioner textarea').change(function(event) {
  83.                 $('#employed td').find('.error-empty').remove();
  84.             });
  85.             var step_number = Number($('.ec-form-inquiry__group__step__item.active').data('step'));
  86.             $('#btn-back').click(function(event) {
  87.                 $("span.error-empty").remove();
  88.                 if (step_number > 1) {
  89.                     step_number--;                    
  90.                     stepActive(step_number);
  91.                 }
  92.                 $('body,html').animate({
  93.                     scrollTop: 250
  94.                 }, 300, 'swing');
  95.             });
  96.             $("#btn-confirm").click(function(event) {
  97.                 $("span.error-empty").remove();
  98.                 var employed_has_error = false;
  99.                 var pensioner_has_error = false;
  100.                 var has_error = false;
  101.                 if (step_number == 2) {
  102.                     // お勤め先・ご収入について chi check 1 phan
  103.                     $('#employed select[required], #employed input[required], #employed textarea[required]').each(function() {
  104.                         var input = $(this);
  105.                         if (input.attr('type') == 'radio' || input.attr('type') == 'checkbox') {
  106.                             var radio_name = input.attr('name');
  107.                             if ($('input[name="' + radio_name + '"]:checked').length == 0) {
  108.                                 employed_has_error = true;
  109.                             }
  110.                         }
  111.                         else if (input.val() == ""){
  112.                             employed_has_error = true;
  113.                         }
  114.                     });
  115.                     $('#pensioner select[required], #pensioner input[required], #pensioner textarea[required]').each(function() {
  116.                         var input = $(this);
  117.                         if (input.attr('type') == 'radio' || input.attr('type') == 'checkbox') {
  118.                             var radio_name = input.attr('name');
  119.                             if ($('input[name="' + radio_name + '"]:checked').length == 0) {
  120.                                 pensioner_has_error = true;
  121.                             }
  122.                         }
  123.                         else if (input.val() == ""){
  124.                             pensioner_has_error = true;
  125.                         }
  126.                     });
  127.                 }
  128.                 if (step_number != 2 || (employed_has_error == true && pensioner_has_error == true)) {
  129.                     $('.step-content.step-' + step_number + ' .table select[required], .step-content.step-' + step_number + ' .table input[required], .step-content.step-' + step_number + ' .table textarea[required]').each(function() {
  130.                         var input = $(this);
  131.                         var input_empty = $("<span>").addClass("error-empty").text("※この項目は必須項目です");                
  132.                         if (input.attr('type') == 'radio' || input.attr('type') == 'checkbox') {
  133.                             var radio_name = input.attr('name');
  134.                             if ($('input[name="' + radio_name + '"]:checked').length == 0) {
  135.                                 input.before(input_empty);
  136.                                 has_error = true;
  137.                             }
  138.                         }
  139.                         else if (input.attr('type') == 'email' && validateEmail(input.val()) === false) {
  140.                             input.before($("<span>").addClass("error-empty").text("※正しくメールアドレスを入力してください"));
  141.                         }
  142.                         else if (input.val() == ""){
  143.                             input.before(input_empty);
  144.                             has_error = true;
  145.                         }
  146.                         else {
  147.                             input_empty.remove();
  148.                         }
  149.                         input.on("change", function() {
  150.                             if (input.attr('type') == 'radio' || input.attr('type') == 'checkbox') {
  151.                                 input.closest('td').find('.error-empty').remove();
  152.                             }
  153.                             else {
  154.                                 input_empty.remove();
  155.                             }
  156.                         });
  157.                     });
  158.                 }
  159.                 if (has_error) {
  160.                     var position = $(".error-empty").eq(0).offset().top - 250;
  161.                     $('body,html').animate({
  162.                         scrollTop: position
  163.                     }, 300, 'swing');
  164.                     return false;
  165.                 }
  166.                 // chi xu ly tab, khong submit form
  167.                 if (step_number != 4) {
  168.                     step_number++;
  169.                     stepActive(step_number);
  170.                     $('body,html').animate({
  171.                         scrollTop: 250
  172.                     }, 300, 'swing');
  173.                     return false;
  174.                 }
  175.                 if (employed_has_error == false) {
  176.                     $('#pensioner select[required], #pensioner input[required], #pensioner textarea[required]').removeAttr('required');
  177.                 }
  178.                 if (pensioner_has_error == false) {
  179.                     $('#employed select[required], #employed input[required], #employed textarea[required]').removeAttr('required');
  180.                 }
  181.             });
  182.         });
  183.         /**
  184.          * Xu ly Tab
  185.          */
  186.         function stepActive(step_number) {
  187.             $('.ec-form-inquiry__group__step__item').removeClass('active');
  188.             $('.step-content').removeClass('active');
  189.             $('.ec-form-inquiry__group__step__item.step-' + step_number).addClass('active');
  190.             $('.step-content.step-' + step_number).addClass('active');
  191.             if (step_number > 1) {
  192.                 $('#btn-back').addClass('active');
  193.             }
  194.             else {
  195.                 $('#btn-back').removeClass('active');
  196.             }
  197.         }
  198.         /**
  199.          * Check mail
  200.          */
  201.         function validateEmail(email) {
  202.             var re = /\S+@\S+\.\S+/;
  203.             return re.test(email);
  204.         }
  205.     </script>
  206.     <script src="https://cdnjs.cloudflare.com/ajax/libs/numeral.js/2.0.6/numeral.min.js"></script>
  207.     <script>
  208.         var CountTatami = {
  209.             countType1: 0, //6-14
  210.             countType2: 0, //16-20
  211.             countType3: 0, //23-
  212.         };
  213.         var CountTatamiAll = {
  214.             countType1: 0, //6-14
  215.             countType2: 0, //16-20
  216.             countType3: 0, //23-
  217.         };
  218.         var CountTatamiLoan = {
  219.             countType1: 0, //6-14
  220.             countType2: 0, //16-20
  221.             countType3: 0, //23-
  222.         };
  223.         $(function() {
  224.             //khi load page, nếu không chọn thì check tất cả product
  225.             if ($('.construction_air:checked').length <= 0) {
  226.                 $('.construction_air').prop('checked', true);
  227.             }
  228.             SetRequiredContent();
  229.             SetRequiredContent1();
  230.             SetRequiredContent2("construction_type_07", "交換", ".construction_type_07_02_v1");
  231.             SetRequiredContent2("construction_type_07", "新設工事に加えて移設工事も希望", ".construction_type_07_02_v2");
  232.             SetRequiredContent2("construction_type_07_02_v2", "分解洗浄を希望する", ".construction_type_07_03_v1");
  233.             SetRequiredContent2("construction_type_07_02_v2", "分解洗浄を希望しない", ".construction_type_07_03_v2");
  234.             SetRequiredContent2("construction_type_07_03_v1", "移設6~14畳(取外し含む)", ".construction_type_07_04_v1");
  235.             SetRequiredContent2("construction_type_07_03_v1", "移設16~20畳(取外し含む)", ".construction_type_07_04_v2");
  236.             SetRequiredContent2("construction_type_07_03_v1", "移設23畳~(取外し含む)", ".construction_type_07_04_v3");
  237.             SetRequiredContent2("electrical_outlet_07", "あり", ".electrical_outlet_07_02");
  238.             SetRequiredContent2("room_size_07", "なし", ".room_size_07_02");
  239.             SetRequiredContent2("room_size_07_02", "建物が2009年6月以降に着工した証明書あり", ".room_size_07_03_v1");
  240.             SetRequiredContent2("room_size_07_02", "建物が2009年6月以降に着工した証明書なし", ".room_size_07_03_v2");
  241.             SetRequiredContent2("piping_status_07", "隠蔽配管", ".piping_status_07_02");
  242.             SetRequiredContent2("outdoor_cover", "必要", ".outdoor_cover_02");
  243.             SetRequiredContent2("setting_install_method", "新規取付", ".construction_method_07_v1");
  244.             SetRequiredContent2("setting_install_method", "交換", ".construction_method_07_v2");
  245.             
  246.             $("input[name='loan[desired_construction_work]']").change(function() {
  247.                 SetRequiredContent();
  248.             });
  249.             $("input[name='loan[desired_construction_work_02]']").change(function() {
  250.                 SetRequiredContent1();
  251.                 CalcConstructionNumber();
  252.             });
  253.             $("input[name='loan[construction_type_07]']").change(function() {
  254.                 SetRequiredContent2("construction_type_07", "交換", ".construction_type_07_02_v1");
  255.                 SetRequiredContent2("construction_type_07", "新設工事に加えて移設工事も希望", ".construction_type_07_02_v2");
  256.                 SetRequiredContent2("construction_type_07_02_v2", "分解洗浄を希望する", ".construction_type_07_03_v1");
  257.                 SetRequiredContent2("construction_type_07_02_v2", "分解洗浄を希望しない", ".construction_type_07_03_v2");
  258.                 SetRequiredContent2("construction_type_07_03_v1", "移設6~14畳(取外し含む)", ".construction_type_07_04_v1");
  259.                 SetRequiredContent2("construction_type_07_03_v1", "移設16~20畳(取外し含む)", ".construction_type_07_04_v2");
  260.                 SetRequiredContent2("construction_type_07_03_v1", "移設23畳~(取外し含む)", ".construction_type_07_04_v3");
  261.             });
  262.             $("input[name='loan[construction_type_07_02_v2]']").change(function() {
  263.                 SetRequiredContent2("construction_type_07_02_v2", "分解洗浄を希望する", ".construction_type_07_03_v1");
  264.                 SetRequiredContent2("construction_type_07_02_v2", "分解洗浄を希望しない", ".construction_type_07_03_v2");
  265.                 SetRequiredContent2("construction_type_07_03_v1", "移設6~14畳(取外し含む)", ".construction_type_07_04_v1");
  266.                 SetRequiredContent2("construction_type_07_03_v1", "移設16~20畳(取外し含む)", ".construction_type_07_04_v2");
  267.                 SetRequiredContent2("construction_type_07_03_v1", "移設23畳~(取外し含む)", ".construction_type_07_04_v3");
  268.             });
  269.             $("input[name='loan[construction_type_07_03_v1]']").change(function() {
  270.                 SetRequiredContent2("construction_type_07_03_v1", "移設6~14畳(取外し含む)", ".construction_type_07_04_v1");
  271.                 SetRequiredContent2("construction_type_07_03_v1", "移設16~20畳(取外し含む)", ".construction_type_07_04_v2");
  272.                 SetRequiredContent2("construction_type_07_03_v1", "移設23畳~(取外し含む)", ".construction_type_07_04_v3");
  273.             });
  274.             $("input[name='loan[electrical_outlet_07]']").change(function() {
  275.                 SetRequiredContent2("electrical_outlet_07", "あり", ".electrical_outlet_07_02");
  276.             });
  277.             $("input[name='loan[room_size_07]']").change(function() {
  278.                 SetRequiredContent2("room_size_07", "なし", ".room_size_07_02"); 
  279.                 SetRequiredContent2("room_size_07_02", "建物が2009年6月以降に着工した証明書あり", ".room_size_07_03_v1");
  280.                 SetRequiredContent2("room_size_07_02", "建物が2009年6月以降に着工した証明書なし", ".room_size_07_03_v2");
  281.             });
  282.             $("input[name='loan[room_size_07_02]']").change(function() {
  283.                 SetRequiredContent2("room_size_07_02", "建物が2009年6月以降に着工した証明書あり", ".room_size_07_03_v1");
  284.                 SetRequiredContent2("room_size_07_02", "建物が2009年6月以降に着工した証明書なし", ".room_size_07_03_v2");
  285.             });
  286.             $("input[name='loan[piping_status_07]']").change(function() {
  287.                 SetRequiredContent2("piping_status_07", "隠蔽配管", ".piping_status_07_02");
  288.             });
  289.             $("input[name='loan[outdoor_cover]']").change(function() {
  290.                 SetRequiredContent2("outdoor_cover", "必要", ".outdoor_cover_02");
  291.             });
  292.             $("input[name='loan[setting_install_method]']").change(function() {
  293.                 SetRequiredContent2("setting_install_method", "新規取付", ".construction_method_07_v1");
  294.                 SetRequiredContent2("setting_install_method", "交換", ".construction_method_07_v2");
  295.             });
  296.             CalcConstructionNumber();
  297.             $('.construction_air').on('change', function() {
  298.                 if ($('.construction_air:checked').length > 0) {
  299.                     $('.construction_air').removeAttr('required');
  300.                 }
  301.                 else {
  302.                     $('.construction_air').attr('required', 'required');
  303.                 }
  304.                 CalcConstructionNumber();
  305.                 CalcPrice();
  306.             });
  307.             
  308.             CalcPrice();
  309.             $('input[type="radio"]').on('change', function() {
  310.                 CalcPrice();
  311.             });
  312.         });
  313.         function SetRequiredContent() {
  314.             {% if (checkCategory == 1) %}
  315.                 $("input[name='loan[desired_construction_work]'][value='本体+設置工事']").prop('checked', true);
  316.                 $(".ec-form-inquiry__group .table .list-item .item.active>table:first-child()").css('display', 'none');
  317.                 $("input[name='loan[desired_construction_work_02]'][value='最終金額算出']").prop('checked', true);
  318.             {% endif %}
  319.             var selectedValue = $("input[name='loan[desired_construction_work]']:checked").val();
  320.             if (selectedValue === "本体+設置工事") {
  321.                 $("#tableUnderTop").css("display", "table");
  322.                 $("#tableUnderTop input").each(function(index, el) {
  323.                     if ($(this).attr('type') != 'hidden') {
  324.                         $(this).attr('required', 'required');
  325.                     }
  326.                 });
  327.             } 
  328.             else {
  329.                 $("#tableUnderTop").css("display", "none");
  330.                 $("#tableSecond").css("display", "none");
  331.                 $("#tableUnderTop input, #tableSecond input").each(function(index, el) {
  332.                     $(this).prop('checked', false).removeAttr('required');
  333.                 });
  334.             }
  335.         }
  336.         function SetRequiredContent1() {
  337.             var selectedValue = $("input[name='loan[desired_construction_work_02]']:checked").val();
  338.             if (selectedValue === "最終金額算出") {
  339.                 $("#tableSecond").css("display", "table");
  340.                 $("#tableSecond .content-1 input").each(function(index, el) {
  341.                     if ($(this).attr('name') != 'loan[construction_date_2]' && $(this).attr('name') != 'loan[construction_date_3]' &&  $(this).attr('type') != 'hidden') {
  342.                         $(this).attr('required', 'required');
  343.                     }
  344.                 });
  345.             } 
  346.             else {
  347.                 $("#tableSecond").css("display", "none");
  348.                 $("#tableSecond .content-1 input").each(function(index, el) {
  349.                     $(this).prop('checked', false).removeAttr('required');
  350.                 });
  351.             }
  352.         }
  353.         function SetRequiredContent2(nameInput, condition , classCheck) {
  354.             var selectedValue = $("input[name='loan["+ nameInput +"]']:checked").val();
  355.             if (selectedValue === condition) {
  356.                 $(classCheck).css("display", "flex");
  357.                 $("#tableSecond " + classCheck + " input").each(function(index, el) {
  358.                     if ($(this).attr('type') != 'hidden') {
  359.                         $(this).attr('required', 'required');
  360.                     }
  361.                 });
  362.             } else {
  363.                 $(classCheck).css("display", "none");
  364.                 $("#tableSecond " + classCheck + " input").each(function(index, el) {
  365.                     $(this).prop('checked', false).removeAttr('required');
  366.                 });
  367.             }
  368.         }
  369.         /**
  370.          * Tính giá tiền
  371.          */
  372.         function CalcPrice() {
  373.             var product_total_price = Number($('#product_total_price').val());
  374.             $('#construction_base_price_1').val(0);
  375.             $('#construction_base_price_2').val(0);
  376.             $('#construction_base_price_3').val(0);
  377.             $('#construction_total_price').val(0);
  378.             $('#construction_discount').val(0);
  379.             $('#total-price').text(numeral(product_total_price).format('0,0') + "円");
  380.             $('.product_price').text(numeral(product_total_price).format('0,0'));
  381.             $('.base_price').text(0);
  382.             $('.add_price').text(0);
  383.         }
  384.         /**
  385.          * Đếm số lượng cần thi công
  386.          */
  387.         function CalcConstructionNumber() {            
  388.             CountTatami.countType1 = 0;
  389.             CountTatami.countType2 = 0;
  390.             CountTatami.countType3 = 0;
  391.             CountTatamiAll.countType1 = 0;
  392.             CountTatamiAll.countType2 = 0;
  393.             CountTatamiAll.countType3 = 0;
  394.             CountTatamiLoan.countType1 = 0;
  395.             CountTatamiLoan.countType2 = 0;
  396.             CountTatamiLoan.countType3 = 0;
  397.             var construction_air = []
  398.             var product_total_price = 0;
  399.             $('.construction_air').each(function(index, el) {
  400.                 let quantity = $(this).data('quantity');
  401.                 let price = $(this).data('price');
  402.                 let tatami = $(this).data('tatami');
  403.                 let loan = $(this).data('loan');
  404.                 if (tatami >= 6 && tatami <= 14) {
  405.                     CountTatamiAll.countType1 += quantity;
  406.                     if (loan == 1) {
  407.                         CountTatamiLoan.countType1 += quantity;
  408.                     }
  409.                 } else if (tatami >= 16 && tatami <= 20) {
  410.                     CountTatamiAll.countType2 += quantity;
  411.                     if (loan == 1) {
  412.                         CountTatamiLoan.countType2 += quantity;
  413.                     }
  414.                 } else if (tatami >= 23) {
  415.                     CountTatamiAll.countType3 += quantity;
  416.                     if (loan == 1) {
  417.                         CountTatamiLoan.countType3 += quantity;
  418.                     }
  419.                 }
  420.                 if ($(this).is(':checked')) {
  421.                     product_total_price += price;
  422.                     if (tatami >= 6 && tatami <= 14) {
  423.                         CountTatami.countType1 += quantity;
  424.                     } else if (tatami >= 16 && tatami <= 20) {
  425.                         CountTatami.countType2 += quantity;
  426.                         
  427.                     } else if (tatami >= 23) {
  428.                         CountTatami.countType3 += quantity;
  429.                     }
  430.                     construction_air.push($(this).val());
  431.                 }                
  432.             });
  433.             $('#loan_construction_air').val(construction_air.toString());
  434.             $('#loan_number_install').val(CountTatami.countType1 + CountTatami.countType2 + CountTatami.countType3);
  435.             $('#product_total_price').val(product_total_price);
  436.         }
  437.     </script>
  438. {% endblock javascript %}
  439. {% block main %}
  440.     <div class="ec-inquiry-page">
  441.         <div class="ec-banner">
  442.             <div class="ec-banner__inner">
  443.                 <div class="inner">
  444.                     <h2>
  445.                         エアココ自社ローン審査フォーム
  446.                     </h2>
  447.                 </div>
  448.             </div>
  449.             <div class="ec-breadcrumb">
  450.                 <ul class="ec-breadcrumb__menu">
  451.                     <li class="ec-breadcrumb__item"><a href="{{ url('homepage') }}">TOP</a></li>
  452.                     <li class="ec-breadcrumb__item"><span>></span></li>
  453.                     <li class="ec-breadcrumb__item"><p>エアココ自社ローン審査フォーム</p></li>
  454.                 </ul>
  455.             </div>
  456.         </div>
  457.         <div class="ec-form-inquiry-main">
  458.             <div class="ec-form-inquiry__inner">
  459.                 <div class="inner">
  460.                     <div class="ec-form-inquiry__group">
  461.                         <div class="ec-form-inquiry__group__step">
  462.                             <ul class="ec-form-inquiry__group__step__items">
  463.                                 <li class="ec-form-inquiry__group__step__item step-1 active" data-step="1">
  464.                                     <span>STEP1</span>
  465.                                     <span>ご本人様について</span>
  466.                                 </li>
  467.                                 <li class="ec-form-inquiry__group__step__item step-2" data-step="2">
  468.                                     <span>STEP2</span>
  469.                                     <span>お勤め先・ご収入</span>
  470.                                 </li>
  471.                                 <li class="ec-form-inquiry__group__step__item step-3" data-step="3">
  472.                                     <span>STEP3</span>
  473.                                     <span>連帯保証人の方</span>
  474.                                 </li>
  475.                                 <li class="ec-form-inquiry__group__step__item step-4" data-step="4">
  476.                                     <span>STEP4</span>
  477.                                     <span>工事内容の最終確認</span>
  478.                                 </li>
  479.                                 <li class="ec-form-inquiry__group__step__item step-5" data-step="5">
  480.                                     <span>STEP5</span>
  481.                                     <span>ご確認</span>
  482.                                 </li>
  483.                                 <li class="ec-form-inquiry__group__step__item step-6" data-step="6">
  484.                                     <span>STEP6</span>
  485.                                     <span>完了</span>
  486.                                 </li>
  487.                             </ul>
  488.                         </div>
  489.                         <form id="loan_examination_form" method="post" action="{{ url('loan_examination') }}" class="h-adr" enctype="multipart/form-data">
  490.                             <span class="p-country-name" style="display:none;">Japan</span>
  491.                             {{ form_widget(form._token) }}
  492.                             <div class="step-content step-1 active">
  493.                                 <div class="step-content__title">ご本人様について</div>
  494.                                 <div class="table">
  495.                                     {# <p class="text top">必須項目 <span>※</span></p> #}
  496.                                     <div class="list-item">
  497.                                         <div class="item">
  498.                                             <table>
  499.                                                 <tr>
  500.                                                     <td><p>お名前</p></td>
  501.                                                     <td>
  502.                                                         <div class="fill">
  503.                                                             <label>
  504.                                                                 姓
  505.                                                                 {{ form_widget(form.name.name01, {'attr': { 'placeholder': '姓' }}) }}
  506.                                                             </label>
  507.                                                         </div>
  508.                                                         <div class="fill">
  509.                                                             <label>
  510.                                                                 名
  511.                                                                 {{ form_widget(form.name.name02, {'attr': { 'placeholder': '名' }}) }}
  512.                                                             </label>
  513.                                                         </div>
  514.                                                         {{ form_errors(form.name.name01) }}
  515.                                                         {{ form_errors(form.name.name02) }}
  516.                                                     </td>
  517.                                                 </tr>
  518.                                                 <tr>
  519.                                                     <td><p>フリガナ</p></td>
  520.                                                     <td>
  521.                                                         <div class="fill">
  522.                                                             <label>
  523.                                                                 セイ
  524.                                                                 {{ form_widget(form.kana.kana01, {'attr': { 'placeholder': 'セイ' }}) }}
  525.                                                             </label>
  526.                                                         </div>
  527.                                                         <div class="fill">
  528.                                                             <label>
  529.                                                                 メイ
  530.                                                                 {{ form_widget(form.kana.kana02, {'attr': { 'placeholder': 'メイ' }}) }}
  531.                                                             </label>
  532.                                                         </div>
  533.                                                         {{ form_errors(form.kana.kana01) }}
  534.                                                         {{ form_errors(form.kana.kana02) }}
  535.                                                     </td>
  536.                                                 </tr>
  537.                                                 <tr>
  538.                                                     <td><p>性別</p></td>
  539.                                                     <td>
  540.                                                         <div class="fill horizontal">
  541.                                                             {% for key,val in form.sex.vars.choices %}
  542.                                                                 <label class="form-check">
  543.                                                                     <input type="radio" name="{{ form.sex.vars.full_name }}" value="{{ val.value }}" {% if form.sex.vars.data == val.value %}checked{% endif %} required="required" />
  544.                                                                     {{ val.label | trans }} 
  545.                                                                 </label>
  546.                                                             {% endfor %}                    
  547.                                                         </div>
  548.                                                         {{ form_errors(form.sex) }}
  549.                                                     </td>
  550.                                                 </tr>
  551.                                                 <tr>
  552.                                                     <td><p>生年月日</p></td>
  553.                                                     <td>
  554.                                                         <div class="fill v2">
  555.                                                             <label class="group_select">
  556.                                                                 <div class="select vip">
  557.                                                                     {{ form_widget(form.birth.year) }}<span>年</span>
  558.                                                                 </div>
  559.                                                                 <div class="select vip">
  560.                                                                     {{ form_widget(form.birth.month) }}<span>月</span>
  561.                                                                 </div>
  562.                                                                 <div class="select vip">
  563.                                                                     {{ form_widget(form.birth.day) }}<span>日</span>
  564.                                                                 </div>
  565.                                                             </label>
  566.                                                         </div>
  567.                                                         {{ form_errors(form.birth) }}
  568.                                                     </td>
  569.                                                 </tr>
  570.                                                 <tr>
  571.                                                     <td><p>住所</p></td>
  572.                                                     <td>
  573.                                                         <div class="fill v3">
  574.                                                             <label class="label v2">
  575.                                                                 郵便番号
  576.                                                                 {{ form_widget(form.postal_code) }}
  577.                                                                 <a class="btn-post postal_code" href="https://www.post.japanpost.jp/zipcode/" target="_blank"><span>{{ '住所検索'|trans }}</span></a>
  578.                                                             </label>
  579.                                                             {{ form_errors(form.postal_code) }}
  580.                                                             <label class="label v3 address">
  581.                                                                 都道府県
  582.                                                                 <div class="select">
  583.                                                                     {{ form_widget(form.address.pref) }}   
  584.                                                                 </div>                     
  585.                                                             </label>
  586.                                                             {{ form_errors(form.address.pref) }}
  587.                                                             <label class="label v4 address">
  588.                                                                 市区町村・番地 
  589.                                                                 {{ form_widget(form.address.addr01, { 'attr': { 'placeholder': '市区町村名(例:大阪市北区)' }}) }}
  590.                                                             </label>
  591.                                                             {{ form_errors(form.address.addr01) }}
  592.                                                             <label class="label v4 address">
  593.                                                                 マンション・ビル名
  594.                                                                 {{ form_widget(form.address.addr02,  { 'attr': { 'placeholder': '番地・ビル名(例:西梅田1丁目6-8)' }}) }}
  595.                                                             </label>
  596.                                                             {{ form_errors(form.address.addr02) }}
  597.                                                         </div>
  598.                                                     </td>
  599.                                                 </tr>
  600.                                                 <tr>
  601.                                                     <td><p>電話番号(ご自宅)</p></td>
  602.                                                     <td>
  603.                                                         <div class="fill horizontal">
  604.                                                             {% for key,val in form.tel_number_type.vars.choices %}
  605.                                                                 <label class="form-check">
  606.                                                                     <input type="radio" name="{{ form.tel_number_type.vars.full_name }}" value="{{ val.value }}" {% if form.tel_number_type.vars.data == val.value %}checked{% endif %} required="required" />
  607.                                                                     {{ val.label | trans }} 
  608.                                                                 </label>
  609.                                                             {% endfor %}                    
  610.                                                         </div>
  611.                                                         {{ form_errors(form.tel_number_type) }}
  612.                                                         <div class="fill v2">
  613.                                                             <label>
  614.                                                                 {{ form_widget(form.tel_number, {'attr': { 'placeholder': '000-0000-0000' }}) }}
  615.                                                             </label>
  616.                                                         </div>
  617.                                                         {{ form_errors(form.tel_number) }}
  618.                                                     </td>
  619.                                                 </tr>
  620.                                                 <tr>
  621.                                                     <td><p>電話番号(携帯)</p></td>
  622.                                                     <td>
  623.                                                         <div class="fill v2">
  624.                                                             <label>
  625.                                                                 {{ form_widget(form.phone_number, {'attr': { 'placeholder': '000-0000-0000' }}) }}
  626.                                                             </label>
  627.                                                         </div>
  628.                                                         {{ form_errors(form.phone_number) }}
  629.                                                     </td>
  630.                                                 </tr>
  631.                                                 <tr>
  632.                                                     <td><p>メールアドレス</p></td>
  633.                                                     <td>
  634.                                                         <div class="fill v2">
  635.                                                             <label>
  636.                                                                 {{ form_widget(form.email, {'attr': { 'placeholder': 'example@example.com' }}) }}
  637.                                                             </label>
  638.                                                         </div>
  639.                                                         {{ form_errors(form.email) }}          
  640.                                                     </td>
  641.                                                 </tr> 
  642.                                                 <tr>
  643.                                                     <td><p>配偶者</p></td>
  644.                                                     <td>
  645.                                                         <div class="fill horizontal">
  646.                                                             {% for key,val in form.spouse.vars.choices %}
  647.                                                                 <label class="form-check">
  648.                                                                     <input type="radio" name="{{ form.spouse.vars.full_name }}" value="{{ val.value }}" {% if form.spouse.vars.data == val.value %}checked{% endif %} required="required" />
  649.                                                                     {{ val.label | trans }} 
  650.                                                                 </label>
  651.                                                             {% endfor %}                    
  652.                                                         </div>
  653.                                                         {{ form_errors(form.spouse) }}
  654.                                                     </td>
  655.                                                 </tr>
  656.                                                 <tr>
  657.                                                     <td><p>配偶者の職業</p></td>
  658.                                                     <td>
  659.                                                         <div class="fill v4">
  660.                                                             <div class="select">
  661.                                                                 {{ form_widget(form.spouse_job) }}
  662.                                                             </div>
  663.                                                         </div>
  664.                                                         {{ form_errors(form.spouse_job) }}
  665.                                                     </td>
  666.                                                 </tr>
  667.                                                 <tr>
  668.                                                     <td><p>世帯主とのご関係</p></td>
  669.                                                     <td>
  670.                                                         <div class="fill horizontal">
  671.                                                             {% for key,val in form.relationship.vars.choices %}
  672.                                                                 <label class="form-check">
  673.                                                                     <input type="radio" name="{{ form.relationship.vars.full_name }}" value="{{ val.value }}" {% if form.relationship.vars.data == val.value %}checked{% endif %} required="required" />
  674.                                                                     {{ val.label | trans }} 
  675.                                                                 </label>
  676.                                                             {% endfor %}
  677.                                                             <label>
  678.                                                                 {{ form_widget(form.relationship_other, {'attr': { 'style': 'width: 120px;' }}) }}
  679.                                                             </label>        
  680.                                                         </div>
  681.                                                         {{ form_errors(form.relationship) }}
  682.                                                         {{ form_errors(form.relationship_other) }}
  683.                                                     </td>
  684.                                                 </tr>
  685.                                                 <tr>
  686.                                                     <td><p>世帯人数</p></td>
  687.                                                     <td>
  688.                                                         <div class="fill v2">
  689.                                                             <label>
  690.                                                                 {{ form_widget(form.people_cnt, {'attr': { 'style': 'width: 120px;' }}) }} <span>人</span>
  691.                                                             </label>
  692.                                                         </div>
  693.                                                         {{ form_errors(form.people_cnt) }}
  694.                                                     </td>
  695.                                                 </tr>
  696.                                                 <tr>
  697.                                                     <td><p>住宅ローン/家賃支払い</p></td>
  698.                                                     <td>
  699.                                                         <div class="fill horizontal">
  700.                                                             {% for key,val in form.housing_loan.vars.choices %}
  701.                                                                 <label class="form-check">
  702.                                                                     <input type="radio" name="{{ form.housing_loan.vars.full_name }}" value="{{ val.value }}" {% if form.housing_loan.vars.data == val.value %}checked{% endif %} required="required" />
  703.                                                                     {{ val.label | trans }} 
  704.                                                                 </label>
  705.                                                             {% endfor %}                    
  706.                                                         </div>
  707.                                                         {{ form_errors(form.housing_loan) }}
  708.                                                         <p class="noice">※お申込者ご自身またはお申込者と同一世帯の方の住宅ローン・家賃のお支払有無をご選択ください。「世帯」とは、お申込者と生計を共にする家族のことをいいます(同居・別居を問わず)。</p>
  709.                                                     </td>
  710.                                                 </tr>
  711.                                                 <tr>
  712.                                                     <td><p>住居区分</p></td>
  713.                                                     <td>
  714.                                                         <div class="fill v4">
  715.                                                             <div class="select">
  716.                                                                 {{ form_widget(form.housing_type) }}  
  717.                                                             </div>            
  718.                                                         </div>
  719.                                                         {{ form_errors(form.housing_type) }}
  720.                                                     </td>
  721.                                                 </tr>
  722.                                                 <tr>
  723.                                                     <td><p>居住年数</p></td>
  724.                                                     <td>
  725.                                                         <div class="fill horizontal">
  726.                                                             <label>
  727.                                                                 {{ form_widget(form.residence_year, {'attr': { 'style': 'width: 120px;' }}) }} <span>年</span>
  728.                                                             </label>
  729.                                                         </div>
  730.                                                         <div class="fill horizontal">
  731.                                                             <label>
  732.                                                                 {{ form_widget(form.residence_month, {'attr': { 'style': 'width: 120px;' }}) }} <span>ヶ月</span>
  733.                                                             </label>
  734.                                                         </div>
  735.                                                         {{ form_errors(form.residence_year) }}
  736.                                                         {{ form_errors(form.residence_month) }}
  737.                                                     </td>
  738.                                                 </tr>
  739.                                                 <tr>
  740.                                                     <td><p>職業</p></td>
  741.                                                     <td>
  742.                                                         <div class="fill v4">
  743.                                                             <div class="select">
  744.                                                                 {{ form_widget(form.job) }}
  745.                                                             </div>              
  746.                                                         </div>
  747.                                                         {{ form_errors(form.job) }}
  748.                                                     </td>
  749.                                                 </tr>
  750.                                                 <tr>
  751.                                                     <td><p>世帯主との居住状況</p></td>
  752.                                                     <td>
  753.                                                         <div class="fill horizontal">
  754.                                                             {% for key,val in form.head_of_household.vars.choices %}
  755.                                                                 <label class="form-check">
  756.                                                                     <input type="radio" name="{{ form.head_of_household.vars.full_name }}" value="{{ val.value }}" {% if form.head_of_household.vars.data == val.value %}checked{% endif %} required="required" />
  757.                                                                     {{ val.label | trans }} 
  758.                                                                 </label>
  759.                                                             {% endfor %}                    
  760.                                                         </div>
  761.                                                         {{ form_errors(form.head_of_household) }}
  762.                                                     </td>
  763.                                                 </tr>
  764.                                             </table>
  765.                                         </div>
  766.                                     </div>
  767.                                 </div>
  768.                             </div>
  769.                             <div class="step-content step-2">
  770.                                 <div class="step-content__title">お勤め先・ご収入について</div>
  771.                                 <div class="table" id="employed">
  772.                                     <div class="table__title">
  773.                                         <p class="step-content__subtitle">【有職者の方】パート・アルバイト含む</p>
  774.                                         {# <p class="text top">必須項目 <span>※</span></p> #}
  775.                                     </div>
  776.                                     <div class="list-item">
  777.                                         <div class="item">
  778.                                             <table>
  779.                                                 <tr>
  780.                                                     <td><p>職業</p></td>
  781.                                                     <td>
  782.                                                         <div class="fill v4">
  783.                                                             <div class="select">
  784.                                                                 {{ form_widget(form.employed_job) }}   
  785.                                                             </div>           
  786.                                                         </div>
  787.                                                         {{ form_errors(form.employed_job) }}
  788.                                                     </td>
  789.                                                 </tr>
  790.                                                 <tr>
  791.                                                     <td><p>業種</p></td>
  792.                                                     <td>
  793.                                                         <div class="fill v4">
  794.                                                             <div class="select">
  795.                                                                 {{ form_widget(form.employed_industry) }}   
  796.                                                             </div>           
  797.                                                         </div>
  798.                                                         {{ form_errors(form.employed_industry) }}
  799.                                                     </td>
  800.                                                 </tr>
  801.                                                 <tr>
  802.                                                     <td><p>お勤め先(派遣元)</p></td>
  803.                                                     <td>
  804.                                                         <div class="fill v2">
  805.                                                             <label>
  806.                                                                 {{ form_widget(form.employed_company) }}
  807.                                                             </label>
  808.                                                         </div>
  809.                                                         {{ form_errors(form.employed_company) }}
  810.                                                     </td>
  811.                                                 </tr>
  812.                                                 <tr>
  813.                                                     <td><p>お勤め先フリガナ</p></td>
  814.                                                     <td>
  815.                                                         <div class="fill v2">
  816.                                                             <label>
  817.                                                                 {{ form_widget(form.employed_company_kana) }}
  818.                                                             </label>
  819.                                                         </div>
  820.                                                         {{ form_errors(form.employed_company_kana) }}
  821.                                                     </td>
  822.                                                 </tr>
  823.                                                 <tr>
  824.                                                     <td><p>お勤め先住所</p></td>
  825.                                                     <td>
  826.                                                         <div class="fill v3">
  827.                                                             <label class="label v2">
  828.                                                                 郵便番号
  829.                                                                 {{ form_widget(form.employed_postal_code) }}
  830.                                                                 <a class="btn-post employed_postal_code" href="https://www.post.japanpost.jp/zipcode/" target="_blank"><span>{{ '住所検索'|trans }}</span></a>
  831.                                                             </label>
  832.                                                             {{ form_errors(form.employed_postal_code) }}
  833.                                                             <label class="label v3 address">
  834.                                                                 都道府県
  835.                                                                 <div class="select">
  836.                                                                     {{ form_widget(form.employed_address_pref) }}   
  837.                                                                 </div>                     
  838.                                                             </label>
  839.                                                             {{ form_errors(form.employed_address_pref) }}
  840.                                                             <label class="label v4 address">
  841.                                                                 市区町村・番地 
  842.                                                                 {{ form_widget(form.employed_address_addr01, { 'attr': { 'placeholder': '市区町村名(例:大阪市北区)' }}) }}
  843.                                                             </label>
  844.                                                             {{ form_errors(form.employed_address_addr01) }}
  845.                                                             <label class="label v4 address">
  846.                                                                 マンション・ビル名
  847.                                                                 {{ form_widget(form.employed_address_addr02,  { 'attr': { 'placeholder': '番地・ビル名(例:西梅田1丁目6-8)' }}) }}
  848.                                                             </label>
  849.                                                             {{ form_errors(form.employed_address_addr02) }}
  850.                                                         </div>
  851.                                                     </td>
  852.                                                 </tr>
  853.                                                 <tr>
  854.                                                     <td><p>お勤め先電話番号</p></td>
  855.                                                     <td>
  856.                                                         <div class="fill v2">
  857.                                                             <label>
  858.                                                                 {{ form_widget(form.employed_phone_number, {'attr': { 'placeholder': '000-0000-0000' }}) }}
  859.                                                             </label>
  860.                                                         </div>
  861.                                                         {{ form_errors(form.employed_phone_number) }}
  862.                                                     </td>
  863.                                                 </tr>
  864.                                                 <tr>
  865.                                                     <td><p>勤続年数</p></td>
  866.                                                     <td>
  867.                                                         <div class="fill horizontal">
  868.                                                             <label>
  869.                                                                 {{ form_widget(form.employed_year, {'attr': { 'style': 'width: 120px;' }}) }} <span>年</span>
  870.                                                             </label>
  871.                                                         </div>
  872.                                                         <div class="fill horizontal">
  873.                                                             <label>
  874.                                                                 {{ form_widget(form.employed_month, {'attr': { 'style': 'width: 120px;' }}) }} <span>ヶ月</span>
  875.                                                             </label>
  876.                                                         </div>
  877.                                                         {{ form_errors(form.employed_year) }}
  878.                                                         {{ form_errors(form.employed_month) }}
  879.                                                     </td>
  880.                                                 </tr>
  881.                                                 <tr>
  882.                                                     <td><p>税込年収</p></td>
  883.                                                     <td>
  884.                                                         <div class="fill v2">
  885.                                                             <label>
  886.                                                                 {{ form_widget(form.employed_income, {'attr': { 'style': 'width: 120px;' }}) }} <span>万円</span>
  887.                                                             </label>
  888.                                                         </div>
  889.                                                         {{ form_errors(form.employed_income) }}
  890.                                                     </td>
  891.                                                 </tr>
  892.                                                 <tr>
  893.                                                     <td><p>従業員数</p></td>
  894.                                                     <td>
  895.                                                         <div class="fill v2">
  896.                                                             <div class="select">
  897.                                                                 {{ form_widget(form.employed_cnt) }}
  898.                                                             </div>
  899.                                                         </div>
  900.                                                         {{ form_errors(form.employed_cnt) }}
  901.                                                     </td>
  902.                                                 </tr>
  903.                                                 <tr>
  904.                                                     <td><p>出向先・派遣先電話番号</p></td>
  905.                                                     <td>
  906.                                                         <div class="fill v2">
  907.                                                             <label>
  908.                                                                 {{ form_widget(form.employed_company_phone_number, {'attr': { 'placeholder': '000-0000-0000' }}) }}
  909.                                                             </label>
  910.                                                         </div>
  911.                                                         {{ form_errors(form.employed_company_phone_number) }}
  912.                                                     </td>
  913.                                                 </tr>
  914.                                             </table>
  915.                                         </div>
  916.                                     </div>
  917.                                 </div>
  918.                                 <div class="table" id="pensioner">
  919.                                     <div class="table__title">
  920.                                         <p class="step-content__subtitle">【主婦・年金受給者の方】</p>
  921.                                         {# <p class="text top">必須項目 <span>※</span></p> #}
  922.                                     </div>
  923.                                     <div class="list-item">
  924.                                         <div class="item">
  925.                                             <table>
  926.                                                 <tr>
  927.                                                     <td><p>世帯主お名前</p></td>
  928.                                                     <td>
  929.                                                         <div class="fill">
  930.                                                             <label>
  931.                                                                 姓
  932.                                                                 {{ form_widget(form.pensioner_name.pensioner_name01, {'attr': { 'placeholder': '姓' }}) }}
  933.                                                             </label>
  934.                                                         </div>
  935.                                                         <div class="fill">
  936.                                                             <label>
  937.                                                                 名
  938.                                                                 {{ form_widget(form.pensioner_name.pensioner_name02, {'attr': { 'placeholder': '名' }}) }}
  939.                                                             </label>
  940.                                                         </div>
  941.                                                         {{ form_errors(form.pensioner_name.pensioner_name01) }}
  942.                                                         {{ form_errors(form.pensioner_name.pensioner_name02) }}
  943.                                                     </td>
  944.                                                 </tr>
  945.                                                 <tr>
  946.                                                     <td><p>フリガナ</p></td>
  947.                                                     <td>
  948.                                                         <div class="fill">
  949.                                                             <label>
  950.                                                                 セイ
  951.                                                                 {{ form_widget(form.pensioner_kana.pensioner_kana01, {'attr': { 'placeholder': 'セイ' }}) }}
  952.                                                             </label>
  953.                                                         </div>
  954.                                                         <div class="fill">
  955.                                                             <label>
  956.                                                                 メイ
  957.                                                                 {{ form_widget(form.pensioner_kana.pensioner_kana02, {'attr': { 'placeholder': 'メイ' }}) }}
  958.                                                             </label>
  959.                                                         </div>
  960.                                                         {{ form_errors(form.pensioner_kana.pensioner_kana01) }}
  961.                                                         {{ form_errors(form.pensioner_kana.pensioner_kana02) }}
  962.                                                     </td>
  963.                                                 </tr>
  964.                                                 <tr>
  965.                                                     <td><p>世帯主税込年収</p></td>
  966.                                                     <td>
  967.                                                         <div class="fill v2">
  968.                                                             <label>
  969.                                                                 {{ form_widget(form.pensioner_income, {'attr': { 'style': 'width: 120px;' }}) }} <span>万円</span>
  970.                                                             </label>
  971.                                                         </div>
  972.                                                         {{ form_errors(form.pensioner_income) }}
  973.                                                     </td>
  974.                                                 </tr>
  975.                                                 <tr>
  976.                                                     <td><p>世帯主のお支払中の<br>クレジット返済額</p></td>
  977.                                                     <td>
  978.                                                         <div>
  979.                                                             <div class="fill horizontal">
  980.                                                                 {% for key,val in form.household_paying.vars.choices %}
  981.                                                                     <label class="form-check">
  982.                                                                         <input type="radio" name="{{ form.household_paying.vars.full_name }}" value="{{ val.value }}" {% if form.household_paying.vars.data == val.value %}checked{% endif %} required="required" />
  983.                                                                         {{ val.label | trans }} 
  984.                                                                     </label>
  985.                                                                 {% endfor %}                    
  986.                                                             </div>
  987.                                                             {{ form_errors(form.household_paying) }}
  988.                                                             <div class="fill horizontal">
  989.                                                                 <div style="margin-right: 2rem;">
  990.                                                                     <p>有りとご回答された方 毎月の支払額</p>
  991.                                                                     <p class="noice">※住宅ローン・無担保ローンを除く</p>
  992.                                                                 </div>
  993.                                                                 <label>
  994.                                                                     {{ form_widget(form.household_paying_amount, {'attr': { 'style': 'width: 120px;' }}) }} <span>万円</span>
  995.                                                                 </label>
  996.                                                             </div>
  997.                                                             {{ form_errors(form.household_paying_amount) }}
  998.                                                         </div>
  999.                                                     </td>
  1000.                                                 </tr>
  1001.                                                 <tr>
  1002.                                                     <td><p>年金の種類</p></td>
  1003.                                                     <td>
  1004.                                                         <div class="fill horizontal">
  1005.                                                             {{ form_widget(form.pensioner_type) }}
  1006.                                                             <label>
  1007.                                                                 {{ form_widget(form.pensioner_type_other, {'attr': { 'style': 'width: 120px;' }}) }}
  1008.                                                             </label>
  1009.                                                         </div>
  1010.                                                         {{ form_errors(form.pensioner_type) }}
  1011.                                                         {{ form_errors(form.pensioner_type_other) }}
  1012.                                                     </td>
  1013.                                                 </tr>
  1014.                                                 <tr>
  1015.                                                     <td><p>年金以外の収入</p></td>
  1016.                                                     <td>
  1017.                                                         <div class="fill horizontal">
  1018.                                                             {% for key,val in form.pensioner_income_other.vars.choices %}
  1019.                                                                 <label class="form-check">
  1020.                                                                     <input type="radio" name="{{ form.pensioner_income_other.vars.full_name }}" value="{{ val.value }}" {% if form.pensioner_income_other.vars.data == val.value %}checked{% endif %} required="required" />
  1021.                                                                     {{ val.label | trans }} 
  1022.                                                                 </label>
  1023.                                                             {% endfor %}                    
  1024.                                                         </div>
  1025.                                                         {{ form_errors(form.pensioner_income_other) }}
  1026.                                                     </td>
  1027.                                                 </tr>
  1028.                                                 <tr>
  1029.                                                     <td><p>今回のお支払い</p></td>
  1030.                                                     <td>
  1031.                                                         <div class="fill horizontal">
  1032.                                                             {{ form_widget(form.pensioner_payment) }}
  1033.                                                             <label>
  1034.                                                                 {{ form_widget(form.pensioner_payment_other, {'attr': { 'style': 'width: 120px;' }}) }}
  1035.                                                             </label>                    
  1036.                                                         </div>
  1037.                                                         {{ form_errors(form.pensioner_payment) }}
  1038.                                                         {{ form_errors(form.pensioner_payment_other) }}
  1039.                                                     </td>
  1040.                                                 </tr>
  1041.                                                 <tr>
  1042.                                                     <td><p>お勤め先電話番号</p></td>
  1043.                                                     <td>
  1044.                                                         <div class="fill v2">
  1045.                                                             <label>
  1046.                                                                 {{ form_widget(form.pensioner_company_phone_number, {'attr': { 'placeholder': '000-0000-0000' }}) }}
  1047.                                                             </label>
  1048.                                                         </div>
  1049.                                                         {{ form_errors(form.pensioner_company_phone_number) }}
  1050.                                                     </td>
  1051.                                                 </tr>
  1052.                                                 <tr>
  1053.                                                     <td><p>年金受給者の税込年収</p></td>
  1054.                                                     <td>
  1055.                                                         <div class="fill v2">
  1056.                                                             <label>
  1057.                                                                 {{ form_widget(form.pensioner_income2, {'attr': { 'style': 'width: 120px;' }}) }} <span>万円</span>
  1058.                                                             </label>
  1059.                                                         </div>
  1060.                                                         {{ form_errors(form.pensioner_income2) }}
  1061.                                                     </td>
  1062.                                                 </tr>
  1063.                                                 <tr>
  1064.                                                     <td><p>口座名義人</p></td>
  1065.                                                     <td>
  1066.                                                         <div>
  1067.                                                             <div class="fill horizontal">
  1068.                                                                 {% for key,val in form.pensioner_acount.vars.choices %}
  1069.                                                                     <label class="form-check">
  1070.                                                                         <input type="radio" name="{{ form.pensioner_acount.vars.full_name }}" value="{{ val.value }}" {% if form.pensioner_acount.vars.data == val.value %}checked{% endif %} required="required" />
  1071.                                                                         {{ val.label | trans }} 
  1072.                                                                     </label>
  1073.                                                                 {% endfor %}                    
  1074.                                                             </div>
  1075.                                                             {{ form_errors(form.pensioner_acount) }}
  1076.                                                             <p class="noice">※口座名義人が申込者の場合、連帯保証人が必要となる場合があります。</p>
  1077.                                                         </div>
  1078.                                                     </td>
  1079.                                                 </tr>
  1080.                                             </table>
  1081.                                         </div>
  1082.                                     </div>
  1083.                                 </div>
  1084.                             </div>
  1085.                             <div class="step-content step-3">
  1086.                                 <div class="step-content__title">連帯保証人の方</div>
  1087.                                 <div class="table">
  1088.                                     {# <p class="text top">必須項目 <span>※</span></p> #}
  1089.                                     <div class="list-item">
  1090.                                         <div class="item">
  1091.                                             <table>
  1092.                                                 <tr>
  1093.                                                     <td><p>お名前</p></td>
  1094.                                                     <td>
  1095.                                                         <div class="fill">
  1096.                                                             <label>
  1097.                                                                 姓
  1098.                                                                 {{ form_widget(form.guarantor_name.guarantor_name01, {'attr': { 'placeholder': '姓' }}) }}
  1099.                                                             </label>
  1100.                                                         </div>
  1101.                                                         <div class="fill">
  1102.                                                             <label>
  1103.                                                                 名
  1104.                                                                 {{ form_widget(form.guarantor_name.guarantor_name02, {'attr': { 'placeholder': '名' }}) }}
  1105.                                                             </label>
  1106.                                                         </div>
  1107.                                                         {{ form_errors(form.guarantor_name.guarantor_name01) }}
  1108.                                                         {{ form_errors(form.guarantor_name.guarantor_name02) }}
  1109.                                                     </td>
  1110.                                                 </tr>
  1111.                                                 <tr>
  1112.                                                     <td><p>フリガナ</p></td>
  1113.                                                     <td>
  1114.                                                         <div class="fill">
  1115.                                                             <label>
  1116.                                                                 セイ
  1117.                                                                 {{ form_widget(form.guarantor_kana.guarantor_kana01, {'attr': { 'placeholder': 'セイ' }}) }}
  1118.                                                             </label>
  1119.                                                         </div>
  1120.                                                         <div class="fill">
  1121.                                                             <label>
  1122.                                                                 メイ
  1123.                                                                 {{ form_widget(form.guarantor_kana.guarantor_kana02, {'attr': { 'placeholder': 'メイ' }}) }}
  1124.                                                             </label>
  1125.                                                         </div>
  1126.                                                         {{ form_errors(form.guarantor_kana.guarantor_kana01) }}
  1127.                                                         {{ form_errors(form.guarantor_kana.guarantor_kana02) }}
  1128.                                                     </td>
  1129.                                                 </tr>
  1130.                                                 <tr>
  1131.                                                     <td><p>性別</p></td>
  1132.                                                     <td>
  1133.                                                         <div class="fill horizontal">
  1134.                                                             {% for key,val in form.guarantor_sex.vars.choices %}
  1135.                                                                 <label class="form-check">
  1136.                                                                     <input type="radio" name="{{ form.guarantor_sex.vars.full_name }}" value="{{ val.value }}" {% if form.guarantor_sex.vars.data == val.value %}checked{% endif %} required="required" />
  1137.                                                                     {{ val.label | trans }} 
  1138.                                                                 </label>
  1139.                                                             {% endfor %}                    
  1140.                                                         </div>
  1141.                                                         {{ form_errors(form.guarantor_sex) }}
  1142.                                                     </td>
  1143.                                                 </tr>
  1144.                                                 <tr>
  1145.                                                     <td><p>生年月日</p></td>
  1146.                                                     <td>
  1147.                                                         <div class="fill v2">
  1148.                                                             <label class="group_select">
  1149.                                                                 <div class="select vip">
  1150.                                                                     {{ form_widget(form.guarantor_birth.year) }}<span>年</span>
  1151.                                                                 </div>
  1152.                                                                 <div class="select vip">
  1153.                                                                     {{ form_widget(form.guarantor_birth.month) }}<span>月</span>
  1154.                                                                 </div>
  1155.                                                                 <div class="select vip">
  1156.                                                                     {{ form_widget(form.guarantor_birth.day) }}<span>日</span>
  1157.                                                                 </div>
  1158.                                                             </label>
  1159.                                                         </div>
  1160.                                                         {{ form_errors(form.guarantor_birth) }}
  1161.                                                     </td>
  1162.                                                 </tr>
  1163.                                                 <tr>
  1164.                                                     <td><p>住所</p></td>
  1165.                                                     <td>
  1166.                                                         <div class="fill v3">
  1167.                                                             <label class="label v2">
  1168.                                                                 郵便番号
  1169.                                                                 {{ form_widget(form.guarantor_postal_code) }}
  1170.                                                                 <a class="btn-post guarantor_postal_code" href="https://www.post.japanpost.jp/zipcode/" target="_blank"><span>{{ '住所検索'|trans }}</span></a>
  1171.                                                             </label>
  1172.                                                             {{ form_errors(form.guarantor_postal_code) }}
  1173.                                                             <label class="label v3 address">
  1174.                                                                 都道府県
  1175.                                                                 <div class="select">
  1176.                                                                     {{ form_widget(form.guarantor_address_pref) }}    
  1177.                                                                 </div>                    
  1178.                                                             </label>
  1179.                                                             {{ form_errors(form.guarantor_address_pref) }}
  1180.                                                             <label class="label v4 address">
  1181.                                                                 市区町村・番地 
  1182.                                                                 {{ form_widget(form.guarantor_address_addr01, { 'attr': { 'placeholder': '市区町村名(例:大阪市北区)' }}) }}
  1183.                                                             </label>
  1184.                                                             {{ form_errors(form.guarantor_address_addr01) }}
  1185.                                                             <label class="label v4 address">
  1186.                                                                 マンション・ビル名
  1187.                                                                 {{ form_widget(form.guarantor_address_addr02,  { 'attr': { 'placeholder': '番地・ビル名(例:西梅田1丁目6-8)' }}) }}
  1188.                                                             </label>
  1189.                                                             {{ form_errors(form.guarantor_address_addr02) }}
  1190.                                                         </div>
  1191.                                                     </td>
  1192.                                                 </tr>
  1193.                                                 <tr>
  1194.                                                     <td><p>電話番号(ご自宅)</p></td>
  1195.                                                     <td>
  1196.                                                         <div class="fill horizontal">
  1197.                                                             {% for key,val in form.guarantor_tel_number_type.vars.choices %}
  1198.                                                                 <label class="form-check">
  1199.                                                                     <input type="radio" name="{{ form.guarantor_tel_number_type.vars.full_name }}" value="{{ val.value }}" {% if form.guarantor_tel_number_type.vars.data == val.value %}checked{% endif %} required="required" />
  1200.                                                                     {{ val.label | trans }} 
  1201.                                                                 </label>
  1202.                                                             {% endfor %}                    
  1203.                                                         </div>
  1204.                                                         {{ form_errors(form.guarantor_tel_number_type) }}
  1205.                                                         <div class="fill v2">
  1206.                                                             <label>
  1207.                                                                 {{ form_widget(form.guarantor_tel_number, {'attr': { 'placeholder': '000-0000-0000' }}) }}
  1208.                                                             </label>
  1209.                                                         </div>
  1210.                                                         {{ form_errors(form.guarantor_tel_number) }}
  1211.                                                     </td>
  1212.                                                 </tr>
  1213.                                                 <tr>
  1214.                                                     <td><p>電話番号(携帯)</p></td>
  1215.                                                     <td>
  1216.                                                         <div class="fill v2">
  1217.                                                             <label>
  1218.                                                                 {{ form_widget(form.guarantor_phone_number, {'attr': { 'placeholder': '000-0000-0000' }}) }}
  1219.                                                             </label>
  1220.                                                         </div>
  1221.                                                         {{ form_errors(form.guarantor_phone_number) }}
  1222.                                                     </td>
  1223.                                                 </tr>
  1224.                                                 <tr>
  1225.                                                     <td><p>メールアドレス<br>(半角英数字)</p></td>
  1226.                                                     <td>
  1227.                                                         <div class="fill v2">
  1228.                                                             <label>
  1229.                                                                 {{ form_widget(form.guarantor_email, {'attr': { 'placeholder': 'example@example.com' }}) }}
  1230.                                                             </label>
  1231.                                                         </div>
  1232.                                                         {{ form_errors(form.guarantor_email) }}          
  1233.                                                     </td>
  1234.                                                 </tr> 
  1235.                                                 <tr>
  1236.                                                     <td><p>メールアドレス確認用<br>(半角英数字)</p></td>
  1237.                                                     <td>
  1238.                                                         <div class="fill v2">
  1239.                                                             <label>
  1240.                                                                 {{ form_widget(form.guarantor_email_confirm, {'attr': { 'placeholder': 'example@example.com' }}) }}
  1241.                                                             </label>
  1242.                                                         </div>
  1243.                                                         {{ form_errors(form.guarantor_email_confirm) }}
  1244.                                                     </td>
  1245.                                                 </tr> 
  1246.                                                 <tr>
  1247.                                                     <td><p>契約者との続柄</p></td>
  1248.                                                     <td>
  1249.                                                         <div class="fill v2">
  1250.                                                             <label>
  1251.                                                                 {{ form_widget(form.guarantor_relation) }}
  1252.                                                             </label>
  1253.                                                         </div>
  1254.                                                         {{ form_errors(form.guarantor_relation) }}
  1255.                                                     </td>
  1256.                                                 </tr>
  1257.                                                 <tr>
  1258.                                                     <td><p>職業</p></td>
  1259.                                                     <td>
  1260.                                                         <div class="fill v4">
  1261.                                                             <div class="select">
  1262.                                                                 {{ form_widget(form.guarantor_job) }}
  1263.                                                             </div>
  1264.                                                         </div>
  1265.                                                         {{ form_errors(form.guarantor_job) }}
  1266.                                                     </td>
  1267.                                                 </tr>
  1268.                                                 <tr>
  1269.                                                     <td><p>業種</p></td>
  1270.                                                     <td>
  1271.                                                         <div class="fill v4">
  1272.                                                             <div class="select">
  1273.                                                                 {{ form_widget(form.guarantor_industry) }}
  1274.                                                             </div>
  1275.                                                         </div>
  1276.                                                         {{ form_errors(form.guarantor_industry) }}
  1277.                                                     </td>
  1278.                                                 </tr>
  1279.                                                 <tr>
  1280.                                                     <td><p>お勤め先(派遣元)</p></td>
  1281.                                                     <td>
  1282.                                                         <div class="fill v2">
  1283.                                                             <label>
  1284.                                                                 {{ form_widget(form.guarantor_company) }}
  1285.                                                             </label>
  1286.                                                         </div>
  1287.                                                         {{ form_errors(form.guarantor_company) }}
  1288.                                                     </td>
  1289.                                                 </tr>
  1290.                                                 <tr>
  1291.                                                     <td><p>お勤め先フリガナ</p></td>
  1292.                                                     <td>
  1293.                                                         <div class="fill v2">
  1294.                                                             <label>
  1295.                                                                 {{ form_widget(form.guarantor_company_kana) }}
  1296.                                                             </label>
  1297.                                                         </div>
  1298.                                                         {{ form_errors(form.guarantor_company_kana) }}
  1299.                                                     </td>
  1300.                                                 </tr>
  1301.                                                 <tr>
  1302.                                                     <td><p>お勤め先住所</p></td>
  1303.                                                     <td>
  1304.                                                         <div class="fill v3">
  1305.                                                             <label class="label v2">
  1306.                                                                 郵便番号
  1307.                                                                 {{ form_widget(form.guarantor_company_postal_code) }}
  1308.                                                                 <a class="btn-post guarantor_company_postal_code" href="https://www.post.japanpost.jp/zipcode/" target="_blank"><span>{{ '住所検索'|trans }}</span></a>
  1309.                                                             </label>
  1310.                                                             {{ form_errors(form.guarantor_company_postal_code) }}
  1311.                                                             <label class="label v3 address">
  1312.                                                                 都道府県
  1313.                                                                 <div class="select">
  1314.                                                                     {{ form_widget(form.guarantor_company_address_pref) }}
  1315.                                                                 </div>                        
  1316.                                                             </label>
  1317.                                                             {{ form_errors(form.guarantor_company_address_pref) }}
  1318.                                                             <label class="label v4 address">
  1319.                                                                 市区町村・番地 
  1320.                                                                 {{ form_widget(form.guarantor_company_address_addr01, { 'attr': { 'placeholder': '市区町村名(例:大阪市北区)' }}) }}
  1321.                                                             </label>
  1322.                                                             {{ form_errors(form.guarantor_company_address_addr01) }}
  1323.                                                             <label class="label v4 address">
  1324.                                                                 マンション・ビル名
  1325.                                                                 {{ form_widget(form.guarantor_company_address_addr02,  { 'attr': { 'placeholder': '番地・ビル名(例:西梅田1丁目6-8)' }}) }}
  1326.                                                             </label>
  1327.                                                             {{ form_errors(form.guarantor_company_address_addr02) }}
  1328.                                                         </div>
  1329.                                                     </td>
  1330.                                                 </tr>
  1331.                                                 <tr>
  1332.                                                     <td><p>お勤め先電話番号</p></td>
  1333.                                                     <td>
  1334.                                                         <div class="fill v2">
  1335.                                                             <label>
  1336.                                                                 {{ form_widget(form.guarantor_company_phone_number, {'attr': { 'placeholder': '000-0000-0000' }}) }}
  1337.                                                             </label>
  1338.                                                         </div>
  1339.                                                         {{ form_errors(form.guarantor_company_phone_number) }}
  1340.                                                     </td>
  1341.                                                 </tr>
  1342.                                                 <tr>
  1343.                                                     <td><p>勤続年数</p></td>
  1344.                                                     <td>
  1345.                                                         <div class="fill horizontal">
  1346.                                                             <label>
  1347.                                                                 {{ form_widget(form.guarantor_year, {'attr': { 'style': 'width: 120px;' }}) }} <span>年</span>
  1348.                                                             </label>
  1349.                                                         </div>
  1350.                                                         <div class="fill horizontal">
  1351.                                                             <label>
  1352.                                                                 {{ form_widget(form.guarantor_month, {'attr': { 'style': 'width: 120px;' }}) }} <span>ヶ月</span>
  1353.                                                             </label>
  1354.                                                         </div>
  1355.                                                         {{ form_errors(form.guarantor_year) }}
  1356.                                                         {{ form_errors(form.guarantor_month) }}
  1357.                                                     </td>
  1358.                                                 </tr>
  1359.                                                 <tr>
  1360.                                                     <td><p>税込年収</p></td>
  1361.                                                     <td>
  1362.                                                         <div class="fill v2">
  1363.                                                             <label>
  1364.                                                                 {{ form_widget(form.guarantor_income, {'attr': { 'style': 'width: 120px;' }}) }} <span>万円</span>
  1365.                                                             </label>
  1366.                                                         </div>
  1367.                                                         {{ form_errors(form.guarantor_income) }}
  1368.                                                     </td>
  1369.                                                 </tr>
  1370.                                                 <tr>
  1371.                                                     <td><p>従業員数</p></td>
  1372.                                                     <td>
  1373.                                                         <div class="fill v2">
  1374.                                                             <div class="select">
  1375.                                                                 {{ form_widget(form.guarantor_cnt) }}
  1376.                                                             </div>
  1377.                                                         </div>
  1378.                                                         {{ form_errors(form.guarantor_cnt) }}
  1379.                                                     </td>
  1380.                                                 </tr>
  1381.                                                 <tr>
  1382.                                                     <td><p>出向先・派遣先電話番号</p></td>
  1383.                                                     <td>
  1384.                                                         <div class="fill v2">
  1385.                                                             <label>
  1386.                                                                 {{ form_widget(form.guarantor_company_phone_number2, {'attr': { 'placeholder': '000-0000-0000' }}) }}
  1387.                                                             </label>
  1388.                                                         </div>
  1389.                                                         {{ form_errors(form.guarantor_company_phone_number2) }}
  1390.                                                     </td>
  1391.                                                 </tr>
  1392.                                             </table>
  1393.                                         </div>
  1394.                                     </div>
  1395.                                 </div>
  1396.                             </div>
  1397.                             <div class="step-content step-4">
  1398.                                 <div class="step-content__title">工事内容の最終確認</div>
  1399.                                 <div class="table">
  1400.                                     {# <p class="text top">必須項目 <span>※</span></p> #}
  1401.                                     <div class="list-item">
  1402.                                         <div class="item">
  1403.                                             <input type="hidden" id="product_total_price" name="{{ form.product_total_price.vars.full_name }}" value="{{ productTotalPrice }}">
  1404.                                             <div class="table">
  1405.                                                 <div class="list-item">
  1406.                                                     <div class="item active">
  1407.                                                         <table>
  1408.                                                             <tr>
  1409.                                                                 <td><p>希望する工事</p></td>
  1410.                                                                 <td>
  1411.                                                                     <div class="fill v4">
  1412.                                                                         {% for key,val in form.desired_construction_work.vars.choices %}
  1413.                                                                             <div>
  1414.                                                                                 <label class="form-check">
  1415.                                                                                     <input type="radio" name="{{ form.desired_construction_work.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.desired_construction_work.vars.data == val.value %}checked{% endif %} required /> 
  1416.                                                                                     {{ val.label | trans }} 
  1417.                                                                                 </label>
  1418.                                                                             </div>
  1419.                                                                         {% endfor %}
  1420.                                                                     </div>
  1421.                                                                     {{ form_errors(form.desired_construction_work) }}
  1422.                                                                 </td>
  1423.                                                             </tr> 
  1424.                                                         </table>
  1425.                                                         <table id="tableUnderTop" style="padding: 0;">
  1426.                                                             <tr class="desired_construction_work_02">
  1427.                                                                 <td><p>希望する工事</p><small>2段階目</small></td>
  1428.                                                                 <td>
  1429.                                                                     <div class="fill v4">
  1430.                                                                         {% for key,val in form.desired_construction_work_02.vars.choices %}
  1431.                                                                             <label class="form-check flex">
  1432.                                                                                 <input type="radio" name="{{ form.desired_construction_work_02.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.desired_construction_work_02.vars.data == val.value %}checked{% endif %} />
  1433.                                                                                 {{ val.label | trans }} 
  1434.                                                                                 {% if val.value == "新居等への引越しのため設置場所の詳細確認不可" %}
  1435.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※工事当日に追加費用が発生する場合があります。</p>
  1436.                                                                                 {% endif %}
  1437.                                                                             </label>
  1438.                                                                         {% endfor %}                    
  1439.                                                                     </div>
  1440.                                                                     {{ form_errors(form.desired_construction_work_02) }}
  1441.                                                                 </td>
  1442.                                                             </tr> 
  1443.                                                         </table>
  1444.                                                         <table id="tableSecond" style="padding: 0;">
  1445.                                                             {% if (countProductBasic != 0)  %}
  1446.                                                             <tr class="content-1">
  1447.                                                                 <td><p>特急券の購入</p></td>
  1448.                                                                 <td>
  1449.                                                                     <div class="fill v4">
  1450.                                                                         {% for key,val in form.express_tickets.vars.choices %}
  1451.                                                                             <label class="form-check">
  1452.                                                                                 <input type="radio" name="{{ form.express_tickets.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.express_tickets.vars.data == val.value %}checked{% endif %} />
  1453.                                                                                 {{ val.label | trans }} 
  1454.                                                                             </label>
  1455.                                                                         {% endfor %}     
  1456.                                                                         {{ form_widget(form.express_tickets_price) }}               
  1457.                                                                     </div>
  1458.                                                                     {{ form_errors(form.express_tickets) }}                                                    
  1459.                                                                 </td>
  1460.                                                             </tr> 
  1461.                                                             {% endif %}
  1462.                                                             <tr class="content-1">
  1463.                                                                 <td><p>お住まい</p></td>
  1464.                                                                 <td>
  1465.                                                                     <div class="fill v4">
  1466.                                                                         {% for key,val in form.osumai.vars.choices %}
  1467.                                                                             <label class="form-check">
  1468.                                                                                 <input type="radio" name="{{ form.osumai.vars.full_name }}" data-percent="{{ val.attr['percent'] | default(0) }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.osumai.vars.data == val.value %}checked{% endif %} />
  1469.                                                                                 {{ val.label | trans }} 
  1470.                                                                             </label>
  1471.                                                                         {% endfor %}
  1472.                                                                     </div>
  1473.                                                                     {{ form_errors(form.osumai) }}
  1474.                                                                 </td>
  1475.                                                             </tr>
  1476.                                                             <tr class="content-1">
  1477.                                                                 <td><p>建物の所有</p></td>
  1478.                                                                 <td>
  1479.                                                                     <div class="fill v4">
  1480.                                                                         {% for key,val in form.building_ownership.vars.choices %}
  1481.                                                                             <label class="form-check flex">
  1482.                                                                                 <input type="radio" name="{{ form.building_ownership.vars.full_name }}" data-percent="{{ val.attr['percent'] | default(0) }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.building_ownership.vars.data == val.value %}checked{% endif %} />
  1483.                                                                                 {{ val.label | trans }} 
  1484.                                                                                 {% if val.value == "賃貸" %}
  1485.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※工事内容によっては受付出来ない可能性もございます。</p>
  1486.                                                                                 {% endif %}
  1487.                                                                             </label>
  1488.                                                                         {% endfor %}
  1489.                                                                     </div>
  1490.                                                                     {{ form_errors(form.building_ownership) }}
  1491.                                                                 </td>
  1492.                                                             </tr>
  1493.                                                             <tr class="content-1">
  1494.                                                                 <td><p>構造</p></td>
  1495.                                                                 <td>
  1496.                                                                     <div class="fill v4">
  1497.                                                                         {% for key,val in form.structure.vars.choices %}
  1498.                                                                             <label class="form-check">
  1499.                                                                                 <input type="radio" name="{{ form.structure.vars.full_name }}" data-percent="{{ val.attr['percent'] | default(0) }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.structure.vars.data == val.value %}checked{% endif %} />
  1500.                                                                                 {{ val.label | trans }} 
  1501.                                                                             </label>
  1502.                                                                         {% endfor %}
  1503.                                                                     </div>
  1504.                                                                     {{ form_errors(form.structure) }}
  1505.                                                                 </td>
  1506.                                                             </tr>
  1507.                                                             <tr class="content-1">
  1508.                                                                 <td><p>設置台数</p></td>
  1509.                                                                 <td>
  1510.                                                                     <div class="fill v4">
  1511.                                                                         {% for key,val in form.construction_airs.vars.choices %}
  1512.                                                                             {% set has_checked = false %}
  1513.                                                                             {% for key2,val2 in form.construction_airs.vars.data %}
  1514.                                                                                 {% if val.value == val2 %}
  1515.                                                                                     {% set has_checked = true %}
  1516.                                                                                     <label class="form-check">
  1517.                                                                                         <input type="checkbox" 
  1518.                                                                                         name="{{ form.construction_airs.vars.full_name }}" 
  1519.                                                                                         class="construction_air" 
  1520.                                                                                         data-tatami="{{ val.attr['data-tatami'] | default(0) }}" data-quantity="{{ val.attr['data-quantity'] | default(0) }}" 
  1521.                                                                                         data-price="{{ val.attr['data-price'] | default(0) }}" 
  1522.                                                                                         data-loan="{{ val.attr['data-loan'] | default(0) }}" 
  1523.                                                                                         value="{{ val.value }}" checked />
  1524.                                                                                         {{ val.data | trans }} 
  1525.                                                                                     </label>
  1526.                                                                                 {% endif %}
  1527.                                                                             {% endfor %}
  1528.                                                                             {% if has_checked == false %}
  1529.                                                                                 <label class="form-check">
  1530.                                                                                     <input type="checkbox" 
  1531.                                                                                     name="{{ form.construction_airs.vars.full_name }}" 
  1532.                                                                                     class="construction_air" 
  1533.                                                                                     data-tatami="{{ val.attr['data-tatami'] | default(0) }}" 
  1534.                                                                                     data-quantity="{{ val.attr['data-quantity'] | default(0) }}" 
  1535.                                                                                     data-price="{{ val.attr['data-price'] | default(0) }}" 
  1536.                                                                                     data-loan="{{ val.attr['data-loan'] | default(0) }}" 
  1537.                                                                                     value="{{ val.value }}"/>
  1538.                                                                                     {{ val.data | trans }} 
  1539.                                                                                 </label>
  1540.                                                                             {% endif %}
  1541.                                                                         {% endfor %}
  1542.                                                                         {{ form_widget(form.construction_air) }}
  1543.                                                                         {{ form_widget(form.number_install) }}
  1544.                                                                         {{ form_widget(form.number_install_price) }}
  1545.                                                                     </div>
  1546.                                                                     {{ form_errors(form.construction_airs) }}
  1547.                                                                 </td>
  1548.                                                             </tr>
  1549.                                                             <tr class="content-1">
  1550.                                                                 <td><p>設置工事希望日</p></td>
  1551.                                                                 <td>
  1552.                                                                     <div class="fill v3">
  1553.                                                                         <label class="label v3 date vip">
  1554.                                                                             第一希望日  
  1555.                                                                             {{ form_widget(form.construction_date_1) }}
  1556.                                                                             {{ form_errors(form.construction_date_1) }}
  1557.                                                                             <span class="pc"> </span>希望時間帯 
  1558.                                                                             <select name="{{ form.time_slot_1.vars.full_name }}" id="time_slot_1">
  1559.                                                                                 {% for key,val in form.time_slot_1.vars.choices %}
  1560.                                                                                     <option value="{{ val.value }}">{{ val.label | trans }} </option>
  1561.                                                                                 {% endfor %}
  1562.                                                                             </select>
  1563.                                                                         </label>
  1564.                                                                         <label class="label v3 date">
  1565.                                                                             第二希望日  
  1566.                                                                             {{ form_widget(form.construction_date_2) }}
  1567.                                                                             {{ form_errors(form.construction_date_2) }}
  1568.                                                                             <span class="pc"> </span>希望時間帯 
  1569.                                                                             <select name="{{ form.time_slot_2.vars.full_name }}" id="time_slot_2">
  1570.                                                                                 {% for key,val in form.time_slot_2.vars.choices %}
  1571.                                                                                     <option value="{{ val.value }}">{{ val.label | trans }} </option>
  1572.                                                                                 {% endfor %}
  1573.                                                                             </select>
  1574.                                                                         </label>
  1575.                                                                         <label class="label v3 date">
  1576.                                                                             第三希望日  
  1577.                                                                             {{ form_widget(form.construction_date_3) }}
  1578.                                                                             {{ form_errors(form.construction_date_3) }}
  1579.                                                                             <span class="pc"> </span>希望時間帯 
  1580.                                                                             <select name="{{ form.time_slot_3.vars.full_name }}" id="time_slot_3">
  1581.                                                                                 {% for key,val in form.time_slot_3.vars.choices %}
  1582.                                                                                     <option value="{{ val.value }}">{{ val.label | trans }} </option>
  1583.                                                                                 {% endfor %}
  1584.                                                                             </select>
  1585.                                                                         </label>
  1586.                                                                         {{ form_widget(form.contents, {'attr': { 'placeholder': 'その他希望等あればご記入ください。' }}) }}
  1587.                                                                         {{ form_errors(form.contents) }}
  1588.                                                                     </div>
  1589.                                                                 </td>
  1590.                                                             </tr>
  1591.                                                             <tr class="content-1">
  1592.                                                                 <td><p>工事内訳</p></td>
  1593.                                                                 <td>
  1594.                                                                     <div class="fill v4">
  1595.                                                                         {% for key,val in form.construction_type_07.vars.choices %}
  1596.                                                                             <label class="form-check">
  1597.                                                                                 <input type="radio" name="{{ form.construction_type_07.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_type_07.vars.data == val.value %}checked{% endif %} />
  1598.                                                                                 {{ val.label | trans }} 
  1599.                                                                                 {% if val.value == "新設工事に加えて移設工事も希望" %}
  1600.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;margin-bottom: 0.5rem;line-height: 1.2;">※エアコン本体の移動はお客様ご自身でお願いいたします。</p>
  1601.                                                                                 {% endif %}
  1602.                                                                             </label>
  1603.                                                                         {% endfor %}                    
  1604.                                                                     </div>
  1605.                                                                     {{ form_errors(form.construction_type_07) }}
  1606.                                                                 </td>
  1607.                                                             </tr> 
  1608.                                                             <tr class="construction_type_07_02_v1">
  1609.                                                                 <td><p>工事内訳</p><small>2段階目</small></td>
  1610.                                                                 <td>
  1611.                                                                     <div class="fill v4">
  1612.                                                                         {% for key,val in form.construction_type_07_02_v1.vars.choices %}
  1613.                                                                             <label class="form-check">
  1614.                                                                                 <input type="radio" name="{{ form.construction_type_07_02_v1.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_type_07_02_v1.vars.data == val.value %}checked{% endif %} />
  1615.                                                                                 {{ val.label | trans }} 
  1616.                                                                             </label>
  1617.                                                                         {% endfor %}   
  1618.                                                                         {{ form_widget(form.construction_type_07_02_v1_price) }}                 
  1619.                                                                     </div>
  1620.                                                                     {{ form_errors(form.construction_type_07_02_v1) }}
  1621.                                                                 </td>
  1622.                                                             </tr> 
  1623.                                                             <tr class="construction_type_07_02_v2">
  1624.                                                                 <td><p>工事内訳</p><small>2段階目</small></td>
  1625.                                                                 <td>
  1626.                                                                     <div class="fill v4">
  1627.                                                                         {% for key,val in form.construction_type_07_02_v2.vars.choices %}
  1628.                                                                             <label class="form-check">
  1629.                                                                                 <input type="radio" name="{{ form.construction_type_07_02_v2.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_type_07_02_v2.vars.data == val.value %}checked{% endif %} />
  1630.                                                                                 {{ val.label | trans }}
  1631.                                                                             </label>
  1632.                                                                         {% endfor %}                    
  1633.                                                                     </div>
  1634.                                                                     {{ form_errors(form.construction_type_07_02_v2) }}
  1635.                                                                 </td>
  1636.                                                             </tr> 
  1637.                                                             <tr class="construction_type_07_03_v1">
  1638.                                                                 <td><p>工事内訳</p><small>3段階目</small></td>
  1639.                                                                 <td>
  1640.                                                                     <div class="fill v4">
  1641.                                                                         {% for key,val in form.construction_type_07_03_v1.vars.choices %}
  1642.                                                                             <label class="form-check">
  1643.                                                                                 <input type="radio" name="{{ form.construction_type_07_03_v1.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_type_07_03_v1.vars.data == val.value %}checked{% endif %} />
  1644.                                                                                 {{ val.label | trans }} 
  1645.                                                                             </label>
  1646.                                                                         {% endfor %}                    
  1647.                                                                     </div>
  1648.                                                                     {{ form_errors(form.construction_type_07_03_v1) }}
  1649.                                                                 </td>
  1650.                                                             </tr> 
  1651.                                                             <tr class="construction_type_07_03_v2">
  1652.                                                                 <td><p>工事内訳</p><small>3段階目</small></td>
  1653.                                                                 <td>
  1654.                                                                     <div class="fill v4">
  1655.                                                                         {% for key,val in form.construction_type_07_03_v2.vars.choices %}
  1656.                                                                             <label class="form-check">
  1657.                                                                                 <input type="radio" name="{{ form.construction_type_07_03_v2.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_type_07_03_v2.vars.data == val.value %}checked{% endif %} />
  1658.                                                                                 {{ val.label | trans }} 
  1659.                                                                             </label>
  1660.                                                                         {% endfor %}         
  1661.                                                                         {{ form_widget(form.construction_type_07_03_v2_price) }}           
  1662.                                                                     </div>
  1663.                                                                     {{ form_errors(form.construction_type_07_03_v2) }}
  1664.                                                                 </td>
  1665.                                                             </tr> 
  1666.                                                             <tr class="construction_type_07_04_v1">
  1667.                                                                 <td><p>工事内訳</p><small>4段階目</small></td>
  1668.                                                                 <td>
  1669.                                                                     <div class="fill v4">
  1670.                                                                         {% for key,val in form.construction_type_07_04_v1.vars.choices %}
  1671.                                                                             <label class="form-check">
  1672.                                                                                 <input type="radio" name="{{ form.construction_type_07_04_v1.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_type_07_04_v1.vars.data == val.value %}checked{% endif %} />
  1673.                                                                                 {{ val.label | trans }} 
  1674.                                                                             </label>
  1675.                                                                         {% endfor %}            
  1676.                                                                         {{ form_widget(form.construction_type_07_04_v1_price) }}        
  1677.                                                                     </div>
  1678.                                                                     {{ form_errors(form.construction_type_07_04_v1) }}
  1679.                                                                 </td>
  1680.                                                             </tr> 
  1681.                                                             <tr class="construction_type_07_04_v2">
  1682.                                                                 <td><p>工事内訳</p><small>4段階目</small></td>
  1683.                                                                 <td>
  1684.                                                                     <div class="fill v4">
  1685.                                                                         {% for key,val in form.construction_type_07_04_v2.vars.choices %}
  1686.                                                                             <label class="form-check">
  1687.                                                                                 <input type="radio" name="{{ form.construction_type_07_04_v2.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_type_07_04_v2.vars.data == val.value %}checked{% endif %} />
  1688.                                                                                 {{ val.label | trans }} 
  1689.                                                                             </label>
  1690.                                                                         {% endfor %}     
  1691.                                                                         {{ form_widget(form.construction_type_07_04_v2_price) }}               
  1692.                                                                     </div>
  1693.                                                                     {{ form_errors(form.construction_type_07_04_v2) }}
  1694.                                                                 </td>
  1695.                                                             </tr> 
  1696.                                                             <tr class="construction_type_07_04_v3">
  1697.                                                                 <td><p>工事内訳</p><small>4段階目</small></td>
  1698.                                                                 <td>
  1699.                                                                     <div class="fill v4">
  1700.                                                                         {% for key,val in form.construction_type_07_04_v3.vars.choices %}
  1701.                                                                             <label class="form-check">
  1702.                                                                                 <input type="radio" name="{{ form.construction_type_07_04_v3.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_type_07_04_v3.vars.data == val.value %}checked{% endif %} />
  1703.                                                                                 {{ val.label | trans }} 
  1704.                                                                             </label>
  1705.                                                                         {% endfor %}
  1706.                                                                         {{ form_widget(form.construction_type_07_04_v3_price) }}
  1707.                                                                     </div>
  1708.                                                                     {{ form_errors(form.construction_type_07_04_v3) }}
  1709.                                                                 </td>
  1710.                                                             </tr> 
  1711.                                                             <tr class="content-1">
  1712.                                                                 <td><p>エアコン設置場所</p></td>
  1713.                                                                  <td>
  1714.                                                                     <div class="fill v4">
  1715.                                                                         {% for key,val in form.construction_floor_07.vars.choices %}
  1716.                                                                             <label class="form-check">
  1717.                                                                                 <input type="radio" name="{{ form.construction_floor_07.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_floor_07.vars.data == val.value %}checked{% endif %} />
  1718.                                                                                 {{ val.label | trans }} 
  1719.                                                                             </label>
  1720.                                                                         {% endfor %}
  1721.                                                                     </div>
  1722.                                                                     {{ form_errors(form.construction_floor_07) }}
  1723.                                                                 </td>
  1724.                                                             </tr> 
  1725.                                                             <tr class="content-1">
  1726.                                                                 <td><p>エレベーターの有無</p><small>※3階以上の場合</small></td>
  1727.                                                                 <td>
  1728.                                                                     <div class="fill v4">
  1729.                                                                         {% for key,val in form.elevator_07.vars.choices %}
  1730.                                                                             <label class="form-check">
  1731.                                                                                 <input type="radio" name="{{ form.elevator_07.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.elevator_07.vars.data == val.value %}checked{% endif %} />
  1732.                                                                                 {{ val.label | trans }} 
  1733.                                                                             </label>
  1734.                                                                         {% endfor %}
  1735.                                                                         {{ form_errors(form.elevator_07) }}
  1736.                                                                         {{ form_widget(form.elevator_07_price) }}
  1737.                                                                     </div>
  1738.                                                                 </td>
  1739.                                                             </tr> 
  1740.                                                             <tr class="content-1">
  1741.                                                                 <td><p>コンセントの有無</p></td>
  1742.                                                                 <td>
  1743.                                                                     <div class="fill v4">
  1744.                                                                         {% for key,val in form.electrical_outlet_07.vars.choices %}
  1745.                                                                             <label class="form-check flex" style="display: flex; align-items: center;flex-wrap: wrap;">
  1746.                                                                                 <input type="radio" name="{{ form.electrical_outlet_07.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.electrical_outlet_07.vars.data == val.value %}checked{% endif %} />
  1747.                                                                                 {{ val.label | trans }} 
  1748.                                                                                 {% if val.value == "なし(別途工事が必要になります)" %}
  1749.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.2;">※10m以上の方は別途お見積りさせていただきます。</p>
  1750.                                                                                 {% endif %}
  1751.                                                                                 {% if val.value == "不明" %}
  1752.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.2;">※工事当日に追加費用が発生する場合があります。</p>
  1753.                                                                                 {% endif %}
  1754.                                                                             </label>
  1755.                                                                         {% endfor %}
  1756.                                                                         {{ form_errors(form.electrical_outlet_07) }}
  1757.                                                                         {{ form_widget(form.electrical_outlet_07_price) }}
  1758.                                                                     </div>
  1759.                                                                 </td>
  1760.                                                             </tr> 
  1761.                                                             <tr class="electrical_outlet_07_02">
  1762.                                                                 <td><p>コンセントの有無</p><small>2段階目</small></td>
  1763.                                                                 <td>
  1764.                                                                     <div class="fill v4">
  1765.                                                                         {% for key,val in form.electrical_outlet_07_02.vars.choices %}
  1766.                                                                             <label class="form-check flex" style="display: flex; align-items: center;flex-wrap: wrap;">
  1767.                                                                                 <input type="radio" name="{{ form.electrical_outlet_07_02.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.electrical_outlet_07_02.vars.data == val.value %}checked{% endif %} />
  1768.                                                                                 {{ val.label | trans }} 
  1769.                                                                             </label>
  1770.                                                                         {% endfor %}
  1771.                                                                         {{ form_errors(form.electrical_outlet_07_02) }}
  1772.                                                                         {{ form_widget(form.electrical_outlet_07_02_price) }}
  1773.                                                                     </div>
  1774.                                                                 </td>
  1775.                                                             </tr>    
  1776.                                                             <tr class="content-1">
  1777.                                                                 <td><p>建物の契約アンペア</p></td>
  1778.                                                                 <td>
  1779.                                                                     <div class="fill v4">
  1780.                                                                         {% for key,val in form.contract_amp.vars.choices %}
  1781.                                                                             <label class="form-check flex">
  1782.                                                                                 <input type="radio" name="{{ form.contract_amp.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.contract_amp.vars.data == val.value %}checked{% endif %}/>
  1783.                                                                                 {{ val.label | trans }} 
  1784.                                                                             </label>
  1785.                                                                         {% endfor %}
  1786.                                                                     </div>
  1787.                                                                     {{ form_errors(form.contract_amp) }}
  1788.                                                                 </td>
  1789.                                                             </tr> 
  1790.                                                             <tr class="content-1">
  1791.                                                                 <td><p>コンセントアース端子</p></td>
  1792.                                                                 <td>
  1793.                                                                     <div class="fill v4">
  1794.                                                                         {% for key,val in form.outlet_earth.vars.choices %}
  1795.                                                                             <label class="form-check flex">
  1796.                                                                                 <input type="radio" name="{{ form.outlet_earth.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.outlet_earth.vars.data == val.value %}checked{% endif %}/>
  1797.                                                                                 {{ val.label | trans }} 
  1798.                                                                                 {% if val.value == "なし" %}
  1799.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">*工事当日に追加費用がかかる場合があります。</p>
  1800.                                                                                 {% endif %}
  1801.                                                                                 {% if val.value == "不明" %}
  1802.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">*工事当日に追加費用がかかる場合があります。</p>
  1803.                                                                                 {% endif %}
  1804.                                                                             </label>
  1805.                                                                         {% endfor %}
  1806.                                                                     </div>
  1807.                                                                     {{ form_errors(form.outlet_earth) }}
  1808.                                                                 </td>
  1809.                                                             </tr>  
  1810.                                                             <tr class="content-1">
  1811.                                                                 <td><p>配管穴の有無</p></td>
  1812.                                                                 <td>
  1813.                                                                     <div class="fill v4 vip">
  1814.                                                                         {% for key,val in form.room_size_07.vars.choices %}
  1815.                                                                             <label class="form-check flex">
  1816.                                                                                 <input type="radio" name="{{ form.room_size_07.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.room_size_07.vars.data == val.value %}checked{% endif %}/>
  1817.                                                                                 {{ val.label | trans }} 
  1818.                                                                                 {% if val.value == "不明" %}
  1819.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※工事当日に追加費用が発生する場合があります。別途エアココからご連絡させていただきます。</p>
  1820.                                                                                 {% endif %}
  1821.                                                                             </label>
  1822.                                                                         {% endfor %}
  1823.                                                                     </div>
  1824.                                                                     {{ form_errors(form.room_size_07) }}
  1825.                                                                     <img style="margin-left: auto;" src="{{ asset('assets/img/contact/') }}hole-sample.jpg" alt="配管穴の有無">
  1826.                                                                 </td>
  1827.                                                             </tr> 
  1828.                                                             
  1829.                                                             {% if (countProductBasic != 0)  %}
  1830.                                                             <tr class="room_size_07_02">
  1831.                                                                 <td><p>配管穴の有無</p><small>2段階目</small></td>
  1832.                                                                 <td>
  1833.                                                                     <div class="fill v4">
  1834.                                                                         {% for key,val in form.room_size_07_02.vars.choices %}
  1835.                                                                             <label class="form-check flex">
  1836.                                                                                 <input type="radio" name="{{ form.room_size_07_02.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.room_size_07_02.vars.data == val.value %}checked{% endif %}/>
  1837.                                                                                 {{ val.label | trans }} 
  1838.                                                                             </label>
  1839.                                                                         {% endfor %}
  1840.                                                                     </div>
  1841.                                                                     {{ form_errors(form.room_size_07_02) }}
  1842.                                                                 </td>
  1843.                                                             </tr> 
  1844.                                                             {% endif %}
  1845.                                                             <tr class="room_size_07_03_v1">
  1846.                                                                 <td><p>建物の材質</p><small>(穴あけ&貫通スリーブ費)</small></td>
  1847.                                                                 <td>
  1848.                                                                     <div class="fill v4">
  1849.                                                                         {% for key,val in form.room_size_07_03_v1.vars.choices %}
  1850.                                                                             <label class="form-check flex">
  1851.                                                                                 <input type="radio" name="{{ form.room_size_07_03_v1.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.room_size_07_03_v1.vars.data == val.value %}checked{% endif %}/>
  1852.                                                                                 {{ val.label | trans }} 
  1853.                                                                                 {% if val.value == "その他" %}
  1854.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※工事当日に追加費用が発生する場合があります。</p>
  1855.                                                                                 {% endif %}
  1856.                                                                                 {% if val.value == "不明" %}
  1857.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※工事当日に追加費用が発生する場合があります。</p>
  1858.                                                                                 {% endif %}
  1859.                                                                             </label>
  1860.                                                                         {% endfor %}
  1861.                                                                         {{ form_widget(form.room_size_07_03_v1_price) }}
  1862.                                                                     </div>
  1863.                                                                     {{ form_errors(form.room_size_07_03_v1) }}                                                    
  1864.                                                                 </td>
  1865.                                                             </tr> 
  1866.                                                             <tr class="room_size_07_03_v2">
  1867.                                                                 <td><p>建物の材質</p><small>(穴あけ&貫通スリーブ&アスベストみなし工事、対策費と調査報告書作成費)</small></td>
  1868.                                                                 <td>
  1869.                                                                     <div class="fill v4">
  1870.                                                                         {% for key,val in form.room_size_07_03_v2.vars.choices %}
  1871.                                                                             <label class="form-check flex">
  1872.                                                                                 <input type="radio" name="{{ form.room_size_07_03_v2.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.room_size_07_03_v2.vars.data == val.value %}checked{% endif %}/>
  1873.                                                                                 {{ val.label | trans }} 
  1874.                                                                                 {% if val.value == "その他" %}
  1875.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※工事当日に追加費用が発生する場合があります。</p>
  1876.                                                                                 {% endif %}
  1877.                                                                                 {% if val.value == "不明" %}
  1878.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※工事当日に追加費用が発生する場合があります。</p>
  1879.                                                                                 {% endif %}
  1880.                                                                             </label>
  1881.                                                                         {% endfor %}
  1882.                                                                         {{ form_widget(form.room_size_07_03_v2_price) }}
  1883.                                                                     </div>
  1884.                                                                     {{ form_errors(form.room_size_07_03_v2) }}                                                    
  1885.                                                                 </td>
  1886.                                                             </tr> 
  1887.                                                             <tr class="content-1">
  1888.                                                                 <td><p>設置予定場所の<br class="pc" />配管の状態</p></td>
  1889.                                                                 <td style="flex-direction: column;">
  1890.                                                                     <div class="fill v5 up">
  1891.                                                                         {% set idx = 0 %}
  1892.                                                                         {% for key,val in form.piping_status_07.vars.choices %}
  1893.                                                                             {% set idx = idx + 1 %}
  1894.                                                                             {% if idx <= 2 %}
  1895.                                                                                 <div class="group">
  1896.                                                                                     <label class="form-check v2">
  1897.                                                                                         <input type="radio" name="{{ form.piping_status_07.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.piping_status_07.vars.data == val.value %}checked{% endif %} />
  1898.                                                                                         {{ val.label | trans }} 
  1899.                                                                                     </label>
  1900.                                                                                     <img src="{{ asset('assets/img/form-0y/') }}line-option-0{{ idx }}.jpg" alt="">
  1901.                                                                                 </div>
  1902.                                                                             {% endif %}
  1903.                                                                         {% endfor %}
  1904.                                                                     </div>
  1905.                                                                     <div class="fill v5">
  1906.                                                                         {% set idx = 0 %}
  1907.                                                                         {% for key,val in form.piping_status_07.vars.choices %}
  1908.                                                                             {% set idx = idx + 1 %}
  1909.                                                                             {% if idx > 2 %}
  1910.                                                                                 <label class="form-check">
  1911.                                                                                     <input type="radio" name="{{ form.piping_status_07.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.piping_status_07.vars.data == val.value %}checked{% endif %} />
  1912.                                                                                     {{ val.label | trans }} 
  1913.                                                                                 </label>
  1914.                                                                             {% endif %}
  1915.                                                                         {% endfor %}
  1916.                                                                     </div>
  1917.                                                                     {{ form_errors(form.piping_status_07) }}
  1918.                                                                 </td>
  1919.                                                             </tr>
  1920.                                                             <tr class="piping_status_07_02">
  1921.                                                                 <td><p>設置予定場所の<br class="pc" />配管の状態</p><small>2段階目</small></td>
  1922.                                                                 <td>
  1923.                                                                     <div class="fill v4">
  1924.                                                                         {% for key,val in form.piping_status_07_02.vars.choices %}
  1925.                                                                             <label class="form-check flex">
  1926.                                                                                 <input type="radio" name="{{ form.piping_status_07_02.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.piping_status_07_02.vars.data == val.value %}checked{% endif %}/>
  1927.                                                                                 {{ val.label | trans }} 
  1928.                                                                             </label>
  1929.                                                                         {% endfor %}
  1930.                                                                         {{ form_widget(form.piping_status_07_02_price) }}
  1931.                                                                     </div>
  1932.                                                                     {{ form_errors(form.piping_status_07_02) }}
  1933.                                                                 </td>
  1934.                                                             </tr> 
  1935.                                                             {% if (countProductBasic != 0)  %}
  1936.                                                             <tr class="content-1">
  1937.                                                                 <td><p>室内化粧カバーの<br class="pc" />希望の有無</p></td>
  1938.                                                                 <td>
  1939.                                                                     <div class="fill v4" style="order: 2;">
  1940.                                                                         {% for key,val in form.indoor_cover_07.vars.choices %}
  1941.                                                                             <label class="form-check flex">
  1942.                                                                                 <input type="radio" name="{{ form.indoor_cover_07.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.indoor_cover_07.vars.data == val.value %}checked{% endif %} />
  1943.                                                                                 {{ val.label | trans }} 
  1944.                                                                                 {% if val.value == "必要(2m以内)" %}
  1945.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※2mを超える場合は追加費用がかかります。</p>
  1946.                                                                                 {% endif %}
  1947.                                                                                 {% if val.value == "未定" %}
  1948.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※化粧カバーが必要になった場合は追加費用がかかります。</p>
  1949.                                                                                 {% endif %}
  1950.                                                                             </label>
  1951.                                                                         {% endfor %}                    
  1952.                                                                         {{ form_widget(form.indoor_cover_07_price) }}
  1953.                                                                     </div>
  1954.                                                                     {{ form_errors(form.indoor_cover_07) }}
  1955.                                                                     <img style="margin-left: auto; order: 3;" src="{{ asset('assets/img/contact/') }}item-1.jpg" alt="室内化粧カバー">
  1956.                                                                 </td>
  1957.                                                             </tr> 
  1958.                                                             <tr class="content-1">
  1959.                                                                 <td><p>室外化粧カバーの<br class="pc" />希望の有無</p></td>
  1960.                                                                 <td>                
  1961.                                                                     <div class="fill v4">
  1962.                                                                         {% for key,val in form.outdoor_cover.vars.choices %}
  1963.                                                                             <label class="form-check flex">
  1964.                                                                                 <input type="radio" name="{{ form.outdoor_cover.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.outdoor_cover.vars.data == val.value %}checked{% endif %} />
  1965.                                                                                 {{ val.label | trans }} 
  1966.                                                                                 {% if val.value == "その他" %}
  1967.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※工事当日に必要になった場合、追加費用が発生する場合があります。</p>
  1968.                                                                                 {% endif %}
  1969.                                                                             </label>
  1970.                                                                         {% endfor %}                    
  1971.                                                                     </div>
  1972.                                                                     {{ form_errors(form.outdoor_cover) }}
  1973.                                                                     <img style="margin-left: auto;" src="{{ asset('assets/img/contact/') }}item-2.jpg" alt="室外化粧カバー">
  1974.                                                                 </td>
  1975.                                                             </tr> 
  1976.                                                             <tr class="outdoor_cover_02">
  1977.                                                                 <td><p>室外化粧カバーの<br class="pc" />希望の有無</p><small>2段階目</small></td>
  1978.                                                                 <td>                
  1979.                                                                     <div class="fill v4">
  1980.                                                                         {% for key,val in form.outdoor_cover_02.vars.choices %}
  1981.                                                                             <label class="form-check" >
  1982.                                                                                 <input type="radio" name="{{ form.outdoor_cover_02.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.outdoor_cover_02.vars.data == val.value %}checked{% endif %} />
  1983.                                                                                 {{ val.label | trans }} 
  1984.                                                                                 {% if val.value == "再使用(交換)同階" %}
  1985.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※交換にはすでにスリムダクトが付いている方も含みます。</p>
  1986.                                                                                 {% endif %}
  1987.                                                                                 {% if val.value == "再使用(交換)異階" %}
  1988.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※交換にはすでにスリムダクトが付いている方も含みます。</p>
  1989.                                                                                 {% endif %}
  1990.                                                                             </label>
  1991.                                                                         {% endfor %}                    
  1992.                                                                         {{ form_widget(form.outdoor_cover_02_price) }}
  1993.                                                                     </div>
  1994.                                                                     {{ form_errors(form.outdoor_cover_02) }}
  1995.                                                                 </td>
  1996.                                                             </tr>
  1997.                                                             <tr class="content-1">
  1998.                                                                 <td><p>室外機の設置場所(既設場所・希望設置場所)</p></td>
  1999.                                                                 <td>                
  2000.                                                                     <div class="fill v4">
  2001.                                                                         {% for key,val in form.construction_outdoor_07.vars.choices %}
  2002.                                                                             <label class="form-check flex">
  2003.                                                                                 <input type="radio" name="{{ form.construction_outdoor_07.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_outdoor_07.vars.data == val.value %}checked{% endif %} />
  2004.                                                                                 {{ val.label | trans }} 
  2005.                                                                                 {% if val.value == "その他" %}
  2006.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※工事当日に必要になった場合、追加費用が発生する場合があります。</p>
  2007.                                                                                 {% endif %}
  2008.                                                                             </label>
  2009.                                                                         {% endfor %}
  2010.                                                                         {{ form_widget(form.construction_outdoor_07_price) }}
  2011.                                                                     </div>
  2012.                                                                     {{ form_errors(form.construction_outdoor_07) }}
  2013.                                                                 </td>
  2014.                                                             </tr>
  2015.                                                             {% endif %}
  2016.                                                             <tr class="content-1">
  2017.                                                                 <td><p>室外機の設置方法(既設方法・希望設置方法)</p></td>
  2018.                                                                 <td>
  2019.                                                                     <div class="fill v4">
  2020.                                                                         {% for key,val in form.setting_install_method.vars.choices %}
  2021.                                                                             <label class="form-check">
  2022.                                                                                 <input type="radio" name="{{ form.setting_install_method.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.setting_install_method.vars.data == val.value %}checked{% endif %} />
  2023.                                                                                 {{ val.label | trans }} 
  2024.                                                                             </label>
  2025.                                                                         {% endfor %}
  2026.                                                                     </div>
  2027.                                                                     {{ form_errors(form.setting_install_method) }}
  2028.                                                                     <div class="fill v4 construction_method_07_v1" style="margin-left: 2rem; flex-direction: column;">
  2029.                                                                         {% for key,val in form.construction_method_07_v1.vars.choices %}
  2030.                                                                             <label class="form-check flex">
  2031.                                                                                 <input type="radio" name="{{ form.construction_method_07_v1.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_method_07_v1.vars.data == val.value %}checked{% endif %} />
  2032.                                                                                 {{ val.label | trans }} 
  2033.                                                                                 {% if val.value == "⑧不明(記載)" %}
  2034.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※工事当日に必要になった場合、追加費用が発生する場合があります。</p>
  2035.                                                                                 {% endif %}
  2036.                                                                             </label>
  2037.                                                                         {% endfor %}
  2038.                                                                         <img style="margin-top: 3rem;" src="{{ asset('assets/img/form-0y/install-option.jpg') }}" alt="">
  2039.                                                                         {{ form_widget(form.construction_method_07_v1_price) }}            
  2040.                                                                     </div>
  2041.                                                                     {{ form_errors(form.construction_method_07_v1) }}
  2042.                                                                     <div class="fill v4 construction_method_07_v2" style="margin-left: 2rem; flex-direction: column;">
  2043.                                                                         {% for key,val in form.construction_method_07_v2.vars.choices %}
  2044.                                                                             <label class="form-check flex">
  2045.                                                                                 <input type="radio" name="{{ form.construction_method_07_v2.vars.full_name }}" data-price="{{ val.attr['price'] | default(0) }}" value="{{ val.value }}" {% if form.construction_method_07_v2.vars.data == val.value %}checked{% endif %} />
  2046.                                                                                 {{ val.label | trans }} 
  2047.                                                                                 {% if val.value == "⑧不明(記載)" %}
  2048.                                                                                     <p style="padding-left: 2rem;font-size: 0.8em;line-height: 1.3; flex: 1;">※工事当日に必要になった場合、追加費用が発生する場合があります。</p>
  2049.                                                                                 {% endif %}
  2050.                                                                             </label>
  2051.                                                                         {% endfor %}
  2052.                                                                         <img style="margin-top: 3rem;" src="{{ asset('assets/img/form-0y/install-option.jpg') }}" alt="">     
  2053.                                                                         {{ form_widget(form.construction_method_07_v2_price) }}               
  2054.                                                                     </div>
  2055.                                                                     {{ form_errors(form.construction_method_07_v2) }}                                                    
  2056.                                                                 </td>
  2057.                                                             </tr>
  2058.                                                         </table>
  2059.                                                         <div class="result">
  2060.                                                             <p>概算合計金額</p>
  2061.                                                             <p id="total-price">00,000円</p>
  2062.                                                             {{ form_widget(form.construction_base_price_1) }}
  2063.                                                             {{ form_widget(form.construction_base_price_2) }}
  2064.                                                             {{ form_widget(form.construction_base_price_3) }}
  2065.                                                             {{ form_widget(form.construction_total_price) }}
  2066.                                                             {{ form_widget(form.construction_discount) }}
  2067.                                                         </div>
  2068.                                                         <div style="text-align: right;" class="pc">
  2069.                                                             「
  2070.                                                             本体価格 <span class="product_price"></span>円、
  2071.                                                             標準工事 <span class="base_price"></span>円、
  2072.                                                             追加工事 <span class="add_price"></span>円
  2073.                                                             」
  2074.                                                         </div>
  2075.                                                         <div style="text-align: right;" class="sp">
  2076.                                                             本体価格 <span class="product_price" style="display: inline-block; width: 100px; text-align: right;"></span>円<br>
  2077.                                                             標準工事 <span class="base_price" style="display: inline-block; width: 100px; text-align: right;"></span>円<br>
  2078.                                                             追加工事 <span class="add_price" style="display: inline-block; width: 100px; text-align: right;"></span>円
  2079.                                                         </div> 
  2080.                                                     </div>
  2081.                                                 </div>                            
  2082.                                             </div>
  2083.                                         </div>
  2084.                                     </div>
  2085.                                 </div>
  2086.                                 <div class="check">
  2087.                                     <input type="checkbox" name="" id="" required="true">
  2088.                                     <label for=""><a href="{{ url('help_privacy') }}" target="_blank">「プライバシーポリシー」</a>に同意する</label>
  2089.                                 </div>
  2090.                             </div>
  2091.                             <div class="list-btn">
  2092.                                 <button type="button" class="btn btn-sd btn-back" id="btn-back">
  2093.                                     <span>戻る</span>
  2094.                                 </button>
  2095.                                 <button type="submit" class="btn btn-sd" id="btn-confirm" name="mode" value="confirm">
  2096.                                     <span>次へ</span>
  2097.                                 </button>
  2098.                             </div>
  2099.                         </form>
  2100.                     </div>
  2101.                 </div>
  2102.             </div>
  2103.         </div>
  2104.     </div>
  2105. {% endblock %}