/*  #intro
================================================ */
.rec_position{
  margin-top: 4rem;
}
.article_list_item .article_list_headline{
  font-size: 1.4rem;
}
@media screen and (min-width: 600px) { 
  .rec_position{
    margin-top: 10rem;
  }
  .article_list_item .article_list_headline{
    font-size: 1.6rem;
  }
}

/*  #募集要項
================================================ */
.detailTable {
    border-bottom: 1px solid #E6E6E6;
    margin-top: 39px;
}
.detailTable th {
    border-top: 1px solid #E6E6E6;
    background-color: #f7f7f7;
    font-weight: bold;
    padding: 8px 0 6px 15px;
}
.detailTable td {
    line-height: 2;
    padding: 20px 0 30px 3px;
}
@media screen and (min-width: 600px){
  .detailTable {
    margin-top: 65px;
    margin-bottom: 3rem;
  }
  .detailTable tr {
      border-top: 1px solid #E6E6E6;
  }
  .detailTable th {
      border-top: none;
      font-size: 1.6rem;
      width: 193px;
      padding: 30px 0 35px 60px;
  }
  .detailTable tr:first-of-type th {
      padding: 35px 0 35px 60px;
  }
  .detailTable td {
      font-size: 1.5rem;
      padding: 28px 0 30px 45px;
  }
  .detailTable tr:first-of-type td {
      padding: 35px 0 27px 45px;
  }
}


.entryFlow {
  border: 1px solid #E6E6E6;
  padding: 3rem 3rem 4rem;
}
.entryFlowDesc{
  margin-bottom: 2rem;
}
.entryFlowStep{
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 14px;
}
.entryFlowStep:before {
  content: '';
  z-index: -1;
  position: absolute;
  height: 100%;
  display: block;
  margin: 0 auto;
  background-color: #5C6472;
  width: 4px;
  left: 0;
  right: 0;
}
.entryFlowStep li {
    flex: 1;
    border: 1px solid #A8B0BE;
    text-align: center;
    padding: 2rem;
    font-size: 1.6rem;
    background: #fff;
}
.entryFlowStep li:last-child{
  background-color: #5C6472;
  color: #fff;
    border-color: #5C6472;
}

@media screen and (min-width: 600px){
  .entryFlowStep{
    gap: 3%;
    flex-direction: row;
  }
  .entryFlowStep:before {
    width: calc(100% - 4px);
    height: 3px;
    top: 50%;
  }
}





