/*--------------------------------
 Career ページ専用の補助スタイル
 （配色・フォントは共通スタイル(css/style.css)を踏襲し、
 　余白・レイアウトのみを補足する）
---------------------------------*/
.career-text {
  margin-bottom: 20px;
}

.career-text:last-child {
  margin-bottom: 0;
}

/* 本文は資格リストと同じ幅に揃え、左右に余白を確保する */
.career-history-item {
  max-width: 860px;
  margin: 0 auto 50px;
}

.career-history-item:last-child {
  margin-bottom: 0;
}

.career-history-item h3 {
  font-size: 16px;
  margin-bottom: 15px;
}

/* 期間は会社名・職種と行を分けて読みやすくする */
.career-period {
  display: block;
  font-size: 12px;
  font-weight: normal;
  letter-spacing: .1em;
  color: #797979;
  margin-bottom: 6px;
}

.career-location {
  font-size: 12px;
  color: #797979;
  margin-bottom: 15px;
}

.career-history-item p {
  margin-bottom: 15px;
}

.career-history-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------
 資格（カテゴリ別・2列）
---------------------------------*/
.cert-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
}

.cert-group {
  width: 50%;
  padding-right: 30px;
  margin-bottom: 40px;
}

.cert-category {
  font-size: 13px;
  letter-spacing: .1em;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e6e6e6;
}

.cert-group li {
  margin-bottom: 6px;
}

/* 資格コードは常に次の行へ。コード自体は途中で改行させない */
.cert-code {
  display: block;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .career-history-item {
    margin-bottom: 40px;
  }

  .cert-group {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .cert-group:last-child {
    margin-bottom: 0;
  }
}
