@charset "euc-jp";
/* search

案件一覧ページのみで使用するスタイル

main_column
left_column

------------------------------------------------ */

/* 並び替え・列表示切替
------------------------------------------------ */
.selector {
  width: 1000px;
  box-sizing: border-box;
  position: relative;
  border-bottom: #2879c4 2px solid;
  margin: 0 auto 30px;
  padding: 20px 0 5px;
}
.selector h2 {
  width: 525px;
　　clear: both;
　　margin-bottom: 10px;
  padding: 5px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
  font-size: 22px;
　　color: #3b3b3b;
}

/* 並び替え */
.selector .sort {
  position: absolute;
  bottom: 10px;
  right: 140px;
}
.selector .sort li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.selector .sort li:nth-child(1) {
  margin-right: 0;
  border: none;
  font-size: 13px;
}
.selector .sort li:last-child { margin-right: 0;}
.selector .sort li a {
  border: 1px solid #e0e2e4;
  border-radius: 2px;
  color: #404040;
  display: block;
  font-size: 11px;
  padding: 5px 5px 3px;
  text-decoration: none;
}
.selector .sort li a:hover {
  background: #f4f4f4;
  color: #197fde;
  transition: .2s linear;
}
.selector .sort .select {
  background: #5da0dd;
  border: 1px solid #5da0dd;
  border-radius: 2px;
  color: #fff;
  font-size: 11px;
  padding: 5px 5px 3px;
}
/* 列表示切替 */
.selector .ad_list_row {
  position: absolute;
  bottom: 10px;
  right: 0;
}
.selector .ad_list_row li {
  box-sizing: border-box;
  display: inline-block;
  border: 1px solid #e0e2e4;
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 5px;
  transition: .2s linear;
}
.selector .ad_list_row li:nth-child(1) {
  margin-right: 0;
  border: none;
  font-size: 13px;
}
.selector .ad_list_row li:nth-child(2),
.selector .ad_list_row li:nth-child(3) {
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  overflow: hidden;
　　text-indent: 150%;
　　white-space: nowrap;
}
.selector .ad_list_row li:last-child { margin-right: 0;}
.selector .ad_list_row li a {
  width: 30px;
  height: 30px;
  box-sizing: border-box;  
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.selector .ad_list_row li:nth-child(2):hover,
.selector .ad_list_row li:nth-child(3):hover {
  border: 1px solid #5da0dd;
  background-color: #f4f4f4;
}
.selector .ad_list_row .select {
  border: 1px solid #5da0dd;
  border-radius: 2px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.selector .ad_list_row li:nth-child(2) { background: url(../../img/15/icon/ico_list_row1.png) no-repeat center 5px;}
.selector .ad_list_row li:nth-child(3) { background: url(../../img/15/icon/ico_list_row3.png) no-repeat center 5px;}
.selector .ad_list_row li:nth-child(2).select { background: #5da0dd url(../../img/15/icon/ico_list_row1.png) no-repeat center -25px;}
.selector .ad_list_row li:nth-child(3).select { background: #5da0dd url(../../img/15/icon/ico_list_row3.png) no-repeat center -25px;}


/* l_content1
------------------------------------------------ */

.search .search_inner {
  width: 1000px;
  box-sizing: border-box;
  margin: 0 auto;
}
.search .search_inner h2 { margin-left: 25px;}
.search .ad_search { margin-top: 15px;}


/* l_content2_main 中央カラム
------------------------------------------------ */
.l_content2.search {
  box-sizing: border-box;
  padding-bottom: 50px;
}
.l_content2.search:before,
.l_content2.search:after {
  content:"";
  display:table
}
.l_content2.search:after { clear:both }
.ad_list .sokupt {
  margin-top: 5px;
}
.ad_list .name {
  width: 540px;
  margin-bottom: 25px;
}
.ad_list .point_status .addpointtime {
  width: 540px;
  padding-top: 20px;
}
.ad_list .point_status .addpointtime span { margin-right: 2px;}
.ad_list .comment {
  width: 650px;
  white-space: normal;
}
.ad_list .favorite_comment {
  display: block;
}

/* 広告案件　リスト　1列　お気に入りボタン配置 */
.ad_list li a:nth-child(2) { position: absolute;}
.search .ad_list .favorite {
  bottom: 10px;
  right: 15px;
}
.search .ad_list .favorite_comment {
  bottom: 66px;
  right: -51px;
}

/* 広告案件　リスト　3列　お気に入りボタン配置 */
.search .ad_list.ad_list_row3 .favorite {
  bottom: 2px;
  right: 8px;
}
.search .ad_list.ad_list_row3 .favorite_comment {
  bottom: 46px;
  right: -64px;
}
/* 広告案件　リスト　100%還元アイコン配置 */
.search .ad_list .reduction {
  width: 70px;
  height: 70px;
  box-sizing: border-box;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 1;
  padding: 15px 0 0;
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0px;
  border: #fff 3px solid;
  background: #f03955;
  color: #fff;
  animation: animScale 3.5s infinite ease-out;
  transform-origin: 50% 50%;
  animation-play-state:running;
}
  @keyframes animScale {
  0% { transform: scale(0.8, 0.8); }
  5% { transform: scale(1.2, 1.2); }
  10% { transform: scale(1, 1); }
  15% { transform: scale(1.1, 1.1); }
  20% { transform: scale(1, 1); }
  100% { transform: scale(1, 1); }
}

/* ページャー　CSS調整 */
ul.pager {
  width: 770px;
  margin-bottom: 10px;
  border: none;
}
.pager li a, .pager li.select {
  box-sizing: border-box;
  padding: 7px 11px;
  font-size: 17px;
}
.pager li.next a, .pager li.prev a { font-size: 14px;}
.pager li.prev { margin-right: 15px;}
.pager li.next { margin-left: 10px;}

/* 案件数 */
.num_display {
  text-align: center;
  letter-spacing: 0;
  font-size: 13px;
}
.num_display.num_display_top {
  margin-bottom: 15px;
  text-align: center;
}


/* l_content2_left 左カラム
------------------------------------------------ */

.ad_ctategory { margin-bottom: 30px;}
.menu_list li { font-size: 12px;}
