<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*-----------------------
        newslist
------------------------*/
.category_block {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 100px;
}

.news_cat {
  display: block;
  width: calc((100% - 36px) / 4);
  min-width: 180px;
  height: 100%;
  line-height: 40px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  background-color: #F2F2F2;
  cursor: pointer;
}
.news_cat.active {
  background-color: #BAD646;
  color: #fff;
  cursor: default;
}

.news_section {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: left;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3.6%;
  margin-bottom: 115px;
  padding: 0 40px;
}

/*newsブロック内*/
.news_block {
  width: 30.9333333333%;
  height: fit-content;
  color: #575757;
  display: block;
}
.news_block:hover img {
  transform: scale(120%);
}
.news_block.active {
  display: block;
}

.news_img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.news_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.news_cat_icon {
  width: 32.75%;
  min-width: 90px;
  height: 28px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #BAD646;
  line-height: 28px;
  text-align: center;
  margin-bottom: 9px;
}

.news_date {
  font-size: 14px;
  margin-bottom: 6px;
}

.news_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.news_content {
  font-size: 15px;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 960px){
  .category_block {
    margin-bottom: 72px;
  }
  .news_cat_icon {
    font-size: 16px;
  }
}

@media (max-width: 767px){
  .category_block {
    gap: 10px;
    padding: 0 20px;
    margin-bottom: 35px;
  }
  .news_cat {
    width: calc((100% - 20px) / 3);
    min-width: 0;
    font-size: 17px;
    font-weight: 500;
  }
  .news_section {
    padding: 30px 25px 35px;
    border-radius: 10px 0 0 10px;
    margin-bottom: 50px;
  }
  .news_block {
    width: 100%;
  }
}</pre></body></html>