@charset "UTF-8";
/* CSS Document */
/*===index.php(メイン)用==============================*/
#newsWrap {
  position: relative;
}
#newsWrap ul#newsList {
  display: flex;
  flex-wrap: wrap;
}
#newsWrap ul#newsList a {
  display: block;
  color: #333;
}
#newsWrap ul#newsList li {
  list-style-type: none;
  width: 31%;
  margin: 0 1%;
}
/*サムネイル*/
.thumbNailWrap {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  min-height: 0%;
  border-radius: 10px;
}
.thumbNailWrap::before {
  content: '';
  display: block;
  padding-top: 70%;
}
.thumbNailWrap img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.9s;
  transition-delay: 0.05s;
}
#newsWrap ul#newsList li .textarea {
  padding-top: 10px;
  line-height: 1.5;
}
#newsWrap ul#newsList li .up_ymd {
  display: block;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
#newsWrap ul#newsList li .up_ymd::before {
  font-family: "Font Awesome 6 Free";
  content: '\f017';
  font-weight: bold;
  padding-right: 0.5em;
  color: #ff94c4;
  font-size: 88%;
}
#newsWrap ul#newsList li .title {
  display: block;
  margin-bottom: 7px;
}
#newsWrap ul#newsList li .comment {
  font-size: 90%;
  opacity: 0.8;
  display: none;
}
#newsWrap ul#newsList a:hover .thumbNailWrap img {
  transform: scale(1.07);
}
@media (max-width: 750px) {
  #newsWrap {
    overflow-x: scroll;
  }
  #newsWrap ul#newsList {
    width: 230vw;
    padding-bottom: 20px;
  }
}
/*
@media (max-width: 750px) {
  #newsWrap ul#newsList li {
    width: 90%;
    margin: 0 auto 40px;
  }
}
*/
/* scrollbar */
#newsWrap::-webkit-scrollbar {
  height: 5px;
}
#newsWrap::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}
#newsWrap::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}
/*===news-detail.php用==============================*/
#news-detail #up_ymd {
  text-align: right;
  font-size: 14px;
  margin: 5px 10px 0;
}
#news-detail #up_ymd::before {
  font-family: "Font Awesome 6 Free";
  content: '\f017';
  font-weight: bold;
  padding-right: 0.5em;
  color: #ff94c4;
  font-size: 88%;
}
#news-detail #detail {
  padding: 20px 0;
  font-size: 16px !important;
}
#news-detail .detailUpfile {
  margin: 5px 0 35px;
  text-align: center;
}
#news-detail .detailUpfile img {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
}
#news-detail .backORcloseBtn a {
  margin-top: 40px;
}
@media (max-width: 550px) {
  #news-detail .backORcloseBtn a {
    margin-top: 10px;
    font-size: 90%;
  }
}