/* 続きを読むセクション */
.read-section {
  background-color: var(--color-slate-50);
  padding: 92px 0;
  font-family: 'Noto Sans JP', sans-serif;
}

.read-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 970px;
  margin: 0 auto;
  padding: 0 16px;
}

/* タイトルエリア */
.read-section__text-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.read-section__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-700);
  line-height: 1.4;
}

.read-section__subtitle {
  font-size: 16px;
  color: var(--color-slate-900);
  line-height: 1.8;
}

.read-section__links {
  font-weight: 400;
  color: var(--color-700);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  transition: color 0.2s;
}

.read-section__links:hover {
  color: var(--color-400);
}

/* 本文テキスト */
.read-section__text-body {
  width: 100%;
  text-align: center;
}

.read-section__text-body p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-slate-900);
  line-height: 1.8;
  word-break: break-word;
}

/* 会社データカード */
.read-section__card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 2px rgba(62, 56, 57, 0.08);
  padding: 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.read-section__card-header {
  background: linear-gradient(to right, var(--color-700), var(--color-400));
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.read-section__card-header p {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  word-break: break-word;
}

/* テーブル行コンテナ */
.read-section__table-row-container {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.read-section__table-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.read-section__table-spacer {
  flex: 1;
}

.read-section__table-cell {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-slate-200);
  font-size: 16px;
  color: var(--color-slate-900);
  width: 100%;
}

.read-section__table-label {
  font-weight: 700;
  min-width: 80px;
  flex-shrink: 0;
  line-height: 1.4;
  white-space: nowrap;
}

.read-section__table-value {
  font-weight: 400;
  flex: 1;
  min-width: 0;
  line-height: 1.8;
}

.read-section__table-link {
  font-weight: 400;
  flex: 1;
  min-width: 0;
  line-height: 1.8;
  color: var(--color-700);
  text-decoration: underline;
  text-decoration-skip-ink: none;
  transition: color 0.2s;
  word-break: break-all;
}

.read-section__table-link:hover {
  color: var(--color-400);
}

/* ロゴ */
.read-section__logo-container {
  width: 384px;
  flex-shrink: 0;
}

.read-section__logo-container img {
  width: 100%;
  height: 128px;
  object-fit: contain;
}

/* 会社データ縦積み: 768px以下 */
@media (max-width: 768px) {
  .read-section__table-row-container {
    flex-direction: column;
    align-items: stretch;
  }

  .read-section__table-rows {
    width: 100%;
  }

  .read-section__logo-container {
    width: 100%;
  }
}

/* SP: 700px以下 */
@media (max-width: 700px) {
  .read-section {
    padding: 48px 0;
  }

  .read-section__title {
    font-size: 28px;
  }

  .read-section__card {
    padding: 16px;
    gap: 16px;
  }

  .read-section__logo-container img {
    height: auto;
  }
}
