.breadcrumb {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
  
    /* 背景用の高さをしっかり取る */
    min-height: 400px;               /* ←ここで背景の高さを増やす */
    background-image: url(../image/グループ\ 581.png);
    background-size: contain;        /* 画像全体を収める */
    background-position: center top; /* 上側を優先して表示 */
    background-repeat: no-repeat;
    background-color: #DE0111;
    background-blend-mode: multiply;
  }
  
  /* パンくずテキストだけ絶対配置して位置を固定 */
  .breadcrumb .breadcrumb-nav {
    position: absolute;
    top: 60px;       /* ←テキストの縦位置を自由に調整できる */
    left: 20px;
    right: 20px;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
  }

.breadcrumb .breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    color: white;               /* 文字色を白に */
}

.breadcrumb .breadcrumb-item:not(:last-child)::after {
    content: '>';
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.7);  /* セパレータも白に */
    font-weight: normal;
}

.breadcrumb .breadcrumb-link {
    color: white;               /* リンクも白に */
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb .breadcrumb-link:hover {
    color: #fff;
    opacity: 0.8;
}

.breadcrumb .breadcrumb-current {
    color: white;               /* 現在のページも白に */
    font-weight: 600;
}

.number-bg {
    max-width: 100%;
    max-height: 100%;
    width: 1200px;
    height: auto;
    margin: 0 auto;
}

.number-content h1 {
    font-size: 32px;
    font-weight: 900;
    color: #E83532;
    text-align: center;
    margin: 0;
    padding: 0;
    letter-spacing: 10px;
}

.number-content h1::before {
    content: "";
    display: inline-block;        /* ←インラインにしてテキストの前に出す */
    width: 50px;                  /* 横棒の長さ */
    height: 6px;                  /* 線の太さ */
    background-color: #E83532;       /* 線の色 */
    margin-right: 8px;            /* 線と文字の間隔 */
    vertical-align: middle;       /* 線と文字の縦位置を揃える */
  }
  .number-content h1::after {
    content: "";
    display: inline-block;        /* ←インラインにしてテキストの前に出す */
    width: 50px;                  /* 横棒の長さ */
    height: 6px;                  /* 線の太さ */
    background-color: #E83532;       /* 線の色 */
    margin-left: 8px;            /* 線と文字の間隔 */
    vertical-align: middle;       /* 線と文字の縦位置を揃える */
  }

  .data-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 100px;
  }

  .career-step h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;            /* 擬似要素とテキストを横並びにする */
    align-items: center;      /* 縦位置を中央にそろえる */
    justify-content: left;  /* 全体を中央寄せ */
  }

  .career-step h2::before {
    content: "";
    width: 80px;               /* ←ここで線の長さを指定 */
    height: 8px;               /* 線の太さ */
    background-color: #E83532; /* 線の色 */
  }

  .career-step h2::before {
    margin-right: 0.5em;       /* テキストとの余白 */
  }

  .career-step p {
    font-size: 18px;
    color: #333;
    text-align: left;
    margin: 0;
    padding: 0;
  }

  .task h2 {
    font-size: 24px;
    color: #333;
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
    text-decoration: underline solid #E83532 3px;
    text-underline-offset: 10px;
  }
/* ========================================
   OJTセクション - 2行2列レイアウト
======================================== */
.ojt-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ojt-row {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.ojt1, .ojt2, .ojt3, .ojt4 {
    flex: 1;
    max-width: 48%;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.ojt1 h4, .ojt2 h4, .ojt3 h4, .ojt4 h4 {
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ojt1 p, .ojt2 p, .ojt3 p, .ojt4 p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.ojt1 img, .ojt2 img, .ojt3 img, .ojt4 img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .ojt-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .ojt1, .ojt2, .ojt3, .ojt4 {
        max-width: 100%;
    }
}
  
 .number-content p {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin: 20px 0;
    padding: 0;
  }

.data01 h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}
.data01 h2 span {
    font-size: 42px;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-right: 10px;
}

.data02 h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}
.data02 h2 span {
    font-size: 42px;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
    margin-right: 10px;
}

.ojt-training {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    background-color: #F0F0F0;
}
.ojt-training h3 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
    letter-spacing: 5px;
    text-decoration: underline solid #E83532 3px;
    text-underline-offset: 10px;
    margin-bottom: 80px;
}

.ojt1, .ojt2, .ojt3, .ojt4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #707070;
}

.ojt1 h4, .ojt2 h4, .ojt3 h4, .ojt4 h4 {
    font-size: 18px;
    letter-spacing: 5px;
    text-decoration: underline solid #707070 1px;
    text-underline-offset: 10px;
    margin-bottom: 20px;
}

.ojt1 p, .ojt2 p, .ojt3 p, .ojt4 p {
    font-size: 14px;
    color: #636770;
    text-align: left;
    margin-bottom: 20px;
    padding: 0;
}

.ojt1 img, .ojt2 img, .ojt3 img, .ojt4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* スマホ（768px以下） */
@media (max-width: 768px) {
    .breadcrumb {
      min-height: 200px;         /* 高さをrequirementsと合わせる */
      background-size: cover;    /* coverにして画面いっぱい */
      background-position: center top;
      padding: 20px 10px;
    }
  }