@charset "UTF-8";

body {
  position: relative;
}
.news_top_wrap {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px 0;
}
.news_top_wrap .news_ttl {
  display: flex;
  align-items: center;
}
.news_top_wrap .news_ttl h2 {
  width: clamp(20rem, 16.667rem + 6.94vw, 25rem);
  margin-right: 15px;
}
.news_top_wrap .news_ttl p {
  font-size: clamp(1rem, 0.75rem + 0.52vw, 1.375rem);
  font-weight: bold;
}
.news_content_area {
  margin: 0 auto;
  background-image: url("../images/general_bg.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
  padding: 100px 0 80px;
}
.news_content_area .news_list {
  width: 80%;
  max-width: 900px;
  margin: 0 auto 80px;
}
.news_content_area .news_list li {
  margin-bottom: 10px;
  position: relative;
}
.news_content_area .news_list li::after {
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #231815, #231815 3px, transparent 3px, transparent 5px);
  background-size: 5px 1px;
  background-repeat: repeat-x;
  display: inline-block;
  position: relative;
  bottom: 0;
  right: 0;
}
.news_content_area .news_list li a {
  display: flex;
  align-items: center;
}
.news_content_area .news_list li a .tag {
  color: #fff;
  font-size: clamp(0.75rem, 0.583rem + 0.35vw, 1rem);
  font-weight: bold;
  line-height: 30px;
  background-color: #231815;
  width: 160px;
  height: 30px;
  text-align: center;
  margin-right: 40px;
}
.news_content_area .news_list li a .date {
  font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
  margin-right: 20px;
}
.pagination {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 1%;
  justify-content: center;
  align-items: center;
  position: relative;
}
.pagination li:has(.prev) {
  position: absolute;
  left: 0;
}
.pagination li:has(.prev) a {
  padding-left: 34px;
  position: relative;
}
.pagination li:has(.prev) a::before {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("../images/before_ico.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 1px;
  left: 0;
}
.pagination li:has(.next) {
  position: absolute;
  right: 0;
}
.pagination li:has(.next) a {
  padding-right: 34px;
  position: relative;
}
.pagination li:has(.next) a::after {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("../images/after_ico.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 1px;
  right: 0;
}





/*     SP
------------------------------*/
@media (max-width: 768px) {
  .sp_header {
    background-color: #fff;
    padding: 20px 20px 20px 22px;
  }
  .sp_header .logo_img {
    width: 50%;
  }
  .news_content_area .news_list {
    width: 80%;
  }
  .news_top_wrap {
    width: 80%;
    display: block;
    margin-bottom: 20px;
    padding: 20px 0;
  }
  .news_top_wrap .news_ttl {
    display: block;
    margin: 0;
  }
  .news_top_wrap .news_ttl h2 {
    width: 260px;
    margin: 0 0 5px 0;
  }
  .news_top_wrap .news_ttl p {
    font-size: clamp(0.875rem, 0.696rem + 0.89vw, 1.125rem);
  }
  .news_content_area .news_list li::after {
    bottom: 5px;
  }
  .news_content_area .news_list li a {
    display: block;
  }
  .news_content_area .news_list li a .tag {
    width: 140px;
    margin: 0 0 10px 0;
  }
  .news_content_area .news_list li a .date {
    display: inline-block;
  }
  .news_content_area .news_list li a .ttl {
    display: inline-block;
  }
  .pagination {
    width: 80%;
    gap: 15px;
  }
  .pagination li:has(.prev) a {
    padding-left: 24px;
  }
  .pagination li:has(.next) a {
    padding-right: 24px;
  }
  .pagination li:has(.prev) a::before, .pagination li:has(.next) a::after {
    width: 18px;
    height: 18px;
  }
}

/*     PC
------------------------------*/
@media (min-width: 769px) {

}