@charset "UTF-8";
/* 全体 */
.anchor-list{
  padding: 0;
  margin: 70px auto;
}
.anchor-list__block + .anchor-list__block{
  margin-top: 28px;
}
.anchor-list__title{
  display: inline-block;
  margin: 0 0 25px;
  padding: 10px 25px;
  background: linear-gradient(to right bottom, #083190, #0085d8);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
}
.anchor-list__grid{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 64px; /* 画像っぽく広め */
  row-gap: 12px;
}
.anchor-list__grid a {
  color: #111;
  font-size: 18px;
  text-decoration: none;
  line-height: 1.6;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.anchor-list__grid a:hover {
  text-decoration: underline; 
}
.anchor-list__grid a::before{
  content: "";
  display: inline-block;
  width: 9px;
  height: 12px;
  margin-right: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 12'%3E%3Cpolyline points='1,1 6,6 1,11' fill='none' stroke='%230a2f86' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
/* 空セルは何も見せない */
.anchor-list__grid .is-empty{
  min-height: 1px;
}
@media screen and (min-width: 1001px) and (max-width: 1024px) {
  .anchor-list__grid{
    column-gap: 24px;
  }
}
@media (max-width: 1000px){
  .anchor-list__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 380px){
  .anchor-list__grid{
    grid-template-columns: 1fr;
  }
  .anchor-list__grid a {
    font-size: 16px;
  }
}
/* アンカー先すべてに共通で効かせる */
[id]{
  scroll-margin-top: 100px;
}

