/*
* news.css
*
*/
/* ------------------------
  sc-news-list
------------------------ */
.sc-news-list {
  padding: 0 0 6.5rem;
}
@media (max-width: 640.98px) {
  .sc-news-list {
    padding: 8.2051282051vw 0 16.4102564103vw;
  }
}
.sc-news-list .sc-news-list__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 1.875rem;
  max-width: 78.75rem;

  gap: 2rem;
}
@media (max-width: 640.98px) {
  .sc-news-list .sc-news-list__container {
    padding: 0 6.1538461538vw;
    max-width: none;

    gap: 8.2051282051vw;
  }
}
.sc-news-list .sc-news-list__card {
  padding: 2.5rem;
  border-radius: 0.625rem;
  width: 100%;
  background: #fff;
}
@media (max-width: 640.98px) {
  .sc-news-list .sc-news-list__card {
    padding: 6.1538461538vw;
    border-radius: 2.5641025641vw;
  }
}
.sc-news-list .sc-news-list__items {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sc-news-list .sc-news-list__item {
  border-bottom: 1px solid #e9ecef;
}
@media (min-width: 641px) {
  .sc-news-list .sc-news-list__item {
    transition: border-color 0.22s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
  .sc-news-list .sc-news-list__item:hover {
    border-color: #00479d;
  }
}
.sc-news-list .sc-news-list__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  text-decoration: none;

  gap: 1rem;
}
@media (max-width: 640.98px) {
  .sc-news-list .sc-news-list__link {
    padding: 4.1025641026vw 0;

    gap: 4.1025641026vw;
  }
}
@media (min-width: 641px) {
  .sc-news-list .sc-news-list__link {
    transition: background-color 0.22s cubic-bezier(0.445, 0.05, 0.55, 0.95), color 0.22s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
  .sc-news-list .sc-news-list__link [class$=__arrow],
  .sc-news-list .sc-news-list__link [class*=__icon] {
    transition: background-color 0.22s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
  .sc-news-list .sc-news-list__link [class$=__arrow]::before,
  .sc-news-list .sc-news-list__link [class$=__arrow]::after,
  .sc-news-list .sc-news-list__link [class*=__icon]::before,
  .sc-news-list .sc-news-list__link [class*=__icon]::after {
    transition: background-color 0.22s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  }
  .sc-news-list .sc-news-list__link:hover {
    color: #00479d;
  }
  .sc-news-list .sc-news-list__link:hover [class$=__arrow],
  .sc-news-list .sc-news-list__link:hover [class*=__icon] {
    background-color: #00479d !important;
  }
  .sc-news-list .sc-news-list__link:hover [class$=__arrow]::before,
  .sc-news-list .sc-news-list__link:hover [class$=__arrow]::after,
  .sc-news-list .sc-news-list__link:hover [class*=__icon]::before,
  .sc-news-list .sc-news-list__link:hover [class*=__icon]::after {
    background-color: #fff !important;
  }
}
.sc-news-list .sc-news-list__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;

  gap: 0.5rem;
}
@media (max-width: 640.98px) {
  .sc-news-list .sc-news-list__content {
    gap: 2.0512820513vw;
  }
}
.sc-news-list .sc-news-list__meta {
  display: flex;
  align-items: center;

  gap: 0.75rem;
}
@media (max-width: 640.98px) {
  .sc-news-list .sc-news-list__meta {
    gap: 3.0769230769vw;
  }
}
.sc-news-list .sc-news-list__date {
  letter-spacing: 0.03rem;
  color: #949eab;
  font-family: Lexend, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 640.98px) {
  .sc-news-list .sc-news-list__date {
    letter-spacing: 0.1230769231vw;
    font-size: 3.0769230769vw;
  }
}
.sc-news-list .sc-news-list__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  border-radius: 2.5rem;
  height: 1.25rem;
  background-color: #00479d;
  color: #fff;
  font-family: Lexend, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 640.98px) {
  .sc-news-list .sc-news-list__badge {
    padding: 0 2.0512820513vw;
    border-radius: 10.2564102564vw;
    height: 5.1282051282vw;
    font-size: 3.0769230769vw;
  }
}
.sc-news-list .sc-news-list__title {
  overflow: hidden;
  margin: 0;
  white-space: nowrap;
  letter-spacing: 0.04rem;
  text-overflow: ellipsis;
  color: #00479d;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 640.98px) {
  .sc-news-list .sc-news-list__title {
    white-space: normal;
    letter-spacing: 0.1435897436vw;
    font-size: 3.5897435897vw;
  }
}
.sc-news-list .sc-news-list__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  border-radius: 50%;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #eff3ff;
}
@media (max-width: 640.98px) {
  .sc-news-list .sc-news-list__arrow {
    width: 7.1794871795vw;
    height: 7.1794871795vw;
  }
}
.sc-news-list .sc-news-list__arrow::before {
  content: "";
  width: 0.625rem;
  height: 0.5rem;
  background-color: #00479d;

  -webkit-mask-image: url("/saiyou/img/common/icon_arrow.svg");

          mask-image: url("/saiyou/img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (max-width: 640.98px) {
  .sc-news-list .sc-news-list__arrow::before {
    width: 2.5641025641vw;
    height: 2.0512820513vw;
  }
}

/* --------------------------------
  news
-------------------------------- */