<!-- ==========================================
       フッター
       ========================================== -->
  <footer class="mt-auto bg-brand-dark text-brand-light/90 pt-16 pb-12 px-6">
    <div class="max-w-6xl mx-auto flex flex-col md:flex-row justify-between items-center md:items-start gap-12 border-b border-white/10 pb-12 mb-12">
      
      <!-- フッターロゴ & コピー -->
      <div class="text-center md:text-left space-y-4">
        <h3 class="font-serif text-2xl tracking-[0.2em] text-white">TORORO <span class="text-xs text-brand-accent">MATSUYAMA</span></h3>
        <p class="text-xs text-brand-light/60 tracking-widest leading-relaxed">
          株式会社TOROROフードシステム<br>
          〒790-0042 愛媛県松山市大街道111-111
        </p>
      </div>

      <!-- フッターメニュー -->
      <div class="flex flex-wrap justify-center gap-8 text-xs tracking-widest text-brand-light/70">
        <a href="index.php#concept" class="hover:text-brand-accent transition-colors">私たちの想い</a>
        <a href="company.php" class="hover:text-brand-accent transition-colors">会社概要</a>
        <a href="index.php#brands" class="hover:text-brand-accent transition-colors">店舗情報</a>
        <a href="contact.php" class="hover:text-brand-accent transition-colors">お問合せ</a>
        <a href="privacy.php" class="hover:text-brand-accent transition-colors">プライバシーポリシー</a>
        <a href="tokushoho.php" class="hover:text-brand-accent transition-colors">特定商取引法に基づく表記</a>
      </div>

      <!-- SNS -->
      <div class="flex gap-4 text-xl">
        <a href="#" class="w-10 h-10 rounded-full border border-white/10 hover:border-brand-accent hover:text-brand-accent transition-colors flex items-center justify-center"><i class="fa-brands fa-instagram"></i></a>
        <a href="#" class="w-10 h-10 rounded-full border border-white/10 hover:border-brand-accent hover:text-brand-accent transition-colors flex items-center justify-center"><i class="fa-brands fa-facebook-f"></i></a>
      </div>

    </div>

    <!-- コピーライト -->
    <div class="max-w-6xl mx-auto flex flex-col sm:flex-row justify-between items-center text-[10px] text-brand-light/40 tracking-widest gap-4">
      <span>&copy; 2026 TORORO Group. All Rights Reserved.</span>
      <div class="flex gap-4">
        <span>Designed for TORORO food system.</span>
      </div>
    </div>
  </footer>

  <!-- ==========================================
       スクリプト処理（メニュー開閉など）
       ========================================== -->
  <script>
    // モバイルメニューの開閉処理
    const menuBtn = document.getElementById('menu-btn');
    const mobileMenu = document.getElementById('mobile-menu');
    const menuIcon = menuBtn ? menuBtn.querySelector('i') : null;
    const mobileLinks = document.querySelectorAll('.mobile-link');

    if(menuBtn && mobileMenu) {
      function toggleMenu() {
        mobileMenu.classList.toggle('hidden');
        if (mobileMenu.classList.contains('hidden')) {
          menuIcon.classList.remove('fa-xmark');
          menuIcon.classList.add('fa-bars');
        } else {
          menuIcon.classList.remove('fa-bars');
          menuIcon.classList.add('fa-xmark');
        }
      }

      menuBtn.addEventListener('click', toggleMenu);

      mobileLinks.forEach(link => {
        link.addEventListener('click', () => {
          if (!mobileMenu.classList.contains('hidden')) {
            toggleMenu();
          }
        });
      });
    }

    // スクロール時にヘッダーを少し縮小・影付け
    window.addEventListener('scroll', () => {
      const header = document.querySelector('header');
      if(header) {
        if (window.scrollY > 50) {
          header.classList.add('py-2', 'shadow-md');
          header.classList.remove('py-4');
        } else {
          header.classList.add('py-4');
          header.classList.remove('py-2', 'shadow-md');
        }
      }
    });
  </script>
</body>
</html>