@charset "UTF-8";

/*----- アンカーボタン修正
------------------------------------------*/
a[id^=anchor] + div .content_wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
a[id^=anchor] + div .content_wrapper > a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  width: calc((100% - 30px) / 4) !important;
  margin: 0;
  box-sizing: border-box;
}
a[id^=anchor] + div .content_wrapper > a span {
  font-size: 1.4rem;
}

@media screen and (max-width: 900px) {
  a[id^=anchor] + div .content_wrapper > a {
    width: calc((100% - 10px) / 2) !important;
  }
}
@media screen and (max-width: 350px) {
  a[id^=anchor] + div .content_wrapper > a span {
    font-size: 1.1rem;
  }
}