/*20240208追加*/
.following_banner a{
  display: block;
  margin-bottom: 10px;
}
ul.c-button-long{
  display: flex;
  margin: 50px auto 0;
  justify-content: center;
}
ul.c-button-long li {
  width: 100%;
  margin: 0 10px;
}
ul.c-button-long li a {
  color: #21439f;
  background: #7dd6cb;
  border-radius: 10px;
  box-shadow: 0px 6px 0px rgb(51 161 151);
  opacity: 1;
  transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
  font-weight: bold;
  text-align: center;
  display: block;
  position: relative;
  padding: 22px 0;
}
ul.c-button-long li a:after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 35px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #21439f;
  border-right: 1px solid #21439f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
ul.c-button-long li a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -ms-filter: "alpha( opacity=80 )";
}


@media screen and (max-width: 576px){
  /*20240208追加*/
  
}