@charset "UTF-8";
p {
  margin:0;
}

.recruit{
  width: 80%;
  margin: 0 auto;
  padding: 0 20px;
  font-family: var(--font-sans);
  color: var(--clr-bl);
}
.hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  background-image: url(img/forest.jpg);  
}
.hero h1 {
  width: 180px;
  text-align: center;
  font-size: 60px;
  font-weight: 600 ;
  color:var(--clr-deepgreen) ;
  word-spacing: 10px;
}
.hero span{
  border-bottom: 10px solid var(--clr-deepgreen);
  margin-right:10px ;
}
 .section_title {
  width: 100%;
   font-size: 24px;
   margin-bottom: 20px;
   padding:100px 0 10px 0;
   border-bottom: 2px solid var(--clr-lightbl);
 }
.content{
  width:max(600px, 80%);
  margin: 0 auto;
}
.content h3{
  width: 600px;
}
 .job_table {
   width:max(600px,80%);
   border-collapse: collapse;
   margin:0 auto;
 }

 .job_table th,
 .job_table td {
   border: 1px solid var(--clr-lightbl);
   padding: 12px;
 }

 .job_table th {
  background-color: var(--clr-lightwh);
  text-align: justify;
  text-align-last: justify;
  vertical-align: top;
  font-weight: 400;
 }
.job_table td {
  width: 80%;
  text-align: left;
  padding-left: 30px;
  }
.th{
  justify-content: space-between;
}
.company-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.flow {
  margin: 40px 0;
  }
  
.flow-chart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom:15vh;
}

.flow-item {
  text-align: center;
  flex: 1;
  position: relative;
}
  
.flow-item::after {
  content: "▶︎";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
  
.flow-item:last-child::after {
  display: none;
}
 
.work {
  color: var(--clr-bl);
}
.image_grid {
  display: flex;
  justify-content:space-evenly;
  margin:0 auto 40px auto;
}
.image_card {
  text-align: center;
  width: 245px;
}
.image_card img {
  object-fit: cover;;
  height: 190px;
  box-shadow: -1px -1px 2px var(--clr-lightbl),15px 15px 0 var(--clr-lightgreen);
}

.image_card h3{
  text-align: left;
  padding-top: 20px;
  font-family: var(--font-sans);

}
.image_card p{
  text-align: left;
  font-size: 16px;
  line-height: 2em;
  font-family: var(--font-sans);
}

.contact {
  text-align: center;
  padding: 40px 0 200px 0;
  color: var(--clr-bl);
}


@media (max-width: 767px) {
  body{
    font-size: 12px;
  }
.recruit {
  width:95%;
  padding: 0;
}
.hero h1 {
  width: 120px;
  margin:20px 0;
  font-size: 42px;
  word-spacing: 5px;
}
 .section_title {
   padding: 50px 0 10px 0;
 }

 .content {
   width: max(300px,100%);
 }
 .content h3 {
   width:100%;
 }
 .job_table {
   width: max(300px, 100%);
  }
 .job_table th,
 .job_table td {
   padding: 3px;
 }
 .job_table th{
  font-size: 12px;
 }
.job_table td {
  width: 76%;
  padding-left: 10px;
}
.flow-chart {
  flex-direction: column;
  padding-bottom:0 ;
}

.flow-item {
  width: 200px;
  padding-bottom:30px;
  font-size: 16px;
}

.flow-item::after {
  content: "▼";
  right:0;
  left:0;
  bottom:30px;
  }
.image_grid {
  flex-direction: column;
  justify-content: space-evenly;
  gap:100px;
  margin: 0 auto;
  width: max(300px, 90%);
}
.image_card {
  text-align: center;
  width:max(300px,100%);
  margin:0 auto;
}

.image_card img {
  width: 100%;
  height:auto;
}
.image_card h3,p{
  width: 90%;
  margin: 20px auto;
}
.image_card h3 {
  font-size: 24px;
}
.image_card p {
  line-height: 1.8em;
}
.contact {
  padding: 40px 0 100px 0;
}
.contact span{
  display: block;
}
}
