@import url('https://fonts.googleapis.com/earlyaccess/notosansjp.css');
.worksans {
  font-family: 'Work Sans', sans-serif;
}
.noto {
  font-family: "Noto Sans JP", sans-serif;
}
.wrap960 {
  width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .wrap960 {
    width: 100%;
  }
}
.newsList {
  background: #ebebeb;
  padding: 100px 0;
  margin-top: 115px;
}
@media only screen and (max-width: 640px) {
  .newsList {
    margin-top: 30px;
  }
}
.newsList .mainTitle {
  margin-bottom: 50px;
}
@media only screen and (max-width: 640px) {
  .newsList .mainTitle {
    margin-bottom: 20px;
  }
}
.newsList .mainTitle h1 {
  font-size: 30px;
  color: #103861;
  font-weight: normal;
  margin: 0;
}
.newsList .item {
  display: block;
  padding: 30px 85px;
}
@media only screen and (max-width: 800px) {
  .newsList .item {
    padding: 30px;
  }
}
.newsList .item .date {
  display: inline-block;
  vertical-align: top;
  width: 145px;
  color: #0079ba;
  font-size: 18px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (max-width: 640px) {
  .newsList .item .date {
    display: block;
    width: auto;
    margin-bottom: 15px;
  }
}
.newsList .item .info {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 150px);
}
@media only screen and (max-width: 640px) {
  .newsList .item .info {
    display: block;
    width: auto;
  }
}
.newsList .item .info .title {
  color: #222327;
  font-size: 18px;
  display: block;
  line-height: 1.4;
  margin-bottom: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.newsList .item .info .content {
  display: block;
  color: gray;
  line-height: 1.4;
  margin-bottom: 10px;
}
.newsList .item .info .more {
  display: block;
  width: 45px;
  height: 20px;
  color: #0079ba;
  font-size: 13px;
  background: url(../images/news_more_arrow.svg) no-repeat right bottom;
  float: right;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.newsList .item .info:after {
  content: "";
  display: block;
  clear: both;
}
.newsList .item:nth-child(2n) {
  background: white;
}
.newsList .item:hover .date {
  color: #d7092f;
}
.newsList .item:hover .info .title {
  color: #d7092f;
}
.newsList .item:hover .info .more {
  -webkit-transform: translate(10px, 0);
  -moz-transform: translate(10px, 0);
  -o-transform: translate(10px, 0);
  -ms-transform: translate(10px, 0);
  transform: translate(10px, 0);
}
.newsList .page {
  text-align: center;
}
.newsList .page ul {
  margin: 45px auto 100px;
  padding: 0;
  display: inline-block;
}
@media only screen and (max-width: 640px) {
  .newsList .page ul {
    margin-bottom: 20px;
  }
}
.newsList .page li {
  list-style: none;
  display: inline-block;
  margin-right: 30px;
}
.newsList .page li a {
  font-size: 18px;
  color: #808080;
  padding-bottom: 5px;
}
.newsList .page li a:hover {
  color: #0079ba;
}
.newsList .page li.active a {
  color: #0079ba;
  border-bottom: 1px #0079ba solid;
}
.newsList .page li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 640px) {
  .newsList .page li {
    margin-right: 20px;
  }
}
