@charset "UTF-8";
/* ------------------------------
　　追加用CSS
------------------------------ */
@media (min-width: 768px) {
  .top-headline-title {
    padding: 0 24px 0 34px;
    display: flex;
    align-items: center;
  }
  .top-headline-item {
      align-items: center;
      p.days {
        padding-top: 0;
      }
    &:nth-of-type(n + 2) {
        p.days {
        padding-top: 10px;
      }
    }
  }
  .top-products-list {
    justify-content: flex-start;
    li {
      margin-right: 2%;
      &:nth-child(3n) {
        margin-right: 0;
      }
    }
  }
}

/* 求人情報リンク */
.text-anchor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 18px;
  gap: 16px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.text-anchor-link {
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  color: inherit;
}

.text-anchor-link:hover {
  text-decoration: none;
}

.text-anchor-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid currentColor;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .text-anchor-list {
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 40px;
  }
}