/**
 * stampcard-lp.css
 * スタンプカード印刷LP — ticket-lp.css の tlp-* クラスを継承し、スタンプカード固有の追加分のみ
 */

/* =============================================
   Scroll Animations
   ============================================= */
.sclp-anim {
  opacity: 1;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.sclp-anim.sclp-scale-in {
  transform: scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.sclp-anim.sclp-slide-left {
  transform: translateX(-30px);
}
.sclp-anim.sclp-slide-right {
  transform: translateX(30px);
}
.js-anim-ready .sclp-anim {
  opacity: 0;
}
.sclp-anim.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) translateX(0) !important;
}
.sclp-anim.sclp-delay-1 { transition-delay: 0.08s; }
.sclp-anim.sclp-delay-2 { transition-delay: 0.16s; }
.sclp-anim.sclp-delay-3 { transition-delay: 0.24s; }
.sclp-anim.sclp-delay-4 { transition-delay: 0.32s; }
.sclp-anim.sclp-delay-5 { transition-delay: 0.40s; }

/* =============================================
   Accent: セクション区切りライン
   ============================================= */
.stampcard-lp .sclp-accent-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--tlp-accent), var(--tlp-pink));
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* =============================================
   Accent: ヒーロー装飾
   ============================================= */
.stampcard-lp .tlp-hero {
  position: relative;
  overflow: hidden;
}
.stampcard-lp .tlp-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--tlp-accent-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.stampcard-lp .tlp-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--tlp-pink-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.stampcard-lp .tlp-hero-grid {
  position: relative;
  z-index: 1;
}
.stampcard-lp .tlp-trust-row {
  position: relative;
  z-index: 1;
}

/* =============================================
   Accent: ヒーロー画像 hover + 装飾枠
   ============================================= */
.stampcard-lp .tlp-hero-img {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}
.stampcard-lp .tlp-hero-img:hover {
  transform: scale(1.03);
}
.stampcard-lp .sclp-hero-img-wrap {
  position: relative;
  display: inline-block;
}
.stampcard-lp .sclp-hero-img-wrap::before {
  content: '';
  position: absolute;
  top: 12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--tlp-accent);
  border-radius: var(--tlp-radius);
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

/* =============================================
   Accent: 用途カード hover パルス
   ============================================= */
.stampcard-lp .tlp-usecase__icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stampcard-lp .tlp-usecase:hover .tlp-usecase__icon {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(232, 118, 10, 0.2);
}

/* =============================================
   Accent: 料金カード ホバーグロー + 人気ラベル
   ============================================= */
.stampcard-lp .tlp-pricing:hover {
  box-shadow: 0 8px 32px rgba(232, 118, 10, 0.15);
}
.stampcard-lp .tlp-pricing--popular {
  position: relative;
  outline: 2px solid var(--tlp-accent);
  outline-offset: -2px;
}
.stampcard-lp .tlp-pricing--popular::before {
  content: '人気';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--tlp-accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 16px;
  border-radius: 100px;
  letter-spacing: 0.08em;
}

/* =============================================
   比較テーブル（スタンプカード vs ショップカード）
   ============================================= */
.stampcard-lp .tlp-compare-table {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.stampcard-lp .tlp-compare-table thead th {
  padding: 14px 16px;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
}
.stampcard-lp .tlp-compare-table thead th:first-child {
  background: transparent;
  width: 22%;
}
.stampcard-lp .tlp-compare-table thead th.compare-header--stamp {
  background: var(--tlp-accent-soft);
  color: var(--tlp-accent);
  border-radius: var(--tlp-radius-sm) var(--tlp-radius-sm) 0 0;
}
.stampcard-lp .tlp-compare-table thead th.compare-header--shop {
  background: var(--tlp-bg-alt);
  color: var(--tlp-text-secondary);
  border-radius: var(--tlp-radius-sm) var(--tlp-radius-sm) 0 0;
}
.stampcard-lp .tlp-compare-table tbody th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--tlp-navy);
  background: var(--tlp-bg-alt);
  vertical-align: top;
}
.stampcard-lp .tlp-compare-table tbody td {
  padding: 12px 16px;
  color: var(--tlp-text-secondary);
  text-align: center;
  line-height: 1.7;
}
.stampcard-lp .tlp-compare-table tbody td:first-of-type {
  background: rgba(232, 118, 10, 0.03);
  font-weight: 600;
  color: var(--tlp-text);
}
.stampcard-lp .tlp-compare-table tbody tr + tr th,
.stampcard-lp .tlp-compare-table tbody tr + tr td {
  border-top: 1px solid var(--tlp-border);
}

/* =============================================
   用紙カード アクセントバー
   ============================================= */
.stampcard-lp .tlp-paper-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stampcard-lp .tlp-paper-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tlp-accent), var(--tlp-pink));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: left;
}
.stampcard-lp .tlp-paper-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tlp-shadow-md);
}
.stampcard-lp .tlp-paper-card:hover::after {
  transform: scaleX(1);
}

/* =============================================
   FAQ summary hover
   ============================================= */
.stampcard-lp .tlp-faq summary {
  transition: background 0.2s, padding-left 0.3s;
}
.stampcard-lp .tlp-faq summary:hover {
  padding-left: 28px;
}
.stampcard-lp .tlp-faq details[open] summary {
  background: var(--tlp-accent-soft);
  color: var(--tlp-accent);
}

/* =============================================
   最終CTA パルスボタン
   ============================================= */
@keyframes sclp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}
.stampcard-lp .tlp-final-cta .tlp-btn--on-dark {
  animation: sclp-pulse 2.5s infinite;
}

/* =============================================
   注文方法パス hover
   ============================================= */
.stampcard-lp .tlp-path {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stampcard-lp .tlp-path:hover {
  transform: translateY(-4px);
  box-shadow: var(--tlp-shadow-md);
}

/* =============================================
   関連ピル hover カラー
   ============================================= */
.stampcard-lp .tlp-related-pill {
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.stampcard-lp .tlp-related-pill:hover {
  transform: translateY(-2px);
}

/* =============================================
   トラスト数値 hover
   ============================================= */
.stampcard-lp .tlp-trust-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stampcard-lp .tlp-trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--tlp-shadow-sm);
}
