@charset "UTF-8";
/* CSS Document */
/*===index.php(メイン)用==============================*/
.news .inner {
  width: 97%;
  max-width: 1405px;
}
.news .tbtn {
  margin-top: 5px;
}
ul.newsList {
  display: flex;
  flex-wrap: wrap;
}
ul.newsList li {
  width: 30.7%;
  margin: 0 1.3% 28px;
  border: none;
  display: flex;
  padding: 0;
  overflow: hidden;
}
ul.newsList li a {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #000;
}
ul.newsList li a .up_ymd {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-right: 7px;
  color: #ccbc00;
  font-family: "Josefin Sans", sans-serif;
}
ul.newsList li a .newMark {
  margin-left: 8px;
}
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-top: 0;
  margin-bottom: auto;
}
.blog-txt {
  font-size: 12px;
  opacity: 0.7;
}
/*thumbNail*/
.thumbNailWrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 5px;
}
.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: 1s;
}
ul.newsList li a:hover img {
  transform: scale(1.08);
}
@media (max-width: 750px) {
  ul.newsList {
    display: block;
  }
  ul.newsList li {
    width: 100%;
    margin: 0 0 27px;
  }
  ul.newsList li:last-of-type {
    margin-bottom: 0 !important;
  }
  .news .tbtn {
    margin-top: 23px;
  }
}