body#posts .post__contents {
  padding-left: calc(30 / var(--spSize) * 100vw);
  padding-right: calc(30 / var(--spSize) * 100vw);
  padding-bottom: calc(200 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  body#posts .post__contents {
    display: grid;
    grid-template-columns: calc(100% - 500px) 38rem;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20rem;
  }
}
@media (768px <= width) {
  body#posts .post__contents .wp-pagenavi {
    width: 100%;
    margin: 0;
  }
}
body#posts .post__lists {
  display: grid;
  gap: calc(100 / var(--spSize) * 100vw) 0;
  margin-bottom: calc(100 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  body#posts .post__lists {
    gap: 0;
    border-top: 1px solid var(--clr-lightYellow3);
    margin-bottom: 12rem;
  }
}
body#posts .post__item {
  border-bottom: 1px solid var(--clr-lightYellow3);
  padding-bottom: calc(10 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  body#posts .post__item {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 300fr 735fr;
    gap: 5.4545454545%;
    position: relative;
  }
}
@media (hover: hover) and (width >= 768px) {
  body#posts .post__item {
    transition: all var(--speed) ease-in-out;
  }
  body#posts .post__item img,
  body#posts .post__item .noimage {
    transition: all 750ms cubic-bezier(0.43, 0.05, 0.17, 1);
  }
  body#posts .post__item figure {
    overflow: hidden;
  }
  body#posts .post__item:hover {
    opacity: 0.7;
  }
}
body#posts .post__item figure {
  margin-bottom: 0;
}
@media (768px <= width) {
  body#posts .post__item figure {
    margin-bottom: 0;
  }
}
body#posts .post__item img {
  aspect-ratio: 300/170;
  -o-object-fit: cover;
     object-fit: cover;
}
body#posts .post__item .noimage {
  background: #fff url(../images/common/logo-square.webp) center/auto 60% no-repeat;
  background-image: -webkit-image-set(url(../images/common/logo-square.webp) 1x, url(../images/common/logo-square@2x.webp) 2x);
  background-image: image-set(url(../images/common/logo-square.webp) 1x, url(../images/common/logo-square@2x.webp) 2x);
  background-color: #fff;
  aspect-ratio: 300/170;
}
body#posts .post__item .wrap {
  margin-top: calc(60 / var(--spSize) * 100vw);
  padding-bottom: calc(20 / var(--spSize) * 100vw);
  position: relative;
}
@media (768px <= width) {
  body#posts .post__item .wrap {
    margin-top: 0;
    padding-bottom: 0;
    position: static;
    display: grid;
    grid-template-rows: 30px auto 30px;
  }
}
body#posts .post__item .category {
  color: var(--clr-blue);
  border: 1px solid var(--clr-blue);
  font-size: 1.4rem;
  line-height: 25px;
  border-radius: 5px;
  width: calc(280 / var(--spSize) * 100vw);
  display: inline-block;
  text-align: center;
}
@media (768px <= width) {
  body#posts .post__item .category {
    width: auto;
    padding: 0 14px;
    justify-self: flex-start;
  }
}
body#posts .post__item .title {
  font-size: 2rem;
  font-family: var(--ff-shippori);
  line-height: 1.8333;
  margin-top: calc(20 / var(--spSize) * 100vw);
  margin-bottom: calc(30 / var(--spSize) * 100vw);
}
@media (768px <= width) {
  body#posts .post__item .title {
    font-size: 2.4rem;
    margin-top: 10px;
    margin-bottom: auto;
  }
}
body#posts .post__item .time {
  font-size: 1.4rem;
  color: #999;
}
body#posts .post__item .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(60 / var(--spSize) * 100vw);
  height: calc(60 / var(--spSize) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px dotted #333;
}
@media (768px <= width) {
  body#posts .post__item .arrow {
    width: 60px;
    height: 40px;
    bottom: 15px;
  }
}