/* ==========================================================================
   妨害マイクラ — サイト共通スタイル
   妨害マイクラ Design System 準拠（ネオフラット）
   フラット＆ポップ：ブラーなし・グラデーションなし・ハードオフセットシャドウ
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&family=DotGothic16&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* ---- Ink & Paper ---- */
  --ink: #17170F;
  --ink-2: #3B3B32;
  --ink-3: #6E6E62;
  --ink-4: #A7A79A;
  --paper: #FBF6EA;
  --paper-2: #F1E9D6;
  --white: #FFFFFF;

  /* ---- Brand hues ---- */
  --green: #2FCF5B;
  --green-ink: #0E7A31;
  --pink: #FF5C97;
  --pink-ink: #C21E58;
  --yellow: #FFD23E;
  --yellow-ink: #A97A00;
  --blue: #3D86FF;
  --blue-ink: #1657C6;
  --purple: #9A6BFF;
  --red: #FF4635;
  --red-ink: #C41E12;

  /* ---- Soft tints ---- */
  --green-soft: #DBF6E2;
  --pink-soft: #FFE1EC;
  --yellow-soft: #FFF3CC;
  --blue-soft: #DEEAFF;

  /* ---- Type ---- */
  --font-display: "Zen Kaku Gothic New", system-ui, sans-serif;
  --font-body: "Zen Kaku Gothic New", system-ui, sans-serif;
  --font-pixel: "DotGothic16", "Zen Kaku Gothic New", monospace;
  --font-mono: "Space Mono", ui-monospace, monospace;

  /* ---- Borders / radii / shadows ---- */
  --bw: 2px;
  --bw-thick: 3px;
  --border: var(--bw) solid var(--ink);
  --border-thick: var(--bw-thick) solid var(--ink);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-pill: 999px;
  --shadow-xs: 2px 2px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-md: 5px 5px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
  --shadow-pop-pink: 5px 5px 0 var(--pink);
  --shadow-pop-blue: 5px 5px 0 var(--blue);

  /* ---- Motion ---- */
  --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 90ms;
  --dur: 150ms;
  --press-shift: 3px;

  /* ---- Layout ---- */
  --gutter: 32px;
  --section-y: 96px;
  --container: 1200px;
  --container-narrow: 760px;
}

/* ==== Reset & base ==== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-ink); }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
p { margin: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ==== Layout ==== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); width: 100%; }
.section { padding: var(--section-y) 0; }

/* ==== Kicker（ピクセルラベル） ==== */
.kicker {
  display: inline-block;
  font-family: var(--font-pixel);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: var(--border);
  border-radius: var(--r-sm);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}
.kicker--ink { background: var(--ink); color: var(--paper); }
.kicker--yellow { background: var(--yellow); color: var(--ink); }

/* ==== Buttons ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  line-height: 1;
  color: var(--ink);
  background: var(--green);
  border: var(--border-thick);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 16px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--dur) var(--ease-pop), box-shadow var(--dur) var(--ease-pop), background var(--dur) var(--ease-out);
}
.btn:hover {
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.btn:active {
  transform: translate(var(--press-shift), var(--press-shift));
  box-shadow: 0 0 0 var(--ink);
}
.btn--accent { background: var(--pink); color: var(--white); }
.btn--accent:hover { color: var(--white); }
.btn--ghost { background: var(--white); }
.btn--ghost:hover { background: var(--paper-2); }
.btn--lg { font-size: 19px; padding: 18px 36px; }
.btn--sm { font-size: 15px; padding: 12px 20px; box-shadow: var(--shadow-sm); border: var(--border); }
.btn--sm:hover { box-shadow: 5px 5px 0 var(--ink); }
.btn .btn-icon { width: 1.2em; height: 1.2em; flex: none; }

/* ==== Badges & tags ==== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-pixel);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: var(--border);
  border-radius: var(--r-pill);
  background: var(--yellow);
  color: var(--ink);
}
.badge--pink { background: var(--pink); color: var(--white); }
.badge--blue { background: var(--blue); color: var(--white); }
.badge--green { background: var(--green); }
.badge--ink { background: var(--ink); color: var(--paper); }
.badge--red { background: var(--red); color: var(--white); }

/* ==== Cards ==== */
.card {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.card--hover {
  transition: transform var(--dur) var(--ease-pop), box-shadow var(--dur) var(--ease-pop);
}
.card--hover:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.card__accent { height: 8px; border-bottom: var(--border); }
.card__body { padding: 24px; }

/* ==== Sticker（回転ポップ要素） ==== */
.sticker {
  display: inline-block;
  border: var(--border-thick);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  font-family: var(--font-display);
  font-weight: 900;
}

/* ==== Header ==== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: var(--border);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--ink); }
.brand__mark {
  width: 34px;
  height: 34px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border: var(--border);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
}
.brand__mark svg { width: 20px; height: 20px; }
.site-nav { display: flex; gap: 4px; margin-left: auto; }
.site-nav a {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: background var(--dur) var(--ease-out);
}
.site-nav a:hover { background: var(--paper-2); border-color: var(--ink); }
.header-cta { flex: none; }

/* ==== Hero ==== */
.hero {
  background: var(--green);
  border-bottom: var(--border);
  overflow: hidden;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 84px var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero__copy { display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.hero__title {
  font-size: clamp(44px, 6.5vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.hero__title .stroke {
  color: var(--white);
  text-shadow: 4px 4px 0 var(--ink);
}
.hero__lead { font-size: 19px; font-weight: 500; max-width: 460px; }
.hero__price-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { font-family: var(--font-mono); font-size: 13px; line-height: 1.7; color: var(--ink-2); }

.hero__visual { position: relative; }
.hero__shot {
  border: var(--border-thick);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  background: var(--white);
  overflow: hidden;
}
.hero__shot img { width: 100%; }
.hero__shot-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--paper);
  border-bottom: var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}
.hero__shot-bar .watching {
  margin-left: auto;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-3);
}
.hero__sticker-alert {
  position: absolute;
  right: -10px;
  bottom: 56px;
  background: var(--pink);
  color: var(--white);
  font-size: 24px;
  transform: rotate(6deg);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__sticker-chat {
  position: absolute;
  left: -6px;
  bottom: -18px;
  background: var(--yellow);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 700;
  transform: rotate(-3deg);
}

/* ==== Price banner（ピンク帯） ==== */
.price-banner {
  background: var(--pink);
  border-bottom: var(--border);
  color: var(--white);
  text-align: center;
  padding: 64px var(--gutter);
}
.price-banner__shout {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 30px);
}
.price-banner__zero {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  margin-top: 8px;
  text-shadow: 4px 4px 0 var(--ink);
}
.price-banner__zero .num { font-family: var(--font-mono); color: var(--yellow); }
.price-banner__sub {
  max-width: 640px;
  margin: 20px auto 28px;
  font-weight: 700;
  line-height: 1.9;
}
.price-banner__sub .hl { color: var(--yellow); }

/* ==== Section headers ==== */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .kicker { margin-bottom: 20px; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 44px); }
.section-head .section-lead { margin-top: 16px; font-weight: 700; color: var(--ink-2); }

/* ==== Problem（お悩み） ==== */
.problem-bubbles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.bubble {
  position: relative;
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 24px 28px;
  font-weight: 700;
}
.bubble::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 44px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-right: var(--border);
  border-bottom: var(--border);
  transform: rotate(45deg);
}
.bubble--tilt-l { transform: rotate(-1.5deg); }
.bubble--tilt-r { transform: rotate(1.5deg); }
.solution-box {
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  text-align: center;
}
.solution-box h3 { font-size: clamp(24px, 3vw, 32px); color: var(--pink-ink); margin-bottom: 20px; }
.solution-box .price-line {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 28px);
  background: var(--yellow);
  border: var(--border);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
  padding: 8px 18px;
  margin: 4px 0 20px;
}
.solution-box .price-line .num { font-family: var(--font-mono); }
.solution-box p { color: var(--ink-2); font-weight: 500; line-height: 1.9; }

/* ==== Reasons（選ばれる理由） ==== */
.bg-blue-soft { background: var(--blue-soft); border-top: var(--border); border-bottom: var(--border); }
.bg-paper-2 { background: var(--paper-2); border-bottom: var(--border); }
.reason { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.reason + .reason { margin-top: 88px; }
.reason:nth-child(even) .reason__visual { order: -1; }
.reason__num {
  font-family: var(--font-pixel);
  font-size: 14px;
  letter-spacing: 0.14em;
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  margin-bottom: 16px;
}
.reason__body h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.reason__body p { color: var(--ink-2); line-height: 1.9; font-weight: 500; }
.reason__body strong { font-weight: 900; }
.reason__body .u-green { color: var(--green-ink); }
.reason__body .u-blue { color: var(--blue-ink); }
.reason__body .u-pink { color: var(--pink-ink); }
.reason__visual img {
  width: 100%;
  border: var(--border-thick);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.reason__visual--tilt-l img { transform: rotate(-2deg); }
.reason__visual--tilt-r img { transform: rotate(2deg); }
.reason__visual--pop-pink img { box-shadow: 8px 8px 0 var(--pink); }
.reason__visual--pop-blue img { box-shadow: 8px 8px 0 var(--blue); }

.reason__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.reason__visual .reason__figure img {
  border: none;
  box-shadow: none;
  border-radius: 0;
  transform: none;
  width: auto;
  max-height: 300px;
}
.reason__visual--tilt-l .reason__figure { transform: rotate(-2deg); }
.reason__visual--tilt-r .reason__figure { transform: rotate(2deg); }
.reason__visual--pop-blue .reason__figure { box-shadow: 8px 8px 0 var(--blue); }
.reason__visual--pop-pink .reason__figure { box-shadow: 8px 8px 0 var(--pink); }

.reason-summary {
  margin-top: 88px;
  text-align: center;
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 40px 32px;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.9;
}
.reason-summary .hl {
  background: var(--yellow);
  padding: 2px 8px;
  border-radius: var(--r-sm);
  font-weight: 900;
}

/* ==== Game modes ==== */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mode-card { display: flex; flex-direction: column; }
.mode-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  border-bottom: var(--border);
  overflow: hidden;
}
.mode-card__media img { width: 100%; height: 100%; object-fit: cover; }
.mode-card__media .badge { position: absolute; top: 12px; left: 12px; box-shadow: var(--shadow-xs); }
.mode-card__media .badge--soon { left: auto; right: 12px; }
.mode-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.mode-card__placeholder .pixel-label {
  font-family: var(--font-pixel);
  font-size: 22px;
  letter-spacing: 0.1em;
}
.mode-card__placeholder .blocks { display: flex; gap: 4px; }
.mode-card__placeholder .blocks span {
  width: 18px;
  height: 18px;
  border: var(--border);
  display: inline-block;
}
.mode-card__body { padding: 22px 24px; flex: 1; }
.mode-card__body h3 { font-size: 21px; margin-bottom: 10px; }
.mode-card__body p { font-size: 15px; color: var(--ink-2); line-height: 1.8; }
.mode-card--more {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--paper);
  border-style: dashed;
  box-shadow: none;
  gap: 12px;
}
.mode-card--more .plus {
  font-family: var(--font-pixel);
  font-size: 40px;
  line-height: 1;
}
.mode-card--more h3 { font-size: 19px; }
.mode-card--more p { font-size: 14px; color: var(--ink-3); }

/* ==== Steps ==== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card { text-align: left; }
.step-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: var(--border);
}
.step-card__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  width: 44px;
  height: 44px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--border);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
}
.step-card__head h3 { font-size: 19px; }
.step-card__body { padding: 20px 22px; font-size: 15px; color: var(--ink-2); line-height: 1.8; }
.step-card--1 .step-card__head { background: var(--pink-soft); }
.step-card--1 .step-card__num { background: var(--pink); color: var(--white); }
.step-card--2 .step-card__head { background: var(--yellow-soft); }
.step-card--2 .step-card__num { background: var(--yellow); }
.step-card--3 .step-card__head { background: var(--green-soft); }
.step-card--3 .step-card__num { background: var(--green); }

/* ==== FAQ ==== */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  transition: background var(--dur) var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--paper); }
.faq-item summary .q-mark {
  font-family: var(--font-pixel);
  flex: none;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border: var(--border);
  border-radius: var(--r-sm);
}
.faq-item summary .toggle {
  margin-left: auto;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 20px;
  flex: none;
}
.faq-item[open] summary { border-bottom: var(--border); background: var(--paper); }
.faq-item[open] summary .toggle::before { content: '−'; }
.faq-item summary .toggle::before { content: '+'; }
.faq-item .faq-a {
  padding: 20px 24px;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.9;
}
.faq-item .faq-a strong { color: var(--pink-ink); }

/* ==== CTA（ピンク大） ==== */
.cta-final {
  background: var(--pink);
  border-top: var(--border);
  color: var(--white);
  text-align: center;
}
.cta-final h2 { font-size: clamp(32px, 5vw, 52px); text-shadow: 4px 4px 0 var(--ink); }
.cta-final .cta-price {
  display: inline-block;
  margin: 28px 0;
  background: var(--white);
  color: var(--ink);
  border: var(--border-thick);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(18px, 2.6vw, 24px);
  transform: rotate(-1.5deg);
}
.cta-final .cta-price .num { font-family: var(--font-mono); }
.cta-final .cta-price .zero { color: var(--pink-ink); }
.cta-final p.cta-note { font-weight: 700; margin-bottom: 32px; line-height: 1.9; }
.cta-final .btn { background: var(--yellow); }

/* ==== Footer ==== */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 40px;
}
.site-footer .brand { color: var(--paper); font-size: 22px; }
.site-footer__tagline { color: var(--ink-4); font-size: 14px; margin-top: 12px; }
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 32px 0;
}
.site-footer__nav a {
  color: var(--paper);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.site-footer__nav a:hover { color: var(--yellow); border-bottom-color: var(--yellow); }
.site-footer__powered {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-4);
  margin-bottom: 8px;
}
.site-footer__powered a { color: var(--green); text-decoration: none; font-weight: 700; }
.site-footer__powered a:hover { color: var(--yellow); }
.site-footer__copy { font-family: var(--font-mono); font-size: 12px; color: var(--ink-4); }
.site-footer .to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--paper);
  font-family: var(--font-pixel);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-decoration: none;
  border: var(--border);
  border-color: var(--ink-3);
  border-radius: var(--r-sm);
  padding: 8px 16px;
}
.site-footer .to-top:hover { border-color: var(--paper); color: var(--yellow); }

/* ==== Floating CTA ==== */
.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 100;
  transition: opacity var(--dur) var(--ease-out), visibility var(--dur) var(--ease-out);
}
.floating-cta.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.floating-cta a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 108px;
  height: 108px;
  background: var(--pink);
  color: var(--white);
  border: var(--border-thick);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.3;
  transform: rotate(4deg);
  transition: transform var(--dur) var(--ease-pop), box-shadow var(--dur) var(--ease-pop);
}
.floating-cta a:hover {
  color: var(--white);
  transform: rotate(0deg) translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.floating-cta a:active { transform: translate(var(--press-shift), var(--press-shift)); box-shadow: 0 0 0 var(--ink); }
.floating-cta .s1 { font-size: 11px; }
.floating-cta .s2 { font-size: 12px; }
.floating-cta .s3 { font-size: 16px; color: var(--yellow); }

/* ==== 下層ページ（表組み・フォーム） ==== */
.page-title-block { text-align: center; margin: 56px auto 40px; }
.page-title-block h1 { font-size: clamp(28px, 4vw, 40px); }
.page-title-block .page-lead { margin-top: 16px; color: var(--ink-2); font-weight: 500; }
.breadcrumb {
  max-width: var(--container-narrow);
  margin: 24px auto 0;
  padding: 0 var(--gutter);
  font-size: 13px;
  color: var(--ink-3);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; }
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--pink-ink); }
.breadcrumb .current { color: var(--ink); font-weight: 700; }

.info-table {
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.info-table dl { margin: 0; }
.info-table .row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: var(--border);
}
.info-table .row:last-child { border-bottom: none; }
.info-table dt {
  padding: 18px 22px;
  font-weight: 900;
  background: var(--paper-2);
  border-right: var(--border);
  font-size: 15px;
}
.info-table dd { margin: 0; padding: 18px 22px; font-size: 15px; color: var(--ink-2); }
.info-table dd a { color: var(--blue-ink); font-weight: 700; }
.info-table dd .note { display: block; font-size: 13px; color: var(--ink-3); margin-top: 4px; }

/* ==== Forms ==== */
.form-panel {
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.form-label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.form-input, .form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: box-shadow var(--dur) var(--ease-out);
}
.form-input:focus, .form-select:focus {
  outline: none;
  box-shadow: var(--shadow-pop-pink);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2317170F' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-error { color: var(--red-ink); font-size: 14px; font-weight: 700; margin-top: 8px; }
.form-note {
  background: var(--yellow-soft);
  border: var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.7;
}
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.form-actions .btn { width: 100%; }
.form-actions--single { grid-template-columns: 1fr; }
.confirm-box {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.confirm-box .item .label { font-size: 13px; color: var(--ink-3); font-weight: 700; }
.confirm-box .item .value { font-size: 18px; font-weight: 900; font-family: var(--font-display); }

/* ==== Hero 装飾ブロック（浮遊するピクセル） ==== */
.hero { position: relative; }
.hero__inner { position: relative; z-index: 1; }
.hero__block {
  position: absolute;
  display: block;
  border: var(--border-thick);
  border-radius: var(--r-sm);
  z-index: 0;
  pointer-events: none;
}
.hero__block--1 { width: 44px; height: 44px; background: var(--yellow); top: 14%; right: 7%; transform: rotate(12deg); box-shadow: var(--shadow-sm); }
.hero__block--2 { width: 28px; height: 28px; background: var(--pink); bottom: 18%; left: 5%; transform: rotate(-9deg); box-shadow: var(--shadow-xs); }
.hero__block--3 { width: 22px; height: 22px; background: var(--white); top: 58%; left: 47%; transform: rotate(6deg); box-shadow: var(--shadow-xs); }

/* ==== Marquee（流れるピクセル帯） ==== */
.marquee {
  background: var(--ink);
  color: var(--paper);
  border-bottom: var(--border);
  overflow: hidden;
  padding: 11px 0;
  display: flex;
}
.marquee__track {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 22px;
  padding-left: 22px;
  white-space: nowrap;
  font-family: var(--font-pixel);
  font-size: 15px;
  letter-spacing: 0.14em;
  will-change: transform;
  animation: marquee 26s linear infinite;
}
.marquee__star { color: var(--green); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ==== ギフト対応表（仕組み） ==== */
.giftmap {
  background: var(--white);
  border: var(--border-thick);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.giftmap__head {
  display: grid;
  grid-template-columns: 210px 1fr;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-pixel);
  font-size: 12px;
  letter-spacing: 0.14em;
}
.giftmap__head span { padding: 13px 24px; }
.giftmap__head span + span { border-left: 2px solid var(--ink-3); }
.giftmap__list { list-style: none; margin: 0; padding: 0; }
.giftmap__list li {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  border-top: var(--border);
}
.giftmap__list li:nth-child(even) { background: var(--paper); }
.giftmap__list .g {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  border-right: var(--border);
}
.giftmap__list .g .qty { font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: var(--ink-3); margin-left: 8px; }
.giftmap__list .e {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  font-weight: 700;
  color: var(--ink-2);
}
.giftmap__list .e .arrow { font-family: var(--font-mono); font-weight: 700; color: var(--pink-ink); flex: none; }
.giftmap__note {
  margin-top: 22px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
}

/* ==== ブランド署名ライン（ウィンク） ==== */
.wink {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

/* ==== Utilities ==== */
.num { font-family: var(--font-mono); }
.text-center { text-align: center; }
.mt-8 { margin-top: 32px; }

/* ==== Reduced motion ==== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
  .marquee__track { animation: none !important; }
}

/* ==== Responsive ==== */
@media (max-width: 960px) {
  :root { --gutter: 20px; --section-y: 72px; }
  .hero__inner { grid-template-columns: 1fr; padding: 56px var(--gutter) 72px; gap: 56px; }
  .hero__visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .hero__block { display: none; }
  .reason { grid-template-columns: 1fr; gap: 28px; }
  .reason:nth-child(even) .reason__visual { order: 0; }
  .reason + .reason { margin-top: 64px; }
  .modes-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .site-nav { display: none; }
}
@media (max-width: 640px) {
  .problem-bubbles { grid-template-columns: 1fr; }
  .modes-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .header-cta { margin-left: auto; }
  .site-header__inner { gap: 12px; }
  .info-table .row { grid-template-columns: 1fr; }
  .info-table dt { border-right: none; border-bottom: var(--border); padding: 12px 18px; }
  .info-table dd { padding: 14px 18px; }
  .form-panel { padding: 28px 22px; }
  .solution-box { padding: 32px 22px; }
  .hero__sticker-alert { font-size: 18px; right: 0; }
  .giftmap__head { grid-template-columns: 118px 1fr; }
  .giftmap__list li { grid-template-columns: 118px 1fr; }
  .giftmap__head span, .giftmap__list .g, .giftmap__list .e { padding: 14px 16px; }
  .giftmap__list .g { font-size: 15px; }
  .giftmap__list .e { font-size: 14px; gap: 10px; }
  .marquee__track { font-size: 13px; }
}
