.news {
  background: #F2F6ED;
}
.news__row {
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
  gap: 10px;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .news__row {
    padding: 12px 16px;
  }
}
.news__row:not(:last-of-type) {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .news__row:not(:last-of-type) {
    margin-bottom: 8px;
  }
}
.news__row:hover {
  background: #F2F6ED;
}
.news__row:hover .news__title {
  color: var(--color-primary);
}
.news__row:hover .news__arrw {
  transition: all 0.2s ease;
}
.news__row:hover .news__arrw::before {
  transition: all 0.2s ease;
  left: 50%;
}
.news__row:hover .news__arrw::after {
  left: 150%;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .news__left {
    width: 100%;
  }
}
.news__left-t {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news__left-info {
  gap: 8px;
  display: flex;
  align-items: center;
}
.news__tag {
  border-radius: 4px;
  padding: 4px 8px;
  background: var(--color-primary);
  color: var(--color-white);
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 14.4px */
  letter-spacing: 0.6px;
}
.news__date {
  color: var(--color-primary, #00783C);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
.news__title {
  margin-top: 8px;
  color: var(--color-black1);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news__title {
    font-size: 13px;
    -webkit-line-clamp: 2;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0.65px;
  }
}
.news__arrw {
  position: relative;
  width: 48px;
  height: 32px;
  border: 2px solid var(--color-primary);
  flex-shrink: 0;
  border-radius: 70px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news__arrw {
    width: 40px;
    height: 26px;
  }
}
.news__arrw::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258H1.1C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258H13.8428L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='%2300783C'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17.599px;
  height: 13.205px;
  position: absolute;
  left: 50%;
  transition: all 0.2s ease;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .news__arrw::after {
    width: 14px;
    height: 10px;
  }
}
.news__arrw::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cpath d='M17.2769 7.37945C17.7066 6.94977 17.7066 6.25195 17.2769 5.82227L11.7769 0.322266C11.3472 -0.107422 10.6494 -0.107422 10.2197 0.322266C9.79 0.751953 9.79 1.44977 10.2197 1.87945L13.8428 5.50258H1.1C0.491562 5.50258 0 5.99414 0 6.60258C0 7.21102 0.491562 7.70258 1.1 7.70258H13.8428L10.2197 11.3257C9.79 11.7554 9.79 12.4532 10.2197 12.8829C10.6494 13.3126 11.3472 13.3126 11.7769 12.8829L17.2769 7.38289V7.37945Z' fill='%2300783C'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 17.599px;
  height: 13.205px;
  transition: all 0.2s ease;
  position: absolute;
  left: -50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .news__arrw::before {
    width: 14px;
    height: 10px;
  }
}
.news__block {
  padding-top: 148px;
  color: var(--color-black);
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.9px;
}
@media (max-width: 767px) {
  .news__block {
    padding-top: 58px;
  }
}
.news__block .archive-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 40px;
}
.news__wrp {
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .news__wrp {
    padding: 40px 0;
  }
}
.news__top-t {
  color: var(--color-black, #181818);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  /* 32.4px */
  letter-spacing: 0.9px;
}
@media (max-width: 767px) {
  .news__top-t {
    font-size: 13px;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 0.65px;
  }
}/*# sourceMappingURL=news.css.map */