app/template/user_data/guide/first.twig line 1

Open in your IDE?
  1. {#
  2. 初めての方へ - EC-CUBE 4.2 bynoiezam テーマ用
  3. 配置先: app/template/bynoiezam/guide/first.twig
  4. URL: /guide/first
  5. #}
  6. {% extends 'default_frame.twig' %}
  7. {% set body_class = 'guide_page first_time_page' %}
  8. {% block stylesheet %}
  9.     {{ parent() }}
  10.     <link rel="stylesheet" href="{{ asset('assets/css/guide.css', 'user_data') }}">
  11. {% endblock %}
  12. {% block main %}
  13. <div class="nz-guide-container">
  14.     
  15.     {# パンくずリスト #}
  16.     <nav class="nz-breadcrumb" aria-label="パンくずリスト">
  17.         <ol itemscope itemtype="https://schema.org/BreadcrumbList">
  18.             <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  19.                 <a itemprop="item" href="{{ url('homepage') }}"><span itemprop="name">TOP</span></a>
  20.                 <meta itemprop="position" content="1" />
  21.             </li>
  22.             <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
  23.                 <span itemprop="name">初めての方へ</span>
  24.                 <meta itemprop="position" content="2" />
  25.             </li>
  26.         </ol>
  27.     </nav>
  28.     {# ヒーローセクション #}
  29.     <section class="nz-hero-section">
  30.         <div class="nz-hero-content">
  31.             <h1 class="nz-hero-title">
  32.                 <span class="nz-hero-sub">あなただけの一台を、</span>
  33.                 <span class="nz-hero-main">プロの手で。</span>
  34.             </h1>
  35.             <p class="nz-hero-lead">
  36.                 PC'Artsのいえあ侍は、大阪府和泉市にある<br class="sp-only">フルオーダーPC専門店です。<br>
  37.                 世界一の美配線と、顔が見える安心感で<br class="sp-only">あなたの理想の一台をお作りします。
  38.             </p>
  39.             <div class="nz-hero-cta">
  40.                 <a href="https://noiezam.com/contact" class="nz-btn nz-btn-primary">
  41.                     <span class="nz-btn-icon">📝</span>
  42.                     お問い合わせ・ご相談
  43.                 </a>
  44.                 <a href="https://noiezam.com/contact" class="nz-btn nz-btn-secondary">
  45.                     <span class="nz-btn-icon">💬</span>
  46.                     まずは相談する
  47.                 </a>
  48.             </div>
  49.         </div>
  50.     </section>
  51.     {# 3つの強み #}
  52.     <section class="nz-section nz-strengths-section">
  53.         <h2 class="nz-section-title">
  54.             <span class="nz-section-title-en">WHY CHOOSE US</span>
  55.             <span class="nz-section-title-ja">選ばれる3つの理由</span>
  56.         </h2>
  57.         
  58.         <div class="nz-strengths-grid">
  59.             <article class="nz-strength-card">
  60.                 <div class="nz-strength-icon">🎨</div>
  61.                 <h3 class="nz-strength-title">世界一の美配線</h3>
  62.                 <p class="nz-strength-desc">
  63.                     見えない部分にこそこだわりを。<br>
  64.                     整然とした配線は、エアフローを最適化し<br>
  65.                     パフォーマンスと耐久性を高めます。
  66.                 </p>
  67.             </article>
  68.             
  69.             <article class="nz-strength-card">
  70.                 <div class="nz-strength-icon">👤</div>
  71.                 <h3 class="nz-strength-title">顔が見える安心感</h3>
  72.                 <p class="nz-strength-desc">
  73.                     大手量販店と違い、店主NOIEが<br>
  74.                     直接対応・制作を行います。<br>
  75.                     誰が作ったか分かる安心感をお届けします。
  76.                 </p>
  77.             </article>
  78.             
  79.             <article class="nz-strength-card">
  80.                 <div class="nz-strength-icon">🛡️</div>
  81.                 <h3 class="nz-strength-title">充実のサポート</h3>
  82.                 <p class="nz-strength-desc">
  83.                     購入後も安心のサポート体制。<br>
  84.                     修理・メンテナンス・アップグレード相談まで<br>
  85.                     長くお付き合いいたします。
  86.                 </p>
  87.             </article>
  88.         </div>
  89.     </section>
  90.     {# フルオーダーの流れ #}
  91.     <section class="nz-section nz-flow-section">
  92.         <h2 class="nz-section-title">
  93.             <span class="nz-section-title-en">ORDER FLOW</span>
  94.             <span class="nz-section-title-ja">ご注文の流れ</span>
  95.         </h2>
  96.         
  97.         <div class="nz-flow-timeline">
  98.             <div class="nz-flow-step">
  99.                 <div class="nz-flow-number">1</div>
  100.                 <div class="nz-flow-content">
  101.                     <h3 class="nz-flow-title">お問い合わせ・ヒアリング</h3>
  102.                     <p class="nz-flow-desc">
  103.                         お問い合わせフォーム、X(Twitter)DM、メールからご連絡ください。
  104.                         ご予算、用途、ご希望をお聞かせください。
  105.                     </p>
  106.                     <p class="nz-flow-time">
  107.                         <span class="nz-flow-time-icon">⏱️</span>
  108.                         所要時間: 即日〜1営業日
  109.                     </p>
  110.                 </div>
  111.             </div>
  112.             
  113.             <div class="nz-flow-step">
  114.                 <div class="nz-flow-number">2</div>
  115.                 <div class="nz-flow-content">
  116.                     <h3 class="nz-flow-title">お見積り提示</h3>
  117.                     <p class="nz-flow-desc">
  118.                         ヒアリング内容をもとに、最適なパーツ構成とお見積りをご提案します。
  119.                         ご納得いただけるまで何度でもご相談ください。
  120.                     </p>
  121.                     <p class="nz-flow-time">
  122.                         <span class="nz-flow-time-icon">⏱️</span>
  123.                         所要時間: 1〜3営業日
  124.                     </p>
  125.                 </div>
  126.             </div>
  127.             
  128.             <div class="nz-flow-step">
  129.                 <div class="nz-flow-number">3</div>
  130.                 <div class="nz-flow-content">
  131.                     <h3 class="nz-flow-title">ご注文・パーツ発注</h3>
  132.                     <p class="nz-flow-desc">
  133.                         お見積りにご納得いただけましたら、正式にご注文となります。
  134.                         お支払い確認後、パーツの発注を行います。
  135.                     </p>
  136.                     <p class="nz-flow-time">
  137.                         <span class="nz-flow-time-icon">⏱️</span>
  138.                         所要時間: 3〜7営業日
  139.                     </p>
  140.                 </div>
  141.             </div>
  142.             
  143.             <div class="nz-flow-step">
  144.                 <div class="nz-flow-number">4</div>
  145.                 <div class="nz-flow-content">
  146.                     <h3 class="nz-flow-title">組み立て・検証</h3>
  147.                     <p class="nz-flow-desc">
  148.                         パーツ到着後、丁寧に組み立てを行います。
  149.                         動作検証・負荷テストを実施し、安定動作を確認します。
  150.                     </p>
  151.                     <p class="nz-flow-time">
  152.                         <span class="nz-flow-time-icon">⏱️</span>
  153.                         所要時間: 2〜5営業日
  154.                     </p>
  155.                 </div>
  156.             </div>
  157.             
  158.             <div class="nz-flow-step">
  159.                 <div class="nz-flow-number">5</div>
  160.                 <div class="nz-flow-content">
  161.                     <h3 class="nz-flow-title">納品・アフターサポート</h3>
  162.                     <p class="nz-flow-desc">
  163.                         店頭お渡しまたは配送にてお届けします。
  164.                         セットアップのご説明、その後のサポートもお任せください。
  165.                     </p>
  166.                     <p class="nz-flow-time">
  167.                         <span class="nz-flow-time-icon">⏱️</span>
  168.                         所要時間: 1〜3営業日
  169.                     </p>
  170.                 </div>
  171.             </div>
  172.         </div>
  173.         
  174.         <p class="nz-flow-note">
  175.             ※ 所要時間はパーツの在庫状況により変動する場合があります。<br>
  176.             お急ぎの場合は事前にご相談ください。
  177.         </p>
  178.     </section>
  179.     {# よくある質問 #}
  180.     <section class="nz-section nz-faq-section">
  181.         <h2 class="nz-section-title">
  182.             <span class="nz-section-title-en">FAQ</span>
  183.             <span class="nz-section-title-ja">よくあるご質問</span>
  184.         </h2>
  185.         
  186.         <div class="nz-faq-list" itemscope itemtype="https://schema.org/FAQPage">
  187.             <details class="nz-faq-item" itemscope itemprop="mainEntity" itemtype="https://schema.org/Question">
  188.                 <summary class="nz-faq-question" itemprop="name">
  189.                     初めてPCを買うのですが、フルオーダーは難しくないですか?
  190.                 </summary>
  191.                 <div class="nz-faq-answer" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
  192.                     <div itemprop="text">
  193.                         <p>全く問題ありません!用途(ゲーム、動画編集、仕事など)とご予算をお伝えいただければ、最適な構成をご提案いたします。パソコンに詳しくなくても大丈夫です。</p>
  194.                     </div>
  195.                 </div>
  196.             </details>
  197.             
  198.             <details class="nz-faq-item" itemscope itemprop="mainEntity" itemtype="https://schema.org/Question">
  199.                 <summary class="nz-faq-question" itemprop="name">
  200.                     見積もりだけでも大丈夫ですか?
  201.                 </summary>
  202.                 <div class="nz-faq-answer" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
  203.                     <div itemprop="text">
  204.                         <p>もちろんです!見積もりは完全無料です。お気軽にご相談ください。納得いただけるまで何度でも見積もり調整いたします。</p>
  205.                     </div>
  206.                 </div>
  207.             </details>
  208.             
  209.             <details class="nz-faq-item" itemscope itemprop="mainEntity" itemtype="https://schema.org/Question">
  210.                 <summary class="nz-faq-question" itemprop="name">
  211.                     大阪府外ですが、注文できますか?
  212.                 </summary>
  213.                 <div class="nz-faq-answer" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
  214.                     <div itemprop="text">
  215.                         <p>はい、全国発送対応しております!配送料は別途ご案内いたします。梱包には細心の注意を払い、安全にお届けします。</p>
  216.                     </div>
  217.                 </div>
  218.             </details>
  219.             
  220.             <details class="nz-faq-item" itemscope itemprop="mainEntity" itemtype="https://schema.org/Question">
  221.                 <summary class="nz-faq-question" itemprop="name">
  222.                     支払い方法は何がありますか?
  223.                 </summary>
  224.                 <div class="nz-faq-answer" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
  225.                     <div itemprop="text">
  226.                         <p>銀行振込、クレジットカード(PayPal)に対応しております。高額商品の場合は分割払いのご相談も承ります。</p>
  227.                     </div>
  228.                 </div>
  229.             </details>
  230.             
  231.             <details class="nz-faq-item" itemscope itemprop="mainEntity" itemtype="https://schema.org/Question">
  232.                 <summary class="nz-faq-question" itemprop="name">
  233.                     保証はありますか?
  234.                 </summary>
  235.                 <div class="nz-faq-answer" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
  236.                     <div itemprop="text">
  237.                         <p>当店でお作りしたPCには初期不良保証がございます。また、各パーツにはメーカー保証が適用されます。詳細は<a href="/user_data/guide_support">サポートページ</a>をご確認ください。</p>
  238.                     </div>
  239.                 </div>
  240.             </details>
  241.             
  242.             <details class="nz-faq-item" itemscope itemprop="mainEntity" itemtype="https://schema.org/Question">
  243.                 <summary class="nz-faq-question" itemprop="name">
  244.                     既存のPCの修理やアップグレードも対応していますか?
  245.                 </summary>
  246.                 <div class="nz-faq-answer" itemscope itemprop="acceptedAnswer" itemtype="https://schema.org/Answer">
  247.                     <div itemprop="text">
  248.                         <p>はい、対応しております!他店で購入されたPCでも大丈夫です。症状やご希望をお聞かせください。</p>
  249.                     </div>
  250.                 </div>
  251.             </details>
  252.         </div>
  253.     </section>
  254.     {# CTA #}
  255.     <section class="nz-section nz-cta-section">
  256.         <div class="nz-cta-box">
  257.             <h2 class="nz-cta-title">まずはお気軽にご相談ください</h2>
  258.             <p class="nz-cta-desc">
  259.                 見積もり無料・相談無料。<br>
  260.                 あなたの理想のPC、一緒に考えましょう。
  261.             </p>
  262.             <div class="nz-cta-buttons">
  263.                 <a href="https://noiezam.com/contact" class="nz-btn nz-btn-primary nz-btn-lg">
  264.                     <span class="nz-btn-icon">📝</span>
  265.                     お問い合わせ・ご相談
  266.                 </a>
  267.                 <a href="https://noiezam.com/contact" class="nz-btn nz-btn-secondary nz-btn-lg">
  268.                     <span class="nz-btn-icon">💬</span>
  269.                     お問い合わせ
  270.                 </a>
  271.             </div>
  272.             <div class="nz-cta-contact">
  273.                 <p class="nz-cta-tel">
  274.                     <span class="nz-cta-tel-icon">📞</span>
  275.                     <a href="tel:080-5706-0021">080-5706-0021</a>
  276.                 </p>
  277.                 <p class="nz-cta-sns">
  278.                     <a href="https://twitter.com/noiezam_com" target="_blank" rel="noopener">
  279.                         <span class="nz-sns-icon">𝕏</span> @noiezam_com
  280.                     </a>
  281.                 </p>
  282.             </div>
  283.         </div>
  284.     </section>
  285. </div>
  286. {% endblock %}
  287. {% block javascript %}
  288.     {{ parent() }}
  289.     <script>
  290.     // FAQのアコーディオン動作(アクセシビリティ対応)
  291.     document.querySelectorAll('.nz-faq-item').forEach(item => {
  292.         item.addEventListener('toggle', function() {
  293.             if (this.open) {
  294.                 // Google Analytics イベント送信(設定している場合)
  295.                 if (typeof gtag === 'function') {
  296.                     gtag('event', 'faq_open', {
  297.                         'event_category': 'FAQ',
  298.                         'event_label': this.querySelector('.nz-faq-question').textContent
  299.                     });
  300.                 }
  301.             }
  302.         });
  303.     });
  304.     </script>
  305.     
  306.     {# 構造化データ - LocalBusiness #}
  307.     <script type="application/ld+json">
  308.     {
  309.         "@context": "https://schema.org",
  310.         "@type": "ComputerStore",
  311.         "@id": "https://noiezam.com/#organization",
  312.         "name": "PC'Artsのいえあ侍",
  313.         "alternateName": "PCショップ のいえあ侍",
  314.         "url": "https://noiezam.com",
  315.         "logo": "https://noiezam.com/html/user_data/assets/img/logo.png",
  316.         "image": "https://noiezam.com/html/user_data/assets/img/og-image.jpg",
  317.         "description": "大阪府和泉市のフルオーダーPCショップ。世界一の美配線で、あなただけの一台をお作りします。",
  318.         "telephone": "080-5706-0021",
  319.         "email": "support@noiezam.com",
  320.         "address": {
  321.             "@type": "PostalAddress",
  322.             "streetAddress": "伏屋町5-2-14",
  323.             "addressLocality": "和泉市",
  324.             "addressRegion": "大阪府",
  325.             "postalCode": "594-0031",
  326.             "addressCountry": "JP"
  327.         },
  328.         "geo": {
  329.             "@type": "GeoCoordinates",
  330.             "latitude": 34.4833,
  331.             "longitude": 135.4333
  332.         },
  333.         "openingHoursSpecification": {
  334.             "@type": "OpeningHoursSpecification",
  335.             "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"],
  336.             "opens": "10:00",
  337.             "closes": "19:00"
  338.         },
  339.         "priceRange": "¥¥",
  340.         "sameAs": [
  341.             "https://twitter.com/noiezam_com",
  342.             "https://www.youtube.com/channel/UC1j3WpYSBAys0HTaPjFcg6g"
  343.         ]
  344.     }
  345.     </script>
  346. {% endblock %}