/* ==========================================================
   案2「BAUHAUS — 原色の構成」 Sons Labo コーポレートサイト
   紙白 × 赤・青・黄 × 墨黒 / 円・三角・四角による構成
   ========================================================== */

:root {
  --paper:  #F7F4EE;
  --white:  #FFFFFF;
  --ink:    #1A1813;
  --red:    #DE3919;
  --blue:   #2547A8;
  --yellow: #F2B705;

  --font-en:   "Futura", "Avenir Next", "Helvetica Neue", sans-serif;
  --font-head: "Toppan Bunkyu Midashi Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-body: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

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

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.9;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

::selection { background: var(--yellow); color: var(--ink); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.wrap {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

section { scroll-margin-top: 84px; }

/* ---------- スキップリンク ---------- */

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: .6rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus-visible {
  left: 8px;
  top: 8px;
  outline-color: var(--yellow);
}

/* ---------- ヘッダー ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 4px solid var(--ink);
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .85rem;
}

.logo {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .16em;
  text-decoration: none;
  white-space: nowrap;
}
.logo-o {
  display: inline-block;
  width: .74em;
  height: .74em;
  margin-left: .06em;
  border-radius: 50%;
  background: var(--red);
  transform: translateY(.06em);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background-color .3s ease;
}
.logo:hover .logo-o,
.logo:focus-visible .logo-o {
  transform: translateY(.06em) scale(1.25);
  background: var(--blue);
}

.nav ul {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 2.6vw, 2.2rem);
}
.nav a {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(.8rem, 1.9vw, .95rem);
  letter-spacing: .06em;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  padding-bottom: 2px;
  white-space: nowrap;
  transition: border-color .2s ease;
}
.nav a:hover { border-bottom-color: var(--ink); }
.nav a::before {
  content: "";
  display: inline-block;
  width: .52em;
  height: .52em;
  margin-right: .4em;
  transform: translateY(-.04em);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.nav li:nth-child(1) a::before { background: var(--blue); border-radius: 50%; }
.nav li:nth-child(2) a::before { background: var(--red); }
.nav li:nth-child(3) a::before { background: var(--yellow); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.nav a:hover::before { transform: translateY(-.04em) rotate(180deg); }

/* ---------- 入場アニメーション ---------- */

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
}
@keyframes pop {
  from { opacity: 0; transform: scale(.1) rotate(-60deg); }
}
.enter     { animation: rise .9s cubic-bezier(.22,.7,.25,1) var(--d, 0s) both; }
.enter-pop { animation: pop .85s cubic-bezier(.34,1.56,.64,1) var(--d, 0s) both; }

/* ---------- 常時モーション ---------- */

@keyframes float {
  from { transform: translateY(0); }
  to   { transform: translateY(-18px); }
}
@keyframes sway {
  from { transform: rotate(-6deg); }
  to   { transform: rotate(3deg); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.anim-float { animation: float 7s ease-in-out infinite alternate; }
.anim-sway  { animation: sway 11s ease-in-out infinite alternate; }
.anim-spin  { animation: spin 55s linear infinite; }

/* ---------- ヒーロー ---------- */

.hero {
  position: relative;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(88px, 15vh, 150px);
  padding-bottom: clamp(88px, 15vh, 160px);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.shape-pos {
  position: absolute;
  transform: translate(
    calc(var(--mx, 0) * var(--depth, 12px)),
    calc(var(--my, 0) * var(--depth, 12px))
  );
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}

.pos-circle { top: -14%; right: -9%; }
.shape-circle {
  width: clamp(300px, 46vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
}

.pos-tri { bottom: -16%; left: -7%; }
.shape-tri {
  width: clamp(230px, 34vw, 480px);
  aspect-ratio: 1 / .95;
  background: var(--blue);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.pos-square { right: 21%; bottom: 15%; }
.shape-square {
  width: clamp(72px, 10vw, 140px);
  aspect-ratio: 1;
  background: var(--red);
}

.pos-bar { right: -12%; bottom: 9%; }
.shape-bar {
  width: 58vw;
  height: clamp(10px, 1.3vw, 16px);
  background: var(--ink);
  transform: rotate(-21deg);
}

.pos-ring { top: 4%; left: -52px; }
.shape-ring {
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 6px solid var(--ink);
}

.hero-dots {
  position: absolute;
  right: 36%;
  bottom: 11%;
  width: 150px;
  height: 92px;
  background-image: radial-gradient(var(--ink) 2px, transparent 2.5px);
  background-size: 15px 15px;
  opacity: .55;
}

.overline {
  display: flex;
  align-items: center;
  gap: .8em;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .42em;
}
.overline::before {
  content: "";
  width: .9em;
  height: .9em;
  background: var(--red);
  flex: none;
}

.hero h1 {
  margin-top: 1.4rem;
  max-width: 21em;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5.4vw + .4rem, 4.25rem);
  line-height: 1.32;
  letter-spacing: .03em;
}
.hero h1 .nb { white-space: nowrap; }  /* インライン図形の後で句読点が行頭に落ちるのを防ぐ */
.hero h1 em {
  font-style: normal;
  padding-bottom: .04em;
  border-bottom: .14em solid var(--red);
}

/* 見出し内のインライン図形 — コピー自体が語彙を組み立てる */
.g {
  display: inline-block;
  width: .58em;
  height: .58em;
  margin-inline: .1em;
  transform: translateY(-.03em);
}
.g-circle { background: var(--blue); border-radius: 50%; }
.g-tri    { background: var(--yellow); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.g-square { background: var(--red); }

.lead {
  margin-top: 2rem;
  max-width: 34em;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  font-weight: 500;
}

.hero-cta {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: .95rem 1.9rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .06em;
  text-decoration: none;
  box-shadow: 8px 8px 0 var(--red);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover  { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--red); }
.btn:active { transform: translate(2px, 2px);   box-shadow: 4px 4px 0 var(--red); }
.btn .arrow { font-family: var(--font-en); font-weight: 700; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  background: var(--paper);
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: .95rem 1.9rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .06em;
  text-decoration: none;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-ghost:hover  { transform: translate(-3px, -3px); box-shadow: 12px 12px 0 var(--ink); }
.btn-ghost:active { transform: translate(2px, 2px);   box-shadow: 4px 4px 0 var(--ink); }

.vertical-note {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 8%;
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .38em;
}

/* ---------- ティッカー ---------- */

.ticker {
  background: var(--ink);
  color: var(--paper);
  border-block: 4px solid var(--ink);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 36s linear infinite;
}
@keyframes tick {
  to { transform: translateX(-50%); }
}
.tick-group {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
  padding-block: .8rem;
}
.tk {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .12em;
  white-space: nowrap;
}
.tk-g { flex: none; width: 14px; height: 14px; }
.tk-c { background: var(--yellow); border-radius: 50%; }
.tk-t { background: var(--red); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.tk-s { background: var(--paper); }

/* ---------- セクション共通 ---------- */

.section { padding-block: clamp(68px, 10vw, 120px); }

.sec-head {
  display: flex;
  align-items: baseline;
  gap: clamp(.8rem, 2.4vw, 1.6rem);
  border-bottom: 6px solid var(--ink);
  padding-bottom: .6rem;
  flex-wrap: wrap;
}
.sec-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  margin-left: calc(-1 * clamp(0px, 2vw, 26px));
}
@supports (-webkit-text-stroke: 2px black) {
  .sec-num {
    color: transparent;
    -webkit-text-stroke: 2.5px var(--ink);
  }
}
.sec-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.6vw, 2.4rem);
  letter-spacing: .05em;
}
.sec-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .32em;
  align-self: center;
}
.sec-lead {
  margin-top: 1.6rem;
  max-width: 38em;
  font-weight: 500;
}

/* ---------- スクロール出現 ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .7s ease var(--d, 0s),
    transform .7s cubic-bezier(.2,.7,.2,1) var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 事業内容 ---------- */

.services { position: relative; overflow: hidden; }
.services-bgring {
  position: absolute;
  top: 8%;
  right: -18%;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--ink);
  opacity: .14;
  pointer-events: none;
}

.cards {
  position: relative;
  margin-top: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.6rem, 3.4vw, 2.6rem);
}
@media (min-width: 820px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .card:nth-child(even) { margin-top: 3rem; }     /* グリッドを意図的に破る */
  .cards { padding-bottom: 3rem; }
}
@media (min-width: 1020px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .card:nth-child(2) { margin-top: 3.2rem; }
  .card:nth-child(3) { margin-top: 1.6rem; }
}

.card {
  background: var(--white);
  border: 3px solid var(--ink);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: 9px 9px 0 var(--c, var(--ink));
  transition:
    opacity .7s ease var(--d, 0s),
    transform .7s cubic-bezier(.2,.7,.2,1) var(--d, 0s),
    box-shadow .25s ease;
}
.card.is-in:hover { transform: translate(-4px, -4px); box-shadow: 14px 14px 0 var(--c, var(--ink)); }

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.card-mark { width: clamp(72px, 9vw, 96px); flex: none; }
.card-mark svg { display: block; width: 100%; height: auto; }
.card-mark svg .rotor {
  transition: transform .55s cubic-bezier(.34,1.56,.64,1);
  transform-origin: 50px 55px;
}
.card:hover .card-mark svg .rotor,
.card:focus-within .card-mark svg .rotor { transform: rotate(90deg) scale(1.05); }

.card-num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
@supports (-webkit-text-stroke: 2px black) {
  .card-num { color: transparent; -webkit-text-stroke: 2px var(--ink); }
}

.mark-label {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .28em;
}
.card h3 {
  margin-top: .3rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  letter-spacing: .04em;
}
.card-desc {
  margin-top: .9rem;
  font-size: .95rem;
}
.tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.tags li {
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: .1rem .65rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ---------- 会社概要 ---------- */

.profile-body {
  margin-top: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 880px) {
  .profile-body { grid-template-columns: 3fr 2fr; }
}

.profile dl {
  margin: 0;
  border-top: 3px solid var(--ink);
}
.profile dl > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: .1rem 1.5rem;
  padding-block: 1.15rem;
  border-bottom: 2px solid var(--ink);
}
@media (min-width: 640px) {
  .profile dl > div { grid-template-columns: 10em 1fr; }
}
.profile dt {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: .08em;
}
.profile dt::before {
  content: "";
  display: inline-block;
  width: .5em;
  height: .5em;
  margin-right: .55em;
  background: var(--red);
  transform: translateY(-.04em);
}
.profile dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.profile .biz-list li {
  display: flex;
  align-items: center;
  gap: .6em;
}
.biz-dot { flex: none; width: .6em; height: .6em; }
.biz-dot.b-c  { background: var(--blue); border-radius: 50%; }
.biz-dot.b-t  { background: var(--yellow); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.biz-dot.b-s  { background: var(--red); }

.profile-fig {
  margin: 0;
  justify-self: center;
  max-width: 300px;
  width: 100%;
}
.profile-fig svg { display: block; width: 100%; height: auto; }
.profile-fig figcaption {
  margin-top: .9rem;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .26em;
  font-variant-numeric: tabular-nums;
}

/* ---------- お問い合わせ ---------- */

.contact {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(76px, 11vw, 130px);
}
.contact-shapes { position: absolute; inset: 0; pointer-events: none; }
.c-circle {
  position: absolute;
  top: -30%;
  right: -12%;
  width: min(46vw, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
}
.c-square {
  position: absolute;
  left: 6%;
  bottom: -6%;
  width: min(14vw, 120px);
  aspect-ratio: 1;
  background: var(--red);
  transform: rotate(18deg);
}
.c-ring {
  position: absolute;
  left: 32%;
  top: 12%;
  width: 90px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 5px solid var(--paper);
  opacity: .45;
}
.contact .wrap { position: relative; z-index: 2; }

.contact .sec-head { border-bottom-color: var(--paper); }
@supports (-webkit-text-stroke: 2px black) {
  .contact .sec-num { -webkit-text-stroke: 2.5px var(--paper); }
}

.contact-copy {
  margin-top: clamp(2rem, 4.5vw, 3.4rem);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.55rem, 3.8vw, 2.7rem);
  letter-spacing: .04em;
  line-height: 1.5;
  max-width: 22em;
}
.contact-note {
  margin-top: 1.4rem;
  max-width: 36em;
  font-weight: 400;
}
.contact-cta { margin-top: 2.6rem; }
.contact .btn { box-shadow: 8px 8px 0 var(--red); border-color: var(--paper); }
.contact .btn:hover { box-shadow: 12px 12px 0 var(--red); }
.contact :focus-visible { outline-color: var(--yellow); }

/* ---------- フッター ---------- */

.footer {
  background: var(--paper);
  border-top: 4px solid var(--ink);
}
.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
  flex-wrap: wrap;
}
.copyright {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
}
.f-shapes { display: flex; gap: .55rem; }
.f-shapes span { width: .72rem; height: .72rem; }
.f-shapes .fs-c { background: var(--blue); border-radius: 50%; }
.f-shapes .fs-t { background: var(--yellow); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.f-shapes .fs-s { background: var(--red); }
.footer a {
  font-size: .88rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.footer a:hover { text-decoration-color: var(--red); }

/* ---------- レスポンシブ調整 ---------- */

@media (max-width: 1080px) {
  .vertical-note { display: none; }
}
@media (max-width: 720px) {
  .pos-circle { top: -5%; right: -24%; }
  .shape-circle { width: min(64vw, 300px); }
  .pos-tri { bottom: -9%; left: -26%; }
  .shape-tri { width: min(58vw, 250px); }
  .pos-square { right: 7%; bottom: 6%; }
  .shape-square { width: 56px; }
  .pos-bar, .pos-ring, .hero-dots { display: none; }
  .site-head .wrap { flex-direction: column; gap: .35rem; padding-block: .7rem; }
  .f-shapes { display: none; }
}

/* ---------- モーション低減 ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: .01ms !important;
    transition-delay: 0s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
/* ---------- お問い合わせフォーム ---------- */

.contact-form {
  margin-top: 2.6rem;
  max-width: 560px;
  display: grid;
  gap: 1.3rem;
}
.ff { display: grid; gap: .45rem; }
.ff label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .06em;
}
.req {
  display: inline-block;
  margin-left: .5em;
  padding: 0 .55em;
  background: var(--yellow);
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .1em;
}
.ff input,
.ff textarea {
  width: 100%;
  border: 3px solid var(--paper);
  background: var(--white);
  color: var(--ink);
  padding: .8rem .9rem;
  font: inherit;
  font-size: 1rem;
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(247, 244, 238, .18);
}
.ff input:focus-visible,
.ff textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}
.ff textarea { resize: vertical; min-height: 9em; }
.hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status { min-height: 1.5em; font-weight: 600; }
.form-status.is-ok { color: var(--yellow); }
.form-status.is-error { color: #FF9A82; }
.contact-form .contact-cta { margin-top: .4rem; }
.contact-form .btn:disabled {
  opacity: .55;
  cursor: default;
  transform: none;
  box-shadow: 8px 8px 0 var(--red);
}

/* ---------- プライバシーポリシーページ ---------- */

.privacy-main { padding-block: clamp(56px, 9vw, 100px); }
.privacy-main .sec-head h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: .05em;
  margin: 0;
}
.privacy-body { max-width: 42em; margin-top: 2.4rem; }
.privacy-body > p { margin-bottom: 1rem; }
.privacy-body h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: .05em;
  margin: 2.6rem 0 .7rem;
  padding-left: .7em;
  border-left: .5em solid var(--red);
}
.privacy-body h2:nth-of-type(3n + 2) { border-left-color: var(--blue); }
.privacy-body h2:nth-of-type(3n) { border-left-color: var(--yellow); }
.privacy-body p,
.privacy-body li { font-size: .96rem; }
.privacy-body ul { display: grid; gap: .35rem; }
.privacy-body ul li { position: relative; padding-left: 1.1em; }
.privacy-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: .5em;
  height: .5em;
  background: var(--ink);
}
.privacy-date {
  margin-top: 3rem;
  font-size: .9rem;
  font-variant-numeric: tabular-nums;
}
