.article {
  font-family: "BIZ UDPGothic", sans-serif;
}

.req_abst_block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.mynavi {
  width: 159px;
  height: 159px;
  flex-shrink: 0;
}
.mynavi img {
  width: 100%;
}

.table_outer {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  display: block;
}

.table {
  width: 100%;
  max-width: 100%;
}
.table tr {
  height: 50px;
  border: solid 1px #D9D9D9;
  border-collapse: collapse;
}
.table th {
  width: 220px;
  height: 100%;
  border-left: solid 1px #D9D9D9;
  background-color: #F5F5F5;
  vertical-align: middle;
  padding: 12px 24px;
}
.table th:nth-last-child(0) {
  border-left: none;
}
.table td {
  height: 100%;
  border-left: solid 1px #D9D9D9;
  vertical-align: middle;
  padding: 15px 26px;
}
.table td:nth-last-child(0) {
  border-left: none;
}

.entry_link_text {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.entry_link {
  display: block;
  width: 270px;
  height: 60px;
  line-height: 60px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  background-color: #BB1C21;
  border: solid 1px #BB1C21;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}
.entry_link:hover {
  background-color: #fff;
  color: #BB1C21;
}

.norecruiting {
  padding: 30px 35px;
  font-weight: bold;
  background-color: #F5F5F5;
}

.contact_title {
  font-size: 20px;
  font-weight: bold;
}

.contact_box a {
  color: #BB1C21;
  border-bottom: solid 1px #BB1C21;
}
.contact_box a:hover {
  border-bottom: none;
}

.rec_block {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 60px;
  padding: 0 30px;
  margin-bottom: 26px;
  line-height: 1;
  position: relative;
}
.rec_block:nth-child(1) {
  background-color: #FFEFEF;
}
.rec_block:nth-child(1)::after {
  background-color: #FFEFEF;
}
.rec_block:nth-child(2) {
  background-color: #FFC8C9;
}
.rec_block:nth-child(2)::after {
  background-color: #FFC8C9;
}
.rec_block:nth-child(3) {
  background-color: #FF979A;
}
.rec_block:nth-child(3)::after {
  background-color: #FF979A;
}
.rec_block:nth-child(4) {
  background-color: #F57276;
}
.rec_block:nth-child(4)::after {
  background-color: #F57276;
}
.rec_block:nth-child(5) {
  background-color: #DE464B;
}
.rec_block:nth-child(5)::after {
  background-color: #DE464B;
}
.rec_block:nth-child(6) {
  background-color: #BB1C21;
}
.rec_block::after {
  position: absolute;
  content: "";
  bottom: -12px;
  left: calc(50% - 16px);
  display: inline-block;
  width: 33px;
  height: 13px;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.step_title {
  width: 78px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  padding-top: 5px;
}

.step_text {
  font-size: 19px;
  font-weight: bold;
  font-family: "Josefin Sans", serif;
  color: #fff;
}
.step_text.ini {
  color: #BB1C21;
}

.step_num {
  font-size: 36px;
  font-weight: bold;
  font-family: "Josefin Sans", serif;
  color: #fff;
}
.step_num.ini {
  color: #BB1C21;
}

.step_content {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.step_content.ini {
  color: #333;
}
@media (max-width: 767px) {
  .table {
    min-width: 480px;
  }
  .table th {
    width: 120px;
    padding: 8px 16px;
  }
  .table td {
    padding: 8px 16px;
  }
  .rec_block {
    padding: 0 20px;
    gap: 25px;
  }
  .step_title {
    width: 68px;
    gap: 8px;
  }
  .step_text {
    font-size: 16px;
  }
  .step_num {
    font-size: 26px;
  }
  .step_content {
    font-size: 16px;
  }
}