.job {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 1080px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.job-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.job-tag span {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid #666;
  color: #666;
  font-family: "Hiragino Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.job-title {
  overflow: hidden;
  color: #5F89E3;
  font-feature-settings: 'palt' on;
  text-overflow: ellipsis;
  font-family: "Hiragino Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 25.2px */
}

.job-info {
  display: flex;
  padding: 8px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  background: #EEF4F8;
  color: #666;
  font-family: "Hiragino Sans";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 19.5px */
}

.job-info .job-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.job-info .job-label--company::before, .job-info .job-label--location::before, .job-info .job-label--salary::before, .job-info .job-label--description::before {
  content: "";
  display: inline-block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: url("/img/icon-company.svg") no-repeat;
  background-size: contain;
}

.job-info .job-label--location::before {
  background: url("/img/icon-location.svg") no-repeat;
}

.job-info .job-label--salary::before {
  background: url("/img/icon-salary.svg") no-repeat;
}

.job-info .job-label--description::before {
  background: url("/img/icon-description.svg") no-repeat;
}

.job-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-description__title {
  color: #666;
  font-feature-settings: 'palt' on;
  font-family: "Hiragino Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.job-description__content {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}

.job-description__content p {
  color: #666;
  font-feature-settings: 'palt' on;
  font-family: "Hiragino Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
  margin-bottom: 14px;
}

.job-actions {
  display: flex;
  gap: 10px;
}

.job-actions .button {
  width: calc(100% / 2 - 8px);
}

.job-actions .button--submit {
  display: flex;
  height: 42px;
  padding: 11px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  border-radius: 5px;
  background: var(--blue_gradation, linear-gradient(180deg, #7499E9 0%, #5F89E3 100%));
  color: #FFF;
  font-family: "Hiragino Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  text-decoration: none;
}
