@charset "UTF-8";

.news {
  margin-top: 80px;
}
.news h2 {
  font-size: 6rem;
  font-weight: bold;
  text-transform: uppercase;
}
.news ul {
  border-top: 1px solid #ccc;
}
.news li {
  border-bottom: 1px solid #ccc;
}
.news a, .news li > div {
  display: flex;
  align-items: flex-start;
  padding: 45px 30px;
}
.news a {
  transition: color 0.2s;
}
.news time {
  display: block;
  width: 95px;
  margin-top: 7px;
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
}
.news .category {
  width: 80px;
  margin-top: 1px;
  padding: 6px 0;
  background-color: #222;
  border-radius: 100px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  text-align: center;
  text-transform: uppercase;
}
.news .title {
  width: calc(100% - 265px);
  padding-left: 40px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.3em;
  line-height: 1.67;
}
@media screen and (max-width: 1023px) {
  .news {
    margin-top: 30vw;
    padding: 0 8vw;
  }
  .news .section-inner {
    max-width: none;
    margin: 0;
  }
  .news h2 {
    font-size: 8vw;
  }
  .news ul {
    margin-top: 14vw;
  }
  .news a, .news li > div {
    flex-wrap: wrap;
    align-items: center;
    padding: 5vw 2.5vw;
  }
  .news a {
    transition: none;
    padding-right: 4rem;
  }
  .news a:hover, .news a:active {
    color: #222;
  }
  .news time {
    width: 85px;
    margin-top: 0;
    font-size: 1.4rem;
  }
  .news .category {
    width: 85px;
    margin-top: 0;
    padding: 4px 0;
    font-size: 1.4rem;
  }
  .news .title {
    width: 100%;
    margin-top: 15px;
    padding-left: 0;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}
@media screen and (max-width: 599px) {
        .news {
        margin-top: 3rem;
        padding: 0;
    }
    .news ul {
        margin-top: 0;
    }
    .news time {
        width: 70px;
        font-size: 1.1rem;
    }
    .news .category {
        width: 65px;
        padding: 3px 0;
        font-size: 1.1rem;
    }
    .news .title {
        font-size: 1.4rem;
        margin-top: 8px;
        padding-right: 25px;
    }
}



/* icon-pdf */
.pdf-mark{
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/assets/images/icon-pdf.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 1rem;
    vertical-align: text-top;
}
/* icon-link */
.link-mark{
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/assets/images/icon-link.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 1rem;
    vertical-align: text-top;
}
/* icon-arrow-r */
.news-list{
    position: relative;
}
.arrow-r-mark{
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url(/assets/images/arrow-right.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    transition: 0.3s;
}

@media screen and (max-width: 599px) {
    .pdf-mark,.link-mark{
        width: 16px;
        height: 16px;
    }
    .arrow-r-mark{
        width: 24px;
        height: 24px;
    }
}
.news .title:hover{
    opacity: 0.5;
}
.news a:hover .arrow-r-mark{
    right: 0;
}