/**
 * 全ページ共通：固定フォーム導線（PCのみ）
 * top は後から微調整しやすいよう変数化
 */
.audition-fixed-form-cta {
  display: none;
}

@media screen and (min-width: 641px) {
  .audition-fixed-form-cta {
    --audition-fixed-cta-top: 22%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    position: fixed;
    right: 0;
    top: var(--audition-fixed-cta-top);
    z-index: 9998;
    pointer-events: none;
  }

  /* ノートPCなど高さが低い場合は、さらに少し上へ */
  @media screen and (max-height: 820px) {
    .audition-fixed-form-cta {
      --audition-fixed-cta-top: 18%;
    }
  }

  .audition-fixed-form-cta__link {
    display: block;
    line-height: 0;
    pointer-events: auto;
    transition: opacity 0.2s ease;
  }

  .audition-fixed-form-cta__link:hover {
    opacity: 0.88;
  }

  .audition-fixed-form-cta__link img {
    display: block;
    width: auto;
    max-width: min(140px, 18vw);
    height: auto;
  }
}
