/* CSS Document */
.recruit-info__article {
  background-color: var(--white-color);
  padding: 100px;
  margin: 80px 50px 0 50px;
}
@media screen and (max-width: 768px) {
  .recruit-info__article {
    padding: 40px 20px;
    margin: 0 20px 0 20px;
  }   
  
}

.business-title {
  font-size: 2.0rem;
  font-weight: 500;
  margin: 10px 0;
}


.company__table {
  border-bottom: 1px solid var(--gray-color);
    max-width: 850px;
    width: 100%;
      margin: 0 auto;
        margin-top: 70px;
}

.company__table-list {
  display: grid;
  grid-template-columns: minmax(120px, 200px) 1fr;
  row-gap: 16px;
  column-gap: 24px;
  padding: 30px 10px;
  border-top: 1px solid var(--gray-color);
}

.company__table-title {
  font-weight: 500;
  color: var(--corporate-color)
}

.company__table-data {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
.business-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 5px 0;
}

.company__table {
        margin-top: 40px;
}
  .company__table-list {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 20px 10px;
  } 
  
}

.company__table-data__ul li::before {
  content: "● ";
  color: var(--yelow-color);
}

.company__table-data__ul li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.recruit-info__btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.recruit-info__btn .btn__primary {
  padding: 20px 60px;
  max-width: 450px;
  width: 100%;
}
@media screen and (max-width: 768px) {
.recruit-info__btn .btn__primary {
  padding: 15px 30px;
  font-size: 1.4rem;
  max-width: 250px;
}
  
}

.step-flow {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.step-flow__item {
  display: flex;
  align-items: flex-start;
  padding-left: 40px;
  position: relative;
  margin-bottom: 40px;
}

/* 垂直ラインは各ステップが持つ */
.step-flow__item::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 45px; /* 丸アイコン中央から開始 */
  width: 1px;
  height: calc(100% - 18px); /* 最後は0になる */
  background-color: #e0e0e0;
}
@media screen and (max-width: 768px) {
.step-flow__item::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 45px; /* 丸アイコン中央から開始 */
  width: 1px;
  height: calc(100% - 18px); /* 最後は0になる */
  background-color: #e0e0e0;
}
}

/* 最後のアイテムは縦線を消す */
.step-flow__item:last-child::before {
  display: none;
}

.step-flow__icon {
  position: absolute;
  left: -36px;
  top: 0;
  width: 36px;
  height: 36px;
  background-color: #aa1e3a;
  color: #fff;
  border-radius: 50%;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 36px;
  text-align: center;
  font-family: var(--font-family-obun);
}
@media screen and (max-width: 768px) {
  .step-flow__icon {
  position: absolute;
  left: -10px;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 30px;
  text-align: center;
}
}

.step-flow__body {
  flex: 1;
}

.step-flow__title {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 16px;
}

.step-flow__title small {
  font-weight: normal;
  font-size: 13px;
  margin-left: 4px;
  color: #666;
}

.step-flow__text {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

@media screen and (max-width: 768px) {

  .step-flow__text {
    font-size: 1.3rem;
  }
}