.posts .inner {
  padding-bottom: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.posts .inner .lists {
  margin-bottom: 95px;
}
.posts .inner .lists .post {
  width: calc(100% / 3 - 60px / 3);
  margin-right: 30px;
  margin-bottom: 30px;
}
.posts .inner .lists .post:nth-child(3n) {
  margin-right: 0;
}
.posts .inner .lists .post:nth-last-child(-n+3) {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .posts .inner .lists .post {
    width: calc(100% / 1 - 0px / 1);
    margin-right: 0px;
    padding: 15px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: 1px solid #e9eae8;
    margin-bottom: 0;
  }
  .posts .inner .lists .post:nth-child(1n) {
    margin-right: 0;
  }
  .posts .inner .lists .post:first-child {
    padding-top: 0;
  }
  .posts .inner .lists .post:nth-last-child(-n+3) {
    margin-bottom: 30px;
  }
  .posts .inner .lists .post:last-child {
    margin-bottom: 0;
  }
  .posts .inner .lists .post a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.posts .inner .lists .post .image {
  height: 185px;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .posts .inner .lists .post .image {
    width: 140px;
    height: 110px;
    margin-bottom: 0;
  }
}
.posts .inner .lists .post .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .posts .inner .lists .post .content {
    width: calc(100% - 155px);
    margin-left: 15px;
  }
}
.posts .inner .lists .post .content .title {
  font-weight: bold;
  letter-spacing: -0.03em;
  line-height: 1.375;
  margin-bottom: 5px;
}
.posts .inner .lists .post .content .date {
  font-size: 14px;
  color: #c5c5c5;
}

.pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .links {
  margin-left: 10px;
}
.pagination .links:first-child {
  margin-right: 0;
}
.pagination .links span.current {
  position: relative;
}
.pagination .links span.current::after {
  content: "";
  display: block;
  width: 120%;
  height: 1px;
  background: #ff350d;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.pagination .arrows {
  width: 30px;
  height: 40px;
  position: relative;
  display: inline-block;
  border: 1px solid #d7d8d6;
}
.pagination .arrows:first-child {
  margin-right: 10px;
}
.pagination .arrows:last-child {
  margin-left: 20px;
}
.pagination .arrows a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.pagination .arrows a .line {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.pagination .arrows a .line::before, .pagination .arrows a .line::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  width: 9px;
  height: 2px;
  border-radius: 9999px;
  background-color: #d7d8d6;
}
.pagination .arrows a .line::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pagination .arrows a .line::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.pagination .prev .line {
  left: calc(50% - 4px);
}
.pagination .prev .line::before, .pagination .prev .line::after {
  left: 0;
  -webkit-transform-origin: 1px 50%;
          transform-origin: 1px 50%;
}
.pagination .next .line {
  left: calc(50% + 4px);
}
.pagination .next .line::before, .pagination .next .line::after {
  right: 0;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}