@charset "utf-8";
.news.page {
  padding-top: 80px;
  padding-bottom: 264px;
}

@media screen and (min-width: 768px) {
  .news__inner.l-inner {
    max-width: calc(1000px + 40px * 2);
  }
}

/* ===============
news
================== */

.news__container {
  margin-top: 50px;
  position: relative;
  padding: 10px 4.4%;
  border-radius: 10px;
  background: var(--color-white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.news__item {
  padding: 44px 13px 42px;
  width: 100%;
}

.news__item:not(:last-child) {
  border-bottom: 1px solid #d6d6d6;
}

.news__item--2:nth-last-child(2) {
  border-bottom: none;
}

.news__item-link {
  position: relative;
  display: block;
}

.news__item-link::after {
  position: absolute;
  content: "";
  background: url(../images/news-icon.svg) no-repeat center center/contain;
  width: 28px;
  height: 28px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: right 0.5s ease;
}

.news__item-link:hover::after {
  right: -5px;
}

.news__item-row {
  display: inline-flex;
  flex-direction: column;
  gap: 26px;
  margin-right: 48px;
}

@media screen and (min-width: 768px) {
  .news__item-row {
    flex-direction: row;
    align-items: center;
  }
}

.news__item-time {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: calc(20 / 1000 * 1em);
}

@media screen and (min-width: 768px) {
  .news__item-time {
    font-size: 14px;
  }
}

.news__item-tag {
  display: inline-block;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 500;
  background: #f0e9d6;
}

.news__item-title p {
  padding-right: 48px;
  margin-top: 17px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: calc(80 / 1000 * 1em);
  line-height: calc(22.5 / 16);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (min-width: 768px) {
  .news__item-title p {
    font-size: 16px;
  }
}

