@charset "UTF-8";

.news-blc {
  position: relative;
}

.news-blc .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #e0e4e7;
  transition: all 300ms ease-in-out;
}

.news-blc .list > dt,
.news-blc .list > dd {
  padding: 20px 5px;
  box-sizing: border-box;
}


.news-blc .list > dt {
  width: 200px;
  font-size: 90%;
  color: #86868b;
  font-weight: lighter;
  letter-spacing: .8px;
}

.news-blc .list > dd {
  position: relative;
  width: calc(100% - 200px);
  padding-left: 20px;
}

.news-blc .list:not(.none) {
  cursor: pointer;
}

.news-blc .list > dd:not(.detail)::before {
  transition: all 300ms ease-in-out;
}

.news-blc .list.none > dd:not(.detail)::before {
  display: none;
}

.news-blc .list:hover > dd:not(.detail)::before {
  transform: translateY(-5px);
}

.news-blc .list > dd:not(.detail) {
  padding-right: 30px;
}

.news-blc .list > dd:not(.detail)::before {
	font-family: "Font Awesome 5 Free";
	content: '\f107';
	font-weight: 900;
	font-size: 20px;
	margin: auto 0;
	display: flex;
  color: #1a5b27;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 8px;
  transition: 300ms ease-in-out all;
}

.news-blc .list > dd.detail {
  display: none;
  width: 100%;
  padding: 0;
  padding-left: 220px;
}

.news-blc .list.show > dd.detail {
  padding: 0 5px 20px 220px;
}

.news-blc .list.show > dd:not(.detail)::before {
  content: '\f106';
}

@media screen and (max-width: 1000px) {
  .news-blc .list > dt,
  .news-blc .list > dd {
    padding: 10px 5px;
  }
  .news-blc .list > dt {
    width: 150px;
  }
  .news-blc .list > dd {
    width: calc(100% - 170px);
  }
}

@media screen and (max-width: 767px) {
  .news-blc .list > dt {
    width: 100px;
  }
  .news-blc .list > dd {
    width: calc(100% - 120px);
  }
}

@media screen and (max-width: 640px) {
  .news-blc .list > dt {
    width: 100px;
  }
  .news-blc .list > dd {
    width: calc(100% - 120px);
  }
}

@media screen and (max-width: 480px) {
  .news-blc .list > dt {
    width: 100%;
    border-bottom: none;
  }
  .news-blc .list > dd {
    width: 100%;
    padding-top: 0;
  }
}
