
/*-----------------------------------
recruit（求人ページ）
-----------------------------------*/

/* 募集形態カード */
.recruit__cards {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  max-width: 100%;
  justify-content: center;
  align-items: flex-start;
}

.recruit__card {
  flex: 1 1 calc(50% - 15px);
  min-width: 0;
  max-width: 100%;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 20px 18px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.recruit__card:hover {
  transform: translateY(-5px);
  box-shadow: 10px 10px 25px rgba(0,0,0,0.15);
}

.recruit__card h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4A90E2;
}

.recruit__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruit__list li {
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: 16px;
  color: #555;
}

.recruit__list li strong {
  color: #333;
}

.recruit__list li small {
  font-size: 13px;
  color: #888;
}

/* CTAボタンエリア */

.recruit__cta {
  text-align: center;
  margin: 20px 0;
}

/* 
.recruit__cta {
  text-align: center;
  margin: 20px 0;
}

.recruit__cta .btn {
  display: inline-block;
  padding: 15px 20px;
  background: #4A90E2;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s;
}

.recruit__cta .btn:hover {
  background: #357ABD;
}

.recruit__cta .small {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

.recruit__cta .large {
  font-size: 32px;
} */

/* 歓迎する方リスト */
.recruit__bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.recruit__bullets li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.8;
}

.recruit__bullets li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4A90E2;
  font-weight: bold;
  font-size: 20px;
}

/* 選考フロー */
.recruit__steps {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  counter-reset: step-counter;
}

.recruit__steps li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
  counter-increment: step-counter;
}

.recruit__steps li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  width: 35px;
  height: 35px;
  background: #4A90E2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.recruit__steps li:after {
  content: "";
  position: absolute;
  left: 17px;
  top: 40px;
  width: 2px;
  height: calc(100% - 10px);
  background: #ddd;
}

.recruit__steps li:last-child:after {
  display: none;
}

/* よくある質問 */
.recruit__qa {
  margin: 20px 0;
}

.recruit__qa dt {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  padding: 15px;
  background: #f8f8f8;
  border-left: 4px solid #4A90E2;
}

.recruit__qa dd {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 30px 0;
  padding: 15px 15px 15px 30px;
}

.recruit__qa dd strong {
  color: #333;
  display: block;
  margin-bottom: 5px;
}

/* 最終CTA */
.recruit__finalcta {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #ddd;
}


/*---------------------------------------------------------------------
レスポンシブ
---------------------------------------------------------------------*/

/*************** タブレットレスポンシブ *****************/
@media screen and (min-width:751px) and (max-width:1024px) {
  .recruit__cards {
    flex-direction: column;
    max-width: 600px;
    margin: 40px auto;
  }

  .recruit__card {
    max-width: 100%;
    word-break: normal;
  }

  .recruit__bullets li,
  .recruit__steps li,
  .recruit__qa dt,
  .recruit__qa dd {
    font-size: 16px;
  }
}

/*************** スマホレスポンシブ *****************/
@media screen and (min-width:300px) and (max-width:750px) {
  .recruit__cards {
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
  }

  .recruit__card {
    max-width: 100%;
    padding: 20px 15px;
  }

  .recruit__card h3 {
    font-size: 18px;
  }

  .recruit__list li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .recruit__cta .btn {
    padding: 12px 30px;
    font-size: 16px;
  }

  .recruit__bullets li {
    font-size: 15px;
    padding-left: 25px;
  }

  .recruit__bullets li:before {
    font-size: 18px;
  }

  .recruit__steps li {
    font-size: 16px;
    padding-left: 45px;
  }

  .recruit__steps li:before {
    width: 30px;
    height: 30px;
  }

  .recruit__steps li:after {
    left: 14px;
  }

  .recruit__qa dt {
    font-size: 16px;
    padding: 12px;
  }

  .recruit__qa dd {
    font-size: 14px;
    padding: 12px 12px 12px 20px;
  }
}
