@charset "UTF-8";
/* CSS Document */
/*===index.php(メイン)用==============================*/
.topslideWrap {
  position: relative;
  overflow: hidden;
}
.topslideWrap .newsList li {
  margin-bottom: 10px;
}
.topslideWrap .newsList li:last-of-type {
  margin-bottom: 0 !important;
}
/*
.topslideWrap .newsList {
  overflow-y: scroll;
  max-height: 165px;
  padding-right: 15px;
}
@media (max-width: 1050px) {
  .topslideWrap .newsList {
    max-height: 126px;
  }
}
*/
.topslideWrap .newsList::-webkit-scrollbar {
  width: 5px;
}
.topslideWrap .newsList::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}
.topslideWrap .newsList::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, .5);
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .3);
}
/**/
.topslideWrap .newsList li:not(:first-of-type) {
  display: none;
}
/**/
.newsWrap {
  z-index: 3;
  position: absolute;
  bottom: 80px;
  right: 1.5%;
  width: 93%;
  max-width: 480px;
}
.newsWrap h2 {
  font-weight: 700;
  color: #5aa2e6;
  text-shadow: 0 0 3px rgba(255, 255, 255, 1), 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
  font-size: clamp(1.2rem, 0.96rem + 0.8533vw, 1.6rem);
  transform: rotate(-12deg);
  position: relative;
  top: -18px;
  left: -42px;
  z-index: 1;
}
.newsWrap h2::before, .newsWrap h2::after {
  font-weight: 900;
  font-size: 80%;
}
.newsWrap h2::before {
  content: "＼";
}
.newsWrap h2::after {
  content: "／";
}
.newsList li a {
  color: #594e48;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
}
.thumbNailWrap {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 42%;
}
.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;
}
.newsList li a:hover .thumbNailWrap img {
  transform: scale(1.1);
}
.textarea {
  width: 53%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.textarea .up_ymd {
  font-size: 92%;
  /*display: block;*/
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #5aa2e6;
  display: none;
}
@media (max-width: 1050px) {
  .newsWrap {
    max-width: 380px;
  }
  .newsList li a {
    padding: 10px;
  }
  .textarea {
    font-size: 0.85rem;
  }
}
@media (max-width: 750px) {
  .topslideWrap {
    padding-bottom: 30px;
  }
  .newsWrap {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 550px) {
  .newsWrap h2 {
    top: -5px;
    left: -11px;
    transform: rotate(-8deg);
  }
  .textarea {
    font-size: 0.8rem;
  }
}