/*
	募集中のお仕事を見る
*/

.search_wrap {
  padding: 20px;
  margin: 20px 7% 15px;
  border-radius: 8px;
  background-color: #44aeea;
  font-size: 1.4rem;
}

.subject_list {
  margin-bottom: 10px;
}

.search_conditions {
  display: none;
  padding: 0 20px;
  margin: 0 7%;
  font-size: 1.4rem;
  color: #707070;
}

.subject_list_item_left,
.subject_list_item_right,
.subject_list_item_center {
  text-align: center;
  margin-bottom: 15px;
}

.subject_list_item_left label,
.subject_list_item_center label {
  color: #fff;
}

#delivery_subject_name,
#area {
  width: 165px;
  height: 33px;
  font-size: 1.6rem; /* iPhoneでtextのfocus時に拡大されないよう明示的にフォントサイズを指定 */
}

@media screen and (min-width: 640px) {

  .search_wrap {
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .search_conditions {
    font-size: 1.6rem;
  }

  .subject_list {
    margin-bottom: 0;
  }

  .subject_list_item_left,
  .subject_list_item_right,
  .subject_list_item_center {
    margin-bottom: 0;
  }

  .subject_list_item_left {
    margin-right: 10px;
  }

  .subject_list_item_right {
    margin-left: 10px;
  }

  #delivery_subject_name,
  #area {
    height: 40px;
  }
}

/*----------------------------------------
	お仕事一覧
----------------------------------------*/
.work_list {
  display: flex;
  flex-direction: column;
  background-color: #f5f7f9;
}

.work_list a {
  text-decoration: none;
}

.work_list_item_inner {
  position: relative;
  display: block;
  color: #504949;
  background-color: #fff;
  box-shadow: 2px 2px 2px grey;
  margin: 3% 3% 0;
  padding: 7px;
  font-size: 1.2rem;
  overflow: hidden;
}

.work_list_thumb {
  float: left;
  margin: 0 13px 13px 0;
}

.work_list_thumb img {
  object-fit: cover;
  width: 83px;
  height: 83px;
}

.work_list_data {
  display: contents;
  float: left;
}

.work_list_data li:nth-child(1) {
  padding: 0 0 10px 10px;
  height: 70px;
  line-height: 1.7rem;
}

.work_list_data li:nth-child(2) {
  position: relative;
  text-indent: 2.4rem;
}

.work_list_data li:nth-child(2)::before {
  content: url(../../images/marker.svg);
  display: inline-block;
  transform: scale(0.04);
  position: absolute;
  top: -250px;
  left: -165px;
}

.work_list_from_to {
  clear: both;
}

.work .date_from,
.date_to {
  display: inline-block;
}

#pagenation {
  margin: 20px 3% 0;
  text-align: center;
  font-family: "YakuHanJP","Zen Kaku Gothic New",sans-serif;
}

#pagenation p {
  font-size: 1.8rem;
  color: #95999e;
  margin: 0 0 5px;
}

.current,
.detail_link {
  font-size: 1.4rem;
  padding: 0 8px;
}

.current {
  color: #3498db;
}

.detail_link {
  color: #95999e;
  cursor: pointer;
}

.detail_others {
  font-size: 1.4rem;
  color: #95999e;
}

#result_none {
  display: none;
  margin: 0 7%;
  padding: 10px;
}

#result_none p {
  font-size: 1.4rem;
  text-align: center;
  color: #707070;
}

@media screen and (min-width: 640px) {
  .work_list_item_inner {
    font-size: 1.5rem;
    padding: 12px;
  }

  .work_list_thumb {
    margin: 0 20px 0 0;
  }

  .work_list_thumb img {
    width: 200px;
    height: 200px;
  }

  .work_list_data {
    padding: 10px;
  }

  .work_list_data li:nth-child(1) {
    height: 135px;
    line-height: 2.4rem;
  }

  .work_list_data li:nth-child(2) {
    margin-bottom: 15px;
    text-indent: 3.2rem;
  }

  .work_list_data li:nth-child(2)::before {
    transform: scale(0.05);
    top: -248px;
    left: -40px;
  }

  .work_list_from_to {
    clear: unset;
  }

  #result_none p {
    font-size: 1.6rem;
  }
    
  .detail_link {
    font-size: 1.6rem;
    padding: 0 10px;
  }

  .current,
  .detail_others {
    font-size: 1.6rem;
  }
}