.faq-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
  list-style: none;
}

.faq-tag li {
  list-style: none;
  list-style-type: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.faq-tag li::marker {
  display: none;
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .faq-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 20px 0;
    justify-content: flex-start;
    align-items: center;
  }

  .faq-tag li {
    display: inline-flex;
    flex: 0 0 auto;
    white-space: nowrap;
    min-width: 0;
    max-width: calc(50% - 2.5px);
  }

  .faq-tag li a {
    height: 30px;
    white-space: nowrap;
    display: inline-block;
    padding: 5px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}