/* ─── キラキラボタン（LP共通ボタンの仕組みを踏襲） ───
   pill型の主要CTAボタンに .btn-shine を追加すると、斜めの光が周期的に流れる。
   ヘッダーのハンバーガー展開時など、::before を別用途で使う箇所での無効化は
   その文脈のCSS側（例: layout/header.css）で個別に打ち消す。 */
.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 25%,
    rgba(255, 255, 255, .8) 50%,
    rgba(255, 255, 255, 0) 75%
  );
  transform: skewX(-15deg);
  animation: btnShine 2s linear infinite;
  pointer-events: none;
  border-radius: inherit;
}

@keyframes btnShine {
  20% { left: 100%; }
  100% { left: 100%; }
}

/* ─── セクション末尾の「MORE」ボタン（お知らせ／よくある質問セクションなどで共通使用） ─── */
.section-more {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.section-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 3rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.section-more-btn:hover {
  background: var(--color-white);
  color: var(--color-black);
  transform: translateY(-3px);
}
