/* ============================================================
   高知きらめき探検隊 — 青空・青春・清流デザイン版
   スマホファースト・ブルー×ピンク×ホワイト
   ============================================================ */

/* ---- CSS変数 ---- */
:root {
  /* ブルー系メインカラー */
  --sky-blue:    #00AEEF;
  --clear-blue:  #1E88E5;
  --deep-blue:   #005BAC;
  --youth-blue:  #0078D7;
  --navy:        #062B5F;
  --light-cyan:  #E6F8FF;
  --pale-blue:   #F0FBFF;
  --water-grad1: #BEEBFF;
  --water-grad2: #00AEEF;

  /* アクセント */
  --coral-pink:  #FF4F7B;
  --fresh-pink:  #FF5C8A;
  --kira-yellow: #FFD23F;
  --light-green: #34C759; /* 差し色のみ */
  --sun-orange:  #FF8C00;

  /* テキスト */
  --navy-text:   #062B5F;
  --gray-text:   #5A6A7E;
  --white:       #FFFFFF;

  /* ユーティリティ */
  --shadow-sm:  0 2px 10px rgba(0,90,172,0.10);
  --shadow-md:  0 4px 20px rgba(0,90,172,0.15);
  --shadow-lg:  0 8px 36px rgba(0,90,172,0.20);
  --shadow-pink: 0 6px 24px rgba(255,79,123,0.38);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --font: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  --ease: 0.26s ease;
  --sec-py: 68px;
}

/* ---- リセット ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font); color: var(--navy-text); background: #fff; line-height: 1.7; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ---- コンテナ ---- */
.container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- セクション共通 ---- */
.sec { padding: var(--sec-py) 0; }

.sec-header { text-align: center; margin-bottom: 36px; }

.sec-tag {
  display: inline-block;
  background: var(--kira-yellow);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  padding: 4px 18px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.sec-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.35;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 800;
  border: none;
  cursor: pointer;
  border-radius: 99px;
  transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease), background var(--ease);
  text-align: center;
  line-height: 1.3;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); opacity: .93; }
.btn:active { transform: translateY(0); }

.btn-sm { font-size: 0.82rem; padding: 10px 24px; }
.btn-md { font-size: 0.95rem; padding: 13px 30px; }
.btn-lg { font-size: 1rem;    padding: 16px 38px; }
.btn-xl { font-size: 1.1rem;  padding: 18px 42px; }

/* ピンク：メインCTA */
.btn-pink {
  background: linear-gradient(135deg, var(--coral-pink), var(--fresh-pink));
  color: var(--white);
  box-shadow: var(--shadow-pink);
}
.btn-pink:hover { background: linear-gradient(135deg, #e03d6a, #e04878); box-shadow: 0 10px 30px rgba(255,79,123,.45); }

/* ブルー */
.btn-blue {
  background: linear-gradient(135deg, var(--sky-blue), var(--clear-blue));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-blue:hover { background: linear-gradient(135deg, #008ecc, #1565c0); }

/* イエロー */
.btn-yellow {
  background: var(--kira-yellow);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(255,210,63,.45);
}
.btn-yellow:hover { background: #f0c015; }

/* アウトライン・ブルー */
.btn-outline-blue {
  background: transparent;
  color: var(--clear-blue);
  border: 2px solid var(--clear-blue);
}
.btn-outline-blue:hover { background: var(--clear-blue); color: var(--white); }

/* ホワイトアウトライン（最終CTA用） */
.btn-white-outline {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}
.btn-white-outline:hover { background: rgba(255,255,255,0.25); }

/* ヘッダー用 */
.btn-header { font-size: 0.82rem; padding: 8px 20px; }

/* Pulse — box-shadow拡張を使わない実装（iOS Safariタップ幽霊バグ回避）
   outline の拡大縮小をscaleで実現し、ボタン要素外にはみ出さない */
@keyframes pulse-scale {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.025); }
}
.pulse-btn {
  animation: pulse-scale 2.2s ease-in-out infinite;
  will-change: transform;
}
/* yellow版はそのままscaleを継承 */
.btn-yellow.pulse-btn { animation: pulse-scale 2.2s ease-in-out infinite; }


/* ================================================================
   HEADER
================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 91, 172, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 14px rgba(0,40,100,.22);
}
.header-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.logo-mark  { font-size: 1.4rem; }
.logo-text  { font-size: .98rem; font-weight: 900; color: var(--white); letter-spacing: -.01em; }
.header-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  /* 白背景ロゴをヘッダー濃紺背景に馴染ませる */
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.3));
  border-radius: 6px;
}
.logo-text em { font-style: normal; color: var(--kira-yellow); }


/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 58px;
  padding-bottom: 24px;
  overflow: hidden;
}

/* --- 背景画像 --- */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center bottom;
  pointer-events: none;
}

/* 左→右ホワイトフェード */
.hero-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(108deg,
      rgba(255,255,255,.85) 0%,
      rgba(255,255,255,.68) 28%,
      rgba(255,255,255,.18) 52%,
      rgba(255,255,255,.00) 68%
    );
}

/* --- Hero body --- */
.hero-body {
  position: relative; z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px 12px;
  width: 100%;
}

/* 左プレート */
.hero-plate { flex: 0 1 500px; }

/* アンバサダーリボン */
.hero-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral-pink);
  color: var(--white);
  font-size: .78rem;
  font-weight: 900;
  padding: 6px 20px 6px 16px;
  border-radius: 0 99px 99px 0;
  margin-left: -24px;
  margin-bottom: 10px;
  box-shadow: 0 3px 12px rgba(255,79,123,.35);
  letter-spacing: .03em;
}

/* ロゴブロック */
.hero-logo-block { margin-bottom: 12px; }
.hero-logo-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,40,100,.2));
}

.hero-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.logo-emoji {
  font-size: 2.6rem;
  filter: drop-shadow(0 2px 4px rgba(0,60,120,.15));
}
.hero-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-l1 {
  font-size: clamp(1.05rem, 2.8vw, 1.6rem);
  font-weight: 900;
  color: var(--deep-blue);
  text-shadow: 0 1px 3px rgba(255,255,255,.8);
}
.logo-l2 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 900;
  /* 青→水色→ピンクのグラデーション */
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--sky-blue) 55%, var(--coral-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em;
  /* 白フチ効果 */
  filter: drop-shadow(0 2px 0 rgba(255,255,255,.9)) drop-shadow(0 0 8px rgba(255,255,255,.6));
}
.logo-gem {
  font-size: 1.8rem;
  align-self: flex-start;
  margin-top: 4px;
  filter: drop-shadow(0 0 8px rgba(100,180,255,.6));
}
.logo-bar {
  height: 5px;
  width: 80%;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--kira-yellow) 0%, var(--coral-pink) 55%, var(--sky-blue) 100%);
  border-radius: 99px;
}

/* キャッチコピー */
.hero-catch {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 8px;
}
.catch-sm {
  font-size: clamp(.85rem, 1.8vw, 1rem);
  font-weight: 700;
  color: var(--navy);
  text-shadow: 0 0 8px #fff, 0 0 16px #fff, 1px 1px 0 #fff, -1px -1px 0 #fff;
}
.catch-lg {
  font-size: clamp(1.45rem, 3.8vw, 2.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  text-shadow: 0 0 10px #fff, 0 0 22px #fff, 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
}
.catch-pink {
  font-style: normal;
  color: var(--coral-pink);
  text-shadow: 0 0 10px #fff, 0 0 22px rgba(255,255,255,.9), 1px 1px 0 #fff, -1px -1px 0 #fff;
}

/* サブコピー */
.hero-sub {
  font-size: clamp(.82rem, 1.6vw, .95rem);
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.65;
  text-shadow: 0 0 8px #fff, 0 0 16px #fff, 1px 1px 0 rgba(255,255,255,.8), -1px -1px 0 rgba(255,255,255,.8);
}
.hero-sub strong {
  color: var(--deep-blue);
  font-weight: 900;
  text-shadow: 0 0 8px #fff, 0 0 18px #fff;
}

/* 賞品キャッチ */
.hero-prize-catch {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(135deg, #fff9e6 0%, #fff3c0 100%);
  border: 2.5px solid var(--kira-yellow);
  border-radius: var(--radius-md);
  padding: 12px 18px 14px;
  margin-bottom: 12px;
  position: relative;
  box-shadow: 0 4px 18px rgba(255,210,63,.35), 0 1px 4px rgba(0,0,0,.06);
  max-width: 100%;
}
/* 左端ゴールドライン */
.hero-prize-catch::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--kira-yellow), var(--sun-orange));
  border-radius: 99px 0 0 99px;
}

/* 上部ラベル */
.hero-prize-eyebrow {
  font-size: .7rem;
  font-weight: 800;
  color: var(--sun-orange);
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}
.hero-prize-eyebrow i { font-size: .72rem; }

/* 「最大 ●●●円相当 の」行 */
.hero-prize-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: .88rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

/* 金額 */
.hero-prize-amount {
  font-style: normal;
  font-size: 2rem;
  font-weight: 900;
  color: var(--sun-orange);
  letter-spacing: -.03em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255,255,255,.9);
}
.hero-prize-unit {
  font-size: 1rem;
  font-weight: 900;
  color: var(--sun-orange);
}
.hero-prize-eq {
  font-size: .72rem;
  font-weight: 800;
  color: var(--gray-text);
  margin-left: 1px;
}

/* 「QUOカードPay が当たる！」行 */
.hero-prize-name {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
  flex-wrap: wrap;
}
.hero-prize-quo {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--deep-blue);
  letter-spacing: -.01em;
  background: linear-gradient(135deg, var(--deep-blue), var(--sky-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-prize-win {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--coral-pink);
  text-shadow: 0 0 8px rgba(255,255,255,.9), 0 1px 0 rgba(255,255,255,.8);
}

/* スマホ調整 */
@media (max-width: 620px) {
  .hero-prize-catch {
    padding: 10px 14px 12px;
    margin-bottom: 10px;
    align-self: center;
  }
  .hero-prize-amount { font-size: 1.75rem; }
  .hero-prize-quo    { font-size: .95rem; }
  .hero-prize-win    { font-size: 1rem; }
}

/* バッジ群 */
.hero-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.88);
  font-size: .79rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 99px;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,60,140,.10);
}
.hero-badge i { font-size: .95rem; }
.badge-yellow { border: 2px solid var(--kira-yellow); color: var(--navy); }
.badge-yellow i { color: var(--kira-yellow); }
.badge-blue   { border: 2px solid var(--sky-blue); color: var(--deep-blue); }
.badge-blue i { color: var(--sky-blue); }
.badge-pink   { border: 2px solid var(--coral-pink); color: var(--coral-pink); }
.badge-pink i { color: var(--coral-pink); }
.badge-target   { border: 2px solid #7B5EA7; color: #7B5EA7; }
.badge-target i { color: #7B5EA7; }

/* 右：スタンプ＆CTA */
.hero-right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(260px, 38%);
}
.hero-stamp-widget {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  pointer-events: none; /* 画像がボタンのタップを妨げないように */
}
.hero-stamp-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.12));
  animation: stamp-bounce 2.4s ease-in-out infinite;
}
@keyframes stamp-bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ヒーローCTA */
.btn-cta-main {
  width: 100%;
  background: linear-gradient(135deg, var(--coral-pink), var(--fresh-pink));
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  padding: 15px 20px;
  border-radius: 99px;
  box-shadow: var(--shadow-pink);
  justify-content: space-between;
  /* overflow:hidden と ::before 疑似要素は削除（iOS タップ干渉防止） */
}
.btn-cta-main:hover { background: linear-gradient(135deg,#e03068,#e04878); }
.cta-arrow { font-size: 1.7rem; line-height: 1; opacity: .8; }

.btn-cta-sub {
  width: 100%;
  background: var(--deep-blue);
  color: var(--white);
  font-size: .8rem;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(0,60,140,.25);
}
.btn-cta-sub:hover { background: var(--youth-blue); }

@keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(7px);} }
.bounce { animation: bounce 2s ease-in-out infinite; }


/* ================================================================
   STAMP CTA セクション
================================================================ */
.sec-stamp-cta {
  position: relative;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--sky-blue) 60%, #00C8FF 100%);
  text-align: center;
  overflow: hidden;
  padding: var(--sec-py) 0;
}
/* 波形 */
.wave-top, .wave-bottom {
  line-height: 0;
  position: relative; z-index: 1;
}
.wave-top  svg { display: block; width: 100%; height: 50px; }
.wave-bottom svg { display: block; width: 100%; height: 50px; }

.sec-stamp-cta .container { position: relative; z-index: 2; }

/* 背景の泡装飾 */
.sec-stamp-cta::before {
  content: '';
  position: absolute;
  top: 20%; left: 5%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.sec-stamp-cta::after {
  content: '';
  position: absolute;
  bottom: 15%; right: 6%;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-badge-label {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: var(--kira-yellow);
  font-size: .82rem; font-weight: 800;
  padding: 5px 18px; border-radius: 99px;
  margin-bottom: 14px;
}
.cta-title {
  font-size: clamp(1.8rem,5vw,2.6rem);
  font-weight: 900; color: var(--white);
  margin-bottom: 12px; line-height: 1.25;
}
.cta-desc  { font-size: .95rem; color: rgba(255,255,255,.85); margin-bottom: 28px; }
.cta-note  { font-size: .74rem; color: rgba(255,255,255,.45); margin-top: 14px; }


/* ================================================================
   STEPS セクション
================================================================ */
.sec-steps { background: var(--pale-blue); }

.steps-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border-left: 5px solid var(--sky-blue);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.step-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }

.step-num {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--sky-blue), var(--clear-blue));
  color: var(--white);
  font-size: .68rem; font-weight: 900; letter-spacing: .05em;
  padding: 4px 10px;
  border-radius: 99px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 2px;
}
.step-icon {
  flex-shrink: 0;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
}
.step-icon img {
  width: 72px; height: 72px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--pale-blue);
  padding: 6px;
}
.step-body h3 { font-size: 1rem; font-weight: 900; color: var(--navy); margin-bottom: 5px; line-height: 1.35; }
.step-body p  { font-size: .86rem; color: var(--gray-text); line-height: 1.65; }

.step-arrow {
  text-align: center;
  color: var(--sky-blue);
  font-size: 1.3rem; opacity: .6;
  padding: 8px 0;
}
.steps-cta { text-align: center; }


/* ================================================================
   EVENTS セクション
================================================================ */
.sec-events { background: var(--white); }

.events-notice {
  display: flex; align-items: flex-start; gap: 8px;
  background: #FFF8E1; border: 1.5px solid #FFB300;
  border-radius: var(--radius-sm);
  padding: 12px 16px; margin-bottom: 28px;
  font-size: .83rem; color: #7A5800; font-weight: 600; line-height: 1.65;
}
.events-notice i { color: #FFB300; flex-shrink: 0; margin-top: 2px; }

.events-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }

.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--light-cyan);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* サムネイル */
.event-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.event-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.event-card:hover .event-thumb img { transform: scale(1.04); }

/* サムネ上のバッジ */
.event-thumb__badges {
  position: absolute;
  bottom: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 5px;
}

/* カード本文エリア */
.event-card__body {
  padding: 16px 18px 18px;
}

.etag {
  display: inline-block; font-size: .7rem; font-weight: 800;
  padding: 3px 10px; border-radius: 99px;
}
.etag-blue   { background: #E3F2FD; color: var(--deep-blue); }
.etag-orange { background: #FFF3E0; color: #E65100; }
.etag-pink   { background: #FCE4EC; color: #AD1457; }

.estamp {
  font-size: .72rem; font-weight: 800;
  color: var(--coral-pink);
  background: #fff;
  border: 2px solid var(--coral-pink);
  padding: 2px 10px;
  border-radius: 99px;
  display: inline-flex; align-items: center; gap: 4px;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
}

/* スタンプ2個：強調バッジ */
.estamp--double {
  background: linear-gradient(135deg, var(--kira-yellow) 0%, #FFB300 100%);
  border: 2px solid #F59E00;
  color: #7A4A00;
  font-size: .78rem;
  padding: 4px 12px;
  box-shadow: 0 3px 12px rgba(255,179,0,.45);
  animation: stamp-glow 2.2s ease-in-out infinite;
}
.estamp--double i {
  color: #C47000;
  font-size: .8rem;
}
.estamp--double i + i {
  margin-left: -5px; /* アイコン2つを重ねてダブル感を演出 */
}
.estamp-bonus {
  background: var(--coral-pink);
  color: #fff;
  font-size: .65rem;
  font-weight: 900;
  padding: 1px 6px;
  border-radius: 99px;
  margin-left: 3px;
  letter-spacing: .02em;
  white-space: nowrap;
}
@keyframes stamp-glow {
  0%, 100% { box-shadow: 0 3px 12px rgba(255,179,0,.45); }
  50%       { box-shadow: 0 3px 20px rgba(255,179,0,.75), 0 0 0 3px rgba(255,179,0,.2); }
}

/* スタンプ2個カード本体の強調 */
.event-card__body--double {
  border-top: 3px solid var(--kira-yellow);
  background: linear-gradient(180deg, #FFFBEC 0%, #fff 60px);
}
.event-card h3 {
  font-size: 1rem; font-weight: 900; color: var(--navy);
  margin-bottom: 6px;
}
.event-meta {
  font-size: .82rem; color: var(--gray-text);
  margin-bottom: 12px;
  display: flex; flex-wrap: wrap; gap: 4px 14px;
}
.event-meta i { color: var(--sky-blue); }
.events-more { text-align: center; }


/* ================================================================
   INCENTIVE セクション
================================================================ */
.sec-incentive { background: var(--pale-blue); }

.incentive-card {
  background: var(--white);
  border: 2.5px solid var(--sky-blue);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
/* 水色の波模様装飾 */
.incentive-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--sky-blue), var(--coral-pink), var(--kira-yellow), var(--sky-blue));
}
.incentive-icon { font-size: 3.5rem; margin-bottom: 16px; }
.incentive-main { font-size: 1.05rem; color: var(--navy); margin-bottom: 18px; line-height: 1.85; }
.incentive-main strong { color: var(--deep-blue); font-weight: 900; }

.incentive-amount {
  display: inline-block;
  background: linear-gradient(135deg, var(--deep-blue), var(--sky-blue));
  color: var(--white);
  font-size: 1rem; font-weight: 800;
  padding: 10px 28px;
  border-radius: 99px;
  margin-bottom: 18px;
}
.incentive-amount em {
  font-style: normal;
  font-size: 1.5rem; font-weight: 900;
  color: var(--kira-yellow);
}
.incentive-note { font-size: .78rem; color: var(--gray-text); line-height: 1.7; text-align: center; margin-bottom: 28px; }
.incentive-cta  { text-align: center; }

/* ---- 対象者注記 ---- */
.target-note {
  font-size: .78rem;
  color: #5A5A7A;
  background: #F0F0FF;
  border: 1px solid #C8C8EE;
  border-radius: 8px;
  padding: 8px 14px;
  margin-top: 12px;
  display: inline-block;
  text-align: center;
}
.target-note i {
  color: #7B5EA7;
  margin-right: 4px;
}
/* Final CTAセクション上の白抜きバージョン */
.target-note--light {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
  color: rgba(255,255,255,.9);
}
.target-note--light i { color: #FFD23F; }

/* ---- インセンティブ リード ---- */
.incentive-lead {
  text-align: center;
  margin-bottom: 32px;
}

/* ---- ランク別カード ---- */
.prize-ranks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.prize-rank {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 12px;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.10);
  transition: transform .2s, box-shadow .2s;
}
.prize-rank:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
}

/* ランク別カラー */
.rank-gold   { background: linear-gradient(135deg, #FFF8E1 0%, #FFF3CD 100%); border: 2.5px solid #F5C518; }
.rank-silver { background: linear-gradient(135deg, #F0F4FF 0%, #E8EEFF 100%); border: 2.5px solid #A0B4D6; }
.rank-bronze { background: linear-gradient(135deg, #FFF0EA 0%, #FFE8DF 100%); border: 2.5px solid #D4845A; }
.rank-entry  { background: linear-gradient(135deg, #F0FBFF 0%, #E6F8FF 100%); border: 2.5px solid var(--sky-blue); }

/* 左側ラインアクセント */
.rank-gold::before   { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, #F5C518, #FFD700); }
.rank-silver::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, #A0B4D6, #C8D8E8); }
.rank-bronze::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, #D4845A, #E8A882); }
.rank-entry::before  { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(180deg, var(--sky-blue), var(--coral-pink)); }

/* バッジ（スタンプアイコン） */
.rank-badge {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rank-stamp {
  font-size: 2.2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
}
.rank-gold   .rank-stamp { color: #F5C518; }
.rank-silver .rank-stamp { color: #90A8C8; }
.rank-bronze .rank-stamp { color: #D4845A; }
.rank-entry  .rank-stamp { color: var(--sky-blue); }

/* スタンプ達成数 */
.rank-stamps {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stamp-count {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--font-round);
  line-height: 1;
  color: var(--navy);
}
.rank-gold   .stamp-count { color: #B8860B; }
.rank-silver .stamp-count { color: #4A6FA5; }
.rank-bronze .stamp-count { color: #C05A2A; }
.rank-entry  .stamp-count { color: var(--deep-blue); }
.stamp-unit {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray-text);
}

/* 賞品 */
.rank-prize {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.prize-amount {
  font-size: 1.45rem;
  font-weight: 900;
  font-family: var(--font-round);
  color: var(--navy);
  line-height: 1.1;
}
.rank-gold   .prize-amount { color: #B8860B; }
.rank-silver .prize-amount { color: #4A6FA5; }
.rank-bronze .prize-amount { color: #C05A2A; }
.rank-entry  .prize-amount { color: var(--deep-blue); }
.prize-amount small { font-size: .65rem; font-weight: 700; }
.prize-type {
  font-size: .68rem;
  font-weight: 700;
  color: var(--gray-text);
  background: rgba(255,255,255,.7);
  border-radius: 4px;
  padding: 1px 5px;
}

/* 当選者数 */
.rank-winners {
  grid-column: 2 / 4;
  grid-row: 2;
  font-size: .78rem;
  color: var(--gray-text);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.rank-winners i { color: var(--sky-blue); font-size: .8rem; }
.rank-winners strong { color: var(--navy); font-weight: 800; }


/* ================================================================
   NOTICE セクション
================================================================ */
.sec-notice { background: var(--white); }

.notice-list { display: flex; flex-direction: column; gap: 12px; }
.notice-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; color: var(--gray-text); line-height: 1.7;
  padding: 14px 16px;
  background: var(--pale-blue);
  border-radius: var(--radius-sm);
}
.notice-list li i           { flex-shrink: 0; margin-top: 3px; font-size: .9rem; }
.notice-list li .fa-exclamation-triangle { color: var(--coral-pink); }
.notice-list li .fa-info-circle          { color: var(--sky-blue); }
.notice-list li strong { color: var(--navy); }


/* ================================================================
   FAQ セクション
================================================================ */
.sec-faq { background: var(--pale-blue); }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--light-cyan);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px;
  font-size: .93rem; font-weight: 700; color: var(--navy);
  cursor: pointer; user-select: none;
  transition: background var(--ease);
}
.faq-q:hover { background: var(--pale-blue); }

.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-blue), var(--clear-blue));
  color: var(--white);
  font-size: .78rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.faq-icon-a {
  background: linear-gradient(135deg, var(--kira-yellow), var(--sun-orange));
  color: var(--navy);
}
.faq-q span:not(.faq-icon) { flex: 1; }
.faq-chev { flex-shrink: 0; color: var(--sky-blue); transition: transform var(--ease); font-size: .85rem; }
.faq-item.open .faq-chev { transform: rotate(180deg); }

.faq-a {
  display: none;
  gap: 12px;
  padding: 0 18px 16px;
}
.faq-item.open .faq-a { display: flex; }
.faq-a p  { font-size: .86rem; color: var(--gray-text); line-height: 1.75; flex: 1; }
.faq-a strong { color: var(--navy); }


/* ================================================================
   公式SNS セクション
================================================================ */
.sec-sns { background: var(--white); }

.sns-lead {
  font-size: .88rem;
  color: var(--gray-text);
  margin-top: 10px;
  line-height: 1.75;
}

.sns-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- 共通ボタン ---- */
.sns-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 110px;
  padding: 20px 12px 18px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
  position: relative;
  overflow: hidden;
}
.sns-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--ease);
}
.sns-btn:hover { transform: translateY(-4px); }
.sns-btn:hover::after { background: rgba(255,255,255,.12); }
.sns-btn:active { transform: translateY(-1px); }

/* アイコン */
.sns-btn__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  font-size: 2rem;
  color: #fff;
  flex-shrink: 0;
  transition: transform var(--ease);
}
.sns-btn__icon svg {
  width: 28px; height: 28px;
  display: block;
}
.sns-btn:hover .sns-btn__icon { transform: scale(1.1); }

/* テキスト */
.sns-btn__name {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .01em;
  line-height: 1;
}
.sns-btn__label {
  font-size: .68rem;
  color: rgba(255,255,255,.8);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* ---- LINE ---- */
.sns-btn--line {
  background: #fff;
  border: 2.5px solid #e0e0e0;
  box-shadow: 0 6px 22px rgba(0,195,0,.18);
}
.sns-btn--line:hover { box-shadow: 0 10px 30px rgba(0,195,0,.32); border-color: #00C300; }
.sns-btn--line .sns-btn__name  { color: #00B900; }
.sns-btn--line .sns-btn__label { color: rgba(0,0,0,.45); }

/* LINEアイコン画像 */
.sns-btn__icon--img {
  background: transparent;
  width: auto; height: auto;
  border-radius: 0;
  padding: 0;
}
.sns-line-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 14px;
  display: block;
}

/* ---- Instagram ---- */
.sns-btn--insta {
  background: linear-gradient(145deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 6px 22px rgba(220,39,67,.38);
}
.sns-btn--insta:hover { box-shadow: 0 10px 30px rgba(220,39,67,.50); }
.sns-btn--insta .sns-btn__icon { font-size: 2.1rem; }

/* ---- X ---- */
.sns-btn--x {
  background: linear-gradient(145deg, #1a1a1a, #333);
  box-shadow: 0 6px 22px rgba(0,0,0,.32);
}
.sns-btn--x:hover { box-shadow: 0 10px 30px rgba(0,0,0,.44); }
.sns-btn--x .sns-btn__icon svg { width: 26px; height: 26px; }


/* ================================================================
   お問い合わせ セクション
================================================================ */
.sec-contact { background: var(--pale-blue); }

.contact-lead {
  font-size: .88rem;
  color: var(--gray-text);
  margin-top: 10px;
  line-height: 1.75;
}

/* ---- カード全体 ---- */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid #C8EFC8;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ---- LINEバナー ---- */
.contact-line-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #E8FAE8 0%, #D4F5D4 100%);
  border: 1.5px solid #A8E6A8;
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.contact-line-icon {
  flex-shrink: 0;
}
.contact-line-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.contact-line-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-line-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.contact-line-title strong {
  color: #00A800;
}
.contact-line-desc {
  font-size: .76rem;
  color: var(--gray-text);
  font-weight: 600;
}

.contact-line-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #00B900;
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(0,185,0,.30);
}

/* ---- 説明テキスト ---- */
.contact-desc {
  font-size: .88rem;
  color: var(--gray-text);
  line-height: 1.8;
  text-align: center;
}
.contact-desc strong { color: var(--navy); font-weight: 800; }

/* ---- ステップリスト ---- */
.contact-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.contact-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pale-blue);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.contact-step__num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: linear-gradient(135deg, #00C300, #00A800);
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,185,0,.28);
}
.contact-step__text {
  font-size: .88rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}
.contact-step__text strong { color: #00A800; font-weight: 900; }

/* ---- CTAエリア ---- */
.contact-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* LINEボタン */
.contact-btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  background: linear-gradient(135deg, #00C300, #00A800);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  padding: 16px 24px;
  border-radius: 99px;
  box-shadow: 0 6px 22px rgba(0,195,0,.40);
  transition: transform var(--ease), box-shadow var(--ease);
  text-decoration: none;
}
.contact-btn-line:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,195,0,.52);
}
.contact-btn-line:active { transform: translateY(0); }

.contact-btn-line-icon {
  width: 28px; height: 28px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

/* 注記 */
.contact-note {
  font-size: .74rem;
  color: var(--gray-text);
  text-align: center;
  line-height: 1.6;
}
.contact-note i { color: var(--sky-blue); margin-right: 2px; }


/* ================================================================
   FINAL CTA セクション
================================================================ */
.sec-final-cta {
  position: relative;
  background: linear-gradient(160deg,
    var(--navy) 0%,
    var(--deep-blue) 30%,
    var(--youth-blue) 60%,
    var(--sky-blue) 100%
  );
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

/* 波形上部 */
.wave-top-blue { line-height: 0; }
.wave-top-blue svg { display: block; width: 100%; height: 50px; }

/* 装飾 */
.fc-deco {
  position: absolute; font-size: 4rem; opacity: .12;
  color: var(--white);
  pointer-events: none; user-select: none;
  animation: fc-float 9s ease-in-out infinite;
}
@keyframes fc-float { 0%,100%{transform:translateY(0) rotate(0);} 50%{transform:translateY(-16px) rotate(10deg);} }
.fc-deco.d1 { top:10%; left:4%;   animation-delay:0s;   font-size:3rem; }
.fc-deco.d2 { top:6%;  right:8%;  animation-delay:2s;   font-size:5rem; }
.fc-deco.d3 { bottom:15%; left:6%;  animation-delay:1s; font-size:2.5rem; }
.fc-deco.d4 { bottom:8%;  right:4%; animation-delay:3s; font-size:3.5rem; }

.fc-title {
  position: relative; z-index: 1;
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.2; margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.fc-sub {
  position: relative; z-index: 1;
  font-size: .98rem; color: rgba(255,255,255,.85);
  margin-bottom: 36px;
}
.fc-btns {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 14px; margin-bottom: 24px;
}
.fc-note {
  position: relative; z-index: 1;
  font-size: .78rem; color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.fc-note i { color: var(--kira-yellow); }


/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--navy);
  padding: 36px 0 24px;
}
.site-footer .container {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.footer-logo {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 1rem; font-weight: 900; color: var(--white);
}
.footer-logo em { font-style: normal; color: var(--kira-yellow); }
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
}

.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; }
.footer-nav a { font-size: .8rem; color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer-nav a:hover { color: var(--kira-yellow); }

.footer-copy { font-size: .75rem; color: rgba(255,255,255,.35); text-align: center; line-height: 1.85; }


/* ================================================================
   スクロールトップボタン
================================================================ */
.scroll-top {
  position: fixed; bottom: 22px; right: 18px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--deep-blue); color: var(--white);
  border: none; cursor: pointer; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), background var(--ease);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: var(--sky-blue); }


/* ================================================================
   確認ポップアップ（セーブポイント17デザイン）
================================================================ */
.modal-overlay {
  display: none; /* JSで style.display='flex' に切り替え */
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(6, 43, 95, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  -webkit-tap-highlight-color: transparent;
}
/* is-open クラスは念のため残す（JS両対応） */
.modal-overlay.is-open {
  display: flex;
}

.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 24px;
  max-width: 320px;
  width: 100%;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0,40,100,.32);
  animation: modal-in .2s ease-out both;
}
@keyframes modal-in {
  from { transform: scale(.9) translateY(20px); opacity: 0; }
  to   { transform: scale(1)  translateY(0);    opacity: 1; }
}

/* ✅ ラベル */
.modal-check-label {
  font-size: .82rem;
  font-weight: 800;
  color: #2a9d2a;
  margin-bottom: 14px;
  letter-spacing: .02em;
}

/* 本文タイトル */
.modal-title {
  font-size: .97rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 10px;
  white-space: pre-line;
}

/* 🚫 説明 */
.modal-desc {
  font-size: .88rem;
  font-weight: 700;
  color: #c0392b;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* ボタン群：縦並び */
.modal-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 共通 */
.modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 20px;
  border-radius: 12px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .15s, transform .15s;
}
.modal-btn:active { opacity: .8; transform: scale(.98); }

/* 了承する（<a>タグ） */
.modal-btn--ok {
  background: linear-gradient(135deg, var(--coral-pink), var(--fresh-pink));
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,79,123,.38);
  letter-spacing: .02em;
}
.modal-btn--ok:hover { opacity: .92; }

/* 閉じる */
.modal-btn--cancel {
  background: #f0f2f5;
  color: var(--gray-text);
  font-size: .88rem;
}
.modal-btn--cancel:hover { background: #e4e6ea; }


/* ================================================================
   リビール
================================================================ */
/* reveal アニメーション廃止済み */


/* ================================================================
   レスポンシブ
================================================================ */
@media (min-width: 760px) {
  :root { --sec-py: 80px; }
  .container { max-width: 700px; }
  .hero-body { padding: 32px 40px 16px; }
}

/* スマホ：ヒーロー縦積み・コンパクト化 */
@media (max-width: 620px) {
  .hero {
    min-height: 100svh;
    min-height: 100vh;
    padding-bottom: 16px;
    justify-content: flex-start;
  }
  .hero-body {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px 8px;
    gap: 0;
  }
  .hero-plate { width: 100%; }

  /* リボン */
  .hero-ribbon {
    margin-left: -18px;
    border-radius: 0 99px 99px 0;
    margin-bottom: 8px;
    font-size: .72rem;
    padding: 5px 16px 5px 14px;
  }

  /* ロゴ：中央配置・少し大きく */
  .hero-logo-block {
    margin-bottom: 6px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hero-logo-img { max-width: 280px; }

  /* キャッチ：120%拡大 */
  .catch-sm  { font-size: .98rem; }   /* .82rem × 1.2 ≈ .98rem */
  .catch-lg  { font-size: 1.62rem; }  /* 1.35rem × 1.2 ≈ 1.62rem */
  .hero-sub  { font-size: .96rem; line-height: 1.65; margin-bottom: 8px; } /* .8rem × 1.2 = .96rem */

  /* バッジ */
  .hero-badges { gap: 5px; margin-bottom: 10px; }
  .hero-badge  { font-size: .72rem; padding: 5px 10px; }

  /* 右エリア：スタンプ画像+ボタンを左右並列 */
  .hero-right {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .hero-stamp-widget { flex: 0 0 auto; }
  .hero-stamp-img { max-width: 130px; }

  /* CTAボタン */
  .btn-cta-main { font-size: .88rem; padding: 13px 16px; }
  .btn-cta-sub  { font-size: .75rem; padding: 10px 14px; }
  .btn-cta-main, .btn-cta-sub { max-width: 220px; width: 100%; }

  /* 背景フェード */
  .hero-fade {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,.6) 0%,
      rgba(255,255,255,.35) 55%,
      rgba(255,255,255,.05) 100%
    );
  }
}
