:root {
  color-scheme: light;
  --green: #00b36b;
  --green-dark: #007f50;
  --green-soft: #e8fff4;
  --ink: #101820;
  --ink-2: #2d3842;
  --muted: #62717f;
  --line: #dfe7ee;
  --line-dark: #b9c7d3;
  --bg: #f6f8fb;
  --card: #ffffff;
  --dark: #07140f;
  --yellow: #f5c542;
  --shadow: 0 14px 36px rgba(10, 24, 38, 0.08);
  --shadow-soft: 0 6px 18px rgba(10, 24, 38, 0.06);
  --radius: 16px;
  --container: 1120px;
  --pad: clamp(16px, 4vw, 32px);
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 76px;
  color: var(--ink);
  background: #fff;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  letter-spacing: 0;
}

.container,
.page-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--green);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.12);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: 5px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a,
.header-cta,
.button,
.mini-link,
.footer-links a {
  text-decoration: none;
}

.nav a:hover,
.mini-link:hover {
  color: var(--green-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.hero {
  padding: clamp(44px, 7vw, 92px) 0 58px;
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 179, 107, 0.16), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7faf9 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #7cffb7;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.08;
  font-weight: 950;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.28;
  font-weight: 950;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}

.hero-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-2);
  font-size: clamp(16px, 1.7vw, 19px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-points span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.hero-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  transition: 180ms ease;
}

.button:hover {
  border-color: var(--green-dark);
  background: var(--green-dark);
  transform: translateY(-1px);
}

.button.secondary {
  background: #fff;
  color: var(--green-dark);
}

.button.small {
  min-height: 42px;
  padding: 8px 15px;
  font-size: 14px;
}

.microcopy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  border-radius: 24px 24px 0 0;
  background: var(--green);
}

.hero-card-head {
  display: grid;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.hero-card-head span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card-head strong {
  font-size: 23px;
  line-height: 1.35;
}

.route-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.route-list li > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 950;
}

.route-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.metric-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
}

.metric-grid strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.metric-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: clamp(52px, 8vw, 92px) 0;
}

.section.compact {
  padding: 28px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head p,
.problem-grid p,
.ranking-text,
.flow-grid p,
.faq-item p,
.area-card p,
.article-body p {
  color: var(--muted);
}

.problem-section {
  background: #fff;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.problem-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 850;
}

.problem-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dark-band {
  background: #fff;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
}

.dark-layout p {
  color: var(--muted);
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.criteria-grid article,
.area-card,
.ranking-card,
.flow-grid article,
.faq-item,
.article-body {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.criteria-grid article {
  min-height: 210px;
  padding: 20px;
  border-radius: 16px;
}

.criteria-grid span,
.rank-mark strong {
  color: var(--green-dark);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.criteria-grid p {
  color: var(--muted);
  font-size: 14px;
}

.area-section,
.table-section,
.flow-section {
  background: var(--bg);
}

.area-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 0.9fr));
  gap: 14px;
}

.area-card {
  display: grid;
  gap: 10px;
  min-height: 188px;
  padding: 22px;
  border-radius: 18px;
  color: var(--ink);
  text-decoration: none;
  transition: 180ms ease;
}

.area-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.area-card span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.area-card strong {
  font-size: 23px;
  line-height: 1.3;
}

.area-card.primary {
  border-color: var(--green);
  border-left: 5px solid var(--green);
  background: #fff;
  color: var(--ink);
}

.area-card.primary span {
  color: var(--green-dark);
}

.area-card.primary p {
  color: var(--muted);
}

.ranking-list {
  display: grid;
  gap: 18px;
}

.ranking-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 22px;
  padding: 24px;
  border-radius: 18px;
}

.ranking-card.top {
  border-color: var(--green);
  box-shadow: 0 18px 42px rgba(0, 179, 107, 0.14);
}

.rank-mark {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 104px;
  border-radius: 16px;
  background: var(--green-soft);
}

.rank-mark small {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
}

.rank-mark strong {
  font-size: 52px;
}

.ranking-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 16px;
}

.ranking-title p {
  margin: 0;
  color: var(--ink-2);
  font-weight: 800;
}

.fit-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.fit-badge.neutral {
  border-color: var(--line);
  background: #fff;
  color: var(--green-dark);
}

.ranking-hook {
  margin: 0 0 16px;
  padding: 15px 16px;
  border-left: 4px solid var(--green);
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--ink);
  font-weight: 850;
}

.pr-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 6px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.spec-grid div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfdff;
}

.spec-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.spec-grid strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
}

.reason-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.reason-grid span {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
}

.reason-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.reason-grid.compact {
  margin-top: 10px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.scroll-hint {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
}

.comparison-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: -8px 0 18px;
}

.comparison-summary article {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.comparison-summary span {
  display: block;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
}

.comparison-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 18px;
}

.comparison-summary p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 1040px;
  border-collapse: separate;
  border-spacing: 0;
}

th,
td {
  padding: 15px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

th {
  background: var(--green-soft);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

td:first-child,
th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff;
  box-shadow: 8px 0 14px rgba(10, 24, 38, 0.06);
}

thead th:first-child {
  z-index: 3;
  background: var(--green-soft);
}

td:last-child,
th:last-child {
  border-right: 0;
}

tr:last-child td {
  border-bottom: 0;
}

td a {
  color: var(--green-dark);
  font-weight: 900;
}

.table-focus td {
  background: #fcfffd;
}

.table-rank {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.table-fit {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 7px;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 9px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.detail-link:hover {
  background: var(--green-dark);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.flow-grid article {
  padding: 20px;
  border-radius: 16px;
}

.flow-grid span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
}

.flow-grid strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 19px;
}

.faq-item {
  border-radius: 14px;
  overflow: hidden;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item summary {
  cursor: pointer;
  padding: 17px 20px;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
}

.quiet-note {
  margin: 0;
  color: #8b98a5;
  font-size: 12px;
  text-align: center;
}

.page-title {
  padding: 42px 0 22px;
}

.page-shell {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding-bottom: 88px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--ink-2);
  text-decoration: none;
}

.lead {
  color: var(--muted);
}

.article-body {
  padding: 28px;
  border-radius: 16px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 96px;
}

.card,
.score-box,
.notice,
.detail-callout,
.quick-grid article,
.mini-table,
.faq-block {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.card,
.score-box,
.notice,
.detail-callout,
.faq-block {
  padding: 22px;
}

.card.emphasis,
.detail-callout {
  border-left: 5px solid var(--green);
}

.two-col,
.card-grid.three,
.quick-grid {
  display: grid;
  gap: 14px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid.three,
.quick-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-grid article {
  padding: 18px;
}

.quick-grid span,
.source-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.quick-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.45;
}

.meta-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.meta-list li:last-child {
  border-bottom: 0;
}

.meta-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.mini-table {
  overflow: hidden;
  margin-top: 14px;
}

.mini-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.mini-row:last-child {
  border-bottom: 0;
}

.mini-row span {
  color: var(--green-dark);
  font-weight: 950;
}

.cta-stack {
  display: grid;
  gap: 10px;
}

.faq-block details + details {
  margin-top: 10px;
}

.faq-block summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 950;
}

.faq-block p {
  margin: 8px 0 0;
}

.article-body h2 {
  margin: 36px 0 10px;
}

.article-body h2:first-child {
  margin-top: 0;
}

.check-list,
.simple-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.simple-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before,
.simple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-soft);
}

.article-list {
  display: grid;
  gap: 12px;
}

.article-link {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}

.article-link span {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 34px var(--pad);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

.footer-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.footer-inner strong {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.footer-links a {
  color: var(--green-dark);
}

.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: none;
  gap: 8px;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -8px 20px rgba(10, 24, 38, 0.08);
}

.sticky-cta a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 950;
  text-decoration: none;
}

.sticky-cta a:first-child {
  background: var(--green-soft);
  color: var(--green-dark);
}

.sticky-cta a:last-child {
  background: var(--green);
  color: #fff;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .hero-layout,
  .section-head,
  .problem-grid,
  .content-layout,
  .dark-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .criteria-grid,
  .area-grid,
  .comparison-summary,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: auto;
    gap: 10px;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .hero {
    padding-top: 32px;
  }

  .hero-card,
  .ranking-card,
  .article-body {
    padding: 20px;
  }

  .criteria-grid,
  .area-grid,
  .flow-grid,
  .comparison-summary,
  .card-grid.three,
  .quick-grid,
  .reason-grid,
  .spec-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .meta-list li,
  .mini-row {
    grid-template-columns: 1fr;
  }

  .ranking-card {
    grid-template-columns: 1fr;
  }

  .ranking-title {
    display: grid;
  }

  .rank-mark {
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 10px;
    min-height: auto;
    padding: 12px;
  }

  .rank-mark strong {
    font-size: 36px;
  }

  .button {
    width: 100%;
  }

  .sticky-cta {
    display: flex;
  }
}
