/* ========================================
   recruitページ専用スタイル
======================================== */

/* ========================================
   パンくずリスト - 背景画像付き
======================================== */
.breadcrumb {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;

  /* 背景用の高さをしっかり取る（PC） */
  min-height: 400px;
  background-image: url(../image/グループ\ 769.svg);
  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);  
}

.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;
}

/* ========================================
   requirements メインセクション
======================================== */
.requirements {
  padding: 0;
}

.requirements-bg {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.message-header {
  text-align: center;
  margin-bottom: 40px;
}

.message-header h1 {
  color: #e74c3c;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 2px;
  padding-bottom: 20px;

  display: flex;                
  justify-content: center;      
  align-items: center;          
  gap: 12px;                    
}

.message-header h1::before,
.message-header h1::after {
  content: "";
  flex: 0 0 50px;              
  height: 6px;                  
  background-color: #e74c3c;       
}  

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-item {
  display: inline-block;
  vertical-align: top;
  margin-right: 30px;
  margin-bottom: 40px;
  font-weight: 900;
}

.requirements-item img {
  max-width: 100%;   
  height: auto;      
  display: block;    
}

.requirements-subtitle {
  font-size: 148px;
  font-weight: 900;
  color: #EFEFEF;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.requirements-content {
  margin-bottom: 40px;
}

/* ========================================
   募集要項テーブル
======================================== */
.requirements-table {
  width: 100%;
  border-collapse: collapse;
}

.job-table {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  background-color: #fff;
}

.job-table th {
  background-color: #fff;
  text-align: left;
  padding: 10px;
  vertical-align: top;
  /* border-top: 1px solid #E83532; */
  border-bottom: 1px solid #E83532;
  width: 20%;
}

.job-table td {
  background-color: #fff;
  padding: 10px;
  vertical-align: top;
  border-bottom: 1px solid #ADADAD;
  /* border-bottom: 1px solid #ADADAD; */
}

.job-table td ul {
  margin: 0;
  padding-left: 1.2em;
}

.job-table td p {
  margin: 0 0 0.5em 0;
}

.job-table td h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.job-table td ul li.salary {
  list-style: none;
}

.job-table td ul li.city {
  margin: 0;
  padding: 0;
}

.job-table td ul li.city::marker {
  color: #E83532;
  font-size: 24px;
  font-weight: 900;
}

.job-table td p.job-table-note {
  margin-top: 20px;
}

.job-table td ul li.welfare::marker {
  color: #E83532;
  font-size: 24px;
  font-weight: 900;
}

.job-table td p.welfare {
  margin-top: 20px;
  margin-bottom: 0;
}

.job-table td ul.city-list {
  display: flex;       
  flex-wrap: wrap;     
  gap: 15px;           
  margin: 0;
  padding-left: 0;
}

.job-table td ul.city-list li.city {
  margin-right: 10px;
  padding-right: 0.8em;
}

/* ========================================
   レスポンシブ対応
======================================== */

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
  .requirements-subtitle {
    font-size: 80px;
  }
  .requirements-bg {
    padding: 40px 20px;
  }
}

/* スマホ（768px以下） */
@media (max-width: 768px) {
  .breadcrumb {
    min-height: 200px;
    background-size: cover;
    padding: 20px 10px;
  }

  .requirements-subtitle {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .requirements-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .requirements-item {
    display: block;
    margin: 0;
  }

  .job-table {
    width: 100%;
    display: block;
    overflow-x: auto;
    font-size: 14px;
  }

  .job-table th,
  .job-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .job-table td p,
  .job-table td li {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* 小さいスマホ（480px以下） */
@media (max-width: 480px) {
  .requirements-subtitle {
    font-size: 28px;
  }
  .message-header h1 {
    font-size: 20px;
    gap: 6px;
  }
}

