/** Shopify CDN: Minification failed

Line 11:0 Unexpected "{"
Line 11:1 Expected identifier but found "%"
Line 12:0 Unexpected "<"
Line 29:0 Unexpected "<"
Line 30:1 Expected identifier but found "%"

**/
<!--プロテインLP 購入ボタンのアニメーション-->
{% if request.path == '/btntest' %}
<style>
.lp_btn1 {
  display: inline-block;
  padding: 10px 20px; /* ボタンのパディング */
  border: none; /* ボタンの枠線を非表示 */
  cursor: pointer; /* ボタンをカーソルに反応させる */
  animation: pulse 1s infinite alternate; /* アニメーションの追加 */
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
</style>
{% endif %}