@charset "UTF-8";

/* =======================================================================

  athlete-jz - NEWS PC styles

======================================================================= */
.news-container {
  position: relative;
  width: 100%;
  padding: 0 20px 0 0;
}
.news-container article { margin: 0 0 40px; }
.news-container article.is-newest { background-color: #f5f5f5; }
.news-container article a {
  display: flex;
  align-items: center;
  color: var(--blk);
  text-decoration: none;
  pointer-events: none;
  transition: all .3s;
}
.news-container article a.outer-link { pointer-events: inherit; }
.news-container article a.outer-link:hover { opacity: .7; }
.news-container article a figure {
  width: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.news-container article a figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.news-container article a dl {
  width: calc(100% - 180px);
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: .05em;
  margin: 0 0 0 20px;
}
.news-container article a dl dd {
  line-height: 1.8;
  margin: .75em 0 0;
}
.news-container article a dl dd i { position: relative; }
.news-container article a.outer-link dl dd i::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(../images/icon_link2.png) no-repeat 50% 50%;
  background-size: cover;
}