.career-model__section-ttl {
    position: relative;
    padding-bottom: 1.6rem;
    text-align: center;
    font-size: 3.2rem;
    font-weight: bold;
  }

.career-model__section-ttl::before {
  content: "";
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 7rem;
  height: 0.2rem;
}

.recruit__user {
    padding: 10rem 0;
    background-size: cover;
  }
  
  @media (max-width: 768px) {
    .recruit__user {
      padding: 6rem 0;
      /*background-image: none;*/
    }
  }
  
  .recruit__user-list {
    display: flex;
    flex-direction: column;
    margin: 3.8rem auto;
    width: 80rem;
    gap: 4rem;
  }
  
  @media (max-width: 1232px) {
    .recruit__user-list {
      width: 95%;
    }
  }
  
  .recruit__user-img {
    width: 100%;
  }


  
/* 
  新入社員の声 タイトル 
*/
.recruit-voices{
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {

  .recruit-voices{
    display: block;
    max-width: 350px;
    margin: 0 auto;
  }
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 400px;
  height: 350px;
  position: relative; /* ← これを追加！ */
}

@media (max-width: 768px) {
  .card {
    border: none;
    box-shadow: none;
    height: 350px;
    position: relative; /* ← これを追加！ */
  }
}


.title {
  font-size: 24px;
  color: #333;
}

.profile-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.text-info {
  margin-left: 15px;
}

.name {
  font-size: 18px;
  font-weight: bold;
}

.details {
  font-size: 14px;
  color: #666;
}

.details2 {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}



@media (max-width: 768px) {
  .voice {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 30px;
  }
}

.recruit-voices a:hover {
  background-color: #e0e0e0;
}



.recruit__user {
  padding: 10rem 0;
  background-image: none
  /*background-size: cover;*/
}

.arrow-text {
  position: absolute; /* ← 右下固定のために追加！ */
  bottom: 10px;       /* 下から10px */
  right: 10px;        /* 右から10px */
  background: transparent;
  color: black;
  padding: 6px 10px;
  font-size: 2.4rem;
}

/*社員の一日の流れ*/
#workflow::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
  visibility: hidden;
}

/*入社４年目　高崎さん(仮名)*/
.workflow_user {
  text-align: center; /* 中央寄せ */
  margin: 50px auto;  
}

.workflow_name {
  font-size: 30px;
  display: inline-block;
}

/*勤務地によって異なります*/
.workfrow_memo {
  font-size: 20px;
  margin-left: 1em; 
}

.timeline {
  position: relative;
  margin: 6rem auto; 
  padding-left: 60px; 
  max-width: 600px;
  transform: translate(00px, 0px); 
  min-height: 800px; /*棒の長さ*/
}

.timeline-item {
  display: flex;
  align-items: flex-start;;
  margin-bottom: 70px; /* 間隔 */
  font-size: 18px; /* 全体の文字*/
  transform: translate(0px, 20px);
}

/*時刻*/
.timeline-time {
  width: 60px;
  text-align: right;
  margin-right: 15px;
  font-weight: bold;
  font-size: 30px;
  transform: translate(-70px, 0px);
}
/*　・　*/
.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 30px;
  transform: translate(-69px, 10px);
}


/*大きな内容*/
.timeline-content {
  flex: 1;
  margin-left: 50px;
  font-size: 30px;
  transform: translate(-70px, 0px);
}

/*詳細*/
.timeline-description {
  font-size: 23px;
  color: #666;
  margin-top: 5px;
  line-height: 1.5;
  margin-left: 132px;
  margin-top: -60px;
  margin-bottom: 60px;
  max-width: 6000px;
}


@media (max-width: 768px) {
  .timeline {
    padding-left: 40px;
    max-width: 90%; /* 比率で縮小 */
    min-height: 600px;
  }

  .timeline-item {
    margin-bottom: 50px;
    font-size: 16px;
  }

  .timeline-time {
    font-size: 22px;
    transform: translate(-50px, 0);
  }

  .timeline-dot {
    width: 12px;
    height: 12px;
    transform: translate(-46.5px, 0);
  }

  .timeline-content {
    font-size: 22px;
    margin-left: 30px;
    transform: translate(-50px, 0);
  }

  .timeline-description {
    font-size: 16px;
    margin-left: 100px;
    margin-top: -50px;
    margin-bottom: 30px;
    max-width: 70%;
  }

  .workflow_name {
    font-size: 22px;
  }

  .workfrow_memo {
    display: block;        /* 強制的に改行して下に置く */
    font-size: 16px;
    margin-top: 0.5em;
  }
}