/* Key Numberページのスタイル */

:root {
  --color-dark-blue: #1a4a7a;
  --color-light-blue: #99C1D5;
  --color-section-blue: #5a8bb8;
  --color-accent-yellow: #caf880;
  --color-white: #ffffff;
  --color-text-dark: #333333;
  --color-text-gray: #666666;
}

.recruit-numbers-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px 100px;
  background: linear-gradient(to bottom, rgba(161, 213, 255, 1) 0%, rgba(97, 184, 255, 1) 25%, rgba(97, 184, 255, 1) 42%, rgba(148, 217, 249, 1) 57%, rgba(148, 217, 249, 1) 70%, rgba(178, 216, 255, 1) 85%, rgba(178, 216, 255, 1) 100%, rgba(178, 216, 255, 1) 100%);
}

.recruit-numbers-section .container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* セクション見出し */
.numbers-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
}

.numbers-section-title {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.numbers-section-subtitle {
  font-size: 16px;
  color: var(--color-text-gray);
  margin: 0;
}

/* カードグリッドレイアウト - マソナリーレイアウト */
.numbers-cards-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 30px;
  margin-top: 50px;
}

/* list_dataBoxスタイル（参考CSSに基づく） */
.list_dataBox {
  position: relative;
  margin: auto;
  width: 83%;
  list-style: none;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.list_dataBox > li {
  background: #fff;
  border-radius: 1em;
  text-align: center;
  color: #005AB7;
  padding: 4% 0 8%;
  margin: 0;
}

.list_dataBox > li + li {
  margin: 8% auto 0;
}

/* PC版（1024px以上）: 2段レイアウト - 上段3枚、下段2枚 */
@media screen and (min-width: 1024px) {
  .list_dataBox {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
  }

  .list_dataBox > li {
    padding: 4% 0 8%;
    margin: 0;
  }

  .list_dataBox > li + li {
    margin: 0;
  }

  /* 上段: 最初の3枚（各2列 = 合計6列） */
  .list_dataBox > li:nth-child(1),
  .list_dataBox > li:nth-child(2),
  .list_dataBox > li:nth-child(3) {
    grid-column: span 2;
  }

  /* 下段: 4枚目と5枚目（各3列 = 合計6列、上段より幅が大きい） */
  .list_dataBox > li:nth-child(4),
  .list_dataBox > li:nth-child(5) {
    grid-column: span 3;
  }
}

.list_dataBox > li .data_name {
  font-size: 143%;
  font-weight: 700;
  color: #23A0DA;
  position: relative;
  padding: .5em 0;
  margin: 0 0 1.1em;
}

.list_dataBox > li .data_name::before {
  content: '';
  width: 32px;
  height: 4px;
  background: #23A0DA;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.list_dataBox > li .data_info {
  line-height: 1;
  font-size: 186%;
  font-weight: 700;
  color: #005AB7;
}

.list_dataBox > li .data_info .num {
  font-size: 315%;
  font-weight: 500;
  font-family: "Akshar", sans-serif;
}

.list_dataBox > li .data_att {
  font-weight: 700;
  margin: -1% 0 0;
  font-size: 114%;
  color: #005AB7;
}

.list_dataBox > li .data_att small {
  display: block;
  font-size: 80%;
  font-weight: 400;
  margin-top: 1em;
}

/* アニメーションスタイル（参考CSSに基づく） */
.list_dataBox.js_scroll > li {
  transform: scale(0);
  transform-origin: center;
  transition: all 1s;
  transition: transform 600ms cubic-bezier(1, -0.1, .15, 1.35);
}

.list_dataBox > li.js_scroll.scroll--start {
  transform: scale(1);
}

/* キャリアテーブルとツールのカードのスタイル調整 */
.numbers-card-career,
.numbers-card-tools {
  margin-top: 50px;
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .numbers-card-career,
  .numbers-card-tools {
    margin-top: 40px;
  }
}

/* カードスタイル */
.numbers-card {
  background-color: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.numbers-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.numbers-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  color: var(--color-dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.numbers-card-icon svg {
  width: 100%;
  height: 100%;
}

.numbers-card-icon img,
.numbers-card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.numbers-card-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-gray);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.numbers-card-value {
  font-size: 48px;
  font-weight: bold;
  color: var(--color-dark-blue);
  margin-bottom: 8px;
  line-height: 1.2;
}

.numbers-card-detail {
  font-size: 16px;
  color: var(--color-text-gray);
  line-height: 1.6;
}

/* レイアウト調整 - 指定された配置 */
/* 1行目: 設立（8列）+ 年間休日数（4列） */
.numbers-card:nth-child(1) {
  grid-column: span 8;
  grid-row: span 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
}

.numbers-card:nth-child(2) {
  grid-column: span 4;
  grid-row: span 1;
}

.numbers-card:nth-child(1) .numbers-card-title {
  font-size: 21px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 8px;
  text-transform: none;
  width: 100%;
}

.numbers-card:nth-child(1) .numbers-card-holidays-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  width: 100%;
}

.numbers-card:nth-child(1) .numbers-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.numbers-card:nth-child(1) .numbers-card-value-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.numbers-card:nth-child(1) .numbers-card-value {
  font-size: 64px;
  font-weight: bold;
  color: var(--color-dark-blue);
  margin: 0;
}

.numbers-card:nth-child(1) .numbers-card-suffix {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-dark-blue);
}

/* 2行目: 平均年齢、子育て中の従業員の割合、既存従業員入社時の経験者割合（各4列 = 3分の1ずつ） */
.numbers-card:nth-child(3) {
  grid-column: span 4;
  grid-row: span 1;
}

/* 平均年齢カードの特別レイアウト */
.numbers-card-age {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.numbers-card-age .numbers-card-header-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: auto;
}

.numbers-card-age .numbers-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.numbers-card-age .numbers-card-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.numbers-card-age .numbers-card-title {
  margin-bottom: 8px;
  text-transform: none;
  font-size: 21px;
  font-weight: 600;
  color: var(--color-text-gray);
}

.numbers-card-age .numbers-card-detail {
  font-size: 14px;
  color: var(--color-text-gray);
  margin-bottom: 0;
}

.numbers-card-age .numbers-card-value-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 0;
  width: 100%;
}

.numbers-card-age .numbers-card-prefix,
.numbers-card-age .numbers-card-suffix {
  font-size: 30px;
  font-weight: bold;
  color: var(--color-dark-blue);
}

.numbers-card-age .numbers-card-value {
  font-size: 64px;
  font-weight: bold;
  color: var(--color-dark-blue);
  margin: 0;
}

/* 年間休日数カード専用スタイル */
.numbers-card-holidays {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.numbers-card-holidays .numbers-card-title {
  font-size: 21px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 8px;
  text-transform: none;
}

.numbers-card-holidays .numbers-card-detail {
  font-size: 14px;
  color: var(--color-dark-blue);
  margin-bottom: 30px;
}

.numbers-card-holidays-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  width: 100%;
}

.numbers-card-holidays .numbers-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.numbers-card-holidays .numbers-card-value-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.numbers-card-holidays .numbers-card-value {
  font-size: 64px;
  font-weight: bold;
  color: var(--color-dark-blue);
  margin: 0;
}

.numbers-card-holidays .numbers-card-suffix {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-dark-blue);
}

/* 平均年齢、子育て中の従業員の割合、入社時の経験者割合用スタイル（年間休日数と同じレイアウト） */
.numbers-card-age-new {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.numbers-card-age-new .numbers-card-title {
  font-size: 21px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 8px;
  text-transform: none;
}

.numbers-card-age-new .numbers-card-detail {
  font-size: 14px;
  color: var(--color-dark-blue);
  margin-bottom: 30px;
}

.numbers-card-age-new .numbers-card-holidays-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  width: 100%;
}

.numbers-card-age-new .numbers-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.numbers-card-age-new .numbers-card-value-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.numbers-card-age-new .numbers-card-value {
  font-size: 64px;
  font-weight: bold;
  color: var(--color-dark-blue);
  margin: 0;
}

.numbers-card-age-new .numbers-card-prefix {
  font-size: 30px;
  font-weight: bold;
  color: var(--color-dark-blue);
}

.numbers-card-age-new .numbers-card-suffix {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-dark-blue);
}

/* 設立カード専用スタイル（年間休日数と同じレイアウト） */
.numbers-card-established {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.numbers-card-established .numbers-card-title {
  font-size: 21px;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-bottom: 30px;
  text-transform: none;
}

.numbers-card-established .numbers-card-holidays-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  width: 100%;
}

.numbers-card-established .numbers-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.numbers-card-established .numbers-card-value-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 4px;
  margin: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.numbers-card-established .numbers-card-value {
  font-size: 64px;
  font-weight: bold;
  color: var(--color-dark-blue);
  margin: 0;
}

.numbers-card-established .numbers-card-suffix {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-dark-blue);
}

/* 3行目: 子育て中の従業員の割合（4列） */
.numbers-card:nth-child(4) {
  grid-column: span 4;
  grid-row: span 1;
}

/* 3行目: 既存従業員入社時の経験者割合（4列） */
.numbers-card:nth-child(5) {
  grid-column: span 4;
  grid-row: span 1;
}

/* 4行目: 既存従業員のバックグラウンドとブランク期間（統合カード、12列 = 全幅） */
.numbers-card:nth-child(6) {
  grid-column: span 12;
  grid-row: span 1;
}

/* 5行目: 使用頻度の高いツール */
.numbers-card:nth-child(7) {
  grid-column: span 12;
  grid-row: span 1;
}

/* テキスト表示用 */
.numbers-card-text {
  font-size: 16px;
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-top: 12px;
}

.numbers-card-text p {
  margin: 0;
}

/* キャリアカード用スタイル */
.numbers-card-career {
  padding: 40px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.numbers-card-career .numbers-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.numbers-card-career .numbers-card-icon img,
.numbers-card-career .numbers-card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.numbers-card-career .numbers-card-title {
  font-size: 21px;
  font-weight: 600;
  color: #23A0DA;
  margin-bottom: 0;
  flex-shrink: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-transform: none;
}

.numbers-card-career .career-grid-container {
  width: 100%;
  margin-top: 0;
}

/* ツールカード用スタイル */
.numbers-card-tools {
  padding: 40px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.numbers-card-tools .numbers-card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.numbers-card-tools .numbers-card-icon img,
.numbers-card-tools .numbers-card-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.numbers-card-tools .numbers-card-title {
  font-size: 21px;
  font-weight: 600;
  color: #23A0DA;
  margin-bottom: 0;
  flex-shrink: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-transform: none;
}

.numbers-card-tools .tools-icons-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .numbers-card-tools .tools-icons-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media screen and (max-width: 480px) {
  .numbers-card-tools .tools-icons-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.numbers-card-tools .tools-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
}

.numbers-card-tools .tool-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.numbers-card-tools .tool-name {
  font-size: 14px;
  color: var(--color-text-gray);
  text-align: center;
  white-space: nowrap;
}

.career-grid-container {
  width: 100%;
  margin-top: auto;
}

.career-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.career-table thead {
  background-color: transparent;
}

.career-table th {
  padding: 15px;
  text-align: center;
  vertical-align: middle;
  color: #005AB7;
}

.career-table-person-header {
  width: minmax(120px, auto);
  min-width: 120px;
}

.career-table-header {
  font-size: 24px;
  font-weight: 600;
  color: #005AB7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.career-table tbody tr {
  border-bottom: 1px solid transparent;
}

.career-table tbody tr:last-child {
  border-bottom: none;
}

.career-table td {
  padding: 15px;
  vertical-align: middle;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-color: #fff;
}

.career-table-person-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  min-width: 120px;
}

.career-table-data-cell {
  background-color: #fff;
  color: var(--color-dark-blue);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}


/* PC版: スマホ専用の改行を非表示 */
.sp-only {
  display: none;
}

/* PC版: 400px以下専用の改行を非表示 */
.sp-400only {
  display: none;
}

.career-icon {
  width: 64px;
  height: 64px;
  color: var(--color-dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.career-icon svg {
  width: 100%;
  height: 100%;
}

.career-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.career-name {
  font-weight: 600;
  color: var(--color-dark-blue);
  text-align: center;
}

.career-label {
  font-size: 24px;
  font-weight: 600;
}

/* 縦長カード用スタイル */
.numbers-card-tall {
  grid-column: span 4;
  grid-row: span 2;
}

/* リスト表示用 */
.numbers-card-list {
  width: 100%;
  margin-top: 12px;
}

.numbers-card-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.numbers-card-list li {
  font-size: 16px;
  color: var(--color-text-gray);
  line-height: 1.8;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.numbers-card-list li:before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--color-dark-blue);
  font-weight: bold;
}

.numbers-card-list li:last-child {
  margin-bottom: 0;
}

/* PC・タブレット・スマホ(481px以上)用テーブルのデフォルト表示 */
.career-mobile-list {
  display: none;
}

.career-table-default {
  display: table;
}

/* レスポンシブデザイン */
@media screen and (max-width: 767px) {
  .recruit-numbers-section {
    padding: 40px 20px 60px;
  }

  .recruit-numbers-section .container {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .numbers-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
  }

  /* list_dataBox スマホ版 */
  .list_dataBox {
    width: 90%;
  }

  .list_dataBox > li {
    padding: 6% 0 10%;
  }

  .list_dataBox > li + li {
    margin: 6% auto 0;
  }

  .list_dataBox > li .data_name {
    font-size: 120%;
    padding: .4em 0;
    margin: 0 0 1em;
  }

  .list_dataBox > li .data_name::before {
    width: 28px;
    height: 3px;
  }

  .list_dataBox > li .data_info {
    font-size: 160%;
  }

  .list_dataBox > li .data_info .num {
    font-size: 280%;
  }

  .list_dataBox > li .data_att {
    font-size: 100%;
  }

  .list_dataBox > li .data_att small {
    font-size: 75%;
    margin-top: 1em;
  }
}

/* 480px以下 */
@media screen and (max-width: 480px) {
  .list_dataBox {
    width: 100% !important;
  }
}

@media screen and (max-width: 767px) {
  .numbers-card {
    padding: 25px 20px;
  }

  .numbers-card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 15px;
  }

  .numbers-card-title {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .numbers-card-value {
    font-size: 36px;
    margin-bottom: 6px;
  }

  .numbers-card-detail {
    font-size: 14px;
  }

  .numbers-card:nth-child(1) {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }

  .numbers-card:nth-child(1) .numbers-card-title {
    font-size: 21px;
    font-weight: 600;
    color: var(--color-dark-blue);
    margin-bottom: 8px;
    text-transform: none;
    width: 100%;
  }

  .numbers-card:nth-child(1) .numbers-card-holidays-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    width: 100%;
  }

  .numbers-card:nth-child(1) .numbers-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .numbers-card:nth-child(1) .numbers-card-value-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 4px;
    margin: 0;
    margin-left: auto;
    flex-shrink: 0;
  }

  .numbers-card:nth-child(1) .numbers-card-value {
    font-size: 64px;
    font-weight: bold;
    color: var(--color-dark-blue);
    margin: 0;
  }

  .numbers-card:nth-child(1) .numbers-card-suffix {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-dark-blue);
  }


  .numbers-card-age .numbers-card-header-row {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
  }

  .numbers-card-age .numbers-card-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .numbers-card-age .numbers-card-header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .numbers-card-age .numbers-card-title {
    font-size: 19px;
    margin-bottom: 4px;
  }

  .numbers-card-age .numbers-card-detail {
    font-size: 13px;
  }

  .numbers-card-age .numbers-card-prefix,
  .numbers-card-age .numbers-card-suffix {
    font-size: 24px;
  }

  .numbers-card-age .numbers-card-value {
    font-size: 48px;
  }

  .numbers-card-list li {
    font-size: 14px;
  }

  .numbers-card-career {
    padding: 30px 20px;
    gap: 15px;
    flex-direction: row;
    align-items: flex-start;
  }

  .numbers-card-career .numbers-card-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .numbers-card-career .numbers-card-title {
    font-size: 21px;
    font-weight: 600;
    color: #23A0DA;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    text-transform: none;
  }

  .numbers-card-tools {
    padding: 30px 20px;
    gap: 15px;
    flex-direction: row;
    align-items: flex-start;
  }

  .numbers-card-tools .numbers-card-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
  }

  .numbers-card-tools .numbers-card-title {
    font-size: 21px;
    font-weight: 600;
    color: #23A0DA;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    text-transform: none;
  }

  .numbers-card-tools .tools-icons-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: space-evenly;
    align-items: center;
  }

  .numbers-card-tools .tools-icon-item {
    align-items: center;
    justify-content: center;
  }

  .numbers-card-tools .tool-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto;
  }

  .numbers-card-tools .tool-name {
    font-size: 12px;
  }

  .career-table {
    display: block;
    width: 100%;
  }

  .career-table thead {
    display: none;
  }

  .career-table tbody {
    display: block;
  }

  .career-table tbody tr {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e0e0e0;
  }

  .career-table tbody tr.career-person-a {
    margin-top: 28px;
  }

  .career-table tbody tr:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 28px;
  }

  .career-table td {
    padding: 10px;
    text-align: left;
  }

  .career-table-person-cell {
    grid-row: 1 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  /* スマホ版: スマホ専用の改行を表示 */
  .sp-only {
    display: block;
  }

  /* スマホ版: 2行2列のグリッド表示 */
  .career-table-data-cell {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-dark-blue);
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  /* スマホ版: 2列目（前職）にラベルを追加 */
  .career-table tbody tr td:nth-child(2)::before {
    content: "前職";
    font-weight: 600;
    color: #005AB7;
    display: block;
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
  }

  /* スマホ版: 3列目（ブランク）にラベルを追加 */
  .career-table tbody tr td:nth-child(3)::before {
    content: "ブランク\A（育児）";
    white-space: pre;
    font-weight: 600;
    color: #005AB7;
    display: block;
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
  }

  .career-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .career-icon img {
    width: 80px;
    height: 80px;
  }

  .career-name {
    font-size: 14px;
  }

  .numbers-card:nth-child(n) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .numbers-card:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .numbers-card:nth-child(6) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .numbers-card:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .numbers-card-text {
    font-size: 14px;
  }

  .numbers-card-tall {
    grid-column: span 2;
    grid-row: span 1;
  }

  .numbers-card-list li {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .recruit-numbers-section .container {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .numbers-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .numbers-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .numbers-card:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .numbers-card:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .numbers-card:nth-child(7) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .numbers-card-text {
    font-size: 13px;
  }

  .numbers-card-tools {
    padding: 25px 15px;
    gap: 12px;
    flex-direction: row;
    align-items: flex-start;
  }

  .numbers-card-tools .numbers-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .numbers-card-tools .numbers-card-title {
    font-size: 21px;
    font-weight: 600;
    color: #23A0DA;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    text-transform: none;
  }

  .numbers-card-tools .tools-icons-container {
    gap: 15px;
    justify-content: space-evenly;
    align-items: center;
  }

  .numbers-card-tools .tools-icon-item {
    align-items: center;
    justify-content: center;
  }

  .numbers-card-tools .tool-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto;
  }

  /* GoogleDriveとGoogleSSのみ1.5倍 */
  .numbers-card-tools .tool-icon[src*="GoogleDrive"],
  .numbers-card-tools .tool-icon[src*="GoogleSS"] {
    width: 126px;
    height: 126px;
  }

  .numbers-card-tools .tool-name {
    font-size: 11px;
  }

  .numbers-card-career {
    padding: 25px 15px;
    gap: 12px;
    flex-direction: row;
    align-items: flex-start;
  }

  .numbers-card-career .numbers-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .numbers-card-career .numbers-card-title {
    font-size: 21px;
    font-weight: 600;
    color: #23A0DA;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    text-transform: none;
  }


  .numbers-card-age .numbers-card-header-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .numbers-card-age .numbers-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .numbers-card-age .numbers-card-header-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .numbers-card-age .numbers-card-title {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .numbers-card-age .numbers-card-detail {
    font-size: 12px;
  }

  .career-table {
    display: block;
    width: 100%;
  }

  .career-table thead {
    display: none;
  }

  .career-table tbody {
    display: block;
  }

  /* 480px以下: アイコンを上段、その下に2行2列の表 */
  .career-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e0e0e0;
  }

  .career-table tbody tr.career-person-a {
    margin-top: 28px;
  }

  .career-table tbody tr:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 28px;
  }

  .career-table td {
    padding: 10px;
    text-align: left;
  }

  /* 480px以下: アイコンを上段に左右中央揃えで配置 */
  .career-table-person-cell {
    grid-column: 1 / 3;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  /* スマホ版: スマホ専用の改行を表示 */
  .sp-only {
    display: block;
  }

  /* 480px以下: 2行2列のグリッド表示 - ラベルと値を横並び */
  .career-table-data-cell {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-dark-blue);
    text-align: center;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  /* 480px以下: 2列目（前職）にラベルを追加 - 横並び */
  .career-table tbody tr td:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .career-table tbody tr td:nth-child(2)::before {
    content: "前職";
    font-weight: 600;
    color: #005AB7;
    display: inline-block;
    margin-right: 8px;
  }

  /* 480px以下: 3列目（ブランク）にラベルを追加 - 横並び */
  .career-table tbody tr td:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .career-table tbody tr td:nth-child(3)::before {
    content: "ブランク（育児）";
    font-weight: 600;
    color: #005AB7;
    display: inline-block;
    margin-right: 8px;
  }

  .career-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .career-icon img {
    width: 80px;
    height: 80px;
  }

  .career-name {
    font-size: 12px;
  }

  .numbers-card-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* 480px以下専用HTMLの表示切り替え */
  .career-table-default {
    display: none;
  }
  .career-mobile-list {
    display: block;
    width: 100%;
    margin-top: 28px;
  }

  .career-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #e0e0e0;
  }

  .career-mobile-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .career-mobile-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .career-mobile-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .career-mobile-table {
    width: 100%;
    border-collapse: collapse;
  }

  .career-mobile-table tr th {
    width: 40%;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #005AB7;
    padding: 5px 0;
    vertical-align: middle;
    white-space: nowrap;
  }

  .career-mobile-table tr td {
    width: 60%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-dark-blue);
    padding: 5px 0;
    vertical-align: middle;
  }
}

/* 400px以下: ブランク（育児）の改行を表示 */
@media screen and (max-width: 400px) {
  .sp-400only {
    display: block;
  }

  /* 400px以下: 3列目（ブランク）のラベルを改行 */
  .career-table tbody tr td:nth-child(3)::before {
    content: "ブランク\A（育児）";
    white-space: pre;
    display: block;
    margin-bottom: 8px;
  }
}

