h1.lower-title {
  font-family: "Arial", "Helvetica", "sans-serif";
  font-size: clamp(20px,3vw,26px);
  font-weight: bold;
  text-align: center;
}

p.lower-titlesub {
  font-family: "Arial", "Helvetica", "sans-serif";
  font-size: clamp(10px,4vw,14px);
  color: #676666;
  display: block;
  padding: 15px 0 50px 0;
  text-align: center;
}

.page-articles {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}

p.excerpt {
  line-height: 1.7rem;
}

.news-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  max-width: 160px;
}

.news-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-bottom: 20px;
}

.box {
  border-bottom: 1px solid #d7d9da;
}

.box .news-detail {
  margin: 0 20px;
  padding: 30px 0;
  display: flex;
}

div.box a:hover {
  opacity: 0.5;
  transition: 0.8s;
}

.post-date-wrap {
  max-width: 540px;
  padding-left: 10px;
}

h3.title {
  padding: 10px 0 20px 0;
  font-size: 23px;
  font-weight: 400;
}

@media screen and (max-width:767px){
  h1.lower-title {
    padding-top: 100px;
  }

  .box .news-detail {
    padding: 20px 0;
    display: block;
    max-width: 530px;
    margin: 0 auto;
  }  

  .box {
    max-width: 530px;
    margin: 0 auto;
  }
  

  .post-date-wrap {
    margin: 0 auto;
  }

  .news-image {
    max-width: 530px;
    padding-bottom: 20px;
  }
}

div.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}

span.current, a.inactive {
  background-color: rgb(250, 222, 190);
  padding: 10px 15px;
  margin: 0 10px;
  font-size: 16px;
}

div.pagination a {
  background-color: rgb(250, 242, 233);
}

div.pagination .news-detail {
  background-color: #fff;
}



div.pagination a:hover {
  opacity: 0.5;
  transition: 0.8s;
}

.next-arrow {
  position: relative;
  display: inline-block;
  padding-left: 16px;
}

a.next-arrow::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 1.5px solid #444;
  border-right: 1.5px solid #444;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
}

.prev-arrow {
  position: relative;
  display: inline-block;
  padding-right: 16px;
}

a.prev-arrow::before {
  content: "";
  width: 13px;
  height: 13px;
  border-top: 1.5px solid #444;
  border-left: 1.5px solid #444;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
}
