.layout_white {
  background-color: var(--color-white);
}

.news_text {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .news_text {
    margin-bottom: 0;
  }
}
.news_text dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.news_text dl dt {
  width: 12%;
  padding: 0 20px 0 0;
  margin: 15px 0;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1240px) {
  .news_text dl dt {
    width: 15%;
  }
}
@media screen and (max-width: 768px) {
  .news_text dl dt {
    width: 100%;
    padding: 0;
    margin: 0 0 10px;
  }
}
.news_text dl dt::after {
  content: "";
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: var(--color-gray-light);
  position: absolute;
  bottom: -15px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .news_text dl dt::after {
    display: none;
  }
}
.news_text dl dd {
  width: 88%;
  padding: 0 0 0 10px;
  margin: 15px 0;
  position: relative;
  border-left: solid 1px var(--color-gray-light);
}
@media screen and (max-width: 1240px) {
  .news_text dl dd {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  .news_text dl dd {
    width: 100%;
    padding: 0;
    margin: 0 0 40px;
    position: relative;
    border-left: none;
  }
}
.news_text dl dd::after {
  content: "";
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: var(--color-gray-light);
  position: absolute;
  bottom: -15px;
  left: -1px;
}
.news_text dl dd > a {
  color: var(--color-primary-default);
}/*# sourceMappingURL=news_list.css.map */