/* guidance
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.tabs {
  margin-bottom: 120px;
}
.tabs__list {
  display: flex;
  list-style: none;
  margin-bottom: 120px;
}
.tabs__item {
  flex: 1 1 0%;
  margin: 0;
  height: 120px;
  display: flex;
  position: relative;
  margin-top: 30px;
}
.tabs__link {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  line-height: 1.8;
  padding: 20px 20px 30px;
  /*&:hover::after {
  	bottom: 10px;
  }*/
}
.tabs__link.current {
  color: #FFF !important;
}
.tabs__link.current, .tabs__link:hover {
  padding: 20px 20px 60px;
}
.tabs__link::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #FFFAEB;
  transition: 0.2s ease;
}
.tabs__link.current::before {
  top: -30px;
  background: #00A76A;
}
.tabs__link:hover::before {
  top: -30px;
  left: 0;
  right: 0;
  bottom: 0;
}
.tabs__link::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 25px;
  height: 25px;
  box-sizing: border-box;
  color: #00A76A;
  border-right: 8px solid;
  border-bottom: 8px solid;
  transform: translate(-50%, 0) rotate(45deg);
  transition: 0.2s ease;
}
.tabs__link.current::after {
  color: #FFF;
}

.selection-flow__list {
  list-style: none;
  counter-reset: selection-flow-count;
}
.selection-flow__item {
  border: 1px solid #E73817;
  border-left: none;
  margin: 0 0 50px 110px;
  padding: 20px 50px 20px 20px;
  counter-increment: selection-flow-count;
  position: relative;
}
.selection-flow__item:not(:last-child)::before {
  content: '';
  position: absolute;
  font-size: 1.8rem;
  border-left: 3px solid #00A76A;
  top: calc(40px + 2.2em);
  bottom: -52px;
  right: calc(100% + 40px);
  transform: translate(50%, 0);
}
.selection-flow__item :last-child {
  margin-bottom: 0 !important;
}
.selection-flow__count {
  color: #00A76A;
  position: absolute;
  top: calc(20px + 1.1em);
  right: calc(100% + 60px);
  transform: translate(50%, -50%);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}
.selection-flow__count::before {
  content: 'STEP';
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-right: 0.3em;
}
.selection-flow__count::after {
  content: counter(selection-flow-count,decimal-leading-zero);
  font-size: 3rem;
  letter-spacing: 0.05em;
}
.selection-flow__title {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 20px;
}

.submission-date {
  display: flex;
}
.submission-date__title {
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 30px 20px 0;
  flex: 0 0 auto;
}

.recruitment-rate__table {
  border-top: 3px solid #00A76A;
  border-bottom: 3px solid #00A76A;
}
.recruitment-rate__thead th {
  padding: 5px;
}
.recruitment-rate__tbody {
  border-top-width: 1px;
}
.recruitment-rate__th {
  vertical-align: middle;
}
.recruitment-rate__td {
  text-align: center;
  vertical-align: middle;
}
.recruitment-rate__release-date {
  text-align: right;
  margin-top: -60px;
}

.recruit-service {
  text-align: center;
}
.recruit-service__description {
  font-size: 1.8rem;
}
.recruit-service__button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.recruit-service__button-link {
  margin: 0 10px;
}

@media screen and (max-width: 1023px) {
  .tabs {
    margin-bottom: 60px;
  }
  .tabs__list {
    margin-bottom: 60px;
  }
  .tabs__item {
    height: 70px;
    margin-top: 20px;
  }
  .tabs__link {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    padding: 10px 10px 20px !important;
  }
  .tabs__link.current {
    padding: 10px 10px 30px !important;
  }
  .tabs__link::before {
    top: 0 !important;
  }
  .tabs__link.current::before {
    top: -20px !important;
  }
  .tabs__link::after {
    bottom: 10px;
    width: 15px;
    height: 15px;
    border-right: 4px solid;
    border-bottom: 4px solid;
  }

  .selection-flow__item {
    margin: 0 0 30px 40px;
    padding: 10px 15px 10px 10px;
  }
  .selection-flow__item:not(:last-child)::before {
    font-size: 1.4rem;
    border-left-width: 2px;
    top: calc(20px + 2em);
    bottom: -32px;
    right: calc(100% + 20px);
  }
  .selection-flow__count {
    top: calc(10px + 1em);
    right: calc(100% + 20px);
    line-height: 1.1;
    font-size: 1.4rem;
    flex-direction: column;
  }
  .selection-flow__count::before {
    font-size: 1rem;
    margin: 0;
  }
  .selection-flow__count::after {
    font-size: 2.4rem;
  }
  .selection-flow__title {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
  }
  .selection-flow__description {
    font-size: 1.2rem;
  }

  .submission-date {
    font-size: 1.2rem;
    display: block;
  }
  .submission-date__title {
    letter-spacing: 0.2em;
    margin: 0 0 10px;
  }

  .recruitment-rate__table {
    border-top-width: 2px;
    border-bottom-width: 2px;
  }
  .recruitment-rate__tbody {
    border-top-width: 1px;
  }
  .recruitment-rate__th {
    font-size: 1.2rem;
  }
  .recruitment-rate__th, .recruitment-rate__td {
    letter-spacing: 0.05em;
  }
  .recruitment-rate__release-date {
    font-size: 1.2rem;
    margin-top: -40px;
  }

  .recruit-service__description {
    font-size: 1.4rem;
  }
  .recruit-service__button-image {
    width: min(70vw, 250px);
    height: auto;
  }
  .recruit-service__button-link {
    margin: 0 10px 10px;
  }
}

/*# sourceMappingURL=information.css.map */
