/* =========================
   FV 静止画：img3枚・安全版
========================= */
.fv-static img {
  display: block;
  width: 100%;
  height: auto;
}


/* ===============================
   SP：FV上 3ボタン（強制表示・最終）
=============================== */

/* スマホのみ表示 */
.sp-fv-buttons {
  display: none;
}

@media (max-width: 768px) {

  .sp-fv-buttons {
    display: flex !important;
    width: 100% !important;
    gap: 8px !important;
    padding: 10px !important;
    background: #fff !important;
    box-sizing: border-box !important;
  }

  .sp-fv-buttons a.sp-btn {
    flex: 1 !important;
    height: 44px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;

    line-height: 1 !important;
    border-radius: 4px !important;
  }

  .sp-fv-buttons a.sp-btn--red {
    background: #e53935 !important;
  }

  .sp-fv-buttons a.sp-btn--blue {
    background: #1e88e5 !important;
  }

  .sp-fv-buttons a.sp-btn--green {
    background: #43a047 !important;
  }
}


