html, body, div, span, h1, h2, h3, h4, p, ul, ol, li, table, caption, tbody, tfoot, thead, tr, th, td, article, footer, header, section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

h1, h2, h3, h4 {
  font-weight: normal;
}

li {
  list-style: none;
}

html {
  overflow-y: scroll;
  height: 100%;
}

body {
  height: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row .col {
  width: 100%;
}
.row .col-2to3 {
  width: 66.66%;
}
.row .col-2 {
  width: 50%;
}
.row .col-3 {
  width: 33.33%;
}
.row .col-4 {
  width: 25%;
}
.row .col-5 {
  width: 20%;
}
@media screen and (min-width: 768px) {
  .row .tb_col {
    width: 100%;
  }
  .row .tb_col-2to3 {
    width: 66.66%;
  }
  .row .tb_col-2 {
    width: 50%;
  }
  .row .tb_col-3 {
    width: 33.33%;
  }
  .row .tb_col-4 {
    width: 25%;
  }
  .row .tb_col-5 {
    width: 20%;
  }
}
@media screen and (min-width: 1024px) {
  .row .pc_col {
    width: 100%;
  }
  .row .pc_col-2to3 {
    width: 66.66%;
  }
  .row .pc_col-2 {
    width: 50%;
  }
  .row .pc_col-3 {
    width: 33.33%;
  }
  .row .pc_col-4 {
    width: 25%;
  }
  .row .pc_col-5 {
    width: 20%;
  }
}
@media screen and (min-width: 1480px) {
  .row .full_col {
    width: 100%;
  }
  .row .full_col-2to3 {
    width: 66.66%;
  }
  .row .full_col2 {
    width: 50%;
  }
  .row .full_col-3 {
    width: 33.33%;
  }
  .row .full_col-4 {
    width: 25%;
  }
  .row .full_col-5 {
    width: 20%;
  }
}

body {
  color: #333;
  background-color: #f8F9Fa;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

a:link, a:visited {
  color: #333;
  text-decoration: underline;
}

a:hover {
  color: #666;
  text-decoration: none;
}

header.site-header {
  border-top: 4px solid #38b48b;
  background-color: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
header.site-header .header-inner {
  margin: 0 auto;
  max-width: 1440px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  header.site-header .header-inner {
    padding: 10px 12px;
  }
}

#site-title.site-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.2;
}
#site-title.site-title a:link, #site-title.site-title a:visited {
  color: #0f172a;
  text-decoration: none;
}
#site-title.site-title a:hover {
  color: #1f7a62;
  text-decoration: none;
}

.site-nav-desktop {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .site-nav-desktop {
    display: none;
  }
}

.site-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
}

.site-nav-item a:link, .site-nav-item a:visited {
  display: inline-block;
  padding: 6px 10px;
  color: #334155;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-nav-item a:hover {
  background-color: #eef8f4;
  color: #1f7a62;
  text-decoration: none;
}

.header-menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  margin-left: auto;
  padding: 0;
  border: 1px solid #d7dde3;
  border-radius: 8px;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .header-menu-toggle {
    display: inline-flex;
  }
}
.header-menu-toggle:focus-visible {
  outline: 2px solid #38b48b;
  outline-offset: 2px;
}

.header-menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.header-menu-toggle-bar {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background-color: #334155;
}

body.is-menu-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.header-menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background-color: rgba(15, 23, 42, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.header-menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.header-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(82vw, 320px);
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.2s ease;
}
.header-menu-drawer.is-open {
  box-shadow: -12px 0 24px rgba(15, 23, 42, 0.12);
  transform: translateX(0);
}

.header-menu-drawer-inner {
  height: 100%;
  padding: 16px 14px 24px;
}

.header-menu-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.header-menu-drawer-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.header-menu-close {
  padding: 4px 10px;
  border: 1px solid #d7dde3;
  border-radius: 8px;
  background-color: #fff;
  color: #334155;
  cursor: pointer;
}
.header-menu-close:focus-visible {
  outline: 2px solid #38b48b;
  outline-offset: 2px;
}

.header-menu-list {
  list-style: none;
  margin: 12px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header-menu-list .site-nav-item a:link, .header-menu-list .site-nav-item a:visited {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  background-color: #f8fafc;
}
.header-menu-list .site-nav-item a:hover {
  background-color: #eef8f4;
}

@media (prefers-reduced-motion: reduce) {
  .site-nav-item a:link,
  .site-nav-item a:visited,
  .header-menu-backdrop,
  .header-menu-drawer {
    transition: none;
  }
}
@media screen and (min-width: 768px) {
  .header-menu-backdrop,
  .header-menu-drawer {
    display: none !important;
  }
}
.content > p {
  margin: 30px 15px 0 15px;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .content > p {
    margin-top: 20px;
  }
}
.content h1 {
  margin: 30px 10px 0;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.8px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .content h1 {
    margin-top: 20px;
  }
}
.content > h2 {
  margin: 20px 0 0 15px;
  letter-spacing: 0.8px;
}

.wrap {
  width: 100%;
  height: auto;
}

.content-wrap {
  flex-grow: 1;
}

.content {
  width: auto;
  margin: 0 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .content {
    margin: 0;
  }
}
@media screen and (min-width: 1420px) {
  .content {
    max-width: 1440px;
    margin: 0 auto;
  }
}

ul.navigation {
  margin: 20px 20px 0 20px;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  ul.navigation {
    font-size: 0.85rem;
    margin: 20px 10px 0 10px;
  }
}
ul.navigation li {
  margin: 5px 0 0 10px;
}

ul.navigation + ul.navigation {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  ul.navigation + ul.navigation {
    margin-top: 13px;
  }
}

.top-navigation {
  margin: 12px 20px 0 20px;
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  .top-navigation {
    margin: 12px 10px 0 10px;
    font-size: 0.85rem;
  }
}

.top-navigation-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.top-navigation-buttons {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  flex: 0 0 auto;
}
.top-navigation-buttons .button {
  margin: 0 8px 0 0;
  flex: 0 0 auto;
  white-space: nowrap;
}

.top-navigation-year-select {
  margin: 0;
  padding: 4px 8px;
  font-size: 0.9rem;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  background-color: #fff;
  flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .top-navigation-year-select {
    font-size: 0.85rem;
  }
}

.breadcrumb {
  margin: 10px 0 0px 10px;
  font-size: 0.85rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 0.7rem;
  }
}
.breadcrumb.is-middle-margin {
  margin-top: 30px;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
}
.breadcrumb ul li {
  margin-left: 5px;
}
.breadcrumb ul li:nth-child(n+2):before {
  content: ">";
  padding-right: 5px;
}

@media screen and (max-width: 767px) {
  .breadcrumb + h1 {
    margin-top: 35px;
  }
}

.box {
  margin: 30px 10px 0 10px;
  padding: 0 0 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.063);
  background-color: white;
}
@media screen and (max-width: 767px) {
  .box {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}
.box h2 {
  margin: 20px 20px 0 20px;
  font-size: 1.1rem;
}
.box h2.is-normal {
  font-size: 1rem;
  font-weight: normal;
}
.box h2.is-border {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.063);
}
.box h3 {
  margin: 20px;
}
.box .table {
  margin: 20px;
}
@media screen and (max-width: 374px) {
  .box .table {
    margin: 20px 10px;
  }
}
@media screen and (max-width: 767px) {
  .box .table.sm-not-mr-lf {
    margin-left: 0;
    margin-right: 0;
  }
}
.box .table table {
  width: 100%;
}
.box p {
  margin: 17px 20px 0 20px;
  line-height: 1.7;
}
.box ul {
  margin: 20px 20px 0 20px;
}
.box ul li {
  margin-top: 20px;
}
.box ul.row {
  margin-top: 5px;
}
.box ul.row li {
  margin-right: 10px;
  margin-top: 10px;
  margin-bottom: 5px;
}
.box.not-pb {
  padding-bottom: 0;
}

.box-in-panel {
  padding: 25px 20px;
}
.box-in-panel h3 {
  margin: 0;
  font-weight: normal;
}
.box-in-panel .detail {
  margin: 20px 0 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

.profile {
  padding: 30px 0 20px 0;
}
@media screen and (min-width: 768px) {
  .profile {
    padding: 35px 0 25px 0;
  }
}
.profile h1 {
  margin: 0 15px;
  color: #333;
  font-family: system-ui;
  letter-spacing: 0.3px;
  font-size: 1.3rem;
}
.profile h1.is-left {
  text-align: left;
  margin-left: 20px;
}
.profile h1 + ul.row {
  margin-top: 10px;
}
.profile.box-not-padding {
  padding-top: 0;
  padding-bottom: 15px;
}

table {
  margin-top: 20px;
  margin-bottom: 10px;
  max-width: 1000px;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
  line-height: 1.5;
  font-size: 0.95rem;
}
@media screen and (max-width: 374px) {
  table {
    font-size: 0.9rem;
  }
}
table th {
  font-weight: normal;
  border-bottom: 2px solid #e0e0e0;
  padding: 10px 3px 10px 10px;
}
@media screen and (max-width: 374px) {
  table th {
    padding: 10px 2px 10px 7px;
  }
}
table td {
  padding: 10px 3px 10px 10px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 374px) {
  table td {
    padding: 10px 2px 10px 7px;
  }
}

table.is-stripe tr:nth-child(2n) {
  background-color: rgba(0, 0, 0, 0.05);
}
table tr td.bg-grey {
  background-color: hsl(0, 0%, 95%);
}
table.is-border th, table.is-border td {
  border: 1px solid #e0e0e0;
}
table.th-bg th {
  background-color: #f0f0f0;
}

@media screen and (max-width: 767px) {
  table.sm-scroll {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  table.sm-scroll::-webkit-scrollbar {
    height: 5px;
  }
  table.sm-scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  table.sm-scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}
@media screen and (max-width: 374px) {
  table.sm-mini-scroll {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  table.sm-mini-scroll::-webkit-scrollbar {
    height: 5px;
  }
  table.sm-mini-scroll::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  table.sm-mini-scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}
@media screen and (max-width: 767px) {
  table.sm-font-small th, table.sm-font-small td {
    font-size: 0.85rem;
    padding-left: 2px;
    padding-right: 2px;
  }
}
table.no-wrap-one tr td:nth-child(1), table.no-wrap-one th td:nth-child(1) {
  white-space: nowrap;
}
table.no-wrap-two tr td:nth-child(2), table.no-wrap-two th td:nth-child(2) {
  white-space: nowrap;
}
table.no-wrap-three tr td:nth-child(3), table.no-wrap-three th td:nth-child(3) {
  white-space: nowrap;
}
table.no-wrap-four tr td:nth-child(4), table.no-wrap-four th td:nth-child(4) {
  white-space: nowrap;
}
table.no-wrap-five tr td:nth-child(5), table.no-wrap-five th td:nth-child(5) {
  white-space: nowrap;
}
table.no-wrap-six tr td:nth-child(6), table.no-wrap-six th td:nth-child(6) {
  white-space: nowrap;
}

.box .td-ul ul {
  margin: 0 0 -5px 0;
  display: flex;
  flex-wrap: wrap;
}
.box .td-ul ul li {
  margin: 0 3px 5px 3px;
}

.box ul.ul-table li {
  margin: 20px 0 0 0;
  font-size: 0.95rem;
}
.box ul.ul-table li ul {
  margin: 0;
}
.box ul.ul-table li ul.has-margin-right-bottom li {
  margin-right: 10px;
  margin-bottom: 20px;
}
.box ul.ul-table li ul li {
  margin: 0;
  padding: 0;
  text-align: left;
}
.box ul.ul-table li ul.ul-td-3to1 li:nth-child(1) {
  width: 70%;
}
.box ul.ul-table li ul.ul-td-3to1 li:nth-child(2) {
  width: 20%;
}

@media screen and (max-width: 767px) {
  table.table-responsible-1 th {
    display: none;
  }
  table.table-responsible-1 td:first-child {
    background-color: #f0f0f0;
  }
  table.table-responsible-1 td {
    display: block;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: none;
  }
  table.table-responsible-1 tr.tr-last td:last-child {
    border-bottom: 1px solid #ccc;
  }
}

@media screen and (max-width: 767px) {
  table#nationallist td.break-on-mobile {
    min-width: 125px;
    word-break: break-word;
    white-space: normal;
  }
}
.pro-site {
  background-color: #f8f8f5;
  color: #172234;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", Meiryo, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.pro-site *, .pro-site *::before, .pro-site *::after {
  box-sizing: border-box;
}
.pro-site .container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}
.pro-site .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.pro-site .pro-eyebrow {
  margin: 0 0 12px;
  color: #c9302c;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.pro-site .header {
  background: #f8f8f5;
  border-bottom: 4px solid #172234;
}
.pro-site .header .container {
  min-height: 88px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.pro-site .header .site-title {
  margin: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.1;
}
.pro-site .header .site-title a {
  color: #172234;
  text-decoration: none;
}
.pro-site .header .main-nav {
  min-width: 0;
  flex: 1 1 auto;
}
.pro-site .header .main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pro-site .header .main-nav li {
  min-width: 0;
}
.pro-site .header .main-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 3px solid transparent;
  color: #172234;
  font-size: 0.875rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.pro-site .header .main-nav a:hover, .pro-site .header .main-nav a.current {
  color: #c9302c;
  border-bottom-color: #c9302c;
}
.pro-site .header .main-nav a:focus-visible {
  outline: 3px solid #c9302c;
  outline-offset: 2px;
}
.pro-site .main-content {
  min-height: 60vh;
  padding-top: clamp(48px, 7vw, 88px);
  padding-bottom: clamp(56px, 8vw, 96px);
}
.pro-site .footer {
  margin-top: 0;
  padding: 32px 0;
  border-top: 4px solid #172234;
  color: #5b6572;
  background: #f8f8f5;
  font-size: 0.875rem;
}
.pro-site .footer a {
  color: #172234;
  font-weight: 700;
}
.pro-site .footer a:hover {
  color: #c9302c;
}
.pro-site .footer p {
  margin: 6px 0;
}
.pro-site .pro-top-hero {
  max-width: 900px;
  margin-bottom: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(32px, 5vw, 52px);
  border-bottom: 8px solid #c9302c;
}
.pro-site .pro-top-hero h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 5.75rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.pro-site .pro-top-hero__description {
  max-width: 680px;
  margin: 24px 0 0;
  color: #5b6572;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
}
.pro-site .pro-top-section > h2 {
  margin: 0 0 18px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
}
.pro-site .pro-ranking-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid #172234;
  border-right: 2px solid #172234;
  border-bottom: 2px solid #172234;
}
.pro-site .pro-ranking-link {
  min-width: 0;
  min-height: 180px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  border-left: 2px solid #172234;
  color: #172234;
  text-decoration: none;
  transition: border-color 0.18s ease;
}
.pro-site .pro-ranking-link:nth-child(n+3) {
  border-top: 2px solid #172234;
}
.pro-site .pro-ranking-link:last-child:nth-child(odd) {
  grid-column: 1/-1;
}
.pro-site .pro-ranking-link:hover {
  border-left-color: #c9302c;
  color: #f8f8f5;
  background-color: #172234;
}
.pro-site .pro-ranking-link:hover .pro-ranking-link__number {
  color: #f8f8f5;
}
.pro-site .pro-ranking-link:focus-visible {
  position: relative;
  z-index: 1;
  outline: 4px solid #c9302c;
  outline-offset: 2px;
}
.pro-site .pro-ranking-link__number {
  color: #c9302c;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}
.pro-site .pro-ranking-link__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pro-site .pro-ranking-link__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.pro-site .pro-ranking-link__title {
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.pro-site .pro-ranking-link__arrow {
  font-size: 1.6rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .pro-site .container {
    padding-right: 16px;
    padding-left: 16px;
  }
  .pro-site .header .container {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
    padding-bottom: 0;
  }
  .pro-site .main-nav ul {
    width: 100%;
  }
  .pro-site .main-nav li {
    display: flex;
    flex: 1 1 0;
  }
  .pro-site .header .main-nav a {
    width: 100%;
    justify-content: center;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 0.75rem;
    text-align: center;
  }
  .pro-site .pro-ranking-links {
    grid-template-columns: 1fr;
  }
  .pro-site .pro-ranking-link {
    min-height: 136px;
  }
  .pro-site .pro-ranking-link + .pro-ranking-link {
    border-top: 2px solid #172234;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pro-site .header .main-nav a, .pro-site .pro-ranking-link {
    transition: none;
  }
}

.pro-ranking-section .pro-eyebrow {
  margin-bottom: 10px;
}
.pro-ranking-section > h2 {
  margin: 0;
  padding-bottom: 28px;
  border-bottom: 8px solid #c9302c;
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
}
.pro-ranking-section .no-data {
  margin: 36px 0 0;
  padding: 24px 0;
  border-top: 3px solid #c9302c;
  border-bottom: 1px solid #cfd4da;
  color: #5b6572;
}
.pro-ranking-section .table-wrapper {
  max-width: 100%;
  margin-top: 36px;
  border-top: 6px solid #c9302c;
  overflow: visible;
}
.pro-ranking-section .pro-ranking-table {
  width: 100%;
  max-width: none;
  margin: 0;
  table-layout: fixed;
  border-collapse: collapse;
  color: #172234;
  text-align: left;
}
.pro-ranking-section .pro-ranking-table th, .pro-ranking-section .pro-ranking-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #cfd4da;
  line-height: 1.35;
}
.pro-ranking-section .pro-ranking-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #f8f8f5;
  background-color: #172234;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pro-ranking-section .pro-ranking-table tbody tr {
  transition: background-color 0.15s ease;
}
.pro-ranking-section .pro-ranking-table tbody tr:nth-child(even) {
  background-color: rgba(23, 34, 52, 0.035);
}
.pro-ranking-section .pro-ranking-table tbody tr:hover {
  background-color: rgba(201, 48, 44, 0.065);
  box-shadow: inset 4px 0 0 #c9302c;
}
.pro-ranking-section .pro-ranking-table .rank-col {
  width: 88px;
  color: #c9302c;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  text-align: right;
  white-space: nowrap;
}
.pro-ranking-section .pro-ranking-table th.rank-col {
  color: #f8f8f5;
}
.pro-ranking-section .pro-ranking-table .name-col {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 750;
}
.pro-ranking-section .pro-ranking-table .nation-col {
  width: 112px;
  white-space: nowrap;
}
.pro-ranking-section .pro-ranking-table .birth-col {
  width: 148px;
  color: #5b6572;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .pro-ranking-section > h2 {
    padding-bottom: 22px;
    border-bottom-width: 6px;
  }
  .pro-ranking-section .table-wrapper {
    margin-top: 28px;
  }
  .pro-ranking-section .pro-ranking-table th, .pro-ranking-section .pro-ranking-table td {
    padding: 11px 8px;
  }
  .pro-ranking-section .pro-ranking-table .rank-col {
    width: 54px;
  }
  .pro-ranking-section .pro-ranking-table .nation-col {
    width: 56px;
  }
  .pro-ranking-section .pro-ranking-table .birth-col {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pro-ranking-section .pro-ranking-table tbody tr {
    transition: none;
  }
}
