.c-breadcrumb__item:nth-of-type(3) {
  display: none;
}


.page_contents__offer__detail__option {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page_contents__offer__detail__option__item {
  display: block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tcd-accent-color);
  border: 1px solid var(--tcd-accent-color);
  border-radius: 30px;
  transition: all .2s;
}
.page_contents__offer__detail__option__item--sub {
  color: #555;
  border-color: #555;
}
.page_contents__offer__detail__option__item:hover {
  background-color: var(--tcd-accent-color);
  color: #fff;
}
.page_contents__offer__detail__option__item--sub:hover {
  background-color: #555;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .page_contents__offer__detail__option {
    gap: 5px;
  }
}

.page_contents__offer__detail__content {
  display: grid;
  align-content: start;
  row-gap: 70px;
}
.page_contents__offer__detail__content__title {
  margin-block: var(--tcd-half-read);
  color: #000;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}
.page_contents__offer__detail__content__data {
  border-bottom: 1px solid #ddd;
  line-height: 1.5;
}
.page_contents__offer__detail__content__data dl {
  display: flex;
  padding: 30px 0;
  border-top: 1px solid #ddd;
}
.page_contents__offer__detail__content__data dt {
  width: 280px;
  font-weight: 600;
}
.page_contents__offer__detail__content__data dd {
  flex: 1;
}
.page_contents__offer__detail__content__btn {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.page_contents__offer__detail__content__btn :where(a[href*="tel:"]) {
  cursor: pointer;
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  .page_contents__offer__detail__content {
    row-gap: 40px;
  }
  .page_contents__offer__detail__content__title {
    font-size: 20px;
    line-height: 1.5;
  }
  .page_contents__offer__detail__content__data {
    font-size: 14px;
  }
  .page_contents__offer__detail__content__data dl {
    padding: 20px 0;
  }
  .page_contents__offer__detail__content__data dt {
    width: 120px;
  }
  .page_contents__offer__detail__content__btn {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 374px) {
  .page_contents__offer__detail__content__data dl {
    flex-direction: column;
    gap: 10px;
  }
  .page_contents__offer__detail__content__data dt {
    width: 100px;
  }
}


/* 採用ステップ */
.page_contents__recruit__process__detail__content__flow {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}
.page_contents__recruit__process__detail__content__flow:not(:last-child) {
  padding-bottom: 40px;
}
.page_contents__recruit__process__detail__content__flow:not(:last-child):before {
  content: '';
  display: block;
  width: 4px;
  height: 100%;
  background-color: #000;
  opacity: .1;
  position: absolute;
  top: 0;
  left: 38px;
}
.page_contents__recruit__process__detail__content__flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: var(--tcd-accent-color);
  color: #fff;
  line-height: 1;
  position: relative;
}
.page_contents__recruit__process__detail__content__flow__step small {
  font-size: 10px;
}
.page_contents__recruit__process__detail__content__flow__step span {
  font-size: 24px;
  font-weight: 600;
}
.page_contents__recruit__process__detail__content__flow__content {
  flex: 1;
}
.page_contents__recruit__process__detail__content__flow__content__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
.page_contents__recruit__process__detail__content__flow__content__text {
  margin-top: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page_contents__recruit__process__detail__content__flow {
    gap: 20px;
  }
  .page_contents__recruit__process__detail__content__flow:not(:last-child) {
    padding-bottom: 30px;
  }
  .page_contents__recruit__process__detail__content__flow:not(:last-child):before {
    left: 28px;
  }
  .page_contents__recruit__process__detail__content__flow__step {
    width: 60px;
    height: 60px;
  }
  .page_contents__recruit__process__detail__content__flow__content__title {
    font-size: 16px;
  }
  .page_contents__recruit__process__detail__content__flow__content__text {
    margin-top: 5px;
    font-size: 14px;
  }
}


/* 関連求人 */
.related__offer__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .related__offer__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .related__offer__list {
    grid-template-columns: 1fr;
  }
}
.related__offer__list__item__thumbnail {
  overflow: hidden;
}
.related__offer__list__item__options {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.related__offer__list__item__options__item {
  display: block;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--tcd-accent-color);
  border: 1px solid var(--tcd-accent-color);
  border-radius: 30px;
  transition: all .2s;
}
.related__offer__list__item__options__item--sub {
  color: #555;
  border-color: #555;
}
.related__offer__list__item__options__item:hover {
  background-color: var(--tcd-accent-color);
  color: #fff;
}
.related__offer__list__item__options__item--sub:hover {
  background-color: #555;
  color: #fff;
}
.related__offer__list__item__title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: all .3s;
}
.related__offer__list__item__description {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.related__offer__list__item__info {
  display: flex;
  align-items: center;
  margin-top: 10px;
  line-height: 1.5;
}
.related__offer__list__item__info + .related__offer__list__item__info {
  margin-top: 5px;
}
.related__offer__list__item__info dt {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 70px;
  font-size: 12px;
  font-weight: 600;
}
.related__offer__list__item__info dd {
  font-size: 14px;
}

/* hover */
.related__offer__list__item a:hover .related__offer__list__item__title {
  opacity: 0.6;
}