@charset "utf-8";

/* ============================================================
   DM→LP 汎用部品CSS（templates/base.css）
   新案件では: これをコピー → 変数を案件の色に差し替え → 案件固有のセクションCSSを追記
   実績: 感激の10日間 v14（output/2601_感激の10日間/v3_pro/）
   ============================================================ */

:root {
  /* ▼案件ごとに差し替える色（例は赤系キャンペーン） */
  --c-bg: #2b0304;          /* ページ最深部の背景 */
  --c-accent: #c11830;      /* メインアクセント */
  --c-gold-l: #ffe9a0;      /* 金グラデ明 */
  --c-gold-m: #f5c948;      /* 金グラデ中 */
  --c-gold-d: #d99b16;      /* 金グラデ暗 */
  --c-gold-line: #e6b422;   /* 金縁・ライン */
}

/* ---------- リセット・基本 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
body {
  background: var(--c-bg);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #fff;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

/* ---------- セクション骨格 ----------
   注意: overflow:hidden はバッジ半掛け(.badge)を切るので、必要なセクションだけに付ける */
.sec { position: relative; }
.sec .inn { position: relative; max-width: 1000px; margin: 0 auto; }

/* ---------- PC/スマホ出し分け（ブレークポイント768px） ---------- */
.smt_only { display: none; }
.pc_only { display: block; }
@media (max-width: 768px) {
  .smt_only { display: block; }
  .pc_only { display: none; }
}

/* ---------- 登場アニメーション（JSのIntersectionObserverとセット） ---------- */
.anim { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.anim.in-view { opacity: 1; transform: translateY(0); }
.anim.d1 { transition-delay: .15s; }
.anim.d2 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .anim { opacity: 1; transform: none; transition: none; } }

/* ---------- キラキラ（scripts/make_sparkle.py で生成した2枚を2層重ね） ---------- */
.sparkles {
  position: absolute;
  inset: 0;
  background-image: url("../images/sparkle_a.png");
  background-size: 900px 900px;
  pointer-events: none;
  z-index: 3;
  animation: twinkle 2s ease-in-out infinite;
}
.sparkles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/sparkle_b.png");
  background-size: 900px 900px;
  background-position: 300px 400px;
  animation: twinkle 2.9s ease-in-out .9s infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: .45; }
  50% { opacity: 1; }
  70% { opacity: .25; }
}
@media (prefers-reduced-motion: reduce) {
  .sparkles, .sparkles::after { animation: none; opacity: .95; }
}

/* ---------- シャインが走るグラデボタン ---------- */
.btn-img {
  display: inline-block;
  position: relative;
  overflow: hidden;
  min-width: 300px;
  padding: 16px 34px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, .9);
  box-shadow: 0 5px 12px rgba(0,0,0,.35), inset 0 2px 6px rgba(255,255,255,.5), 0 0 0 3px var(--c-gold-line);
  cursor: pointer;
  transition: transform .15s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .35);
}
.btn-img::before {
  content: "";
  position: absolute;
  top: -20%; left: -60%;
  width: 34%; height: 140%;
  background: linear-gradient(100deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.85) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: shine 2.8s ease-in-out infinite;
}
@keyframes shine {
  0%, 60% { left: -60%; }
  100% { left: 130%; }
}
.btn-img:hover { transform: translateY(-2px); }
.btn-img span { font-size: .8em; }
.btn-green { background: linear-gradient(180deg, #7ed957 0%, #2e9e44 55%, #187a2f 100%); }
.btn-blue  { background: linear-gradient(180deg, #7adcf5 0%, #1f8fd0 55%, #0d6bb0 100%); }
.btn-red   { background: linear-gradient(180deg, #ff9a9a 0%, #e8384f 55%, #c11830 100%); }
.btn-row { text-align: center; padding: 8px 16px 30px; position: relative; z-index: 6; }
@media (max-width: 768px) {
  .btn-img { min-width: 0; width: 88%; font-size: 16px; padding: 14px 20px; }
}

/* ---------- 金の斜めリボン見出し（金キラ素材があれば background を画像に差し替え） ---------- */
.ribbon {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 94%;
  padding: 16px 60px;
  font-size: clamp(19px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: .04em;
  color: #4a2000;
  background: linear-gradient(100deg, var(--c-gold-m), var(--c-gold-l) 40%, var(--c-gold-d));
  border-top: 3px solid #fff2c9;
  border-bottom: 3px solid #b8860b;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .4);
  text-shadow: 0 1px 0 #fff, 0 2px 6px rgba(255, 255, 255, .8);
}
.ribbon-tl { margin: 0 0 30px -10px; transform: rotate(-2.5deg) skewX(-6deg); border-radius: 0 10px 10px 0; }
.ribbon-tl > * { transform: skewX(6deg); }
.ribbon-br { margin: 8px -10px 34px auto; transform: rotate(-2.5deg) skewX(-6deg); border-radius: 10px 0 0 10px; }
.ribbon-br > * { transform: skewX(6deg); }
@media (max-width: 768px) { .ribbon { font-size: 15px; padding: 10px 22px; } }

/* ---------- 章バッジ（セクション境界に半分乗せる・プロの定石） ----------
   位置はスクショ実測→補間で追い込む。中の img には必ず width:100% を付ける（枠内左寄せ事故防止） */
.badge {
  width: 380px;
  margin: 0 auto -62px;
  position: relative;
  top: -80px;
  z-index: 30;
  text-align: center;
  filter: drop-shadow(4px 6px 8px rgba(0, 0, 0, .55));
}
.badge img { width: 100%; }
@media (max-width: 768px) { .badge { width: 240px; } }

/* ---------- セクションを分かつライン（境界の白+金） ---------- */
.sec-line::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: linear-gradient(180deg, #fff 0 3px, var(--c-gold-line) 3px 6px, rgba(0,0,0,.25) 6px 10px);
  z-index: 20;
}

/* ---------- 白ぼかし円（ブロックをカード枠なしで浮かせる） ---------- */
.blk {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 34px 22px;
  text-align: center;
  background: radial-gradient(closest-side, rgba(255,255,255,.95) 55%, rgba(255,255,255,.55) 75%, rgba(255,255,255,0) 100%);
  border-radius: 50%;
}
@media (max-width: 768px) { .blk { border-radius: 26px; padding: 26px 18px; } }

/* ---------- 誘導フキダシ ---------- */
.fukidashi {
  position: relative;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}
.fukidashi::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -9px;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-bottom: none;
}
.fk-green { background: #2e9e44; } .fk-green::after { border-top-color: #2e9e44; } .fk-green b { color: #ffe95e; }
.fk-blue  { background: #1f8fd0; } .fk-blue::after  { border-top-color: #1f8fd0; } .fk-blue b  { color: #ffe95e; }

/* ---------- クーポン等のモーダル ---------- */
.modal { display: none; position: fixed; inset: 0; z-index: 1000; }
.modal.open { display: block; }
.modal__bg { position: absolute; inset: 0; background: rgba(0, 0, 0, .75); }
.modal__content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(86vw, 340px);
  max-height: 86vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 14px;
}
.modal__content img { width: 100%; }
.modal__note { font-size: 12px; color: #333; text-align: center; padding-top: 10px; }
.modal__close {
  position: absolute;
  top: 6px; right: 8px;
  width: 34px; height: 34px;
  font-size: 20px;
  border: none;
  border-radius: 50%;
  background: var(--c-bg);
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

/* ---------- ページトップへ ---------- */
.totop {
  position: fixed;
  right: 16px; bottom: 16px;
  width: 52px; height: 52px;
  border: 2px solid #fff2c9;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--c-gold-l), var(--c-gold-d));
  color: #5c1500;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 900;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .4);
}
.totop.active { opacity: 1; pointer-events: auto; }

/* ---------- 法定注記 ---------- */
.note { font-size: 11px; line-height: 1.7; color: #ffe3e3; padding: 14px 4% 26px; position: relative; z-index: 5; }

/* ---------- キャラ浮遊 ---------- */
@keyframes fuwa {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}

/* ---------- 走る車（道路帯 + road_cars.png） ---------- */
.road {
  height: 56px;
  position: relative;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, #fff 0 46px, rgba(255,255,255,0) 46px 92px) center / 100% 6px no-repeat,
    #565d63;
}
.road::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 200%; height: 60px;
  margin-top: -30px;
  background: url("../images/road_cars.png") 0 center / 900px 60px repeat-x;
  animation: drive 14s linear infinite;
}
@keyframes drive { from { transform: translateX(0); } to { transform: translateX(-900px); } }
@media (prefers-reduced-motion: reduce) { .road::after { animation: none; } }

/* ============================================================
   案件固有: 大決算市（祭り・縁起物トーン / 赤放射光+金）
   ============================================================ */
:root {
  --c-bg: #6e0808;
  --c-accent: #d5001e;
  --c-gold-line: #e6b422;
}

/* ---- A ヒーロー: 赤放射光(ア14) ---- */
.hero {
  background: url("../images/アセット 14.png") center top / cover no-repeat, #c30012;
}
.hero .inn { padding: 4% 0 5%; }
.hero .title { width: 62%; max-width: 740px; margin: 0 auto; position: relative; z-index: 6; }
.hero .title img { width: 100%; }

/* ---- B ご来店のお楽しみ: 白銀の波・1カラム ---- */
.fun {
  background: url("../images/wave_tile.png") center top / 100% auto repeat-y;
  padding: 34px 0 38px;
}
.fun-stack { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.fun-item { width: 80%; max-width: 740px; position: relative; z-index: 5; }
.fun-item img { width: 100%; }
.push-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 88%;
  max-width: 800px;
  position: relative;
  z-index: 5;
}
.push-card { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.push-row { display: flex; align-items: center; justify-content: center; gap: 18px; width: 100%; }
.push-visual { height: clamp(120px, 15vw, 170px); width: auto; max-width: 60%; object-fit: contain; }
.push-label {
  display: inline-block;
  background: #ffe95e;
  color: #333;
  font-weight: 900;
  font-size: clamp(14px, 1.8vw, 19px);
  line-height: 1.4;
  padding: 8px 24px;
  border-radius: 999px;
  position: relative;
}
.push-label::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -8px;
  transform: translateX(-50%);
  border: 9px solid transparent;
  border-top-color: #ffe95e;
  border-bottom: none;
}
.push-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(96px, 11vw, 130px);
  height: clamp(96px, 11vw, 130px);
  border-radius: 50%;
  border: none;
  font-family: inherit;
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 900;
  letter-spacing: .04em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 0 rgba(0, 0, 0, .25), 0 12px 22px rgba(0, 0, 0, .3), inset 0 4px 10px rgba(255, 255, 255, .5);
  transition: transform .12s ease, box-shadow .12s ease;
}
.push-btn:active { transform: translateY(6px); box-shadow: 0 2px 0 rgba(0,0,0,.25), 0 4px 8px rgba(0,0,0,.3), inset 0 4px 10px rgba(255,255,255,.5); }
.push-blue  { background: radial-gradient(circle at 35% 30%, #6fc4ff 0%, #1976e0 55%, #0d54ad 100%); }
.push-green { background: radial-gradient(circle at 35% 30%, #7fe08a 0%, #17a838 55%, #0d7a26 100%); }
.push-note { font-size: clamp(12px, 1.4vw, 14px); line-height: 1.7; color: #444; }
.push-note b { color: #c30012; }

/* ---- C ご成約特典: 黒金ボケ(ア12) ---- */
.tokuten {
  background: url("../images/アセット 12.png") center / cover no-repeat, #120b02;
  padding: 0 0 42px;
}
.tokuten .obi { width: 60%; max-width: 700px; margin: 0 auto 26px; position: relative; top: -18px; z-index: 6; }
.tokuten .obi img { width: 100%; }
.tokuten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  width: 92%;
  margin: 0 auto;
}
.tokuten-grid img { width: 100%; }

/* ---- 章バッジ+CSS見出し(C分類) ---- */
.badge { width: 200px; margin: 0 auto -8px; top: -28px; }
.sec-head {
  text-align: center;
  font-size: clamp(17px, 2.4vw, 27px);
  font-weight: 900;
  color: #fff;
  line-height: 1.6;
  padding: 0 4% 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
  position: relative;
  z-index: 5;
}
.sec-head em { font-style: normal; color: #ffe95e; }

/* ---- D 新車: 金キラカーテン(ア16) ---- */
.shinsha {
  background: url("../images/アセット 16.png") center top / cover no-repeat, #b98a1f;
  padding: 0 0 40px;
}
.shinsha .sec-head { text-shadow: 0 2px 8px rgba(90, 50, 0, .8); }
.roomy { width: 96%; max-width: 1000px; margin: 0 auto; position: relative; z-index: 5; }
.roomy img { width: 100%; }

/* ---- E 中古車: 赤放射光(ア18) ---- */
.chuko {
  background: repeating-linear-gradient(90deg, #ffd94d 0 56px, #ffce1f 56px 112px);
  padding: 0 0 50px;
}
.chuko .sec-head { color: #222; text-shadow: none; }
.chuko .sec-head em { color: #0d7a26; }
.tokusen { position: relative; width: 84%; max-width: 860px; margin: 0 auto 30px; z-index: 5; }
.tokusen img { width: 100%; }
.concierge {
  background: #fff;
  border-radius: 22px;
  padding: 14px 14px 20px;
  box-shadow: 0 8px 20px rgba(120, 80, 0, .18);
  width: 62%;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.concierge img { width: 100%; border-radius: 12px; }
.btn-pink { background: linear-gradient(180deg, #ff8fb0 0%, #e84a7a 55%, #c2185b 100%); }

/* ---- F 買取・特典: 金放射光(ア24) ---- */
.kaitori {
  background: url("../images/アセット 24.png") center / cover no-repeat, #f5c948;
  padding: 46px 0 46px;
}
.kaitori .sparkles { opacity: .6; }
.kaitori-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 26px;
  width: 92%;
  margin: 0 auto;
  align-items: center;
}
.k-item { position: relative; z-index: 5; }
.k-item img { width: 100%; }
.btn-gold2 {
  background: linear-gradient(180deg, #ffe9a0 0%, #f5c948 50%, #d99b16 100%);
  color: #5c1500;
  text-shadow: none;
}

/* ---- J 締め ---- */
.closing {
  background: url("../images/アセット 14.png") center top / cover no-repeat, #c30012;
  padding: 0 0 30px;
}
.closing .inn { padding: 4.5% 0 2%; }
.closing-copy {
  text-align: center;
  font-size: clamp(19px, 3.2vw, 32px);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
  line-height: 1.7;
  padding-bottom: 20px;
  position: relative;
  z-index: 6;
}
.c-title { width: 44%; max-width: 520px; margin: 0 auto; position: relative; z-index: 6; }
.c-title img { width: 100%; }
.closing-tel {
  text-align: center;
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  color: #fff;
  padding-top: 24px;
  position: relative;
  z-index: 6;
}
.closing-tel a { color: #ffe95e; text-decoration: none; font-size: 1.3em; }
.closing-tel small { font-weight: 400; font-size: .7em; opacity: .85; }

/* ---- スマホ ---- */
@media (max-width: 768px) {
  .hero .title { width: 92%; }
  .fun-grid, .tokuten-grid, .kaitori-grid { grid-template-columns: 1fr; }
  .fun-item, .line-blk { max-width: 480px; }
  .tokuten .obi { width: 92%; }
  .badge { width: 140px; top: -20px; }
  .tokusen { width: 96%; }
  .concierge { width: 88%; max-width: 400px; }
  .c-title { width: 70%; }
}


/* ---- 特典ナビ（参考: 名古屋トヨペット決算LPの企画目次） ---- */
html { scroll-behavior: smooth; }
.camp-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 94%;
  margin: 3% auto 0;
  position: relative;
  z-index: 6;
}
.camp-nav a {
  flex: 1 1 150px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 10px 9px;
  text-decoration: none;
  text-align: center;
  font-weight: 900;
  font-size: clamp(14px, 1.6vw, 18px);
  color: #7a1500;
  background: linear-gradient(180deg, #fff8e0 0%, #ffe9a0 45%, #f0be3e 100%);
  border: 2px solid #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .35), inset 0 1px 3px rgba(255,255,255,.8);
  transition: transform .15s ease;
}
.camp-nav a:hover { transform: translateY(-3px); }
.camp-nav a span { font-size: .62em; font-weight: 700; color: #a34700; }
.camp-nav a i { font-style: normal; font-size: .6em; color: #c30012; }
@media (max-width: 768px) {
  .camp-nav { gap: 8px; }
  .camp-nav a { flex: 1 1 40%; max-width: none; padding: 9px 6px 7px; }
}


/* ---- マーキー（流れる開催情報帯）: 余白型LP調査から移植した動きの技 ---- */
.marquee {
  overflow: hidden;
  background: #1a1a1a;
  border-top: 3px solid var(--c-gold-line);
  border-bottom: 3px solid var(--c-gold-line);
  padding: 10px 0;
  position: relative;
  z-index: 8;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  font-weight: 900;
  font-size: clamp(15px, 1.8vw, 21px);
  color: #ffe95e;
  letter-spacing: .06em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* QR跡のボタン: 元の白箱に「成り代わる」デザイン（ブロックの純正部品に見せる） */
.btn-ov {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0;
  margin: 0;
  line-height: 1.4;
  text-align: center;
  border-radius: 18px;
  border: none;
  box-shadow: inset 0 2px 0 rgba(255,255,255,.45), inset 0 -6px 12px rgba(0,0,0,.18), 0 3px 6px rgba(0,0,0,.3);
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
  font-weight: 900;
}
.btn-ov::before { display: none; }  /* シャインも封印（同化優先） */

/* QR置換の最終形: 白箱はデザインとして残し、QRコード部分だけを
   「箱と同じ白・枠なし・影なしの四角」で覆ってボタン化（ユーザー設計） */
.btn-qr {
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: none;
  text-shadow: none;
  color: #d5001e;
  font-weight: 900;
}
.btn-qr:hover { background: #ffeef0; filter: none; }
/* ア1 LINE 箱(102,193)-(290,382)（緑塗り+緑ボタン方式・承認済みのまま） */
.btn-line-ov {
  left: 19.8%; top: 31.0%; width: 36.6%; height: 30.3%;
  font-size: clamp(15px, 2vw, 22px);
  background: linear-gradient(180deg, #2ed168 0%, #06c755 55%, #05a648 100%);
  border: 3px solid #fff;
}
/* ア17 特選中古車 QRモジュール(585,230)-(715,360)+余白 */
.btn-chirashi-ov {
  left: 76.7%; top: 58.6%; width: 19.7%; height: 39.5%;
  font-size: clamp(11px, 1.4vw, 16px);
}
/* ア25 買取 QRモジュール(595,85)-(720,200)+余白 */
.btn-kaitori-ov {
  left: 78.4%; top: 31.2%; width: 18.4%; height: 59.8%;
  font-size: clamp(11px, 1.3vw, 15px);
}
/* ア26 特設 QRモジュール(213,122)-(340,248)+余白 */
.btn-tokusetsu-ov {
  left: 50.5%; top: 42.5%; width: 33.3%; height: 49.5%;
  font-size: clamp(12px, 1.5vw, 17px);
}


/* オーバーレイボタンはホバーで動かさない（背後が見える事故防止） */
.btn-ov:hover { transform: none; filter: brightness(1.1); }


/* ---- v1改: 紙吹雪（ヒーローのみ・降るアニメ） ---- */
.hero { overflow: hidden; }
.confetti {
  position: absolute;
  inset: -900px 0 0 0;
  background-image: url("../images/confetti_tile.png");
  background-size: 900px 900px;
  pointer-events: none;
  z-index: 3;
  animation: fall 30s linear infinite;
}
.confetti.c2 { background-position: 450px 300px; opacity: .6; animation-duration: 44s; }
@keyframes fall { from { transform: translateY(0); } to { transform: translateY(900px); } }
@media (prefers-reduced-motion: reduce) { .confetti { animation: none; } }

/* ---- v1改: 金帯が区切りラインに隠れる問題の修正 ---- */
.tokuten .obi { z-index: 30; }


/* v3改: 買取センター配置(特設ア26は実LPに無いため削除) */
.k-center { width: 76%; max-width: 800px; margin: 0 auto; }
.k-center img { width: 100%; }


/* WEBチラシボタン: 黄色地に直載せ用の赤ボタン(QRモジュールを覆う) */
.btn-chirashi-red {
  background: linear-gradient(180deg, #ff5a5a 0%, #e50012 55%, #b70010 100%);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(120, 60, 0, .3);
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
  font-weight: 900;
}
.btn-chirashi-red::before { display: none; }
.btn-chirashi-red:hover { transform: none; filter: brightness(1.1); }
