:root {
  --background: #fff7ec;
  --foreground: #1f2024;
  --muted: #64686f;
  --line: #f0c39b;
  --paper: #ffffff;
  --paper-soft: #fff0dc;
  --ink: #161717;
  --red: #e60012;
  --red-deep: #9b0010;
  --gold: #ffb000;
  --green: #00a57a;
  --blue: #1764d8;
  --cream: #fff1bc;
  --orange: #ff7a18;
  --jade-soft: #e5fff6;
  --gray-line: #d9dde3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 106.25%;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fff4de 0, var(--background) 420px),
    var(--background);
  color: var(--foreground);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, Arial, sans-serif;
  line-height: 1.75;
  line-break: strict;
  text-wrap: pretty;
  font-weight: 500;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.98);
  padding: 13px max(20px, calc((100vw - 1120px) / 2 + 20px));
}

.lp-nav__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.lp-nav__brand img {
  display: block;
  width: auto;
  height: 42px;
  max-width: min(320px, 48vw);
  object-fit: contain;
}

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.lp-nav__links a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--red-deep);
  font-size: 0.85rem;
  font-weight: 800;
}

.lp-nav__links a:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.hero {
  min-height: min(58vw, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff url("../images/fv-bg.png") center top / cover no-repeat;
  overflow: hidden;
}

.hero__container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 64px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__text-image {
  display: block;
  width: min(78%, 860px);
  height: auto;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd889;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(2.25rem, 4.6vw, 4.45rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.72rem, 2.8vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.25;
}

h4 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.rank-card__top,
.company-detail__head {
  display: flex;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.3;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  background: var(--red-deep);
}

.button--primary {
  background: var(--red);
  color: #fff;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.56);
  color: #fff;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: #fff;
}

.button--card {
  width: 100%;
  margin-top: auto;
  border-color: var(--line);
  background: #fff;
  color: var(--red-deep);
}

.button--card:hover {
  background: var(--cream);
  border-color: var(--gold);
  color: var(--red-deep);
}

.image-placeholder {
  min-height: 250px;
  border: 2px dashed rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  text-align: center;
}

.image-placeholder span {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 900;
}

.image-placeholder strong {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  overflow-wrap: anywhere;
}

.image-placeholder small {
  color: rgba(255, 255, 255, 0.78);
}

.rank-card .image-placeholder,
.company-detail .image-placeholder {
  min-height: 190px;
  border-color: #ffbf55;
  color: var(--muted);
  background: #fff8df;
}

.rank-card .image-placeholder span,
.company-detail .image-placeholder span {
  background: var(--cream);
  color: var(--red-deep);
}

.rank-card .image-placeholder small,
.company-detail .image-placeholder small {
  color: var(--muted);
}

.notice {
  padding: 0 20px;
  transform: translateY(-28px);
}

.notice--bottom {
  padding: 8px 20px 64px;
  transform: none;
}

.notice > div {
  width: min(1120px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  background: #fff;
  padding: 18px 22px;
}

.notice strong {
  color: var(--red-deep);
  font-size: 0.98rem;
  font-weight: 900;
}

.notice p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 600;
}

.section {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 72px 20px;
}

.score-area {
  background: #fff;
}

.lp-footer {
  background: var(--red);
  color: #fff;
  padding: 28px 20px;
}

.lp-footer__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.lp-footer p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.6;
}

.lp-footer__links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lp-footer__links a {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
}

.lp-footer__links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section__heading {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}

.section__heading p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.8;
  text-wrap: pretty;
}

.section--ranking {
  padding-top: 56px;
}

.criteria-block {
  margin-top: 0;
}

.section--criteria {
  padding-top: 52px;
}

.criteria-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.criteria-heading h2 {
  margin-bottom: 0;
  color: var(--red-deep);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.35;
  text-wrap: balance;
}

.criteria-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
  text-wrap: pretty;
}

.ranking-table-wrap {
  overflow-x: visible;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.ranking-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.ranking-table th,
.ranking-table td {
  border: 1px solid var(--gray-line);
  padding: 18px 16px;
  text-align: left;
  vertical-align: middle;
}

.ranking-table th {
  background: var(--red);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.ranking-table th:nth-child(1),
.ranking-table td:nth-child(1) {
  width: 8%;
}

.ranking-table th:nth-child(2),
.ranking-table td:nth-child(2) {
  width: 15%;
}

.ranking-table th:nth-child(3),
.ranking-table td:nth-child(3) {
  width: 28%;
}

.ranking-table th:nth-child(4),
.ranking-table td:nth-child(4) {
  width: 25%;
}

.ranking-table th:nth-child(5),
.ranking-table td:nth-child(5) {
  width: 13%;
}

.ranking-table th:nth-child(6),
.ranking-table td:nth-child(6) {
  width: 11%;
}

.ranking-row--1 {
  background: #fff4d4;
}

.ranking-row--2 {
  background: #fff;
}

.ranking-row--3 {
  background: #fffaf2;
}

.ranking-rank {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  white-space: nowrap;
}

.ranking-company {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.ranking-company strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ranking-company span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.ranking-badge {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--jade-soft);
  padding: 4px 9px;
  color: #007a5a;
  font-size: 0.78rem;
  font-weight: 900;
}

.ranking-table p {
  margin: 0;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.65;
  text-wrap: pretty;
  overflow-wrap: normal;
}

.ranking-points {
  margin: 0;
  padding-left: 1rem;
}

.ranking-points li {
  margin: 6px 0;
  color: var(--foreground);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.6;
  text-wrap: pretty;
}

.ranking-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0;
}

.ranking-score strong {
  color: var(--red-deep);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
}

.ranking-score span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.button--table {
  min-height: 42px;
  padding: 0 16px;
  border-color: var(--gold);
  background: var(--cream);
  color: var(--red-deep);
  white-space: nowrap;
}

.button--table:hover {
  border-color: var(--gold);
  background: var(--cream);
  color: var(--red-deep);
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.rank-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.rank-card--1 {
  border-top: 5px solid var(--gold);
  background: linear-gradient(180deg, #fffaf0, #fff);
}

.rank-card--2 {
  border-top: 5px solid var(--blue);
}

.rank-card--3 {
  border-top: 5px solid var(--green);
}

.rank-card__top {
  gap: 14px;
}

.rank-card__rank {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.rank-card__badge {
  margin: 0 0 5px;
  color: var(--red-deep);
  font-size: 0.82rem;
  font-weight: 900;
}

.rank-card__top p:last-child,
.rank-card__lead {
  color: var(--muted);
  line-height: 1.75;
}

.rank-card__top p:last-child {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.rank-card__lead {
  margin-bottom: 0;
  font-weight: 600;
}

.score {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.score span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.score strong {
  color: var(--red-deep);
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.score small {
  color: var(--muted);
  font-weight: 700;
}

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

.criteria-item {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 16px;
}

.criteria-item strong {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.45;
}

.criteria-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
  font-weight: 600;
}

.criteria-item span {
  width: fit-content;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  padding: 4px 12px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.3;
}

.score-table-heading {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
}

.score-table-heading h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 900;
}

.score-table-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.score-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  background: #fff;
}

.score-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.score-table th,
.score-table td {
  border: 1px solid var(--gray-line);
  padding: 14px 12px;
  text-align: left;
  font-size: 0.92rem;
  vertical-align: middle;
}

.score-table th {
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.score-table td {
  background: #fff;
  font-weight: 600;
}

.score-table tbody tr:nth-child(odd) td {
  background: #fff;
}

.score-table td:first-child {
  color: var(--red-deep);
  font-weight: 900;
}

.company-list {
  display: grid;
  gap: 28px;
}

.company-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
}

.company-detail:nth-child(1) {
  border-color: #d9b466;
}

.company-detail__main,
.company-detail__content {
  display: grid;
  gap: 18px;
  align-content: start;
}

.company-detail__head {
  gap: 14px;
}

.company-detail__head > span {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.company-detail__head p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.info-block {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.info-block ul {
  margin: 0;
  padding-left: 1.1rem;
}

.info-block li {
  margin: 10px 0;
  color: var(--foreground);
  line-height: 1.75;
  font-weight: 600;
}

.fit-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fit-box > div {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 20px;
}

.fit-box strong {
  color: var(--red-deep);
  font-weight: 900;
}

.fit-box p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 600;
}

.section--details {
  padding-top: 36px;
}

.company-list {
  gap: 34px;
}

.company-detail {
  display: block;
  overflow: hidden;
  border: 2px solid var(--red);
  border-radius: 8px;
  background: #fff;
  padding: 0;
}

.company-detail:nth-child(1) {
  border-color: var(--red);
}

.company-detail__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  padding: 12px 18px;
}

.company-detail__bar span {
  display: inline-flex;
  min-width: 78px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--red-deep);
  padding: 4px 10px;
  font-size: 0.88rem;
  font-weight: 900;
}

.company-detail__bar strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.25;
}

.company-detail__body {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.company-detail__lead {
  margin: 0;
  color: var(--red);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.8;
  text-wrap: pretty;
}

.company-detail__summary {
  border: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff8d9, #fff0bd);
  padding: 14px 16px;
}

.company-detail__summary ul,
.company-detail__content ul {
  margin: 0;
  padding-left: 1.1rem;
}

.company-detail__summary li,
.company-detail__content li {
  margin: 8px 0;
  color: var(--foreground);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.65;
  text-wrap: pretty;
}

.company-detail__overview {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.company-detail__visual .image-placeholder {
  min-height: 260px;
  height: 100%;
  border-color: transparent;
  background: #fff7d6;
}

.company-image {
  height: 100%;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #fff7d6;
}

.company-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.company-detail__specs {
  margin: 0;
  border-top: 0;
  border-left: 0;
}

.company-detail__specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 54px;
  border-right: 0;
  border-bottom: 1px solid #f2e0cf;
}

.company-detail__specs dt,
.company-detail__specs dd {
  margin: 0;
  padding: 12px 14px;
  line-height: 1.55;
}

.company-detail__specs dt {
  display: flex;
  align-items: center;
  background: var(--cream);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.company-detail__specs dd {
  color: var(--red-deep);
  font-size: 0.96rem;
  font-weight: 800;
}

.company-detail__specs dd strong {
  font-size: 1.25rem;
  font-weight: 900;
}

.button--company {
  width: 100%;
  min-height: 50px;
  border: 0;
  background: var(--green);
  color: #fff;
  font-size: 1.08rem;
}

.button--company:hover {
  background: #008f69;
}

.company-detail__comment {
  border: 2px solid var(--blue);
  border-radius: 8px;
  background: #f4f9ff;
  padding: 14px 16px;
}

.company-detail__comment h4,
.company-detail__content h4 {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 900;
}

.company-detail__comment p,
.company-detail__content p {
  margin: 0;
  color: var(--foreground);
  font-weight: 700;
  line-height: 1.75;
  text-wrap: pretty;
}

.text-keep {
  white-space: nowrap;
}

.company-detail__point-title {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff7e8;
  color: var(--ink);
  padding: 8px 14px;
}

.company-detail__point-title span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--orange);
  padding: 3px 9px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.company-detail__point-title strong {
  font-size: 0.96rem;
  font-weight: 900;
}

.company-detail__content {
  display: grid;
  gap: 14px;
}

.company-detail__content .info-block {
  border: 0;
  padding: 0;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .lp-nav {
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }

  .lp-nav__links {
    display: none;
  }

  .lp-nav__brand img {
    height: 38px;
    max-width: 78vw;
  }

  .company-detail,
  .ranking-grid,
  .criteria-list {
    grid-template-columns: 1fr;
  }

  .criteria-item {
    min-height: auto;
  }

  .fit-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(72vw, 560px);
  }

  .hero__container {
    padding: 48px 20px;
  }

  .hero__text-image {
    width: min(86%, 720px);
  }

  .company-detail__overview {
    grid-template-columns: 1fr;
  }

  .company-detail__visual .image-placeholder {
    min-height: 220px;
  }

  .company-image {
    min-height: 220px;
  }

  .ranking-table-wrap {
    overflow-x: visible;
    border: 1px solid var(--gray-line);
    border-radius: 8px;
    background: #fff;
  }

  .ranking-table {
    min-width: 0;
  }

  .ranking-table th,
  .ranking-table td {
    padding: 9px 7px;
    font-size: 0.78rem;
    line-height: 1.55;
  }

  .ranking-table th {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .ranking-table th:nth-child(1),
  .ranking-table td:nth-child(1) {
    width: 14%;
  }

  .ranking-table th:nth-child(2),
  .ranking-table td:nth-child(2) {
    width: 32%;
  }

  .ranking-table th:nth-child(3),
  .ranking-table td:nth-child(3) {
    width: 36%;
  }

  .ranking-table th:nth-child(4),
  .ranking-table td:nth-child(4) {
    display: none;
  }

  .ranking-table th:nth-child(5),
  .ranking-table td:nth-child(5) {
    width: 18%;
  }

  .ranking-table th:nth-child(6),
  .ranking-table td:nth-child(6) {
    display: none;
  }

  .ranking-row--1 {
    background: #fff7df;
  }

  .ranking-table p,
  .ranking-points {
    min-width: 0;
  }

  .ranking-rank {
    width: auto;
    height: auto;
    min-height: 30px;
    border-radius: 999px;
    padding: 4px 7px;
    font-size: 0.78rem;
  }

  .ranking-company {
    gap: 2px;
  }

  .ranking-company strong {
    font-size: clamp(0.72rem, 1.8vw, 0.9rem);
    overflow-wrap: normal;
  }

  .ranking-company span {
    font-size: clamp(0.62rem, 1.4vw, 0.72rem);
    line-height: 1.45;
  }

  .ranking-badge {
    margin-bottom: 6px;
    padding: 3px 6px;
    font-size: 0.66rem;
    line-height: 1.35;
    white-space: normal;
  }

  .ranking-table p {
    font-size: 0.72rem;
    line-height: 1.55;
  }

  .text-keep {
    white-space: normal;
  }

  .ranking-score {
    display: grid;
    gap: 1px;
    margin-left: 0;
  }

  .ranking-score strong {
    font-size: 1.35rem;
  }

  .ranking-score span {
    font-size: 0.66rem;
    white-space: normal;
  }

  .score-table-wrap {
    overflow-x: visible;
    border: 0;
    background: transparent;
  }

  .score-table {
    min-width: 0;
  }

  .score-table,
  .score-table thead,
  .score-table tbody,
  .score-table tr,
  .score-table th,
  .score-table td {
    display: block;
    width: 100%;
  }

  .score-table thead {
    display: none;
  }

  .score-table tbody {
    display: grid;
    gap: 12px;
  }

  .score-table tr {
    border: 1px solid var(--gray-line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
  }

  .score-table td {
    display: grid;
    grid-template-columns: minmax(110px, 42%) 1fr;
    gap: 10px;
    border: 0;
    border-bottom: 1px solid var(--gray-line);
    padding: 11px 14px;
  }

  .score-table td:last-child {
    border-bottom: 0;
  }

  .score-table td::before {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
  }

  .score-table td:nth-child(1)::before {
    content: "順位";
  }

  .score-table td:nth-child(2)::before {
    content: "企業名";
  }

  .score-table td:nth-child(3)::before {
    content: "中国市場への専門性";
  }

  .score-table td:nth-child(4)::before {
    content: "訪日インバウンド適合度";
  }

  .score-table td:nth-child(5)::before {
    content: "実行支援の広さ";
  }

  .score-table td:nth-child(6)::before {
    content: "公開実績・データの確認性";
  }

  .score-table td:nth-child(7)::before {
    content: "相談しやすさ";
  }

  .score-table td:nth-child(8)::before {
    content: "総合";
  }
}

@media (max-width: 560px) {
  .lp-nav {
    padding: 10px 16px;
  }

  .lp-nav__brand img {
    height: 34px;
  }

  .hero {
    min-height: clamp(300px, 76vw, 430px);
    background-position: center top;
  }

  .hero__container {
    justify-content: center;
    padding: 36px 16px;
  }

  .hero__text-image {
    width: min(94vw, 520px);
  }

  .section {
    padding: 48px 16px;
  }

  .notice {
    padding: 0 16px;
  }

  .notice--bottom {
    padding-bottom: 48px;
  }

  .lp-footer {
    padding: 24px 16px;
  }

  .lp-footer__inner {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .lp-footer__links {
    justify-content: center;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .rank-card,
  .company-detail,
  .notice > div {
    padding: 18px;
  }

  .company-detail {
    padding: 0;
  }

  .company-detail__bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
  }

  .company-detail__body {
    padding: 14px;
  }

  .company-detail__specs div {
    grid-template-columns: 96px 1fr;
  }

  .company-detail__specs dt,
  .company-detail__specs dd {
    padding: 10px;
  }

  .rank-card__top,
  .company-detail__head {
    align-items: flex-start;
  }

  .ranking-company span {
    display: none;
  }
}
