@charset "UTF-8";
/* CSS Document */
/*===index.php(メイン)用==============================*/
.news .inner {
  width: 96%;
  max-width: 1500px;
}
.news .maintitle {
  margin-bottom: 50px;
}
ul.newsList {
  display: flex;
  flex-wrap: wrap;
}
ul.newsList li {
  width: 21.8%;
  margin: 0 1.6% 40px;
  border: none;
  display: flex;
  padding: 0;
}
ul.newsList li a {
  box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 24px;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #333;
  background: #fff;
  overflow: hidden;
  border-radius: 15px;
}
ul.newsList li a .up_ymd {
  font-size: 0.9rem;
  margin-right: 7px;
  color: #021b4d;
}
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: 95%;
}
ul.newsList li a .newMark {
  margin-left: 8px;
}
ul.newsList li a .title {
  display: block;
  margin-bottom: 3px;
}
ul.newsList li a .textarea {
  padding: 7px 17px 13px;
  line-height: 1.85;
  width: 100%;
  position: relative;
  z-index: 20;
  margin-top: 0;
  margin-bottom: auto;
}
.blog-txt {
  font-size: 14px;
  opacity: 0.7;
}
/*thumbNail*/
.img_area {
  overflow: hidden;
}
.thumbNailWrap {
  position: relative;
  overflow: hidden;
}
.thumbNailWrap img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 200px !important;
}
ul.newsList li a:hover img {
  transform: scale(1.05);
}
@media (max-width: 1565px) {
  .thumbNailWrap img {
    height: 13vw !important;
  }
}
@media (max-width: 1220px) {
  .news .inner {
    width: 88%;
  }
  ul.newsList li {
    width: 46.2%;
    margin: 0 1.9% 40px;
  }
  .thumbNailWrap img {
    height: 25vw !important;
  }
}
@media (max-width: 750px) {
  .news .maintitle {
    margin-bottom: 35px;
  }
  ul.newsList {
    display: block;
  }
  ul.newsList li {
    width: 100%;
    margin: 0 0 33px;
  }
  .thumbNailWrap img {
    height: 55vw !important;
  }
}