#top_inlude_newsblog {
  margin-bottom: 60px;
}

.newsbtnList {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.newsbtnItem {
  margin: 0;
}
.blog__tab {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.blog__tab a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 270px;
  height: 50px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;

  /* 非activeデフォルト */
  color: #48AB35;
  border: 2px solid #48AB35;
  cursor: pointer;
}

.blog__tab a.active {
  background: #48AB35;
  color: #fff;
  border: none;
  pointer-events: none;
}

.blog__tab a:hover {
  background: #48AB35;
  color: #fff;
  border: none;
}

/* 逆三角形（activeのみ） */
.blog__tab a.active::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #48AB35;
}

@media screen and (max-width: 768px) {
  .blog__tab li a {
    font-size: 1.6rem;
  }
}