.btn-job a{
  color: #fff;
  text-decoration:none;
}

.btn-job {
  color: #fff;
  background: #666;
  border-radius: 10px;
  display: inline-block;
  width: 240px;
  font-size: 0.8em;
  margin-top: 1em;
  padding: 0.8em 0.8em 0.8em 1em; 
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn-job::after {
  background: #2650FF;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .25s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.btn-job:hover {
  color: #fff;
}
.btn-job:hover::after {
  transform: scale(1, 1);
}

.material-symbols-outlined {
  padding-left: 0.8em;
  font-size: 1.1em;
  vertical-align: -3px;
}

.job-midashi {
  padding: 0.5rem 1.2rem;
  border-left: 6px solid #2650FF;
  color: #666;
  font-size: 0.8em;
  font-weight: bold;
  margin-top: 2em;
}