@charset "UTF-8";
/* CSS Document */
/*===index.php(メイン)用==============================*/
ul.newsList {
  display: flex;
  flex-wrap: wrap;
}
ul.newsList li {
  width: 29.9%;
  margin: 0 1.7% 25px;
  display: flex;
  overflow: hidden;
  border: none !important;
  padding: 0 !important;
}
ul.newsList li a {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #333;
}
ul.newsList li a .up_ymd {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #0083ee;
  margin-right: 7px !important;
}
.works_bi_ymd ul.newsList li a .up_ymd {
  font-size: 0.9rem !important;
}
ul.newsList li a .up_ymd::before {
  font-family: "Font Awesome 6 Free";
  content: '\f017';
  font-weight: 900;
  padding-right: 0.2em;
  margin-right: 3px;
  font-size: 90%;
  padding-right: 0 !important;
}
ul.newsList li a .newMark {
  margin-right: 0;
}
ul.newsList li a .title {
  display: block;
  margin-bottom: 3px;
}
ul.newsList li a .textarea {
  padding: 5px;
  line-height: 1.85;
  width: 100%;
  position: relative;
  z-index: 20;
  margin-bottom: auto;
}
.blog-txt {
  font-size: 12px;
  opacity: 0.7;
}
.thumbNailWrap {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.thumbNailWrap::before {
  content: '';
  display: block;
  padding-top: 70%;
}
.thumbNailWrap img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.8s ease;
}
ul.newsList li a:hover img {
  transform: scale(1.1);
}
@media (max-width: 1155px) {
  ul.newsList li {
    width: 46.6%;
  }
}
@media (max-width: 750px) {
  ul.newsList {
    display: block;
  }
  ul.newsList li {
    width: 100%;
    margin: 0 0 23px;
  }
  ul.newsList li:last-of-type {
    margin-bottom: 0 !important;
  }
}