/* ----------- */
/* JOB */
/* ----------- */

/* NEWS */
/* ----------- */
.news {
  width: 100%;
  border: 1px solid #E0E0E0;
  background-color: #fff;
  font-size: 16px;
  padding: 20px 52px 20px 100px;
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.news::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  content: "NEWS!";
  color: #F7618F;
  font-size: 18px;
  font-weight: bold;
}

.news::after {
  content: "";
  display: block;
  height: 12px;
  width: 8px;
  background-image: url(/img/icon_arrow_news.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

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

/* プロダクト開発のバナー */
.job_banner_development_wrap {
  margin-bottom: 60px;
}

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

/* ページ内リンク */
/* ----------- */
.link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.link_list_item_link {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid;
  border: 1px solid #000;
  border-radius: 20px;
}

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

/* リモートアイコン説明 */
/* ----------- */
.remote_icon_explanation {
  margin-top: 48px;
}

.remote_icon_explanation_list_full {
  display: inline-block;
  margin: 0 40px 20px 0;
}

.remote_icon_explanation_list_negotiable {
  display: inline-block;
}

.remote_icon_explanation_list_layout {
  display: flex;
}

.remote_icon_explanation_title {
  display: inline-block;
}

.remote_icon_explanation_title::after {
  content: "…";
  margin: 0 4px;
}

.remote_icon_explanation_text {
  font-size: 14px;
}

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

.job_list {
  margin: 40px 0;
}

.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_contents_description {
  padding: 16px 0;
  border-bottom: 1px solid #E0E0E0;
}

.job_contents_description_text {
  margin-bottom: 16px;
}

.job_contents_description_img {
  width: 100%;
}

.job_contents_description_column {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}

.job_contents_description_column_cell {
  width: calc(50% - 8px);
}

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



/* アコーディオン内の各アイテム */
.job_contents_item {
  padding: 16px;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
}

.job_contents_item_icon {
  margin-bottom: 20px;
}

/* 各アイコン */
/* ----------- */
/* 急募 */
.icon_wanted {
  background-color: #F7618F;
  padding: 2px 12px;
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  border-radius: 20px;
  margin-right: 8px;
}
/* フルリモート */
.icon_remote_full {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  background-color: #55dcc7;
  padding: 2px 12px;
  border-radius: 20px;
}
/* フルリモート相談可 */
.icon_remote_negotiable {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
  background-color: #6dc8f9;
  padding: 2px 12px;
  border-radius: 20px;
}

.job_contents_item_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.job_contents_item_text {
  line-height: 1.6;
  padding-right: 40%;
}

.job_contents_item_link {
  position: absolute;
  bottom: 16px;
  right: 0;
}

@media screen and (max-width: 768px) {
  /* NEWS */
  .news {
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 52px 8px 100px;
    height: 60px;
    display: flex;
    align-items: center;
  }

  /* リモートアイコン説明 */
  .remote_icon_explanation_list_full {
    display: block;
  }
  .remote_icon_explanation_list_negotiable{
    display: block;
  }
  .remote_icon_explanation_list_layout {
    display: unset;
  }
  .remote_icon_explanation_title {
    display: block;
    margin-bottom: 8px;
  }
  .remote_icon_explanation_title::after {
    content: "";
    margin: 0;
  }
  .remote_icon_explanation_text {
    padding-left: 12px;
  }

  /* 職種リスト */
  .job_list_item_title {
    font-size: 14px;
  }
  .job_contents_item {
    position: unset;
  }
  .job_contents_item_title {
    font-size: 18px;
  }
  .job_contents_item_text {
    font-size: 14px;
    padding-right: 0;
    text-align: left;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .job_contents_item_link {
    position: unset;
    margin-top: 16px;
    text-align: right;
  }
}
