/* ============================================================
   ASAP SYNERGY × KizunaAI — LP Stylesheet
   Based on 転スラLP v4 precision trace spec
   ============================================================ */

/* === Google Fonts are loaded in HTML === */

:root {
  /* Background colors — light theme, KizunaAI pink/blue accent */
  --bg-1: #ffffff;
  --bg-2: #dce8fc;       /* blue for product sections — more visible */
  --bg-3: #ecdaff;       /* purple/lavender — more visible */
  --bg-4: #ffd9e8;       /* pink for campaigns — more visible */

  /* Product accent colors */
  --product-color-1: #00a4d6;   /* AWAKEN A — cyan/teal */
  --product-color-2: #e84c8a;   /* AWAKEN B — pink */

  /* Shape colors */
  --shape-color: #ffffff;

  /* Text */
  --text-dark: #1a1a2e;
  --text-light: #ffffff;
  --text-muted: rgba(0, 0, 0, 0.55);

  /* Fonts */
  --font-display: 'Be Vietnam Pro', sans-serif;
  --font-body: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
  --font-heading-jp: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 12vw, 160px);
  --content-width: min(90%, 1100px);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==================== Reset & Base ==================== */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 600;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--bg-1);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== Preloader ==================== */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-1);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.preloader-logo img {
  width: clamp(200px, 30vw, 400px);
}

/* ==================== Custom Cursor ==================== */

.cursor {
  pointer-events: none;
  position: fixed;
  z-index: 10000;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

.cursor-outline {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo);
}

.cursor.is-hovering .cursor-outline {
  width: 60px;
  height: 60px;
  border-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px), (hover: none) {
  .cursor { display: none; }
}

/* ==================== Liquid Background Blobs ==================== */

.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  width: 200vmax;
  height: 200vmax;
}

.bg-blob--center {
  top: 50%;
  left: 50%;
  margin-top: -100vmax;
  margin-left: -100vmax;
}

.bg-blob--left {
  top: 50%;
  left: 0;
  margin-top: -100vmax;
  margin-left: -50vmax;
}

.bg-blob--right {
  top: 50%;
  right: 0;
  margin-top: -100vmax;
  margin-right: -50vmax;
}

/* ==================== Header ==================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  transition: color 0.5s var(--ease-out-expo);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* — Logo: same simple approach as .kizuna-logo-img — */
.header-logo {
  flex-shrink: 0;
}

.header-logo-img {
  width: clamp(110px, 13vw, 170px);
  transition: opacity 0.4s;
}

/* Dark header → show dark, hide light */
.site-header.is-dark { color: var(--text-dark); }
.site-header.is-dark .header-logo-img--dark  { display: block; }
.site-header.is-dark .header-logo-img--light { display: none; }

/* Light header → show light, hide dark */
.site-header.is-light { color: var(--text-light); }
.site-header.is-light .header-logo-img--dark  { display: none; }
.site-header.is-light .header-logo-img--light { display: block; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-link {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-cart {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.header-cart:hover {
  background: rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 20px;
  }
}

/* ==================== Scroll Indicator ==================== */

.scroll-indicator {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dark);
  mix-blend-mode: difference;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--scroll-progress, 0%);
  background: var(--text-dark);
  transition: height 0.1s;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

@media (max-width: 1024px) {
  .scroll-indicator { display: none; }
}

/* ==================== Banner / Hero ==================== */

.banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(100px, 15vh, 180px) 0 clamp(60px, 10vw, 155px);
  background-image: url('../images/bg_hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.particles-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Crossfade Characters */
/* Character Crossfade — LEFT side, large portrait like 転スラLP */
.hero-crossfade {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-45%);
  width: clamp(250px, 35vw, 520px);
  z-index: 3;
  pointer-events: none;
}

.crossfade-image {
  width: 100%;
  height: auto;
  opacity: 0;
  animation: crossfade-cycle 18s ease infinite;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.08));
}

.crossfade-image:first-child {
  position: relative;
}

.crossfade-image:nth-child(n+2) {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.crossfade-image:nth-child(1) { animation-delay: 0s; }
.crossfade-image:nth-child(2) { animation-delay: 6s; }
.crossfade-image:nth-child(3) { animation-delay: 12s; }

@keyframes crossfade-cycle {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  28%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Banner Content — RIGHT side title block */
.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.banner-row {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 0;
}

.banner-col-left {
  flex: 0 0 42%;
  max-width: 42%;
  overflow: visible;
}

.hero-character-showcase {
  overflow: visible;
}

.banner-col-right {
  flex: 0 0 58%;
  max-width: 58%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-title-block {
  text-align: left;
}

/* When logos are stacked (no text), center the block */
/* Hero collab SVG logo */
.hero-logo-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-collab-svg {
  width: clamp(300px, 36vw, 560px);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.06));
}

/* Hero Character Showcase (LEFT side) */
.hero-character-showcase {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 20px;
  overflow: visible;
}

.hero-character-img {
  width: clamp(320px, 40vw, 620px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
  transition: transform 0.6s var(--ease-out-expo);
}

.hero-character-img:hover {
  transform: scale(1.03) translateY(-5px);
}

/* Collab Logos in hero: ASAP × KizunaAI */
.banner-collab-logos {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 20px);
  margin-bottom: 20px;
}

.collab-logo {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
}

.collab-logo--asap {
  width: clamp(100px, 13vw, 180px);
}

.collab-logo--kizuna {
  width: clamp(90px, 11vw, 160px);
}

/* Enlarged collab logos variant (転スラLP style) */
.banner-collab-logos--large {
  gap: clamp(14px, 2vw, 28px);
  margin-bottom: 28px;
}

.banner-collab-logos--large .collab-logo--asap {
  width: clamp(140px, 18vw, 260px);
}

.banner-collab-logos--large .collab-logo--kizuna {
  width: clamp(120px, 15vw, 220px);
}

.banner-collab-logos--large .collab-cross {
  font-size: clamp(26px, 3.2vw, 44px);
}

/* Hero Stacked Logos: vertical layout, no text */
.banner-collab-logos--hero-stacked {
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.8vw, 12px);
  margin-bottom: 0;
}

.banner-collab-logos--hero-stacked .collab-logo--asap {
  width: clamp(200px, 24vw, 360px);
}

.banner-collab-logos--hero-stacked .collab-logo--kizuna {
  width: clamp(180px, 22vw, 320px);
}

.banner-collab-logos--hero-stacked .collab-cross {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  opacity: 0.5;
}

.collab-cross {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
}

/* Sales Note in hero */
.banner-sales-note {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 8px;
}

.banner-collab-tag {
  font-family: var(--font-heading-jp);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.banner-cross {
  font-family: var(--font-display);
  font-size: 0.8em;
  opacity: 0.4;
}

.banner-headline {
  margin-bottom: 24px;
}

.headline-sub {
  display: block;
  font-family: var(--font-heading-jp);
  font-size: clamp(26px, 3.8vw, 48px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--text-dark);
}

.banner-release {
  font-family: var(--font-heading-jp);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--product-color-1);
  margin-bottom: 8px;
}

.release-day {
  font-size: 0.85em;
}

.banner-sales-info {
  font-family: var(--font-heading-jp);
  font-size: clamp(14px, 1.6vw, 19px);
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .banner {
    min-height: 100svh;          /* use small viewport height so it fits within visible area */
    padding: clamp(80px, 12vh, 120px) 0 clamp(30px, 5vw, 60px);
  }

  .hero-crossfade {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 45vw;
    opacity: 0.25;
    z-index: 1;
  }

  .banner-row {
    flex-direction: row;
    text-align: center;
    gap: 0;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .banner-col-left {
    flex: 0 0 42%;
    max-width: 42%;
    z-index: 2;
    overflow: visible;
    margin-left: -3%;
  }

  .hero-character-showcase {
    padding: 0;
    justify-content: flex-start;
    overflow: visible;
  }

  .hero-character-img {
    width: clamp(280px, 75vw, 500px);
    max-width: none;
    transform: translateX(-15%);
  }

  .hero-collab-svg {
    width: clamp(240px, 56vw, 400px);
  }

  .banner-col-right {
    flex: 0 0 58%;
    max-width: 58%;
    z-index: 1;
    margin-left: 0;
    padding-left: 2%;
  }

  .banner-title-block {
    text-align: center;
  }

  .banner-collab-logos {
    justify-content: center;
    margin-bottom: 10px;
    gap: clamp(6px, 2vw, 14px);
  }

  .collab-logo--asap {
    width: clamp(80px, 20vw, 140px);
  }

  .collab-logo--kizuna {
    width: clamp(70px, 18vw, 120px);
  }

  .collab-cross {
    font-size: clamp(16px, 4vw, 24px);
  }

  .banner-collab-tag {
    justify-content: center;
    margin-bottom: 10px;
  }

  .banner-headline {
    margin-bottom: 12px;
  }

  .banner-release {
    margin-bottom: 4px;
  }
}

@media (max-width: 480px) {
  .hero-crossfade {
    width: 60vw;
    opacity: 0.18;
  }
}

/* ==================== Can Introduction Section (転スラLP Style) ==================== */

.can-intro-section {
  background: var(--bg-dark, #0a0a2e);
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}

.can-intro-row {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
}

.can-intro-col-left {
  flex: 0 0 42%;
  max-width: 42%;
  display: flex;
  justify-content: center;
}

.can-intro-img {
  width: clamp(200px, 26vw, 400px);
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  transition: transform 0.6s var(--ease-out-expo);
}

.can-intro-img:hover {
  transform: scale(1.05) translateY(-8px);
}

.can-intro-col-right {
  flex: 1;
}

.can-intro-collab-label {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.can-intro-heading {
  font-family: var(--font-heading-jp);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
  margin-bottom: clamp(16px, 2vw, 28px);
}

.can-intro-date {
  font-family: var(--font-heading-jp);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 900;
  color: var(--product-color-1);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.can-intro-date span {
  font-size: 0.85em;
}

.can-intro-sales {
  font-family: var(--font-heading-jp);
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 6px;
}

.can-intro-note {
  font-family: var(--font-body);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .can-intro-row {
    flex-direction: column;
    text-align: center;
    gap: clamp(24px, 4vw, 40px);
  }

  .can-intro-col-left {
    flex: none;
    max-width: 100%;
  }

  .can-intro-img {
    width: clamp(180px, 45vw, 280px);
  }

  .can-intro-heading {
    font-size: clamp(22px, 5.5vw, 36px);
  }

  .can-intro-date {
    font-size: clamp(20px, 5vw, 32px);
  }

  .can-intro-sales {
    font-size: clamp(13px, 3.4vw, 18px);
  }
}

/* ==================== Product Sections ==================== */

.product-section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.product-card {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.product-card--reverse {
  direction: rtl;
}

.product-card--reverse > * {
  direction: ltr;
}

/* Floating White Circles (animated via GSAP) */
.product-floating-circles {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  /* no overflow:hidden — let circles bleed naturally */
}

.float-circle {
  position: absolute;
  width: var(--size, 200px);
  height: var(--size, 200px);
  left: var(--x, 50%);
  top: var(--y, 50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  filter: blur(2px);
  will-change: transform;
}

.product-cover {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-cover img {
  width: 70%;
  max-width: 350px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.12));
  transition: transform 0.6s var(--ease-out-expo);
}

.product-cover img:hover {
  transform: scale(1.05) translateY(-8px);
}

.product-info {
  position: relative;
  z-index: 1;
}

.product-series-tag {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.3vw, 15px);
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: normal;
  margin: 0.1em 0;
}

.product-lead {
  font-family: var(--font-heading-jp);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.product-description {
  font-family: var(--font-heading-jp);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 800;
  line-height: 2;
  max-width: 500px;
  margin-bottom: 16px;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-specs li {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.product-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .product-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-card--reverse {
    direction: ltr;
  }

  .product-name {
    font-size: clamp(40px, 12vw, 68px);
  }

  .product-description {
    max-width: 100%;
  }

  .product-cover img {
    width: 55%;
  }
}

/* ==================== Carton Section ==================== */

.product-section--carton {
  padding: clamp(60px, 8vw, 120px) 0;
}

.carton-showcase {
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--product-color-1), var(--product-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: clamp(30px, 5vw, 60px);
}

.carton-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  max-width: 900px;
  margin: 0 auto;
}

.carton-item img {
  width: 100%;
  border-radius: 12px;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

.carton-label {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 800;
  margin-top: 12px;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .carton-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== Campaign Sections ==================== */

.campaign-section {
  position: relative;
  padding: var(--section-padding) 0;
}

.campaign-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.campaign-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 20px;
  border: 1px solid var(--text-dark);
  border-radius: 100px;
  margin-bottom: 16px;
}

.campaign-badge--accent {
  border-color: var(--product-color-2);
  color: var(--product-color-2);
}

.campaign-title-text {
  font-family: var(--font-heading-jp);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
}

.campaign-subtitle {
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.campaign-subtitle--left {
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.campaign-period-text {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  color: var(--text-muted);
}

/* ===== Full-Bleed Goods Display (転スラLP style) ===== */
.campaign-goods-fullbleed {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vw, 80px);
}

.goods-fullbleed-item {
  text-align: center;
}

.goods-fullbleed-img {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: clamp(30px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 40vw, 500px);
  margin-bottom: 20px;
}

.goods-fullbleed-img img {
  max-height: clamp(240px, 35vw, 440px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
  transition: transform 0.5s var(--ease-out-expo);
}

.goods-fullbleed-item:hover .goods-fullbleed-img img {
  transform: scale(1.04);
}

.goods-fullbleed-caption {
  padding: 0 20px;
}

.goods-fullbleed-caption h3 {
  font-family: var(--font-heading-jp);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  margin-bottom: 6px;
}

.goods-fullbleed-caption p {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--text-muted);
  line-height: 1.6;
}

.goods-condition {
  font-weight: 800;
  color: var(--product-color-1) !important;
  margin-top: 4px;
}

.goods-condition-sub {
  display: block;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 600;
  color: var(--text-muted) !important;
  margin-top: 2px;
}

/* Side-by-side images in fullbleed layout (e.g., PPIH Must-Buy dual goods) */
.goods-fullbleed-img--row {
  flex-direction: row;
  gap: clamp(16px, 3vw, 40px);
}

.goods-fullbleed-img--row img {
  max-height: clamp(200px, 28vw, 360px);
  flex: 0 1 auto;
}

/* Placeholder for images not yet available */
.goods-fullbleed-img--placeholder {
  background: rgba(255, 255, 255, 0.35);
  border: 2px dashed rgba(0, 0, 0, 0.12);
  flex-direction: column;
}

.goods-fullbleed-img--placeholder .placeholder-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(0, 0, 0, 0.25);
}

.goods-fullbleed-img--placeholder .placeholder-text {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .goods-fullbleed-img--row {
    flex-direction: column;
    gap: 20px;
  }
  .goods-fullbleed-img--row img {
    max-height: clamp(180px, 45vw, 280px);
  }
}

/* Legacy prize cards (kept for other campaign sections) */
.campaign-prizes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 900px;
  margin: 0 auto;
}

.prize-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.prize-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.prize-img {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  min-height: 200px;
}

.prize-img img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
}

.prize-info {
  padding: 20px 24px 24px;
}

.prize-info h3 {
  font-family: var(--font-heading-jp);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 900;
  margin-bottom: 6px;
}

.prize-size {
  font-size: clamp(13px, 1.3vw, 16px);
  color: var(--text-muted);
  margin-bottom: 4px;
}

.prize-detail {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--product-color-1);
  font-weight: 600;
}

@media (max-width: 600px) {
  .campaign-prizes {
    grid-template-columns: 1fr;
  }
}

/* Must-Buy Grid */
.mustbuy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 900px;
  margin: 0 auto;
}

.mustbuy-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease-out-expo);
}

.mustbuy-item:hover {
  transform: translateY(-4px);
}

.mustbuy-img-row {
  display: flex;
  gap: 12px;
  padding: 24px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
}

.mustbuy-img-row img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
}

.mustbuy-info {
  padding: 20px 24px 24px;
}

.mustbuy-info h3 {
  font-family: var(--font-heading-jp);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 900;
  margin-bottom: 6px;
}

.mustbuy-info p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-muted);
  line-height: 1.6;
}

.text-muted {
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 600px) {
  .mustbuy-grid {
    grid-template-columns: 1fr;
  }
}

/* Lottery Items (Receipt Campaign) */
.lottery-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  max-width: 900px;
  margin: 0 auto clamp(40px, 6vw, 80px);
}

.lottery-item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.4s var(--ease-out-expo);
}

.lottery-item:hover {
  transform: translateY(-4px);
}

.lottery-img {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.5);
}

.lottery-img img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
}

.lottery-info {
  padding: 16px 20px 24px;
}

.lottery-condition {
  font-size: clamp(12px, 1.2vw, 15px);
  color: var(--text-muted);
  margin-bottom: 4px;
}

.lottery-info h3 {
  font-family: var(--font-heading-jp);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 900;
  margin-bottom: 6px;
}

.lottery-winners {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--product-color-2);
}

.lottery-winners strong {
  font-weight: 800;
}

/* How-to Section */
.lottery-howto,
.x-howto {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.lottery-howto h3,
.x-howto h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 20px;
}

.lottery-howto ol,
.x-howto ol {
  text-align: left;
  max-width: 400px;
  margin: 0 auto 24px;
  counter-reset: steps;
}

.lottery-howto ol li,
.x-howto ol li {
  counter-increment: steps;
  padding: 8px 0 8px 40px;
  position: relative;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.6;
}

.lottery-howto ol li::before,
.x-howto ol li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--product-color-1), var(--product-color-2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 600px) {
  .lottery-items {
    grid-template-columns: 1fr;
  }
}

/* LINE Button */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #06c755;
  color: #fff;
  font-weight: 800;
  font-size: clamp(16px, 1.6vw, 19px);
  border-radius: 100px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4);
}

.btn-line--large {
  padding: 18px 40px;
  font-size: clamp(18px, 1.8vw, 24px);
}

/* X Campaign Prizes */
.x-prizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  max-width: 900px;
  margin: 0 auto clamp(40px, 6vw, 80px);
}

.x-prize-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  transition: transform 0.4s var(--ease-out-expo);
}

.x-prize-card:hover {
  transform: translateY(-6px);
}

.x-prize-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--product-color-1), var(--product-color-2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  border-radius: 100px;
  z-index: 2;
}

.x-prize-img {
  padding: 30px 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.5);
}

.x-prize-img img {
  max-height: 150px;
  width: auto;
  object-fit: contain;
}

.x-prize-img--placeholder {
  color: var(--text-muted);
}

.placeholder-icon {
  opacity: 0.3;
}

.x-prize-info {
  padding: 16px 20px 24px;
}

.x-prize-info h3 {
  font-family: var(--font-heading-jp);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 900;
  margin-bottom: 4px;
}

.x-prize-winners {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--product-color-1), var(--product-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.x-bonus {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 24px;
  background: linear-gradient(135deg, var(--product-color-2), #ff6b9d);
  color: #fff;
  font-weight: 800;
  font-size: clamp(15px, 1.5vw, 19px);
  border-radius: 100px;
}

@media (max-width: 600px) {
  .x-prizes {
    grid-template-columns: 1fr;
  }
}

/* LINE Prize (LINE Campaign) */
.line-prize {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  max-width: 600px;
  margin: 0 auto clamp(30px, 4vw, 60px);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.line-prize-img {
  flex: 0 0 40%;
}

.line-prize-img img {
  max-width: 200px;
  margin: 0 auto;
}

.line-prize-info h3 {
  font-family: var(--font-heading-jp);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 900;
  margin-bottom: 8px;
}

.line-cta {
  text-align: center;
}

@media (max-width: 480px) {
  .line-prize {
    flex-direction: column;
    text-align: center;
  }
}

/* ==================== Detail Section ==================== */

.detail-section {
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.detail-heading {
  font-family: var(--font-heading-jp);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  margin-bottom: clamp(20px, 3vw, 40px);
}

.detail-content {
  max-width: var(--content-width);
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.detail-label {
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 600;
  color: var(--text-dark);
}

.detail-value {
  font-size: clamp(14px, 1.4vw, 17px);
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 4px;
}

/* ==================== About Section ==================== */

.about-section {
  padding: var(--section-padding) 0;
  overflow: hidden;
}

/* Two-column layout: left text, right large character */
.about-layout {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--content-width);
  margin: 0 auto;
}

.about-text-side {
  flex: 1 1 45%;
  min-width: 0;
}

.about-label {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.about-character-side {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-character-side img {
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.12));
  transition: transform 0.6s var(--ease-out-expo);
}

.about-character-side img:hover {
  transform: scale(1.03);
}

.about-name {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}

.about-name-jp {
  font-family: var(--font-body);
  font-size: 0.45em;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-block;
  margin-left: 4px;
}

.about-bio {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 2;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-bio:last-of-type {
  margin-bottom: 28px;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 100px;
  transition: all 0.3s;
}

.about-link:hover {
  background: var(--text-dark);
  color: var(--text-light);
  border-color: var(--text-dark);
}

@media (max-width: 768px) {
  .about-layout {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-character-side img {
    max-width: 320px;
  }

  .about-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-character-side img {
    max-width: 260px;
  }
}

/* ==================== Sales Section ==================== */

.sales-section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.sales-card {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.sales-text {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.8;
  margin: 20px 0 12px;
}

.sales-note {
  font-size: clamp(13px, 1.3vw, 16px);
  color: var(--text-muted);
}

/* ==================== Footer ==================== */

.site-footer {
  position: relative;
  z-index: 2;
  background: var(--text-dark);
  color: var(--text-light);
  padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 3vw, 40px);
}

/* ==================== Catchphrase Section (覚醒せよ) — Scroll Reveal ==================== */

.catchphrase-section {
  position: relative;
  height: 100vh;
  clip-path: inset(0);     /* creates stacking context that clips fixed child */
}

.catchphrase-bg {
  position: fixed;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Mobile: disable fixed reveal (causes double-image), use simple scroll instead */
@media (max-width: 768px) {
  .catchphrase-section {
    height: auto;
    clip-path: none;
  }
  .catchphrase-bg {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
  }
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo img {
  margin: 0 auto;
  filter: brightness(100) invert(0);
  opacity: 0.8;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.sns-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.sns-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.5;
}

/* ==================== Scroll Animation Utilities ==================== */

[data-animate] {
  opacity: 0;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-in"] {
  /* opacity only */
}

[data-animate="scale-in"] {
  transform: scale(0.92);
}

[data-animate="slide-left"] {
  transform: translateX(60px);
}

[data-animate="slide-right"] {
  transform: translateX(-60px);
}

/* SP-only line breaks: hidden on desktop, visible on mobile */
br.sp-br { display: none; }

/* ==================== Responsive ==================== */

/* --- Tablet / Small Laptop (≤768px) --- */
@media (max-width: 768px) {
  :root {
    --section-padding: clamp(60px, 10vw, 100px);
  }

  /* Prevent single-character orphans on mobile */
  body {
    word-break: auto-phrase;           /* Chrome 119+ Japanese line-break optimization */
    overflow-wrap: anywhere;
    line-break: strict;                /* stricter Japanese line-break rules */
  }

  .headline-sub,
  .product-name,
  .product-lead,
  .product-description,
  .section-title,
  .section-subtitle,
  .banner-sales-info,
  .banner-sales-note,
  .campaign-title-text,
  .campaign-subtitle,
  .about-bio,
  .detail-label,
  .detail-value,
  .goods-fullbleed-caption h3,
  .goods-fullbleed-caption p {
    word-break: auto-phrase;
    overflow-wrap: anywhere;
    text-wrap: pretty;                 /* Safari 17.4+ / Chrome 117+ smarter line-break */
  }

  /* Detail sections: keep Japanese words together (Safari-compatible) */
  .detail-value {
    word-break: keep-all;              /* prevent mid-word breaks in Japanese */
    overflow-wrap: break-word;         /* fallback: break if line still overflows */
    line-break: strict;
    font-size: clamp(13px, 3.4vw, 16px);
  }

  .detail-label {
    font-size: clamp(14px, 3.6vw, 17px);
  }

  /* Campaign subtitle also needs keep-all for Safari */
  .campaign-subtitle {
    word-break: keep-all;
    overflow-wrap: break-word;
    font-size: clamp(13px, 3.4vw, 17px);
  }

  /* Show SP-only line breaks on mobile */
  br.sp-br { display: block; }

  /* Slightly reduce hero text sizes to avoid overflow */
  .headline-sub {
    font-size: clamp(22px, 5.5vw, 36px);
  }

  .banner-release {
    font-size: clamp(20px, 5vw, 32px);
  }

  .banner-sales-info {
    font-size: clamp(13px, 3.5vw, 17px);
  }

  .banner-sales-note {
    font-size: clamp(10px, 2.8vw, 13px);
  }
}

/* --- iPhone Plus / Pro Max range (≤430px) --- */
@media (max-width: 430px) {
  /* Header logo: prevent overflow on smaller screens */
  .header-logo-img {
    width: clamp(90px, 25vw, 120px);
  }

  /* Hero: fit everything in one screen on iPhone */
  .banner {
    min-height: 100svh;
    padding: clamp(70px, 14vh, 100px) 0 clamp(20px, 4vw, 40px);
  }

  .banner-row {
    padding: 0;
    gap: 0;
  }

  .hero-collab-svg {
    width: clamp(180px, 48vw, 280px);
  }

  .hero-character-img {
    width: clamp(220px, 60vw, 340px);
    max-width: none;
    transform: translateX(-20%);
  }

  .banner-col-left {
    margin-left: -5%;
  }

  .banner-col-right {
    margin-left: 0;
    padding-left: 3%;
  }

  .collab-logo--asap {
    width: clamp(70px, 18vw, 110px);
  }

  .collab-logo--kizuna {
    width: clamp(60px, 16vw, 100px);
  }

  .collab-cross {
    font-size: clamp(14px, 3.5vw, 20px);
  }

  .banner-collab-logos {
    margin-bottom: 6px;
    gap: clamp(4px, 1.5vw, 10px);
  }

  .banner-collab-logos--large .collab-logo--asap {
    width: clamp(100px, 26vw, 160px);
  }

  .banner-collab-logos--large .collab-logo--kizuna {
    width: clamp(85px, 22vw, 140px);
  }

  .banner-collab-logos--large .collab-cross {
    font-size: clamp(18px, 4.5vw, 28px);
  }

  .banner-collab-logos--large {
    margin-bottom: 12px;
  }

  .banner-collab-logos--hero-stacked .collab-logo--asap {
    width: clamp(130px, 34vw, 200px);
  }

  .banner-collab-logos--hero-stacked .collab-logo--kizuna {
    width: clamp(110px, 30vw, 180px);
  }

  .banner-collab-logos--hero-stacked .collab-cross {
    font-size: clamp(26px, 6.5vw, 40px);
    font-weight: 300;
  }

  .banner-collab-logos--hero-stacked {
    gap: clamp(2px, 0.5vw, 8px);
  }

  .banner-collab-tag {
    font-size: clamp(18px, 5vw, 28px);
    gap: 8px;
  }

  .headline-sub {
    font-size: clamp(20px, 5.2vw, 30px);
  }

  .banner-release {
    font-size: clamp(18px, 4.8vw, 28px);
  }

  .banner-sales-info {
    font-size: clamp(12px, 3.2vw, 16px);
  }

  .banner-sales-note {
    font-size: clamp(10px, 2.6vw, 13px);
  }

  /* Product section text */
  .product-name {
    font-size: clamp(36px, 10vw, 56px);
  }

  .product-lead {
    font-size: clamp(15px, 4vw, 19px);
  }

  .product-description {
    font-size: clamp(13px, 3.5vw, 16px);
  }

  .product-specs li {
    font-size: clamp(12px, 3.2vw, 15px);
  }

  /* Section titles */
  .section-title {
    font-size: clamp(30px, 8vw, 52px);
  }

  .section-subtitle {
    font-size: clamp(13px, 3.5vw, 17px);
  }

  /* Campaign sections */
  .campaign-title-text {
    font-size: clamp(22px, 6vw, 36px);
    text-wrap: balance;
  }

  .campaign-subtitle {
    font-size: clamp(13px, 3.5vw, 17px);
    text-wrap: pretty;
  }

  /* Goods fullbleed */
  .goods-fullbleed-caption h3 {
    font-size: clamp(18px, 5vw, 26px);
  }

  .goods-fullbleed-caption p {
    font-size: clamp(12px, 3.2vw, 16px);
  }

  /* About section */
  .about-name {
    font-size: clamp(28px, 7.5vw, 42px);
  }

  .about-bio {
    font-size: clamp(14px, 3.6vw, 17px);
  }

  /* Footer catchphrase — taller aspect for narrower screens */
  .catchphrase-bg {
    aspect-ratio: 4 / 3;
  }

  /* Detail section */
  .detail-heading {
    font-size: clamp(18px, 5vw, 24px);
  }

  .detail-label {
    font-size: clamp(13px, 3.5vw, 17px);
  }

  .detail-value {
    font-size: clamp(12px, 3.2vw, 15px);
  }
}

/* --- iPhone 13 mini / SE range (≤375px) --- */
@media (max-width: 375px) {
  .header-logo-img {
    width: clamp(80px, 22vw, 100px);
  }

  .banner {
    padding: clamp(60px, 12vh, 90px) 0 clamp(16px, 3vw, 30px);
  }

  .hero-collab-svg {
    width: clamp(160px, 44vw, 240px);
  }

  .hero-character-img {
    width: clamp(200px, 55vw, 290px);
    max-width: none;
    transform: translateX(-20%);
  }

  .banner-col-left {
    margin-left: -5%;
  }

  .banner-col-right {
    margin-left: 0;
    padding-left: 3%;
  }

  .collab-logo--asap {
    width: clamp(60px, 16vw, 90px);
  }

  .collab-logo--kizuna {
    width: clamp(50px, 14vw, 80px);
  }

  .banner-collab-tag {
    font-size: clamp(16px, 4.5vw, 24px);
    flex-wrap: wrap;
    justify-content: center;
  }

  .headline-sub {
    font-size: clamp(18px, 5vw, 26px);
  }

  .banner-release {
    font-size: clamp(16px, 4.5vw, 24px);
  }

  .product-name {
    font-size: clamp(32px, 9vw, 48px);
  }

  .campaign-title-text {
    font-size: clamp(20px, 5.5vw, 30px);
  }

  .about-name {
    font-size: clamp(24px, 7vw, 36px);
  }

  /* Tighter padding */
  .banner-row {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .goods-fullbleed-img {
    padding: clamp(20px, 4vw, 40px);
  }
}
