@charset "utf-8";

.news__pickup {
  color: #fff;
  width: fit-content;
  margin-top: -29px;
  position: relative;
}
.news__pickup a {
  display: flex;
}
.news__pickup a:hover .news__pickup-head {
  background: #DB2F1E;
}
.news__pickup a:hover .news__pickup-body {
  background: #B22517;
}

.news__pickup-head {
  background: #B22517;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition: background 0.3s;
}
@media screen and (min-width: 768px) {
  .news__pickup-head {
    padding: 24px 50px;
    font-size: 24px;
  }
}
.news__pickup-head span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.news__pickup-body {
  background: #DB2F1E;
  color: #fff;
  padding: 18px 47px 19px 20px;
  position: relative;
  transition: background 0.3s;
}
@media screen and (min-width: 768px) {
  .news__pickup-body {
   padding: 18px 120px 19px 20px;
  }
}

.news__pickup-body::after {
  content: "";
  background: url('../images/button-arrow-white.svg') center / contain no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 13px;
  height: 13px;
}

.news__pickup-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news__pickup-date {
  font-size: 13px;
  letter-spacing: 0;
}
.news__pickup-title {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .news__pickup-title {
    margin-top: 15px;
    font-size: 16px;
  }
}

.news__list .webgene-blog {
  background: #fff;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  max-width: 1078px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
.news__list .webgene-blog {
     padding: 10px 43px;
  }
}

.news__wrap a{
  padding: 20px 0;
  border-bottom: 1px solid #A7A7A7;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__wrap a{
    padding: 40px 0 33px;
  }
}
.news__wrap a:hover {
  opacity: 0.7;
}

.news__wrap:last-of-type a {
  border-bottom: none;
}

.news__body {
  padding: 0 50px 0 0;
  flex-grow: 1;
  position: relative;
  width: 100%;
}
.news__body::after {
  content: "";
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  right: 0;
  background: url('../images/icon-square-arrow.svg') center / contain no-repeat;
  width: 30px;
  height: 30px;
}

.news__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.news__date {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  display: inline;
}

.news__title {
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  line-height: calc(35.2 / 16);
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .news__title {
    -webkit-line-clamp: 1;
  }
}


.news__list .webgene-pagination {
  margin: 70px 0 55px;
}