@charset "UTF-8";

.news-wrapper {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}
#news .news-list li {
  margin-bottom: 30px;
  border-bottom: dotted 1px #484A4F;
  padding-bottom: 30px;
}
#news .news-list li:last-child {
  border-bottom: none;
}
#news .news-list .date-area {
  display: flex;
}
#news .news-list li .date-area {
  margin-bottom: 16px;
  align-items: center;
}
#news .news-list .date-area .cat-list li {
  padding: 0 5px;
  height: 20px;
  line-height: 20px;
  background-color: #14813C;
  color: #fff;
  display: inline-block;
  font-size: 0.75rem;
  margin-left: 10px;
  text-align: center;
  margin-bottom: 0;
}
#news .news-list li p {
  font-weight: bold;
}
.new-mark {
  display: inline-block;
  background-color: red;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  margin-left: 10px;
  vertical-align: middle;
}


/* --- ページネーション --- */
.wp-pagenavi {
  font-size: 1.1rem;
  text-align: center;
  align-items: center;
}
.wp-pagenavi a:hover {
  background: #272625;
  color: #fff;
}
.wp-pagenavi .current {
  background: #F4F2EE;
}
.wp-pagenavi a,
.wp-pagenavi .current {
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  padding: 7px 15px;
}


.sidebar .news-area {
padding: 0 10px;
}
.sidebar .side-item {
padding: 0 3.773%;
padding-bottom: 36px;
}
.sidebar .side-item:not(:last-of-type) {
border-bottom: 1px solid #484A4F;
margin-bottom: 42px;
}
.side-title {
margin-bottom: 10px;
/* line-height: 2.25; */
letter-spacing: 0.1em;
}
.sidebar-list {
padding: 0 5%;
}
.sidebar-list a {
display: inline-block;
padding-right: 1em;
line-height: 2.562;
}
.sidebar-list a::before {
content: "-";
display: inline-block;
margin-right: 0.5em;
}

#year-archive {
  padding: 0 30px;
  line-height: 2.562;
  border: 1px solid #484A4F;
  margin-left: 5%;
}

/* --- single.html --- */
#news .news-list li .single-title {
  font-size: 2em;
}
#news .news-list .single-content {
  margin-bottom: 60px;
}
#news .news-list .single-content  .single-flex-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
}
#news .news-list .single-content li {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
#news a {
  margin-right: auto;
}

.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.page-nav a {
  display: inline-block;
  min-width: 5em;
  position: relative;
  padding: 5px 14px;
}
.page-nav a::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-35%) rotate(45deg);
  border-top: 2px solid #272625;
  border-right: 2px solid #272625;
}
.page-nav li:first-of-type a::after {
  right: auto;
  left: 20px;
  transform: translateY(-35%) scale(-1, 1);
}
.page-nav > li:first-of-type a::after {
    right: auto;
    left: 0px;
    transform: translateY(-35%) rotate(-135deg);
}
.page-nav a:hover {
  background-position-x: right;
}


/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .news-wrapper {
    display: block;
  }
  #news {
    margin-bottom: 80px;
  }
  #news .news-list li {
    width: 100%;
  }
  .wp-pagenavi {
    font-size: 20px;
    gap: 0.5em;
  }
  .wp-pagenavi a,
  .wp-pagenavi .current {
    padding-top: 3px;
  }

  .news-wrapper .sidebar {
  width: 100%;
  }

  /* --- single.html --- */
  .page-nav a {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 481px) {
  /* --- single.html --- */
  #news .news-list .single-content  .single-flex-box {
  display: block;
  }
}