<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>株式会社あなたの広告担当になりたい</title>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #f5f0eb;
    }

    /* LP全体のラッパー(スマホ幅で中央寄せ) */
    .lp-wrapper {
      max-width: 480px;
      margin: 0 auto;
      position: relative;
    }

    /* 各セクション */
    .lp-section {
      position: relative;
      width: 100%;
      line-height: 0; /* 画像下の隙間を消す */
    }

    .lp-section img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* =======================================
       お問い合わせボタンの透明クリック領域
       ※ボタン位置がズレる場合は top / height を調整してください
       ======================================= */
    .form-btn-link {
      position: absolute;
      top: 34%;       /* ボタン上端の位置(画像高さに対する割合) */
      left: 8%;
      width: 84%;
      height: 14%;    /* ボタンの高さ */
      display: block;
      cursor: pointer;
      /* デバッグ時は下の行のコメントを外すと赤枠で位置確認できます */
      /* outline: 2px solid red; */
    }

    /* =======================================
       画面下部に固定表示されるスティッキーCTAボタン
       不要な場合は .sticky-cta ブロックごと削除してください
       ======================================= */
    .sticky-cta {
      position: fixed;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 999;
      width: 88%;
      max-width: 400px;
      text-align: center;
    }

    .sticky-cta a {
      display: block;
      background: linear-gradient(135deg, #b8860b, #ffd700, #b8860b);
      color: #1a1a5e;
      text-decoration: none;
      padding: 14px 20px;
      border-radius: 6px;
      font-size: 17px;
      font-weight: bold;
      font-family: "游明朝", "YuMincho", serif;
      letter-spacing: 0.05em;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
      border: 2px solid #b8860b;
    }

    .sticky-cta a:hover {
      opacity: 0.9;
    }
  </style>
</head>
<body>

<div class="lp-wrapper">

  <!-- ① イントロ(拝啓〜) -->
  <div class="lp-section">
    <img
      src="http://aisync.biz/wp-content/uploads/2026/06/8.png"
      alt="拝啓 この度は当ホームページをご覧下さり誠にありがとうございます"
    >
  </div>

  <!-- ② お取り組みの流れ(一念発起してお問い合わせ) -->
  <div class="lp-section">
    <img
      src="http://aisync.biz/wp-content/uploads/2026/06/7.png"
      alt="お取り組みの流れ 一念発起してお問い合わせ"
    >
  </div>

  <!-- ③ 商談→ご契約 -->
  <div class="lp-section">
    <img
      src="http://aisync.biz/wp-content/uploads/2026/06/6.png"
      alt="商談→ご契約"
    >
  </div>

  <!-- ④ 更なる事業成長 Happy Ending -->
  <div class="lp-section">
    <img
      src="http://aisync.biz/wp-content/uploads/2026/06/5.png"
      alt="更なる事業成長 Happy Ending"
    >
  </div>

  <!-- ⑤ 得意とする広告媒体 -->
  <div class="lp-section">
    <img
      src="http://aisync.biz/wp-content/uploads/2026/06/4.png"
      alt="我々が得意とする広告媒体 Google Ads Meta TikTok X"
    >
  </div>

  <!-- ⑥ 過去の取り組み企業 -->
  <div class="lp-section">
    <img
      src="http://aisync.biz/wp-content/uploads/2026/06/3.png"
      alt="過去の主なお取り組み企業様方"
    >
  </div>

  <!-- ⑦ Q&A -->
  <div class="lp-section">
    <img
      src="http://aisync.biz/wp-content/uploads/2026/06/2.png"
      alt="Q&A"
    >
  </div>

  <!-- ⑧ お問い合わせフォームCTA(最下部) -->
  <!-- この section に id="contact" を付けることでページ内アンカーリンクが機能します -->
  <div class="lp-section" id="contact">
    <img
      src="http://aisync.biz/wp-content/uploads/2026/06/1.png"
      alt="無料で現状の広告診断をさせていただきます お問い合わせフォーム"
    >
    <!--
      ▼ お問い合わせフォームボタンの透明クリック領域
        href に実際のフォームURL(GoogleフォームなどのURL)を入れてください。
        同ページ内のフォームへスクロールさせる場合は href="#contact-form" のようにしてください。
    -->
    <a
      class="form-btn-link"
      href="【お問い合わせフォームのURLをここに入れる】"
      target="_blank"
      rel="noopener noreferrer"
      aria-label="お問い合わせフォームへ"
    ></a>
  </div>

</div><!-- /.lp-wrapper -->


<!--
  ▼ スティッキーCTAボタン(スクロール中も画面下部に常時表示)
    不要な場合はこのブロックごと削除してください。
    href には上と同じフォームURLを入れてください。
-->
<div class="sticky-cta">
  <a
    href="【お問い合わせフォームのURLをここに入れる】"
    target="_blank"
    rel="noopener noreferrer"
  >
    無料でお問い合わせ
  </a>
</div>


</body>
</html>