/* =============================================================
   Reset & Base
   ============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

:root {
  --c-yellow: #ffd900;
  --c-yellow-light: #fff04a;
  --c-yellow-deep: #ffc800;
  --c-black: #111111;
  --c-ink: #1a1a1a;
  --c-gray: #5a5a5a;
  --c-gray-light: #efefef;
  --c-white: #ffffff;
  --c-red: #e60012;
  --c-red-deep: #c4000f;
  --c-tiger: #ffb600;
  --c-shadow: rgba(0, 0, 0, 0.18);
  --max: 720px;
  --radius: 16px;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    sans-serif;
  color: var(--c-ink);
  background: var(--c-yellow);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-break: strict;
  text-wrap: pretty;
}

/* Inline phrase block — keeps compound words together when wrapping */
.nb {
  display: inline-block;
  white-space: nowrap;
}

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

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

small {
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0;
}

em {
  font-style: normal;
  color: var(--c-red);
}

ul,
ol {
  list-style: none;
}

/* =============================================================
   Layout shell (simple yellow base)
   ============================================================= */
.lp {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #ffd900;
  padding: 0 0 calc(120px + env(safe-area-inset-bottom, 0px));
}

/* Omake section uses a softer / off-white background to distinguish
   from the campaign-related content above. */
.omake {
  position: relative;
  background: #f5f1e6;
  border-top: 4px solid var(--c-black);
  border-bottom: 4px solid var(--c-black);
  padding: 28px 0 32px;
  margin: 24px 0 0;
  z-index: 1;
}

.sp-only {
  display: none;
}
@media (max-width: 600px) {
  .sp-only {
    display: inline;
  }
}

/* =============================================================
   Section reveal animation
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================================
   Section title (jumpy)
   ============================================================= */
.sec-ttl {
  position: relative;
  text-align: left;
  max-width: var(--max);
  margin: 0 auto 24px;
  padding: 12px 16px 0;
  z-index: 1;
}

.sec-ttl__sub {
  display: inline-block;
  font-family: "RocknRoll One", "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--c-black);
  background: var(--c-white);
  border: 2px solid var(--c-black);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 10px;
  margin-left: -2px;
  box-shadow: 2px 2px 0 var(--c-black);
}

.sec-ttl__hl {
  color: var(--c-red);
}

.sec-ttl__main {
  display: block;
  font-size: clamp(26px, 7.4vw, 50px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
  color: var(--c-black);
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.sec-ttl--dark .sec-ttl__main {
  color: var(--c-black);
}

.sec-ttl em {
  color: var(--c-red);
}

.sec-ttl__deco {
  color: var(--c-red);
  margin-left: 4px;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  padding: 16px 16px 8px;
  z-index: 1;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.hero__brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hero__logo {
  width: 70px;
  max-width: 20%;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.18));
}

.hero__title {
  flex: 1;
  margin: 0;
  max-width: 78%;
}

.hero__title img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.18));
}

.hero__copy {
  display: block;
  background: var(--c-red);
  color: var(--c-white);
  font-weight: 900;
  border-radius: 14px;
  padding: 14px 12px;
  border: 3px solid var(--c-black);
  box-shadow: 5px 5px 0 var(--c-black);
  transform: rotate(-3deg);
  margin: 6px 4px;
}

.hero__copy-row {
  display: block;
  font-size: clamp(20px, 5vw, 30px);
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.hero__copy-row--big {
  font-size: clamp(26px, 6.4vw, 38px);
}
.hero__amp {
  margin: 0 4px;
  font-family: "RocknRoll One", sans-serif;
  color: var(--c-yellow);
}

.hero__ribbons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.ribbon {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  padding: 6px 22px;
  border-radius: 999px;
  border: 2px solid var(--c-black);
  letter-spacing: 0.06em;
}
.ribbon--white {
  background: var(--c-white);
  color: var(--c-black);
}
.ribbon--black {
  background: var(--c-black);
  color: var(--c-yellow);
}

/* =============================================================
   PRIZE
   ============================================================= */
.prize {
  position: relative;
  padding: 32px 16px;
  z-index: 1;
}

.prize__banner {
  max-width: var(--max);
  margin: 0 auto 24px;
  border: 4px solid var(--c-black);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--c-black);
  background: var(--c-black);
}

.prize__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .prize__grid {
    grid-template-columns: 1fr;
    max-width: var(--max);
  }
}

.prize__note {
  max-width: 1040px;
  margin: 18px auto 0;
  padding: 14px 12px;
  background: var(--c-white);
  border: 2px dashed var(--c-black);
  border-radius: 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.prize__note strong {
  display: block;
  font-size: clamp(13px, 3.8vw, 17px);
  color: var(--c-red);
  margin-bottom: 4px;
  white-space: nowrap;
}

.prize-card {
  background: var(--c-white);
  border: 3px solid var(--c-black);
  border-radius: var(--radius);
  padding: 16px 14px 18px;
  box-shadow: 5px 5px 0 var(--c-black);
  position: relative;
  text-align: center;
}

.prize-card--a {
  background: linear-gradient(180deg, #fff7c2 0%, #ffffff 60%);
}
.prize-card--b {
  background: linear-gradient(180deg, #ffe78a 0%, #ffffff 60%);
}
.prize-card--c {
  background: linear-gradient(180deg, #ffd95a 0%, #ffffff 60%);
}

.prize-card__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 2px dashed var(--c-black);
}

.prize-card__rank {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--c-white);
  background: var(--c-black);
  border-radius: 10px;
  padding: 6px 14px;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
.prize-card--a .prize-card__rank {
  background: linear-gradient(180deg, #ff3b3b 0%, #c4000f 100%);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.prize-card--a .prize-card__name {
  color: var(--c-red);
}

.prize-card__name {
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 800;
  text-align: left;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.prize-card__count {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--c-red);
  line-height: 1.05;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.prize-card__count small {
  font-size: 0.42em;
  color: var(--c-black);
  margin-top: 2px;
  font-weight: 800;
}
.prize-card__count-sub {
  font-size: 12px;
  color: var(--c-black);
  font-weight: 800;
  letter-spacing: 0;
  margin-top: 1px;
}

.prize-card__lead {
  font-size: 14px;
  margin-bottom: 12px;
}
.prize-card__lead strong {
  display: inline-block;
  font-size: 18px;
  color: var(--c-red);
  background: linear-gradient(transparent 65%, #fff04a 65%);
}

.prize-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.prize-card__list li {
  background: var(--c-black);
  color: var(--c-yellow);
  border-radius: 10px;
  padding: 8px 12px;
  width: 100%;
  font-weight: 900;
}
.prize-card__date {
  display: block;
  font-size: 17px;
}
.prize-card__match {
  display: block;
  font-size: 13px;
  color: var(--c-white);
}
.prize-card__list--items li {
  background: var(--c-white);
  color: var(--c-black);
  border: 2px solid var(--c-black);
  font-size: 14px;
}

.prize-card__note {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--c-gray);
  line-height: 1.5;
  text-align: center;
}

.prize-card__goods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.prize-card__goods--single {
  grid-template-columns: minmax(0, 220px);
  justify-content: center;
}
.prize-card__goods li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.prize-card__goods-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--c-white);
  border: 2px solid var(--c-black);
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.prize-card__goods-img img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  display: block;
}
.prize-card__goods-name {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--c-black);
  text-align: center;
}

/* =============================================================
   PERIOD
   ============================================================= */
.period {
  position: relative;
  padding: 8px 16px 32px;
  z-index: 1;
}
.period__inner {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--c-black);
  color: var(--c-yellow);
  border-radius: var(--radius);
  text-align: center;
  padding: 18px 16px 22px;
  border: 3px solid var(--c-black);
  box-shadow: 6px 6px 0 var(--c-white), 6px 6px 0 4px var(--c-black);
}
.period__label {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-black);
  padding: 4px 18px;
  font-size: 14px;
  font-weight: 900;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.period__date {
  line-height: 1.1;
}
.period__year {
  display: block;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.period__date {
  text-align: center;
  padding: 0 8px;
}
.period__main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 4vw, 22px);
  font-weight: 900;
  color: var(--c-yellow);
  line-height: 1.55;
  letter-spacing: 0;
}

/* =============================================================
   ENTRY
   ============================================================= */
.entry {
  position: relative;
  padding: 32px 16px;
  z-index: 1;
}

.entry__card {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--c-white);
  border: 3px solid var(--c-black);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--c-black);
}

.entry__lead {
  font-size: clamp(13px, 3.4vw, 16px);
  margin-bottom: 10px;
  line-height: 1.6;
  text-align: center;
}
.entry__note {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 500;
  color: var(--c-gray);
  text-align: center;
}
.entry__lead strong {
  display: inline-block;
  margin-top: 6px;
  font-size: clamp(15px, 4vw, 20px);
  color: var(--c-red);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.entry__gacha {
  background: linear-gradient(180deg, #fff7c2 0%, #fff04a 100%);
  border: 2px solid var(--c-black);
  border-radius: 12px;
  padding: 14px 12px 16px;
  margin: 0 auto 24px;
  max-width: 460px;
}
.entry__gacha-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.entry__gacha-list {
  display: grid;
  gap: 6px;
}
.entry__gacha-list li {
  font-size: 16px;
  font-weight: 900;
  background: var(--c-white);
  border: 2px solid var(--c-black);
  border-radius: 8px;
  padding: 6px 12px;
}

.entry__gacha-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 480px) {
  .entry__gacha-banners {
    grid-template-columns: 1fr;
  }
}
.entry__gacha-banners li {
  border: 3px solid var(--c-black);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--c-black);
  background: var(--c-white);
}
.entry__gacha-banners img {
  width: 100%;
  height: auto;
  display: block;
}

/* =============================================================
   CTA
   ============================================================= */
.cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, #ff9a1f 0%, #ff7a00 100%);
  color: var(--c-white);
  border: 3px solid var(--c-black);
  border-radius: 14px;
  padding: 12px 36px 14px 24px;
  min-width: 280px;
  box-shadow: 5px 5px 0 var(--c-black);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  cursor: pointer;
  font-weight: 900;
}
.cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--c-black);
}
.cta__sub {
  display: block;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
.cta__main {
  display: block;
  font-size: clamp(15px, 4vw, 20px);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.cta__arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
.cta--ghost {
  background: var(--c-white);
  color: var(--c-black);
}
.cta--ghost .cta__main {
  text-shadow: none;
}
.cta--xl {
  min-width: min(420px, 92vw);
  padding: 18px 42px 20px 28px;
}
.cta--xl .cta__main {
  font-size: clamp(16px, 4.6vw, 22px);
  white-space: nowrap;
}

/* =============================================================
   BOOST (missions)
   ============================================================= */
.boost {
  position: relative;
  padding: 32px 16px;
  z-index: 1;
}

.boost__lead {
  max-width: var(--max);
  margin: 0 auto 22px;
  text-align: left;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 700;
  background: var(--c-white);
  border: 2px dashed var(--c-black);
  border-radius: 12px;
  padding: 14px 14px;
}
.boost__lead strong {
  color: var(--c-red);
}

.boost__banner {
  max-width: var(--max);
  margin: 0 auto 24px;
  border: 3px solid var(--c-black);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--c-black);
  background: var(--c-black);
}
.boost__banner img {
  width: 100%;
  height: auto;
  display: block;
}

.boost__headline {
  max-width: var(--max);
  margin: 0 auto 24px;
  text-align: center;
  background: var(--c-black);
  color: var(--c-white);
  border-radius: 14px;
  padding: 18px 14px;
  border: 3px solid var(--c-black);
  position: relative;
}
.boost__headline::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top-color: var(--c-black);
}
.boost__headline p {
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 900;
  line-height: 1.5;
}
.boost__big {
  display: inline-block;
  font-family: "RocknRoll One", sans-serif;
  font-size: clamp(26px, 7vw, 38px);
  margin-top: 4px;
  color: var(--c-yellow);
}
.boost__big em {
  font-size: 1.4em;
  color: var(--c-yellow);
  margin: 0 4px;
}

.missions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (min-width: 760px) {
  .missions {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mission {
  background: var(--c-white);
  border: 3px solid var(--c-black);
  border-radius: 14px;
  padding: 14px 10px 14px;
  text-align: center;
  position: relative;
  box-shadow: 4px 4px 0 var(--c-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mission__step {
  display: inline-block;
  font-family: "RocknRoll One", sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--c-white);
  background: var(--c-black);
  padding: 2px 12px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}
.mission__badge {
  display: inline-block;
  font-family: "RocknRoll One", sans-serif;
  font-size: 22px;
  font-weight: 900;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: 999px;
  padding: 4px 18px;
  border: 2px solid var(--c-black);
  box-shadow: 2px 2px 0 var(--c-black);
  line-height: 1.2;
}
.mission__badge--plus {
  background: var(--c-black);
  color: var(--c-yellow);
}
.mission__badge--big {
  background: linear-gradient(180deg, #ff3b3b, #b00000);
  font-size: 28px;
  padding: 6px 20px;
}
.mission__title {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
  margin-top: 2px;
}
.mission__title small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}
.mission__note {
  font-size: 11px;
  color: var(--c-red);
  font-weight: 900;
}
.mission--coin {
  background: linear-gradient(180deg, #fff7c2 0%, #ffe25a 100%);
}

.boost__note {
  max-width: var(--max);
  margin: 22px auto 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: -0.01em;
}
.boost__link {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 12px;
  background: var(--c-white);
  border: 2px solid var(--c-black);
  border-radius: 999px;
  font-size: 13px;
}

/* =============================================================
   REGIST (steps)
   ============================================================= */
.regist {
  position: relative;
  padding: 32px 16px;
  z-index: 1;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(180deg, #c89a1f 0%, #8d6810 100%);
  border: 3px solid var(--c-black);
  border-radius: var(--radius);
  padding: 18px 14px;
  box-shadow: 6px 6px 0 var(--c-black);
}
@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step {
  background: var(--c-white);
  border-radius: 12px;
  padding: 26px 14px 16px;
  text-align: center;
  position: relative;
  border: 2px solid var(--c-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.step__num {
  position: absolute;
  top: -14px;
  left: -10px;
  width: 36px;
  height: 36px;
  background: var(--c-black);
  color: var(--c-yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "RocknRoll One", sans-serif;
  font-size: 20px;
  font-weight: 900;
  border: 3px solid var(--c-yellow);
  box-shadow: 2px 2px 0 var(--c-black);
}

.step__image {
  width: min(220px, 70%);
  border: 2px solid var(--c-black);
  border-radius: 8px;
  overflow: hidden;
  background: #f4f4f4;
}
.step__image img {
  width: 100%;
  height: auto;
  display: block;
}

.step__desc {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.7;
  color: var(--c-ink);
  text-align: center;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: wrap;
  letter-spacing: 0;
  padding: 0 4px;
}

.step__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-yellow);
  color: var(--c-black);
  border: 2px solid var(--c-black);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--c-black);
  margin-top: 4px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.step__btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--c-black);
}

.step__final {
  width: min(220px, 70%);
  aspect-ratio: 9 / 16;
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  border: 2px solid var(--c-black);
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.step__final-label {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-black);
  border: 2px solid var(--c-black);
  padding: 8px 24px;
  border-radius: 999px;
  font-family: "RocknRoll One", sans-serif;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.4);
}

.regist__note {
  max-width: var(--max);
  margin: 12px auto 0;
  padding: 0 4px;
  text-align: left;
  font-size: 10px;
  line-height: 1.6;
  color: var(--c-ink);
  opacity: 0.75;
}

/* =============================================================
   HERO PREDICTION
   ============================================================= */
.heroyoso {
  position: relative;
  padding: 20px 16px;
  z-index: 1;
}

.heroyoso__lead {
  max-width: var(--max);
  margin: 0 auto 16px;
  text-align: left;
  background: var(--c-white);
  color: var(--c-ink);
  border: 2px solid var(--c-black);
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 13px;
  line-height: 1.7;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: wrap;
  letter-spacing: 0;
}
.heroyoso__lead strong {
  display: block;
  margin-top: 8px;
  color: var(--c-red);
  font-size: 14px;
  line-height: 1.5;
}

.heroyoso__visual {
  max-width: var(--max);
  margin: 0 auto;
  border: 2px solid var(--c-black);
  border-radius: 12px;
  overflow: hidden;
  background: var(--c-black);
}
.heroyoso__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.heroflow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
}
@media (min-width: 720px) {
  .heroflow {
    grid-template-columns: repeat(3, 1fr);
  }
}

.heroflow__item {
  background: var(--c-white);
  border: 3px solid var(--c-black);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  box-shadow: 4px 4px 0 var(--c-black);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heroflow__num {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-white);
  font-family: "RocknRoll One", sans-serif;
  font-size: 32px;
  font-weight: 900;
  border: 3px solid var(--c-black);
  margin-bottom: 14px;
  box-shadow: 2px 2px 0 var(--c-black);
}
.heroflow__title {
  font-size: clamp(18px, 5vw, 22px);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--c-red);
}
.heroflow__desc {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-ink);
}

/* =============================================================
   SNS SHARE
   ============================================================= */
.snsshare {
  position: relative;
  padding: 20px 16px;
  z-index: 1;
}

.snsgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .snsgrid {
    grid-template-columns: repeat(3, 1fr);
    max-width: var(--max);
    gap: 14px;
    align-items: start;
  }
}

.snscard {
  background: var(--c-white);
  border: 2px solid var(--c-black);
  border-radius: 12px;
  padding: 14px 14px 16px;
  box-shadow: 3px 3px 0 var(--c-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.snscard__tag {
  display: inline-block;
  background: var(--c-black);
  color: var(--c-white);
  font-weight: 900;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.snscard__img {
  width: 100%;
  max-width: 280px;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f4f4;
  border: 2px solid var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.snscard__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.snscard__desc {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

/* =============================================================
   NOTES
   ============================================================= */
.notes {
  position: relative;
  padding: 32px 16px;
  z-index: 1;
}

.notes__block {
  max-width: var(--max);
  margin: 0 auto 14px;
  background: var(--c-white);
  border: 2px solid var(--c-black);
  border-radius: 12px;
  padding: 14px 14px 16px;
}
.notes__h {
  font-size: 16px;
  font-weight: 900;
  color: var(--c-black);
  border-left: 6px solid var(--c-red);
  padding-left: 10px;
  margin-bottom: 12px;
}
.notes__subh {
  font-size: 14px;
  font-weight: 900;
  color: var(--c-black);
  padding-left: 4px;
  margin: 8px 0 6px;
  position: relative;
}
.notes__subh::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 14px;
  background: var(--c-black);
  margin-right: 8px;
  vertical-align: -2px;
  border-radius: 1px;
}
.notes__block .notes__list + .notes__list {
  margin-top: 10px;
}
.notes__links {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.notes__links li {
  list-style: none;
}
.notes__links a {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: var(--c-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.notes__links a:hover {
  opacity: 0.7;
}
.notes__list {
  display: grid;
  gap: 6px;
}
.notes__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  text-wrap: wrap;
  letter-spacing: 0;
}
.notes__list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-red);
  font-size: 10px;
  line-height: 1.8;
}
.notes__list small {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-gray);
}

/* =============================================================
   OTHER EVENT
   ============================================================= */
.other {
  position: relative;
  padding: 20px 16px;
  z-index: 1;
}

.other__card {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--c-white);
  border: 2px solid var(--c-black);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--c-black);
}
.other__banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
@media (max-width: 480px) {
  .other__banners {
    grid-template-columns: 1fr;
  }
}
.other__banners li {
  border: 3px solid var(--c-black);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--c-black);
}
.other__banners img {
  width: 100%;
  height: auto;
  display: block;
}
.other__lead {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 14px;
}
.other__lead strong {
  display: block;
  font-size: 16px;
  color: var(--c-red);
}

/* =============================================================
   FINAL CTA
   ============================================================= */
.final {
  position: relative;
  padding: 40px 16px 32px;
  z-index: 1;
  text-align: center;
}
.final__pre {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.final__ttl {
  font-size: clamp(24px, 6.4vw, 36px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.final__ttl-logo {
  max-width: 360px;
  width: 86%;
  height: auto;
  filter: drop-shadow(0 6px 0 rgba(0, 0, 0, 0.18));
}
.final__ttl-text {
  display: inline-block;
  background: var(--c-black);
  color: var(--c-yellow);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: clamp(20px, 5.4vw, 28px);
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 16px 8px;
  font-size: 12px;
  font-weight: 700;
}
.footer__small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 4px;
}

/* =============================================================
   Floating CTA
   ============================================================= */
.float-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px)) 16px;
  background: transparent;
  pointer-events: none;
}
.float-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffb947 0%, #ff8a1a 55%, #e35a00 100%);
  color: var(--c-white);
  border: 2px solid var(--c-black);
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 900;
  font-size: clamp(15px, 4.2vw, 18px);
  letter-spacing: 0.04em;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.28),
    0 2px 4px rgba(0, 0, 0, 0.18),
    3px 3px 0 var(--c-black);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  white-space: nowrap;
  pointer-events: auto;
}
.float-cta__btn:hover {
  transform: translate(1px, 1px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.26),
    0 2px 4px rgba(0, 0, 0, 0.18),
    2px 2px 0 var(--c-black);
}
.float-cta__main {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}
.float-cta__arrow {
  font-size: 12px;
}
