/* media query */
.listArea {
  width: calc(100% - 200px);
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 1400px) {
  .listArea {
    width: calc(100% - 100px);
  }
}
@media all and (max-width: 1200px) {
  .listArea {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 668px) {
  .listArea {
    width: calc(100% - 40px);
  }
}
.listArea > article:last-of-type {
  margin-bottom: 20px;
}
.listArea > article > a {
  display: block;
  border-bottom: 1px solid #333;
  padding: 15px 0;
}
@media screen and (max-width: 960px) {
  .listArea > article > a.circleW::after {
    top: auto !important;
    bottom: 20px;
  }
}
@media screen and (max-width: 668px) {
  .listArea > article > a.circleW::after {
    bottom: 15px;
  }
}
.listArea > article > a p {
  transition: 0.5s;
}
.listArea > article > a p.tit {
  font-size: 2rem;
  line-height: 150%;
  margin: 0 100px 5px 0;
  line-height: 140%;
}
@media screen and (max-width: 960px) {
  .listArea > article > a p.tit {
    margin: 0 0 15px;
  }
}
@media screen and (max-width: 668px) {
  .listArea > article > a p.tit {
    font-size: 1.7rem;
  }
}
.listArea > article > a p.date {
  font-size: 1.5rem;
  display: inline-block;
  margin-right: 20px;
}
@media screen and (max-width: 668px) {
  .listArea > article > a p.date {
    margin-right: 10px;
  }
}
.listArea > article > a p.cate {
  font-size: 1.3rem;
  line-height: 100%;
  padding: 3px 10px;
  border: 1px solid #333;
  display: inline-block;
}
.listArea > article > a:hover p {
  color: #3071B9;
}
.listArea > article > a:hover p.cate {
  border: 1px solid #3071B9;
}/*# sourceMappingURL=index.css.map */