.link-group {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 80px;
}

.link-group-heading {
  font-size: 16px;
}

.link-group-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
  a {
    font-family:
      "Poppins", "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体",
      "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", Meiryo, メイリオ,
      Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-decoration: none;
    line-height: 1;
    height: 40px;
    padding: 0 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    background-color: #f0f0f0;
    &:hover {
      opacity: 0.6;
    }

    &::after {
      content: "";
      width: 7px;
      height: 13px;
      background: url(/res/p/img/coord/icon-arrow-forward.svg) no-repeat;
      background-size: contain;
    }
  }
}

/* SP */
@media screen and (max-width: 750px) {
  .link-group {
    width: calc(355 * (100vw / 375));
    gap: 11px;
    margin: 0 auto;
  }

  .link-group-heading {
    font-size: 13px;
  }

  .link-group-list {
    gap: 12px 15px;

    a {
      font-size: 13px;
      height: 33px;
      padding: 0 15px;
      gap: 4px;
      &::after {
        width: 5px;
        height: 9px;
      }
    }
  }
}
