@charset "UTF-8";

/**********************************************/
/**********RECRUIT*****************************/
/**********************************************/
#rectuir_section .read {
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--Black);
  text-align: center;
  font-weight: 600;
  margin-bottom: 32px;
}

#rectuir_section .block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
}

#rectuir_section .block .left {
  flex: 0 0 45%;
}

#rectuir_section .block .left img {
  width: 100%;
  height: auto;
  display: block;
}

#rectuir_section .block .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#rectuir_section .desc {
  line-height: 1.6;
  color: var(--Black);
  margin: 0;
  text-align: justify;
  font-weight: 400;
}

#rectuir_section .name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--Black);
  text-align: right;
  margin: 0;
}

#rectuir_section .name span {
  font-size: 0.8rem;
  margin-right: 10px;
}

#rectuir_section .info_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

#rectuir_section .info_table tr:first-child {
  border-top: 1px solid #e0e0e0;
}

#rectuir_section .info_table tr {
  border-bottom: 1px solid #e0e0e0;
}

#rectuir_section .info_table th {
  width: 150px;
  padding: 25px 20px;
  font-weight: 500;
  color: var(--Black);
  text-align: left;
  vertical-align: top;
  background-color: #f9f9f9;
}

#rectuir_section .info_table td {
  padding: 25px 30px;
  line-height: 1.8;
  color: var(--Black);
}

#rectuir_section .info_table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#rectuir_section .info_table ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
}

#rectuir_section .info_table ul li:last-child {
  margin-bottom: 0;
}

#rectuir_section .info_table ul li::before {
  content: '■';
  position: absolute;
  left: 0;
  top: 7px;
  font-size: 0.5rem;
  color: var(--Black);
}




@media screen and (max-width: 768px) {
  #rectuir_section .read {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
  #rectuir_section .block {
    flex-direction: column;
    gap: 24px;
  }
  #rectuir_section .block .left img {
    width: 75%;
    margin: 0 auto;
  }
  #rectuir_section .info_table th {
    padding: 12px;
    font-size: 0.9rem;
    width: 120px;
  }
  #rectuir_section .info_table td {
    padding: 12px;
    font-size: 0.9rem;
  }
}