html, body { margin: 0; padding: 0; background: #fff; }

/* 画像の継ぎ目の余白が出ないように */
.lp { max-width: 1200px; margin: 0 auto; }
.lp__img { width: 100%; height: auto; display: block; }
.lp__link { display: block; }

/* 先頭に戻るボタン（目立つ版） */
.to-top{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255,255,255,0.65);
  border-radius: 999px;

  /* 目立つオレンジ系（LPの雰囲気に合わせやすい） */
  background: linear-gradient(180deg, #ffb36b 0%, #ff6a00 100%);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);

  cursor: pointer;
  z-index: 9999;

  /* 中の「↑」文字は消して、疑似要素で矢印を描く */
  font-size: 0;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.to-top.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* 「＞」を回転させたような上向きchevron */
.to-top::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 16px;
  height: 16px;

  border-top: 4px solid #fff;
  border-right: 4px solid #fff;

  transform: translate(-50%, -50%) rotate(-45deg);
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.25));
}

/* さらに目立たせたい場合の“うっすら脈動”（不要なら消してOK） */
.to-top.is-visible{
  animation: toTopPulse 1.8s ease-in-out infinite;
}
@keyframes toTopPulse{
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(0) scale(1.06); }
}

/* フォーカス時（キーボード操作でも見える） */
.to-top:focus-visible{
  outline: 4px solid rgba(255,255,255,0.9);
  outline-offset: 2px;
}
