.page__post .page__visual::after {
  background:url(/assets/img/news/visual_news.jpg) no-repeat right center / cover;
}
.post__list .post__item{
  display: block;
  border-bottom:1px solid var(--color-gray);
  margin-bottom:2em;
  padding-bottom:2em;
}
.post__list .post__item .news_label {
  display: inline-block;
  line-height: 1;
  padding: 0.4em 1.5em 0;
  background: var(--color-background4);
  border-radius: 9999px;
}
.page__post .post__item a {
  color: var(--color-title);
  border-bottom: 1px solid;
}
.page__post .post__item a:hover {
  border-bottom: none;
}
/* archive */
.page__post .news__archive{
  min-height:calc(100vh - 600px);
}
.page__post .news__archive .section__title {
  max-width: 390px;
  margin: 0 auto;
}
.page__post .news__archive .section__title::after {
  border-bottom: none;
  transform: translateX(0);
}
.page__post .news__archive .section__title span {
  display: block;
  text-align: center;
  padding-top: 0.5em;
  border-top: 1px solid;
}
.page__post .news__archive .section__title span::before {
  content: "LIST OF";
  font-family: '851Gkktt_005';
  font-size: clamp(2.5rem, 2.8vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
  position: absolute;
  top: 73px;
  right: 54%;
}
.page__post .news__archive .content__block {
  margin-top: 50px;
}
.page__post .news__archive .date {
  display: block;
  font-size: 1.3rem;
}
.page__post .news__archive .news_label {
  font-size: 1.1rem;
}
.page__post .news__archive .post__item .title {
  font-size: 2rem;
  margin-top: 1em;
}
.page__post .news__archive .post__item .text {
  display: inline-block;
  max-width: calc(100% - 7em);
  height: 3em;
  overflow: hidden;
}
.page__post .news__archive a.ellipsis {
  border-bottom: none;
}
.page__post .news__archive a.more {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1;
  margin-top: 1em;
}

@media (min-width: 768px) { 
  .page__post .news__archive .content__block {
    margin-top: 100px;
  }
}
/* page nation */
.wp-pagenavi {
  width: fit-content;
  margin: 0 auto;
}
.wp-pagenavi span,
.wp-pagenavi a {
  font-size: 1.6rem;
  padding: 0.2em 0.5em;
  background: var(--color-background4);
}
.wp-pagenavi span {
  font-weight: 700;
  border: 2px solid var(--color-accent);
}
.wp-pagenavi a {
  border: 2px solid var(--color-background4);
} 
.wp-pagenavi a:hover {
  border: 2px solid var(--color-accent);
} 
/* single */
.page__post .news_detaile_title {
  position: relative;
}
.page__post .post__single {
  margin-top: 50px;
}
.page__post .post__single .section__title {
  max-width: 430px;
  margin: 0 auto;
}
.page__post .post__single .section__title::after {
  font-size: clamp(3.7rem, 4.5vw, 4.8rem);
  border-bottom: none;
  left: initial;
  right: 60%;
  transform: translateX(0);
}
.page__post .post__single .section__title span {
  display: block;
  text-align: center;
  padding-top: 0.5em;
  border-top: 1px solid;
}
.page__post .post__single .section__title span::before {
  content: "DETAILS PAGE";
  font-family: '851Gkktt_005';
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
  white-space: nowrap;
  position: absolute;
  top: 73px;
  left: 44%;
}
.post__single .post__item{
  display: flex;
  flex-direction: column;
  width:100%;
  height:100%;
  border-bottom:none;
}
.post__single .content__detail{
  border-bottom:1px dotted var(--color-gray);
  margin-bottom:20px;
  padding-bottom:50px;
}
.post__single .content__detail .title{
  font-size: 2.0rem;
  font-weight: 600;
  background-position: 0 100%;
  background-size: 100% 1px;
  background-repeat: no-repeat;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.post__single .content__detail .to_archive {
  margin: 2em 0 4em;
}
.post__single .content__detail .img__wrap a {
  display: inline-block;
  border-bottom: none;
}
.post__single .content__detail .img__wrap img {
  width:100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 5px;
  object-fit: cover;
  object-position: 50% 40%;
}
@media (min-width: 768px) { 
  .post__single .content__detail .img__wrap {
    display: grid;
    grid-template-columns: repeat(3,32%);
    justify-content: space-between;
  }
}