/* ============================================================
   ZENBU — concept art. Design tokens + layout.
   ============================================================ */

:root {
  --washi: #F4F1EA;
  --washi-raised: #ECE7DB;
  --sumi: #1A1A1A;
  --sumi-soft: #5A5A5A;
  --shu: #E0533D;
  --ai: #1F3A5F;
  --kin: #C9A227;

  --bg: var(--washi);
  --fg: var(--sumi);
  --fg-soft: var(--sumi-soft);
  --hairline: rgba(26, 26, 26, 0.12);
  --hairline-strong: rgba(26, 26, 26, 0.22);
  --surface-raised: var(--washi-raised);

  --font-display: "Shippori Mincho", serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;

  --max-w: 640px;
  --tab-bar-h: 64px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: var(--sumi);
    --fg: var(--washi);
    --fg-soft: #B9B4A8;
    --hairline: rgba(244, 241, 234, 0.14);
    --hairline-strong: rgba(244, 241, 234, 0.26);
    --surface-raised: #232323;
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a { color: inherit; }

button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--shu);
  outline-offset: 2px;
  border-radius: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- ambient background ---------- */

.ink-wash {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ink-wash__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.14;
  animation: drift 46s ease-in-out infinite alternate;
}

.ink-wash__blob--1 {
  width: 46vh; height: 46vh;
  left: -10%; top: -8%;
  background: radial-gradient(circle, var(--ai), transparent 70%);
}

.ink-wash__blob--2 {
  width: 40vh; height: 40vh;
  right: -12%; top: 30%;
  background: radial-gradient(circle, var(--shu), transparent 70%);
  animation-duration: 58s;
  animation-delay: -10s;
}

.ink-wash__blob--3 {
  width: 36vh; height: 36vh;
  left: 10%; bottom: -14%;
  background: radial-gradient(circle, var(--sumi-soft), transparent 70%);
  animation-duration: 52s;
  animation-delay: -22s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(6%, 8%) scale(1.12); }
}

/* ---------- layout shell ---------- */

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

main {
  flex: 1 0 auto;
  padding-bottom: calc(var(--tab-bar-h) + 24px);
}

/* ---------- top nav (desktop) ---------- */

.top-nav {
  display: none;
}

@media (min-width: 768px) {
  .top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--hairline);
  }
  .top-nav__mark {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 15px;
  }
  .top-nav__links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0; padding: 0;
  }
  .top-nav__links a {
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-soft);
    padding: 6px 2px;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }
  .top-nav__links a.is-active,
  .top-nav__links a:hover {
    color: var(--shu);
    border-color: var(--shu);
  }
  main { padding-bottom: 60px; }
  body.has-bottom-bar main { padding-bottom: 60px; }
}

/* ---------- bottom tab bar (mobile) ---------- */

.tab-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--hairline-strong);
  background: var(--surface-raised);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  z-index: 40;
}

@media (min-width: 768px) {
  .tab-bar { display: none; }
}

.tab-bar__divider {
  width: 1px;
  margin: 14px 0;
  background: var(--hairline);
  flex-shrink: 0;
}

.tab-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 64px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.tab-bar__seal {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
}

.tab-bar__seal::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.2px solid var(--shu);
  border-radius: 3px;
  transform: rotate(-5deg);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tab-bar__jp {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--fg-soft);
  transition: color 0.2s ease;
}

.tab-bar__label {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  transition: color 0.2s ease;
}

.tab-bar__item.is-active .tab-bar__jp {
  color: var(--shu);
}
.tab-bar__item.is-active .tab-bar__label {
  color: var(--shu);
  font-weight: 700;
}
.tab-bar__item.is-active .tab-bar__seal::before {
  opacity: 0.6;
  transform: rotate(-5deg) scale(1.05);
}

/* ============================================================
   SEARCH SCREEN
   ============================================================ */

.hero {
  padding: 56px 0 28px;
  text-align: center;
  position: relative;
}

.hero__mark {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.hero__kanji {
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.3em;
  color: var(--fg);
  clip-path: inset(0 0 0 100%);
}

.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: 0.08em;
  margin: 4px 0 10px;
  clip-path: inset(0 100% 0 0);
}

.hero__tagline {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
  margin: 0;
}

.search-field {
  margin: 36px 0 8px;
}

.search-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin-bottom: 10px;
}

.search-field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  background: transparent;
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--fg);
  padding: 10px 2px;
  min-height: 44px;
  transition: border-color 0.2s;
}

.search-field input::placeholder {
  color: var(--fg-soft);
  opacity: 0.6;
}

.search-field input:focus {
  border-color: var(--shu);
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 40px 0 14px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

.section-label__jp {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--hairline-strong);
}

.profile-row-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--hairline);
}

.profile-row {
  display: block;
  border-bottom: 1px solid var(--hairline);
}

.profile-row a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 2px;
  text-decoration: none;
  min-height: 44px;
}

.profile-row__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--hairline-strong);
  flex-shrink: 0;
}

.profile-row__info {
  flex: 1;
  min-width: 0;
}

.profile-row__name {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-row__handle {
  font-size: 12px;
  color: var(--fg-soft);
}

.profile-row__count {
  text-align: right;
  flex-shrink: 0;
}

.profile-row__count strong {
  display: block;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.profile-row__count span {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

/* sort dropdown */

.sort-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sort-select {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
  background-color: var(--surface-raised);
  border: 1.5px solid var(--shu);
  border-radius: 999px;
  padding: 7px 32px 7px 16px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path d='M2 3.5 5 6.5 8 3.5' fill='none' stroke='%23E0533D' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 13px center;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.sort-select:hover {
  border-color: var(--shu);
  box-shadow: 0 0 0 3px rgba(224, 83, 61, 0.15);
}

.sort-select:focus-visible {
  outline: none;
  border-color: var(--shu);
  box-shadow: 0 0 0 3px rgba(224, 83, 61, 0.3);
}

.sort-select option {
  font-family: var(--font-body);
  font-size: 14px;
  background-color: var(--surface-raised);
  color: var(--fg);
  text-transform: none;
  letter-spacing: normal;
}

#results-status {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

/* empty state */

.empty-state {
  text-align: center;
  padding: 48px 20px;
}

.empty-state svg {
  margin: 0 auto 18px;
  opacity: 0.5;
}

.empty-state p {
  font-size: 14px;
  color: var(--fg-soft);
  margin: 0 0 20px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--hairline-strong);
  padding: 12px 20px;
  min-height: 44px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--shu);
  color: var(--shu);
}

/* ============================================================
   PROFILE SCREEN
   ============================================================ */

.profile-header {
  padding: 40px 0 24px;
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}

.profile-header__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--hairline-strong);
  margin: 0 auto 16px;
}

.profile-header__name {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 4px;
}

.profile-header__handle {
  font-size: 13px;
  color: var(--fg-soft);
  margin: 0 0 12px;
}

.profile-header__bio {
  font-size: 13px;
  color: var(--fg-soft);
  max-width: 42ch;
  margin: 0 auto 28px;
}

.profile-header__total {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.profile-header__total-number {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.profile-header__total-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

.profile-header__total-label .jp {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}

.platform-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.platform-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--hairline);
  border-left: 2px solid transparent;
  padding-left: 10px;
  margin-left: -12px;
  transition: border-color 0.3s ease;
}

.platform-row.is-sealed {
  border-left-color: var(--shu);
}

.platform-row__glyph {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-soft);
  flex-shrink: 0;
}

.platform-row__glyph svg { width: 20px; height: 20px; }

.platform-row__mid {
  flex: 1;
  min-width: 0;
}

.platform-row__name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
}

.platform-row__bar-track {
  height: 3px;
  background: var(--hairline);
  width: 100%;
  overflow: hidden;
}

.platform-row__bar-fill {
  height: 100%;
  width: 0%;
  background: var(--sumi-soft);
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.platform-row.is-sealed .platform-row__bar-fill {
  background: var(--shu);
}

.platform-row__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.platform-row__count {
  font-variant-numeric: tabular-nums;
  font-size: 15px;
  font-weight: 700;
  min-width: 3ch;
  text-align: right;
}

.platform-row__stamp-wrap {
  position: relative;
}

.block-btn {
  border: 1px solid var(--hairline-strong);
  min-height: 40px;
  padding: 0 14px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}

.block-btn:hover:not(:disabled) {
  border-color: var(--shu);
  color: var(--shu);
}

.block-btn:disabled {
  border-color: transparent;
  color: var(--fg-soft);
  cursor: default;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.hanko {
  position: absolute;
  top: 50%; left: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  z-index: 5;
}

.hanko__bleed {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 83, 61, 0.35), transparent 70%);
  opacity: 0;
}

.hanko__stamp {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 2.5px solid var(--shu);
  background: rgba(244, 241, 234, 0.02);
  color: var(--shu);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hanko__cjk {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.hanko__en {
  font-size: 6px;
  letter-spacing: 0.12em;
}

.sticky-block-all {
  position: static;
  padding: 24px 0 12px;
}

.sticky-block-all__btn {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: var(--sumi);
  color: var(--washi);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

@media (prefers-color-scheme: dark) {
  .sticky-block-all__btn { background: var(--washi); color: var(--sumi); }
}

.sticky-block-all__btn:active { transform: scale(0.99); }

@media (min-width: 768px) {
  .sticky-block-all__btn { max-width: 320px; margin: 0 auto; }
}

/* ============================================================
   LEADERBOARD SCREEN
   ============================================================ */

.board-header {
  padding: 40px 0 20px;
}

.board-header h1 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 4px;
}

.board-header p {
  font-size: 12px;
  color: var(--fg-soft);
  margin: 0;
}

.segmented {
  display: flex;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  padding: 3px;
  margin: 24px 0 28px;
  width: fit-content;
}

.segmented button {
  padding: 8px 18px;
  min-height: 38px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--fg-soft);
  border-radius: 999px;
  transition: background-color 0.2s, color 0.2s;
}

.segmented button.is-active {
  background: var(--sumi);
  color: var(--washi);
}

@media (prefers-color-scheme: dark) {
  .segmented button.is-active { background: var(--washi); color: var(--sumi); }
}

.rank-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--hairline);
}

.rank-row {
  position: relative;
  border-bottom: 1px solid var(--hairline);
}

.rank-row a {
  display: grid;
  grid-template-columns: 44px 40px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 2px;
  text-decoration: none;
  min-height: 44px;
}

.rank-row__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.15);
  line-height: 1;
}

@media (prefers-color-scheme: dark) {
  .rank-row__num { color: rgba(244, 241, 234, 0.15); }
}

.rank-row.is-first .rank-row__num {
  color: var(--kin);
}

.rank-row__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--hairline-strong);
}

.rank-row__info { min-width: 0; display: flex; flex-direction: column; }

.rank-row__name {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-row__count {
  text-align: right;
  flex-shrink: 0;
}

.rank-row__count strong {
  display: block;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.rank-row__count span {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

.bar-chart {
  margin-top: 8px;
}

.bar-chart__row {
  margin-bottom: 20px;
}

.bar-chart__label-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  font-size: 12px;
}

.bar-chart__name {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bar-chart__name svg { width: 16px; height: 16px; color: var(--fg-soft); }

.bar-chart__value {
  font-variant-numeric: tabular-nums;
  color: var(--fg-soft);
  font-size: 12px;
}

.bar-chart__track {
  height: 10px;
  background: transparent;
}

.bar-chart__fill {
  height: 100%;
  width: 0%;
  background: var(--sumi);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.bar-chart__row.is-top .bar-chart__fill { background: var(--shu); }

@media (prefers-color-scheme: dark) {
  .bar-chart__fill { background: var(--washi); }
  .bar-chart__row.is-top .bar-chart__fill { background: var(--shu); }
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: 24px 0;
  margin-top: 40px;
}

.site-footer p {
  font-size: 11px;
  color: var(--fg-soft);
  text-align: center;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ============================================================
   MISC / animation helpers
   ============================================================ */

.fade-rise {
  opacity: 0;
  transform: translateY(12px);
}

.js-anim-off .fade-rise {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ink-wash__blob { animation: none; }
  .fade-rise { opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   GAMIFICATION — medals, heat chips, seal bursts, full-seal banner
   ============================================================ */

/* --- top-3 rank medals --- */

.medal {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  justify-self: center;
}

.medal svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
}

.medal--gold { color: var(--kin); }
.medal--silver { color: #9AA1A8; }
.medal--bronze { color: #B5623A; }

.medal__num {
  position: absolute;
  left: 50%;
  top: 59%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.medal__shine {
  opacity: 0.9;
  transform-box: fill-box;
  transform-origin: center;
  animation: medal-spin 3.4s linear infinite;
}

@keyframes medal-spin {
  to { transform: rotate(360deg); }
}

.rank-row.is-first {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.1), transparent 65%);
}

/* --- heat / momentum chip --- */

.heat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  color: var(--shu);
}

.heat__flame {
  width: 13px;
  height: 13px;
  transform-origin: 50% 90%;
  animation: flame-flicker 0.8s ease-in-out infinite alternate;
}

.heat__pct {
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.heat__label {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-soft);
}

@keyframes flame-flicker {
  from { transform: scaleY(1) rotate(-2.5deg); }
  to   { transform: scaleY(1.16) rotate(2.5deg); }
}

/* --- seal petal burst --- */

.burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 6;
}

.burst svg {
  position: absolute;
  left: -24px;
  top: -24px;
  width: 48px;
  height: 48px;
  overflow: visible;
}

.burst__petal { fill: var(--shu); }
.burst__petal:nth-child(even) { fill: var(--kin); }

/* --- full-seal celebration banner --- */

.zenbu-banner {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(244, 241, 234, 0.88);
  opacity: 0;
  pointer-events: none;
}

@media (prefers-color-scheme: dark) {
  .zenbu-banner { background: rgba(26, 26, 26, 0.88); }
}

.zenbu-banner.is-static { opacity: 1; }

.zenbu-banner__seal {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shu);
}

.zenbu-banner__enso {
  width: 100%;
  height: 100%;
  display: block;
}

.zenbu-banner__kanji {
  position: absolute;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--fg);
}

.zenbu-banner__text {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
