.aside-job-search {
  margin-bottom: 30px;
  position: relative;
  z-index: 100;
}
.aside-job-search .c-width--large {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.aside-job-search .aside-job-search__link {
  position: relative;
  width: 100%;
  background-color: var(--color--blurry-black);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 184px;
  border: solid 1px transparent;
  -webkit-transition: border 500ms, background-color 500ms;
  transition: border 500ms, background-color 500ms;
}
.aside-job-search .aside-job-search__link:hover {
  opacity: 1;
  background-color: transparent;
  border: solid 1px var(--color--border-gray);
}
.aside-job-search .aside-job-search__text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.68;
  text-align: center;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .aside-job-search {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .aside-job-search {
    margin-bottom: 20px;
  }
  .aside-job-search .c-width--large {
    display: block;
  }
  .aside-job-search .aside-job-search__link {
    width: 100%;
    height: auto;
    padding-top: 55px;
    padding-bottom: 65px;
  }
}