.lead {
  font-size: 4.8vw;
  font-weight: 700;
}

.lead p + p {
  margin-top: 1em;
}

.caution {
  font-size: 4.2666666667vw;
}

.caution p {
  color: #585858;
  margin-inline: auto;
  padding-left: 1em;
  text-indent: -1em;
}

.link {
  text-align: center;
}

.link a {
  border-bottom: 2px solid var(--color-white);
  font-weight: 700;
  color: var(--color-font);
}

.link a[target=_blank]::after {
  content: "";
  display: inline-block;
  aspect-ratio: 1;
  background: url(../img/common/ic_link.webp) no-repeat;
  background-size: contain;
  transform: translateY(0.1em);
  width: 1em;
  margin-left: 0.2em;
}

@media screen and (min-width: 768px) {
  .lead {
    text-align: center;
    font-size: min(18px, min( calc(18 / 1280 * 100vw)));
  }

  .caution {
    text-align: center;
    font-size: min(16px, min( calc(16 / 1280 * 100vw)));
  }
}

@media screen and (min-width: 768px) and (hover: hover) {
  .link a:hover {
    border-color: transparent;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .link a:hover {
    border-color: transparent;
  }
}