.home-mainvisual {
  height: 90vh; /*ﾃﾞﾊﾞｲｽの高さの1/100=1vh*/
  background-image: url("../img/0V1A3114.jpg"); /*サイトの管理をしないと画像リンクが相対パスにならない！*/
  background-position: center;
  /*background-size: 100% auto; 横100% 高さは設定してるからauto*/
  background-repeat: no-repeat;
  /*background-size: cover;*/
  background-size: cover;
}
.section-bloglist {
  padding-top: 80px;
}
.section-bloglist-content-wrapper {
  width:auto;
  margin: 0 auto;
}
.visually-hidden {
  position:absolute!important;
  height:1px;width:1px;
  overflow:hidden;clip:rect(1px,1px,1px,1px);
  white-space:nowrap;border:0;padding:0;margin:-1px;
}
.blog-list {
  list-style: none;
  margin: 0 auto;
}
.section-top-bloglist {
  display: flex;
  justify-content: center;
}
.blog-card {
  display: flex;
  margin-bottom: 30px;
  justify-content: center;
}
.blog-list li:last-child {
  margin-bottom: 0;
}
.blog-list__image img {
  margin-top: 10px;
  width: 30vw;
  height: auto;
  min-height: 100px;
  object-fit: cover;
  border: solid #1e99a8 1px;
}
.blog-list__text {
  padding: 10px 0 0 20px;
  width: 50%;
  text-align: left;
}
.blog-list__tag {
  display: flex;
  padding-bottom: 12px;
  width:auto;
}
.blog-list__category {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  background-color: #1e99a8;
  opacity: 0.55;
  color: #000;
  padding: 3px 17px;
  margin-left: 5px;
}
.blog-list__category a {
  text-decoration: none;
  color: #333;
}
.blog-list__title {
  text-decoration: none;
  font-size: 1.5rem;
  color: #333;
}
.blog-list__text h4 {
  padding-bottom: 30px;
}
.blog-list__content {
  display: none;
}
@media(min-width:790px) {
  .section-bloglist-content-wrapper {
    max-width: 1160px;
  }
  .section-bloglist__container {
    display: flex;
    justify-content: center;
  }
  .blog-list {
    flex: 7.8;
    margin: 0 auto;
  }
  .blog-list li {
    margin: 50px auto 0;
  }
  .blog-list li:last-child {
    margin-bottom: 0;
  }
  .blog-list__image img {
    width: 270px;
    height: initial;
  }
  .blog-list__text {
    margin-left: 60px;
    padding-top: 20px;
    text-align: left;
    width: 466px;
  }
  .blog-list__text h4 {
    font-size: 1.8rem;
    font-weight: 500;
  }
  .blog-list__category {
    margin-left: 10px;
  }
  .blog-list__content {
    display: block;
    font-size: 1.5rem;
  }
  .blog-list__content p {
    font-size: 1.5rem;
  }
}
.section-bloglist__right {
  display: none;
}
@media(min-width:960px){
  .home-mainvisual {
    background-size: cover;
    width: 100%;
  }
}
@media (min-width:1160px) {
  .section-bloglist__right {
    display: block;
    width: 200px;
    margin-left: 100px;
  }
  .section-bloglist__right ul {
    list-style: none;
    text-align: left;
  }
  .section-bloglist__right  h3 {
    font-weight: 500;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    padding: 0 0 15px 35px;
    border-bottom: solid 1px #1e99a8;
  }
  .section-bloglist__right li {
    padding: 15px 0 0 35px;
  }
}
/* WP-PageNavi ページネーション全体 */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 40px 0;
  font-size: 16px;
}

/* 各リンクと現在ページの共通スタイル */
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #333;
  background: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* hover時 */
.wp-pagenavi a:hover {
  background: #f0f0f0;
  border-color: #999;
}

/* 現在のページ */
.wp-pagenavi .current {
  background: #333;
  color: #fff;
  border-color: #333;
  font-weight: bold;
}

/* 前・次ボタン（» «） */
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-size: 18px;
  padding: 6px 14px;
}