app/template/default/Contact/index.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% extends 'default_frame.twig' %}
  9. {% set body_class = 'mail_page' %}
  10. {% block main %}
  11.     <style>
  12.         #privacy_box {
  13.             height: 300px;
  14.             font-family: 'MS Pゴシック', serif;
  15.         }
  16.         #privacy_box .MsoNormal {
  17.             line-height: 1.8;
  18.             font-size: 12px;
  19.         }
  20.         #privacy_box .MsoNormal span {
  21.             font-size: 11pt;
  22.             letter-spacing: 0;
  23.         }
  24.         #privacy_box .MsoNormalTable .MsoNormal {
  25.             line-height: 1.6;
  26.         }
  27.         .mail_page .ec-layoutRole #contents_wrapper .ec-layoutRole__contents .ec-layoutRole__mainWithColumn #pankuzu {
  28.             padding-top: 3px !important;
  29.             padding-bottom: 0px !important;
  30.         }
  31.         .mail_page .ec-layoutRole #contents_wrapper .ec-layoutRole__contents .ec-layoutRole__mainWithColumn #pankuzu ul {
  32.             margin-bottom: 0px !important;
  33.         }
  34.     </style>
  35.     <div id="contents_wrapper">
  36.         {% if isShowLeftMenu is defined and isShowLeftMenu %}
  37.             {% include 'Block/Sidebar/lm_left_menu_my_page.twig' %}
  38.         {% endif %}
  39.         <div id="mail_content">
  40.             <div class="page-title">
  41.                 <h3>メール問合せ<span>(データ入稿フォーム)</span></h3>
  42.                 <p>見積もり、疑問を気軽にご相談ください。</p>
  43.             </div>
  44.             <p style="margin: 5px;">
  45.                 ・当サイトは、SSL暗号化によりお客様情報を保護しております。<br>
  46.                 ・下記の項目をご入力ください。入力が完了いたしましたら、画面下の「確認画面へ進む」ボタンを押してください。確認画面に移動します。<br>
  47.             </p>
  48.             <br>
  49.             <form name="mail_confirm" id="mail_confirm" method="post" action="{{ url(confirmRouteName) }}"
  50.                   enctype="multipart/form-data"
  51.                   onsubmit="javascript:if(!document.getElementById('privacy1').checked){document.getElementById('privacy1').focus();alert('利用目的に同意していただく必要があります。');return false}">
  52.                 {{ form_widget(form._token) }}
  53.                 <div class="page-title">
  54.                     <h3>お見積り・ご相談フォーム</h3>
  55.                     <span class="f-right">メールの返信日時:AM9:00〜PM6:00(土日、祝日を除く)<br>
  56.                 【必須】の項目は必須入力です。必ずご入力いただけますようにお願いいたします。</span>
  57.                 </div>
  58.                 <input type="hidden" name="mode" value="confirm">
  59.                 <table class="new_input left" style="margin:0px;">
  60.                     <tbody>
  61.                     <tr>
  62.                         <th>会社名</th>
  63.                         <td class="c1">
  64.                             {{ form_widget(form.inquiry_company_name, { attr: {id:'inquiry_company_name', class:"efo w350", style:"ime-mode:active;", 'data-efo-validate-required':"会社名をご入力ください", placeholder:"(例)株式会社ランドマーク" }}) }}
  65.                             {{ form_errors(form.inquiry_company_name) }}
  66.                         </td>
  67.                     </tr>
  68.                     <tr>
  69.                         <th class="h">お名前</th>
  70.                         <td class="c1">
  71.                             <div class="ec-halfInput">
  72.                                 {{ form_widget(form.inquiry_user_name, { attr: {id:'inquiry_user_name', class:"efo-required w350", style:"ime-mode:active;", 'data-efo-validate-required':"お名前をご入力ください", placeholder:"(例)山田 太郎" }}) }}
  73.                                 {{ form_errors(form.inquiry_user_name) }}
  74.                             </div>
  75.                         </td>
  76.                     </tr>
  77.                     <tr>
  78.                         <th class="h">メールアドレス</th>
  79.                         <td class="c1">
  80.                             {{ form_widget(form.inquiry_email, { attr: {id:'inquiry_email', class:"efo-required-email w350", style:"ime-mode:active;", 'data-efo-validate-required':"メールアドレスをご入力ください", placeholder:"(例)info@l-m.co.jp" }}) }}
  81.                             {{ form_errors(form.inquiry_email) }}
  82.                         </td>
  83.                     </tr>
  84.                     <tr>
  85.                         <th class="h">電話番号</th>
  86.                         <td class="c1">
  87.                             <p>半角英数字ハイフンなし</p>
  88.                             {{ form_widget(form.inquiry_tel, { attr: {id:'inquiry_tel', class:"efo-required-pattern w200", style:"ime-mode:active;", 'data-efo-validate-required':"電話番号をご入力ください", placeholder:"例)0359093351", "data-efo-validation": '{"pattern":"^[0-9]+$"}' }}) }}
  89.                             {{ form_errors(form.inquiry_tel) }}
  90.                         </td>
  91.                     </tr>
  92.                     <tr>
  93.                         <th>ご注文番号<br><span style="color:red">※すでにご注文されているお客様はご記入下さい。</span>
  94.                         </th>
  95.                         <td class="c1">
  96.                             <p>半角英数字</p>
  97.                             {{ form_widget(form.inquiry_oh_id, { attr: {id:'inquiry_oh_id', class:"efo w200", style:"ime-mode:active;", 'data-efo-validate-required':"ご注文番号をご入力ください", placeholder:"(例)c-200000" }}) }}
  98.                             {{ form_errors(form.inquiry_oh_id) }}
  99.                         </td>
  100.                     </tr>
  101.                     <tr>
  102.                         <th class="h">お問い合わせ内容</th>
  103.                         <td class="c1" style="padding:8px;">
  104.                             {{ form_widget(form.contents, { attr: {id:'contents', class:"efo-required", style:"ime-mode:active;width:80%;height:160px;padding:6px;box-sizing:border-box;", 'data-efo-validate-required':"お問い合わせ内容をご入力ください", placeholder:"(例)商品番号:○○の見積りをお願いします。" }}) }}
  105.                             {{ form_errors(form.contents) }}
  106.                         </td>
  107.                     </tr>
  108.                     <tr>
  109.                         <th>資料添付</th>
  110.                         <td class="c1" style="position:relative;">
  111.                             <span id="inquiry_file1_1"
  112.                                   style="display:inline">{{ form_widget(form.inquiry_file1, { attr: {id:'inquiry_file1', class:"efo opw", style:"padding-bottom:7px;", 'data-efo-validate-required':"添付する資料を選択してください", 'data-efo-validate-ok':"選択が完了しました" }}) }}</span>
  113.                             {{ form_errors(form.inquiry_file1) }}
  114.                             <span id="inquiry_file2_1" style="display:none"><label><input type="checkbox" class="efo"
  115.                                                                                           name="inquiry_file_delete1"
  116.                                                                                           value="1"
  117.                                                                                           onclick="javascript:document.getElementById('inquiry_file1').style.display='inline';document.getElementById('inquiry_file2_1').style.display='none';">
  118.                                         <a href="https://img0.land-mark.biz/ut_img/public_images/tmp_img/"
  119.                                            target="_blank" rel="nofollow"></a>
  120.                                 を削除する</label></span>
  121.                             <span id="inquiry_file1_2"
  122.                                   style="display:inline">{{ form_widget(form.inquiry_file2, { attr: {id:'inquiry_file2', class:"efo opw", style:"padding-bottom:7px;", 'data-efo-validate-required':"添付する資料を選択してください", 'data-efo-validate-ok':"選択が完了しました" }}) }}</span>
  123.                             {{ form_errors(form.inquiry_file1) }}
  124.                             <span id="inquiry_file2_2" style="display:none"><label><input type="checkbox" class="efo"
  125.                                                                                           name="inquiry_file_delete2"
  126.                                                                                           value="1"
  127.                                                                                           onclick="javascript:document.getElementById('inquiry_file2').style.display='inline';document.getElementById('inquiry_file2_2').style.display='none';">
  128.                                         <a href="https://img0.land-mark.biz/ut_img/public_images/tmp_img/"
  129.                                            target="_blank" rel="nofollow"></a>
  130.                                     を削除する</label></span>
  131.                             <span id="inquiry_file1_3"
  132.                                   style="display:inline">{{ form_widget(form.inquiry_file3, { attr: {id:'inquiry_file3', class:"efo opw", style:"padding-bottom:7px;", 'data-efo-validate-required':"添付する資料を選択してください", 'data-efo-validate-ok':"選択が完了しました" }}) }}</span>
  133.                             {{ form_errors(form.inquiry_file1) }}
  134.                             <span id="inquiry_file2_3" style="display:none"><label><input type="checkbox" class="efo"
  135.                                                                                           name="inquiry_file_delete3"
  136.                                                                                           value="1"
  137.                                                                                           onclick="javascript:document.getElementById('inquiry_file3').style.display='inline';document.getElementById('inquiry_file2_3').style.display='none';">
  138.                                         <a href="https://img0.land-mark.biz/ut_img/public_images/tmp_img/"
  139.                                            target="_blank" rel="nofollow"></a>
  140.                                     を削除する</label></span>
  141.                             {{ FileUploadNotice() | raw }}
  142.                         </td>
  143.                     </tr>
  144.                     </tbody>
  145.                 </table>
  146.                 <div class="page-title">
  147.                     <h3>個人情報の取扱いについての同意</h3>
  148.                 </div>
  149.                 <table class="new_input left">
  150.                     <tbody>
  151.                     <tr>
  152.                         <td colspan="2" style="padding:10px;border-left:none;">
  153.                             <div id="privacy_box">
  154.                                 <p class="MsoNormal" align="right" style="margin-top:6.0pt;mso-para-margin-top:
  155. .5gd;text-align:right;mso-layout-grid-align:none;text-autospace:none"><span>株式会社ランドマーク<span
  156.                                                 lang="EN-US"></span></span></p>
  157.                                 <p class="MsoNormal" align="right" style="margin-top:6.0pt;mso-para-margin-top:
  158. .5gd;text-align:right;mso-layout-grid-align:none;text-autospace:none"><span lang="EN-US"
  159.                                                                             style="font-size:11.0pt;"></span></p>
  160.                                 <p class="MsoNormal" align="center" style="margin-top:6.0pt;mso-para-margin-top:
  161. .5gd;text-align:center;mso-layout-grid-align:none;text-autospace:none"><span>個人情報の取扱いについての同意<span
  162.                                                 lang="EN-US"></span></span></p>
  163.                                 <p class="MsoNormal" align="left" style="margin-top:2.4pt;mso-para-margin-top:.2gd;
  164. text-align:left;mso-layout-grid-align:none;text-autospace:none"><span style="font-size:11.0pt;mso-bidi-font-family:MS明朝;
  165. mso-font-kerning:0pt">弊社はお客様の個人情報をお預かりすることになりますが、そのお預かりした個人情報の取扱について、下記のように定め、保護に努めております。<span
  166.                                                 lang="EN-US"></span></span></p>
  167.                                 <p class="MsoNormal" align="left" style="margin-top:6.0pt;mso-para-margin-top:.5gd;
  168. text-align:left;mso-layout-grid-align:none;text-autospace:none"><span>【利用目的】<span lang="EN-US"></span></span></p>
  169.                                 <table class="MsoNormalTable" border="1" cellspacing="0" cellpadding="0"
  170.                                        style="margin-left:12.5pt;border-collapse:collapse;mso-table-layout-alt:fixed; border:none;mso-border-alt:solid windowtext .5pt;mso-padding-alt:0mm 5.4pt 0mm 5.4pt;mso-border-insideh:.5pt solid windowtext;mso-border-insidev:.5pt solid windowtext">
  171.                                     <tbody class="normal-table">
  172.                                     <tr style="mso-yfti-irow:0;mso-yfti-firstrow:yes">
  173.                                         <td width="198" valign="top"
  174.                                             style="width:148.85pt;border:solid windowtext 1.0pt;mso-border-alt:solid windowtext .5pt;padding:0mm 5.4pt 0mm 5.4pt">
  175.                                             <p class="MsoNormal"><span
  176.                                                         style="font-size:9.0pt;mso-bidi-font-size:12.0pt;">個人情報の種別</span>
  177.                                             </p>
  178.                                         </td>
  179.                                         <td width="378" valign="top"
  180.                                             style="width:100.0mm;border:solid windowtext 1.0pt;border-left:none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;padding:0mm 5.4pt 0mm 5.4pt">
  181.                                             <p class="MsoNormal"><span
  182.                                                         style="font-size:9.0pt;mso-bidi-font-size:12.0pt;">利用目的</span>
  183.                                             </p>
  184.                                         </td>
  185.                                     </tr>
  186.                                     <tr style="mso-yfti-irow:2">
  187.                                         <td width="198" valign="top"
  188.                                             style="width:148.85pt;border:solid windowtext 1.0pt;border-top:none;mso-border-top-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;padding:0mm 5.4pt 0mm 5.4pt">
  189.                                             <p class="MsoNormal"><span
  190.                                                         style="font-size:9.0pt;mso-bidi-font-size:12.0pt;mso-highlight:yellow">お問い合わせを頂いた方の情報</span>
  191.                                             </p>
  192.                                         </td>
  193.                                         <td width="378" valign="top"
  194.                                             style="width:100.0mm;border-top:none;border-left:none;border-bottom:solid windowtext 1.0pt;border-right:solid windowtext 1.0pt;mso-border-top-alt:solid windowtext .5pt;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;padding:0mm 5.4pt 0mm 5.4pt">
  195.                                             <p class="MsoNormal"><span
  196.                                                         style="font-size:9.0pt;mso-bidi-font-size:12.0pt;mso-highlight:yellow">・問い合わせへの対応のため</span>
  197.                                             </p>
  198.                                             <p class="MsoNormal"><span
  199.                                                         style="font-size:9.0pt;mso-bidi-font-size:12.0pt;mso-highlight:yellow">・当社が提供するメールマガジン配信のため(ご希望された方のみ)</span>
  200.                                             </p>
  201.                                         </td>
  202.                                     </tr>
  203.                                     </tbody>
  204.                                 </table>
  205.                                 <p class="MsoNormal" align="left" style="margin-top:6.0pt;mso-para-margin-top:.5gd;
  206. text-align:left;mso-layout-grid-align:none;text-autospace:none"><span>【第三者への提供】<span lang="EN-US"></span></span>
  207.                                 </p>
  208.                                 <p class="MsoNormal" align="left" style="margin-top:2.4pt;margin-right:0mm;
  209. margin-bottom:0mm;margin-left:22.05pt;margin-bottom:.0001pt;mso-para-margin-top:
  210. .2gd;mso-para-margin-right:0mm;mso-para-margin-bottom:0mm;mso-para-margin-left:
  211. 2.1gd;mso-para-margin-bottom:.0001pt;text-align:left;mso-layout-grid-align:
  212. none;text-autospace:none"><span style="font-size:11.0pt;
  213. mso-bidi-font-family:MS明朝;mso-font-kerning:0pt">弊社は法律で定められている場合を除いて、お客様の個人情報を当該本人の同意を得ず第三者に提供することはありません。<span
  214.                                                 lang="EN-US"></span></span></p>
  215.                                 <p class="MsoNormal" align="left" style="margin-top:6.0pt;mso-para-margin-top:.5gd;
  216. text-align:left;mso-layout-grid-align:none;text-autospace:none"><span>【個人情報の取扱い業務の委託】<span
  217.                                                 lang="EN-US"></span></span></p>
  218.                                 <p class="MsoNormal" align="left" style="margin-top:2.4pt;margin-right:0mm;
  219. margin-bottom:0mm;margin-left:21.0pt;margin-bottom:.0001pt;mso-para-margin-top:
  220. .2gd;mso-para-margin-right:0mm;mso-para-margin-bottom:0mm;mso-para-margin-left:
  221. 2.0gd;mso-para-margin-bottom:.0001pt;text-align:left;mso-layout-grid-align:
  222. none;text-autospace:none"><span style="font-size:11.0pt;
  223. mso-bidi-font-family:MS明朝;mso-font-kerning:0pt">弊社は</span><span>事業運営上、お客様に上記の利用目的の達成をするために業務の一部を外部に委託しており、業務委託先に対してお客様の個人情報を預けることがあります。この場合、個人情報を適切に取り扱っていると認められる委託先を選定し、契約等において個人情報の適正管理・機密保持などによりお客様の個人情報の漏洩防止に必要な事項を取決め、適切な管理を実施させます。<span
  224.                                                 lang="EN-US"></span></span></p>
  225.                                 <p class="MsoNormal" align="left" style="margin-top:6.0pt;mso-para-margin-top:.5gd;
  226. text-align:left;mso-layout-grid-align:none;text-autospace:none"><br>
  227.                                     <span>【個人情報提供の任意性】<span lang="EN-US"></span></span></p>
  228.                                 <p class="MsoNormal" align="left" style="margin-top:2.4pt;margin-right:0mm;
  229. margin-bottom:0mm;margin-left:22.05pt;margin-bottom:.0001pt;mso-para-margin-top:
  230. .2gd;mso-para-margin-right:0mm;mso-para-margin-bottom:0mm;mso-para-margin-left:
  231. 2.1gd;mso-para-margin-bottom:.0001pt;text-align:left;mso-layout-grid-align:
  232. none;text-autospace:none"><span style="font-size:11.0pt;
  233. mso-bidi-font-family:MS明朝;mso-font-kerning:0pt">お客様が弊社に対して個人情報を提供することは任意です。ただし、個人情報を提供されない場合には、弊社からの返信やサービスの提供ができない場合がありますので、あらかじめご了承ください。<span
  234.                                                 lang="EN-US"></span></span></p>
  235.                                 <p class="MsoNormal" align="left" style="margin-top:6.0pt;mso-para-margin-top:.5gd;
  236. text-align:left;mso-layout-grid-align:none;text-autospace:none"><span>【個人情報の開示請求について】<span
  237.                                                 lang="EN-US"></span></span></p>
  238.                                 <p class="MsoNormal" align="left" style="margin-top:2.4pt;margin-right:0mm;
  239. margin-bottom:0mm;margin-left:22.05pt;margin-bottom:.0001pt;mso-para-margin-top:
  240. .2gd;mso-para-margin-right:0mm;mso-para-margin-bottom:0mm;mso-para-margin-left:
  241. 2.1gd;mso-para-margin-bottom:.0001pt;text-align:left;mso-layout-grid-align:
  242. none;text-autospace:none"><span style="font-size:11.0pt;
  243. mso-bidi-font-family:MS明朝;mso-font-kerning:0pt">お客様には、貴殿の個人情報の利用目的の通知、開示、訂正、追加、削除および利用又は提供の拒否権を要求する権利があります。詳細につきましては下記の窓口までご連絡いただくか<u>「<a
  244.                                                     href="/privacy.html">個人情報保護方針と取扱いについて</a>」</u>(ページにリンク)をご確認ください。<span
  245.                                                 lang="EN-US"></span></span><br>
  246.                                 </p>
  247.                                 <p class="MsoNormal" align="right"><br>
  248.                                     <span style="font-size:11.0pt;
  249. mso-bidi-font-weight:bold">株式会社ランドマーク<span lang="EN-US"></span></span><br>
  250.                                     <span style="font-size:11.0pt;
  251. mso-bidi-font-weight:bold">個人情報保護相談窓口 <a href="mailto:privacy@l-m.co.jp"><span
  252.                                                     lang="EN-US">privacy</span>@<span lang="EN-US">l-m.co.jp</span></a></span><br>
  253.                                     <span style="font-size:11.0pt;
  254. mso-bidi-font-weight:bold"><span>【</span>個人情報に関する責任者<span>】</span><span lang="EN-US"></span></span><br>
  255.                                     <span style="font-size:11.0pt;
  256. mso-bidi-font-weight:bold">個人情報保護管理者 加藤貴一<span lang="EN-US"></span></span></p>
  257.                             </div>
  258.                         </td>
  259.                     </tr>
  260.                     <tr>
  261.                         <th class="h">個人情報の<br>取扱いについて</th>
  262.                         <td class="c3" style="border:none;">
  263.                             <label class="lb-agree"><input type="radio" name="privacy" id="privacy1" value="1"> 同意する</label>
  264.                             <label class="lb-agree"><input type="radio" name="privacy" id="privacy2" value="2"
  265.                                                            checked="checked"> 同意しない</label>
  266.                             <br>
  267.                             ユニフォームタウンをご利用いただくには、上記「個人情報の取扱いについての同意」にご同意いただく必要がございます。<br>
  268.                             <div style="text-align: right">
  269.                                 <a href="{{ eccube_config.UT_URL }}/company/privacy/" id="privacyLink" target="_blank"
  270.                                    rel="noopener noreferrer">
  271.                                     →個人情報保護方針
  272.                                 </a>
  273.                             </div>
  274.                         </td>
  275.                     </tr>
  276.                     </tbody>
  277.                 </table>
  278.                 <br class="clear">
  279.                 <p class="btn">
  280.                 </p>
  281.                 <center>
  282.                     <input type="image" src="https://img0.land-mark.biz/ut_img/public_images/regi/btn_kakunin_off.gif"
  283.                            width="205" height="45" alt="未入力、もしくは入力間違いの必須項目があります。" id="btn1">
  284.                     <input type="image" name="mode" value="confirm"
  285.                            src="https://img0.land-mark.biz/ut_img/public_images/contact/btn_kakunin.gif" width="298"
  286.                            height="38" alt="確認画面へ進む" id="btn2" style="display:none;">
  287.                 </center>
  288.                 <p></p>
  289.             </form>
  290.             <table style="margin-top: 10px;">
  291.                 <tbody>
  292.                 <tr>
  293.                     <td>
  294.                         <div id="DigiCertClickID_2phMqn4D">
  295.                             <div id="DigiCertClickID_2phMqn4DSeal"
  296.                                  style="text-decoration: none; text-align: center; display: block; vertical-align: baseline; font-size: 100%; font-style: normal; text-indent: 0px; line-height: 1; width: auto; margin: 0px auto; padding: 0px; border: 0px; background: transparent; position: relative; inset: 0px; clear: both; float: none; cursor: default;">
  297.                                 <img src="//seal.digicert.com/seals/cascade/?tag=2phMqn4D&amp;referer={{ eccube_config.UT_URL }}&amp;format=png&amp;seal_number=15&amp;seal_size=s&amp;an=min"
  298.                                      alt="DigiCert Seal" tabindex="0"
  299.                                      style="text-decoration: none; text-align: center; display: block; vertical-align: baseline; font-size: 100%; font-style: normal; text-indent: 0px; line-height: 1; width: auto; margin: 0px auto; padding: 0px; border: 0px; background: transparent; position: relative; inset: 0px; clear: both; float: none; cursor: pointer;">
  300.                             </div>
  301.                         </div>
  302.                         <script type="text/javascript">
  303.                             var __dcid = __dcid || [];
  304.                             __dcid.push(["DigiCertClickID_2phMqn4D", "15", "s", "black", "2phMqn4D"]);
  305.                             (function () {
  306.                                 var cid = document.createElement("script");
  307.                                 cid.async = true;
  308.                                 cid.src = "//seal.digicert.com/seals/cascade/seal.min.js";
  309.                                 var s = document.getElementsByTagName("script");
  310.                                 var ls = s[(s.length - 1)];
  311.                                 ls.parentNode.insertBefore(cid, ls.nextSibling);
  312.                             }());
  313.                         </script>
  314.                         <script async="" src="//seal.digicert.com/seals/cascade/seal.min.js"></script>
  315.                     </td>
  316.                     <td style="padding: 10px 0px 0px 10px; font-size: 12px; line-height: 120%;">
  317.                         当サイトはデジサート・ジャパン合同会社により「サイトの運営主体の実在証明」及び「SSL暗号化通信による情報の保護」の認証証明を受けており、お客様よりご登録いただく個人情報やクレジットカード番号等の情報は
  318.                         SSL(Secure Socket Layer)という信用性・安全性の高い暗号通信技術で暗号化され、第三者の盗聴、改ざん、成りすましなどから保護されます。安心してご利用ください。<br>
  319.                     </td>
  320.                 </tr>
  321.                 </tbody>
  322.             </table>
  323.             <br class="clear">
  324.         </div>
  325.     </div>
  326. {% endblock %}
  327. {% block stylesheet %}
  328.     <link rel="stylesheet" href="/stylesheets/jquery.efo.css">
  329.     <link rel="stylesheet" href="/stylesheets/mail.css?20230217">
  330.     <link rel="stylesheet" href="/stylesheets/mypage.css?20211226">
  331.     <style>
  332.         table#icon {
  333.             counter-reset: menu-num 0;
  334.         }
  335.         table#icon > tbody > tr > td > a {
  336.             position: relative;
  337.             display: inline-block;
  338.         }
  339.         table#icon > tbody > tr > td > a::before {
  340.             counter-increment: menu-num 1;
  341.             content: counter(menu-num);
  342.             position: absolute;
  343.             top: 10px;
  344.             left: 11px;
  345.             line-height: 36px;
  346.             font-size: 25px;
  347.             font-weight: bold;
  348.             color: #444;
  349.             width: 36px;
  350.             height: 36px;
  351.             background: white;
  352.             border-radius: 18px;
  353.         }
  354.     </style>
  355.     <style>
  356.         body {
  357.             color: #000;
  358.         }
  359.         hr {
  360.             border-color: #666;
  361.         }
  362.     </style>
  363.     <link href="/stylesheets/topcss.min.css" rel="stylesheet" type="text/css"/>
  364.     <link href="/stylesheets/base_stylesheet2.css" rel="stylesheet" type="text/css"/>
  365.     <link href="/stylesheets/sp_common.css" rel="stylesheet" type="text/css"/>
  366.     <link href="/stylesheets/menu.min.css" rel="stylesheet" type="text/css"/>
  367.     <link href="/stylesheets/brandpage.min.css?20200617_01" rel="stylesheet" type="text/css"/>
  368.     <link rel="stylesheet" type="text/css" href="/stylesheets/first_view.css?20180302_01"/>
  369.     <link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet">
  370.     <link rel="stylesheet" type="text/css"
  371.           href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
  372.     <link rel="stylesheet" type="text/css" href="/stylesheets/jquery.fbnr.css?20170629_01">
  373.     {% if isMobile() %}
  374.         <style>
  375.             #mail_content,
  376.             #contents_wrapper {
  377.                 width: auto;
  378.             }
  379.         </style>
  380.     {% endif %}
  381. {% endblock %}
  382. {% block javascript %}
  383. <script src="/javascripts/jquery-ui.min.js" type="text/javascript"></script>
  384. <script src="/javascripts/jquery.efo.js" type="text/javascript"></script>
  385. <script type="text/javascript" src="/javascripts/jquery.fbt.js?20200715_01"></script>
  386. <script type="text/javascript">
  387.     $(function() {
  388.     $(window).on('scroll', function (e) {
  389.         var $this = $('.fbnr,.fbnr2');
  390.         var scrollTop = $(window).scrollTop();
  391.         if (scrollTop >= 200) {
  392.             $this.addClass('fixed');
  393.         } else {
  394.             $this.removeClass('fixed');
  395.         }
  396.     });
  397. });
  398. </script>
  399. <script>
  400.     const efo_notification_enabled = {% if isMobile() %}false{% else %}true{% endif %};
  401.         (function() {
  402.             $(function() {
  403.                 var efo_elm = $("[class^=efo]").efo({ confirmation : { enabled : false, form : document.forms.fm }, notification : { enabled : efo_notification_enabled }, validation : { bind : 'efo_change' }, tooltipping : { enabled : true }, observation : { enabled : true } })
  404.                     .on('efo_afterValidate', function(event, data){
  405.                         if (data.remaining > 0) {
  406.                             $('#btn1').show();
  407.                             $('#btn2').hide();
  408.                         } else {
  409.                             $('#btn1').hide();
  410.                             $('#btn2').show();
  411.                         }
  412.                     })
  413.                 ;
  414.                 var efo = $.data(efo_elm, 'plugin_efo');
  415.                 $('#btn1').on('click', function(event, ui) {
  416.                     if (efo.remaining > 0) {
  417.                         alert('未入力、もしくは入力間違いの項目が'+efo.remaining+'個あります。');
  418.                         return false;
  419.                     }
  420.                 });
  421.             });
  422.         }());
  423.     </script>
  424.     <script>
  425.     document.getElementById("privacyLink").addEventListener("click", function(event) {
  426.         event.preventDefault();
  427.         window.open(this.href, '_blank', 'width=500,height=500,scrollbars=yes,resizable=yes');
  428.     });
  429. </script>
  430. {% endblock %}