@charset "UTF-8";
/* search
---------------------------------------------------- */
.search_container {
  max-width: 1200px;
  margin: 60px auto;
}
.search_container .search_form_wrapper {
  background-color: #faf0da;
  border-radius: 5px;
  padding: 33px 0;
}
.search_container .search_form_wrapper .search_form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  background-color: #fff;
  border-radius: 100px;
  border: 3px solid #999;
  width: 483px;
  box-sizing: border-box;
  margin: 0 auto;
}
.search_container .search_form_wrapper .search_form input[type=text] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  width: 100%;
  height: 54px;
  padding: 17px 35px;
  box-sizing: border-box;
  font-size: 20px;
}
.search_container .search_form_wrapper .search_form input[type=text]::-moz-placeholder {
  color: #999;
}
.search_container .search_form_wrapper .search_form input[type=text]::placeholder {
  color: #999;
}
.search_container .search_form_wrapper .search_form button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 50px;
  background-color: #fff;
}
.search_container .search_form_wrapper .search_form button::after {
  content: "";
  width: 33px;
  height: 33px;
  background: url("../images/common/icon_search_gray.svg") no-repeat left top;
  background-size: contain;
}
.search_container .result_number {
  font-size: 17px;
  text-align: right;
  margin: 25px 0 15px;
}

@media screen and (max-width: 750px) {
  .search_container {
    margin: 0;
  }
  .search_container .search_form_wrapper {
    border-radius: 0;
    padding: 6.667vw 8vw;
  }
  .search_container .search_form_wrapper .search_form {
    border-radius: 26.667vw;
    border: 0.8vw solid #999;
    width: 100%;
  }
  .search_container .search_form_wrapper .search_form input[type=text] {
    height: auto;
    padding: 0px 2.667vw 0 5.333vw;
    font-size: 4vw;
  }
  .search_container .search_form_wrapper .search_form button {
    width: 16vw;
    height: 10.133vw;
  }
  .search_container .search_form_wrapper .search_form button::after {
    width: 5.867vw;
    height: 5.867vw;
  }
  .search_container .result_number {
    font-size: 3.733vw;
    margin: 0;
    padding: 3.2vw 5.333vw;
  }
}
/* search_list
---------------------------------------------------- */
.search_list > li {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  padding: 30px 0;
}
.search_list > li figure {
  width: min(24.33vw, 292px);
  height: min(18.33vw, 220px);
  box-sizing: border-box;
  border: min(0.083vw, 1px) solid #ccc;
  position: relative;
}
.search_list > li figure img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.search_list > li .search_txt {
  width: min(72.5vw, 870px);
}
.search_list > li .search_txt .search_title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  width: 100%;
  white-space: nowrap; // 横幅のMAXに達しても改行しない 
  overflow: hidden; // 溢れた部分を隠す 
  text-overflow: ellipsis; // 「…」と省略
  -webkit-text-overflow: ellipsis; // Safari用
  -o-text-overflow: ellipsis; // Opera用
}

.search_list > li .search_txt .search_info {
  background-color: #e7e7e7;
  border-radius: 5px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 18px 0;
}
.search_list > li .search_txt .search_info time {
  font-size: 14px;
  line-height: 1.1;
  margin-right: 5px;
}
.search_list > li .search_txt .search_info .cate {
  display: flex;
  align-items: center;
  margin-right: 5px;
}
.search_list > li .search_txt .search_info .cate::before {
  content: "／";
  margin: -3px 3px 0 0;
  font-size: 14px;
}
.search_list > li .search_txt .search_info .cate li {
  font-size: 14px;
  line-height: 1.1;
}
.search_list > li .search_txt .search_info .cate li + li::before {
  content: ",";
  margin: 0 3px;
  font-size: 14px;
}
.search_list > li .search_txt .search_info .tag {
  display: flex;
  align-items: center;
}
.search_list > li .search_txt .search_info .tag::before {
  content: "／";
  margin: -3px 3px 0 0;
  font-size: 14px;
}
.search_list > li .search_txt .search_info .tag li {
  margin: 0 0 0 5px;
}
.search_list > li .search_txt .search_info .tag li a {
  display: inline-block;
  font-size: 13px;
  line-height: 1.1;
  border: 1px solid #333;
  padding: 3px 5px;
  border-radius: 4px;
  vertical-align: middle;
  margin-top: -3px;
}
.search_list > li .search_txt .search_cont {
  font-size: 16px;
  line-height: 1.9;
}

@media screen and (max-width: 750px) {
  .search_list > li {
    display: block;
    padding: 6.667vw 5.333vw;
  }
  .search_list > li figure {
    width: 53.867vw;
    max-width: 290px;
    height: 40.533vw;
    max-height: 218px;
    margin: 0 auto 4vw;
  }
  .search_list > li .search_txt {
    width: auto;
  }
  .search_list > li .search_txt .search_title {
    font-size: 4.267vw;
    line-height: 1.7;
    white-space: break-spaces;
  }
  .search_list > li .search_txt .search_info {
    border-radius: 1.33vw;
    padding: 1.8vw 4vw 2.13vw;
    margin: 3vw 0;
  }
  .search_list > li .search_txt .search_info .tag,
  .search_list > li .search_txt .search_info time {
    font-size: 2.93vw;
  }
  .search_list > li .search_txt .search_info .cate {
    margin-right: 3vw;
  }
  .search_list > li .search_txt .search_info .cate::before {
    font-size: 2.93vw;
    margin: 0 0.8vw 0 0;
  }
  .search_list > li .search_txt .search_info .cate li {
    font-size: 2.93vw;
  }
  .search_list > li .search_txt .search_info .cate li + li::before {
    margin: 0 0.8vw;
    font-size: 2.93vw;
  }
  .search_list > li .search_txt .search_info .tag::before {
    font-size: 2.93vw;
    margin: 0 0.8vw 0 0;
  }
  .search_list > li .search_txt .search_info .tag li {
    margin: 0 0 0 1vw;
  }
  .search_list > li .search_txt .search_info .tag li a {
    font-size: 2.93vw;
    line-height: 1;
    padding: 0.5vw 1vw 0.8vw;
    border-radius: 0.8vw;
    margin-top: 0;
  }
  .search_list > li .search_txt .search_cont {
    font-size: 3.467vw;
    line-height: 1.8;
  }
  .search_list > li .search_txt .search_info .tag {
    flex-wrap: wrap;
  }
}
/* pagenavi
---------------------------------------------------- */
.pagenavi {
  margin: 50px 0;
}
.pagenavi ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.pagenavi ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  line-height: 31px;
  border-radius: 50%;
}
.pagenavi ul li a.current {
  background-color: #000;
  color: #fff;
}
.pagenavi ul li:not(.arrow) a {
  border: 2px solid #555;
  font-size: 18px;
  font-weight: 600;
}

@media screen and (max-width: 750px) {
  .pagenavi {
    margin: 3vw 0;
  }
  .pagenavi ul {
    gap: 2.667vw;
  }
  .pagenavi ul li a {
    width: 7.733vw;
    height: 7.733vw;
    line-height: 7.733vw;
  }
  .pagenavi ul li:not(.arrow) a {
    border: 0.533vw solid #555;
    font-size: 4.267vw;
  }
}/*# sourceMappingURL=search.css.map */
