/* ----------- */
/* JOB Detail */
/* ----------- */
.job_title {
  margin-bottom: 16px;
}
.job_title_category {
  font-size: 20px;
  color: #F7618F;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.job_title_name {
  font-size: 32px;
  font-weight: bold;
  display: block;
}

.job_description {
  line-height: 1.6;
}

/* アコーディオン */
/* ----------- */

.job_list {
  margin-top: 80px;
}

.job_list_item {
  margin-bottom: 16px;
  transition: all .2s;
}

.job_list_item_title {
  font-size: 20px;
  font-weight: bold;
  padding: 20px;
  background-color: #F4F4F8;
  border-radius: 10px;
  position: relative;
}

.job_list_item_title:hover {
  cursor: pointer;
  transition: all .2s;
  opacity: .6;
}

/* 開閉のアイコン */
.job_list_item_title::before {
  content: "";
  display: block;
  background-color: #333;
  position: absolute;
  width: 4px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: 27px;
}

.job_list_item_title::after {
  content: "";
  display: block;
  background-color: #333;
  position: absolute;
  width: 18px;
  height: 4px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

/* アコーディオンオープンでアイコン変更 */
.is-open.job_list_item_title::before {
  display: none;
}

.job_list_item_contents {
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}

/* アコーディオンオープン */
.is-open+.job_list_item_contents {
  height: auto;
  overflow: unset;
  transition: all 0.3s;
}

.job_list_item_contents_text {
  line-height: 1.6;
  padding: 12px 20px 40px;
}

.job_list_item_contents_text_link {
  color: #1F85FD;
  text-decoration: underline;
}

.job_list_item_contents_text_link:hover {
  transition: all .2s;
  opacity: .6;
}

/* 社員紹介 */
/* ----------- */
.job_member_heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 16px;
}
.job_member_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.job_member_item {
  display: grid;
  gap: 40px;
  background-color: #F4F4F8;
  border-radius: 16px;
  padding: 40px;
}
.job_member_img {
  grid-column: 1 / 2;
  width: 200px;
  border-radius: 10px;
}
.job_member_col_right {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
}
.job_member_heading_secondary {
  font-size: 20px;
  font-weight: bold;
  color: #F7618F;
  margin-bottom: 16px;
}
.job_member_text {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
  margin-bottom: 20px;
}
.job_member_link_read_all {
  margin-top: auto;
  margin-left: auto;
}

/* note記事 */
/* ----------- */
.job_note_title {
  font-size: 32px;
  font-weight: bold;
  max-width: 1072px;
  padding-left: 40px;
  margin: 0 auto 16px;
}
.job_note_body {
  background: linear-gradient(180deg, #4B505E 0%, #323641 100%);
  color: #fff;
}
.job_note_item {
  max-width: 1072px;
  padding: 40px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
.job_note_item_img {
  width: 45%;
  border-radius: 10px;
}
.job_note_col_right {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
}
.job_note_item_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}
.job_note_item_text {
  line-height: 1.5;
}
.job_note_item_read {
  margin-top: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .job_title_category {
    font-size: 14px;
  }
  .job_title_name {
    font-size: 20px;
  }
  .job_description {
    font-size: 14px;
  }
  .job_list {
    margin-top: 40px;
  }
  .job_list_item_title {
    font-size: 14px;
  }
  .job_list_item_contents_text {
    font-size: 14px;
  }
  /* 社員紹介 */
  .job_member {
    margin-bottom: 80px;
  }
  .job_member_heading {
    font-size: 20px;
  }
  .job_member_item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 16px;
  }
  .job_member_img {
    width: 100%;
  }
  /* note */
  .job_note {
    margin-bottom: 40px;
  }
  .job_note_title {
    font-size: 20px;
    padding-left: 12px;
  }
  .job_note_item {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    font-size: 14px;
  }
  .job_note_item_img {
    width: 100%;
  }
  .job_note_item_text {
    margin-bottom: 12px;
  }
}
