:root {
  --font-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "MS PMincho", serif;
  --color-bg: #f9f9f9;
  --color-surface: #ffffff;
  --color-text: #1f2a37;
  --color-muted: #4e5b6a;
  --color-border: #d8dee6;
  --color-primary: #1f4c83;
  --color-primary-dark: #16365c;
  --shadow-soft: 0 12px 28px rgba(15, 23, 42, 0.08);
  --radius-md: 8px;
  --radius-lg: 14px;
  --container-width: 1120px;
  --space-section: clamp(64px, 8vw, 108px);
  --space-section-sp: 52px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.home {
  background-color: #fff;
}

button,
input,
select,
textarea,
.heading-sans,
.global-nav-list a,
.entry-content,
.company-row dt,
.company-row dd,
.wp-block-button__link {
  font-family: var(--font-sans);
}

.heading-serif {
  font-family: var(--font-serif);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  background-color: #111827;
  color: #ffffff;
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(216, 222, 230, 0.72);
  backdrop-filter: saturate(1.2) blur(10px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding {
  margin: 0;
}

.site-logo-text {
  display: inline-block;
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-primary-dark);
}

.custom-logo-link {
  display: inline-block;
}

.custom-logo {
  max-height: 50px;
  width: auto;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1;
  padding: 10px 13px;
  font-weight: 600;
}

.nav-toggle-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-icon::before {
  top: -6px;
}

.nav-toggle-icon::after {
  top: 6px;
}

.global-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.global-nav-list a {
  color: #334155;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  white-space: nowrap;
  display: inline-block;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.global-nav-list a:hover,
.global-nav-list a:focus-visible {
  color: var(--color-primary-dark);
  border-color: rgba(22, 54, 92, 0.4);
  text-decoration: none;
}

.global-nav-list .current-menu-item > a,
.global-nav-list .current-page-ancestor > a {
  color: var(--color-primary-dark);
  font-weight: 600;
  border-color: rgba(22, 54, 92, 0.6);
}

.fv {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: clamp(20px, 3vw, 42px);
}

.fv-media img {
  width: 100%;
  min-height: 620px;
  max-height: 640px;
  object-fit: cover;
}

.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.52), rgba(15, 23, 42, 0.26) 42%, rgba(15, 23, 42, 0.1) 72%, rgba(15, 23, 42, 0.04));
}

.fv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.12), rgba(15, 23, 42, 0.26));
}

.fv-content {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  z-index: 1;
  padding-bottom: clamp(64px, 8vw, 108px);
}

.fv-layout {
  width: min(100% - 64px, var(--container-width));
}


.fv h1 {
  margin: 0;
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 1.28;
  letter-spacing: 0.045em;
  font-weight: 600;
  max-width: 17em;
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.2);
}

.fv-catch {
  margin-bottom: 18px;
}

.fv-brand {
  margin: 0;
}

.fv-brand-logo {
  width: min(160px, 78%);
  height: auto;
  margin-top: 16px;
  opacity: 0.96;
}

.fv-text {
  margin: 16px 0 0;
  max-width: 34em;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.93);
}

.section {
  padding: var(--space-section) 0;
}

.site-main > .section + .section {
  margin-top: clamp(12px, 2vw, 24px);
}

.page-hero {
  padding: clamp(44px, 5vw, 70px) 0 clamp(20px, 3vw, 34px);
}

.page-title {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.section-header {
  margin-bottom: 22px;
}

.section-title {
  margin: 0;
  color: var(--color-primary-dark);
  line-height: 1.4;
  font-size: clamp(24px, 2.1vw, 33px);
  letter-spacing: 0.02em;
}

.heading {
  position: relative;
  margin: 0;
  padding: 20px 0 10px 0;
  font-size: 26px;
  border-bottom: 1px solid rgba(5, 62, 98, 1);
  background: none;
  color: #000;
  line-height: 1.35;
}

.heading span {
  position: relative;
  z-index: 2;
}

.heading::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(5, 62, 98, 0.2);
  font-size: 40px;
  text-transform: uppercase;
  z-index: 1;
  border: none;
  line-height: 1;
}

.heading-page {
  font-size: clamp(28px, 2.8vw, 40px);
}

.section-lead {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.company-table {
  margin: 0;
  padding: 0;
  max-width: 1020px;
  border-top: 1px solid rgba(31, 42, 55, 0.12);
}

.company-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  border: 1px solid rgba(31, 42, 55, 0.08);
  border-radius: 14px;
  padding: clamp(42px, 4.8vw, 64px) clamp(14px, 2.2vw, 24px);
}

.home .company-panel {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.company-lead {
  margin-top: 10px;
  max-width: 46em;
  font-size: 15px;
  line-height: 1.82;
  color: #5b697a;
}

.company-header {
  margin-bottom: clamp(22px, 2.8vw, 34px);
}

.company-row {
  display: grid;
  grid-template-columns: minmax(118px, 162px) minmax(0, 1fr);
  gap: 14px 48px;
  align-items: start;
  padding: 24px 8px 22px;
  border-bottom: 1px solid rgba(31, 42, 55, 0.12);
  transition: background-color 0.22s ease;
}

.company-row dt {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.52;
  color: #73859a;
  align-self: center;
}

.company-row dd {
  margin: 0;
  max-width: 46em;
  color: #20344a;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.76;
  letter-spacing: 0.008em;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  align-self: center;
}

.services-products-page {
  padding-bottom: clamp(56px, 7vw, 88px);
}

.services-products-hero {
  padding-top: clamp(48px, 6vw, 74px);
  padding-bottom: clamp(26px, 3.8vw, 42px);
}

.services-products-label {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #6a7e92;
}

.services-products-lead {
  margin: 14px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: #1f3249;
}

.services-products-summary {
  margin: 12px 0 0;
  max-width: 54em;
  color: #5a6879;
}

.services-products-section {
  padding-top: 0;
}

.services-products-list {
  background-color: #fff;
  border: 1px solid rgba(31, 42, 55, 0.09);
  border-radius: 16px;
  padding: clamp(12px, 2vw, 18px) clamp(20px, 2.8vw, 34px);
}

.product-block {
  margin: 0;
}

.product-block + .product-block {
  border-top: 1px solid rgba(31, 42, 55, 0.1);
}

.product-block-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
  gap: 20px 34px;
  align-items: start;
  padding: clamp(24px, 3vw, 36px) 0;
}

.product-name {
  margin: 0;
  color: #1e3046;
  font-size: clamp(23px, 2.25vw, 30px);
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.product-catch {
  margin: 8px 0 0;
  color: #1f8d4b;
  font-size: 15px;
  font-weight: 500;
}

.product-copy {
  margin: 12px 0 0;
  color: #405267;
  line-height: 1.9;
  max-width: 46em;
}

.product-sub {
  margin: 12px 0 0;
  color: #4f6073;
}

.product-points {
  margin: 12px 0 0;
  padding-left: 1.25em;
  color: #405267;
}

.product-points li + li {
  margin-top: 5px;
}

.product-links {
  display: grid;
  gap: 10px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 44px;
  border: 1px solid #cfd9e4;
  border-radius: 999px;
  padding: 9px 16px;
  color: #1f3f68;
  background-color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.product-link:hover,
.product-link:focus-visible {
  text-decoration: none;
  border-color: #9eb5cd;
  background-color: #f8fbff;
}

.product-block-inner--karadanote {
  grid-template-columns: minmax(0, 1fr);
}

.product-block-inner--karadanote .product-links {
  width: 100%;
}

.product-block-inner--karadanote .product-links a {
  display: block;
  width: 100%;
}

.product-service-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(31, 42, 55, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .company-row:hover {
    background-color: rgba(31, 76, 131, 0.03);
  }
}

.document-section {
  padding-top: 24px;
}

.entry-content {
  max-width: 920px;
  margin-inline: auto;
  background-color: var(--color-surface);
  border: 1px solid #e3e8ee;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 4vw, 44px);
}
.entry-content > * {
  margin-top: 0;
}

.entry-content > * + * {
  margin-top: 14px;
}

.entry-content h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.45;
  color: var(--color-primary-dark);
}

.entry-content h1 {
  position: relative;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.45;
  color: var(--color-primary-dark);
  border-bottom: 1px solid rgba(22, 54, 92, 0.18);
}

.entry-content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: clamp(72px, 18vw, 124px);
  height: 2px;
  background-color: var(--color-primary);
}

.entry-content h3 {
  margin-top: 24px;
  margin-bottom: 6px;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--color-primary-dark);
}

.entry-content p {
  margin: 10px 0;
}

.entry-content ul,
.entry-content ol {
  margin: 8px 0 0;
  padding-left: 1.3em;
}

.entry-content li + li {
  margin-top: 6px;
}

.entry-content dl {
  margin: 16px 0 0;
  border-top: 1px solid var(--color-border);
}

.entry-content dl > dt {
  margin: 0;
  padding-top: 14px;
  color: #243142;
  font-weight: 700;
}

.entry-content dl > dd {
  margin: 4px 0 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  color: #2d3b4d;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  border-top: 1px solid var(--color-border);
}

.entry-content th,
.entry-content td {
  border-bottom: 1px solid var(--color-border);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}

.entry-content th {
  background-color: #f8fafc;
  font-weight: 700;
  color: #243142;
}

.entry-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-content strong {
  font-weight: 700;
  color: #1b2f4b;
}

.entry-content .services-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.entry-content .service-card {
  height: 100%;
  margin: 0;
  background-color: #fff;
  border: 1px solid #e3e8ee;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 22px 20px;
}

.entry-content .service-card h3 {
  margin-top: 0;
}

.entry-content .contact-list {
  margin-top: 14px;
  border-top: 1px solid var(--color-border);
}

.entry-content .contact-list > dt,
.entry-content .contact-list > dd {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 641px) {
  .entry-content .contact-list {
    display: grid;
    grid-template-columns: minmax(120px, 190px) 1fr;
    column-gap: 20px;
  }

  .entry-content .contact-list > dt,
  .entry-content .contact-list > dd {
    padding: 13px 0;
  }

  .entry-content .contact-list > dd + dt {
    border-top: 0;
  }
}

@media (max-width: 640px) {
  .entry-content .contact-list {
    display: block;
  }

  .entry-content .contact-list > dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .entry-content .contact-list > dd {
    padding-top: 0;
    padding-bottom: 12px;
  }
}

.entry-content .table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.entry-content .table-scroll table {
  min-width: 680px;
}

.entry-content .wp-block-group {
  margin-top: 16px;
}

.post_content .wp-block-table,
.entry-content .wp-block-table {
  margin: 2rem 0 0;
}

.post_content .wp-block-table table,
.entry-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  background: transparent;
}

.post_content .wp-block-table tbody tr,
.entry-content .wp-block-table tbody tr {
  border-bottom: 1px solid rgba(22, 54, 92, 0.12);
}

.post_content .wp-block-table tbody tr:first-child,
.entry-content .wp-block-table tbody tr:first-child {
  border-top: 1px solid rgba(22, 54, 92, 0.12);
}

.post_content .wp-block-table td,
.post_content .wp-block-table th,
.entry-content .wp-block-table td,
.entry-content .wp-block-table th {
  padding: 1.4rem 0;
  border: 0;
  vertical-align: top;
  background: transparent;
}

.post_content .wp-block-table td:first-child,
.post_content .wp-block-table th:first-child,
.entry-content .wp-block-table td:first-child,
.entry-content .wp-block-table th:first-child {
  width: 11rem;
  padding-right: 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #5f6f82;
  white-space: nowrap;
}

.post_content .wp-block-table td:last-child,
.post_content .wp-block-table th:last-child,
.entry-content .wp-block-table td:last-child,
.entry-content .wp-block-table th:last-child {
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.9;
  color: #1f2a37;
}

.post_content .wp-block-table tr:last-child td:last-child,
.post_content .wp-block-table tr:last-child th:last-child,
.entry-content .wp-block-table tr:last-child td:last-child,
.entry-content .wp-block-table tr:last-child th:last-child {
  max-width: 42rem;
}

.entry-content .wp-block-buttons {
  margin-top: 18px;
  margin-bottom: 4px;
}

.entry-content .wp-block-buttons .wp-block-button__link {
  border-radius: 999px;
  padding: 0.72em 1.2em;
  font-size: 14px;
  text-decoration: none;
}

.entry-content .wp-block-image {
  margin-top: 16px;
}

.entry-content .wp-block-image img {
  border-radius: var(--radius-md);
}

.entry-content .wp-block-image figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-muted);
}

.entry-content--tradelaw > * + * {
  margin-top: 1.05rem;
}

.entry-content--tradelaw p > strong {
  display: block;
  margin-top: 1.1rem;
  margin-bottom: 0.25rem;
}

.entry-content--tradelaw ul,
.entry-content--tradelaw ol {
  margin-top: 0.7rem;
}

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

.footer-inner {
  padding: 34px 0 42px;
}

.footer-nav .global-nav-list {
  gap: 16px 20px;
}

.footer-nav a {
  color: var(--color-muted);
  font-size: 14px;
}

.copyright {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
    gap: 14px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 10px;
  }

  .nav-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0 0 0 0);
    overflow: hidden;
    white-space: nowrap;
  }

  .global-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--color-border);
    display: none;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
  }

  .global-nav.is-open {
    display: block;
  }

  .global-nav-list {
    display: block;
    padding: 14px 20px 18px;
  }

  .global-nav-list li + li {
    margin-top: 2px;
  }

  .global-nav-list a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f6;
    font-size: 14px;
    letter-spacing: 0.02em;
  }

  .global-nav-list li:last-child a {
    border-bottom: 0;
  }

  .fv-media img {
    min-height: 520px;
  }

  .fv-copy {
    max-width: 100%;
  }

  .fv h1 {
    font-size: clamp(30px, 7vw, 44px);
    letter-spacing: 0.03em;
  }

  .fv-layout {
    width: min(100% - 44px, var(--container-width));
  }

  .company-row {
    grid-template-columns: minmax(108px, 144px) minmax(0, 1fr);
    gap: 10px 24px;
    padding: 20px 6px 18px;
  }

  .product-block-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .product-links {
    gap: 8px;
  }
}

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

  .container {
    width: min(100% - 28px, var(--container-width));
  }

  .section {
    padding: var(--space-section-sp) 0;
  }

  .site-main > .section + .section {
    margin-top: 10px;
  }

  .page-hero {
    padding: 36px 0 12px;
  }

  .page-title {
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .heading {
    padding: 16px 0 10px;
    font-size: 22px;
  }

  .heading::before {
    font-size: 32px;
  }

  .heading-page {
    font-size: clamp(24px, 7.2vw, 30px);
  }

  .fv-content {
    padding-bottom: 46px;
  }

  .fv-layout {
    width: min(100% - 32px, var(--container-width));
  }

  .fv-catch {
    margin-bottom: 14px;
  }

  .fv h1 {
    letter-spacing: 0.02em;
  }

  .entry-content {
    padding: 22px 18px;
  }

  .company-panel {
    border-radius: 12px;
    padding: 30px 14px 36px;
  }

  .home .company-panel {
    border-radius: 0;
    padding: 0;
  }

  .company-lead {
    font-size: 14px;
    line-height: 1.78;
  }

  .company-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 2px;
  }

  .company-row dt {
    font-size: 14px;
    letter-spacing: 0.06em;
    padding-top: 0;
    align-self: center;
  }

  .company-row dd {
    font-size: 17px;
    line-height: 1.74;
  }

  .services-products-hero {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .services-products-lead {
    font-size: clamp(18px, 6vw, 21px);
    line-height: 1.5;
  }

  .services-products-list {
    border-radius: 12px;
    padding: 8px 14px;
  }

  .product-block-inner {
    padding: 18px 0;
  }

  .product-name {
    font-size: clamp(21px, 6.5vw, 26px);
  }

  .product-catch {
    font-size: 14px;
  }

  .product-link {
    min-height: 42px;
    font-size: 12px;
    padding: 8px 14px;
  }

  .entry-content .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .entry-content .service-card {
    padding: 18px 16px;
  }

  .entry-content .table-scroll table {
    min-width: 560px;
  }

  .footer-inner {
    padding: 28px 0 32px;
  }
}

@media (max-width: 767px) {
  .post_content .wp-block-table table,
  .post_content .wp-block-table tbody,
  .post_content .wp-block-table tr,
  .post_content .wp-block-table td,
  .post_content .wp-block-table th,
  .entry-content .wp-block-table table,
  .entry-content .wp-block-table tbody,
  .entry-content .wp-block-table tr,
  .entry-content .wp-block-table td,
  .entry-content .wp-block-table th {
    display: block;
    width: 100%;
  }

  .post_content .wp-block-table tbody tr,
  .entry-content .wp-block-table tbody tr {
    padding: 1rem 0;
  }

  .post_content .wp-block-table td,
  .post_content .wp-block-table th,
  .entry-content .wp-block-table td,
  .entry-content .wp-block-table th {
    padding: 0;
  }

  .post_content .wp-block-table td:first-child,
  .post_content .wp-block-table th:first-child,
  .entry-content .wp-block-table td:first-child,
  .entry-content .wp-block-table th:first-child {
    width: auto;
    padding-right: 0;
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .post_content .wp-block-table td:last-child,
  .post_content .wp-block-table th:last-child,
  .entry-content .wp-block-table td:last-child,
  .entry-content .wp-block-table th:last-child {
    font-size: 1rem;
    line-height: 1.8;
  }
}
