Materials Request

Materials Request

資料請求フォーム

AINBIZ 資料請求

株式会社AINBIZの各種資料を無料でダウンロードいただけます。

ご興味のある資料を選択し、必要事項をご入力の上、送信してください。

主な資料の種類

  • AINBIZ 企業概要資料
  • AINBIZ サービス紹介資料
  • 協業・パートナープログラム資料
  • 請求上手PLUS 概要資料
  • Creative Survey for Enterprise 概要資料

資料請求フォーム

以下のフォームに必要事項をご入力ください

ビジネスパートナーをお探しですか?

共に成長し、新しい価値を創造するパートナーを募集しています。ご興味をお持ちいただけましたら、ぜひお問い合わせください。

お問い合わせ

パートナーシップのご相談も承っております

// CTAセクション初期化 - 高優先度 function initializeCTASections() { const ctaSections = document.querySelectorAll(".cta-section"); ctaSections.forEach(function (section) { // CTAセクションの表示を最優先で実行 section.style.display = "flex"; section.style.visibility = "visible"; section.style.opacity = "1"; // アニメーション効果を追加 const ctaContent = section.querySelector(".cta-content"); if (ctaContent) { ctaContent.style.animation = "fadeInUp 0.8s ease-out"; } // ボタンのホバー効果を強化 const ctaButton = section.querySelector(".cta-button"); if (ctaButton) { ctaButton.addEventListener("mouseenter", function () { this.style.transform = "translateY(-3px) scale(1.05)"; }); ctaButton.addEventListener("mouseleave", function () { this.style.transform = "translateY(0) scale(1)"; }); } }); } // CTAセクションを即座に初期化 initializeCTASections(); // DOMContentLoadedでも初期化(念のため) document.addEventListener("DOMContentLoaded", initializeCTASections);