      /* ------------------------------------------------
         Base Styles
         ------------------------------------------------ */
      :root {
        --bg-color: #f0f0f0;
        --text-color: #1a1a1a;
        --accent-color: #333;
        /* ボタンのカラー設定 */
        --btn-color: #0984e3;
        --btn-shadow: rgba(9, 132, 227, 0.4);
      }

      body {
        margin: 0;
        padding: 0;
        font-family: "Helvetica Neue", Arial, sans-serif;
        background-color: var(--bg-color);
        color: var(--text-color);
        overflow-x: hidden;
      }

      section {
        height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        border-bottom: 1px solid #ddd;
      }

      /* ------------------------------------------------
         Hybrid CTA Component Styles
         ------------------------------------------------ */
      .hybrid-section {
        background-color: #fff;
        position: relative;
        overflow: hidden;
      }

      /* インタラクション領域のラッパー */
      .hybrid-cta-wrapper {
        position: relative;
        width: 300px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent; /* タッチデバイスのハイライト削除 */
      }

      /* [Layer 1] 液体層: Gooeyフィルターを適用 */
      .hybrid-liquid-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        filter: url("#goo-hybrid"); /* SVGフィルター適用 */
        z-index: 1;
        pointer-events: none;
      }

      /* ボタンの背景（液体の核） */
      .hybrid-bg {
        width: 240px;
        height: 70px;
        background: var(--btn-color);
        border-radius: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        /* 初期位置（GSAPで動かすためCSSは中心配置のみ） */
        transform: translate(-50%, -50%);
        box-shadow: 0 10px 30px var(--btn-shadow);
      }

      /* 水しぶきの粒子 */
      .hybrid-particle {
        position: absolute;
        background: var(--btn-color);
        border-radius: 50%;
        pointer-events: none;
        /* 初期位置 */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }

      /* [Layer 2] コンテンツ層: フィルターなしで文字をくっきり表示 */
      .hybrid-content-layer {
        position: relative;
        z-index: 2;
        pointer-events: none;
        color: white;
        font-size: 1.2rem;
        font-weight: bold;
        letter-spacing: 0.1em;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .hybrid-text-inner {
        display: inline-block;
      }

      .instruction {
        position: absolute;
        bottom: 2rem;
        font-size: 0.9rem;
        color: #888;
        text-align: center;
        width: 100%;
        pointer-events: none;
      }
