/* パスキーヘルプ */

/* トップ */
.passkey {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 55px;
  width: fit-content;
  margin: 0 auto;
  padding: 30px 20px 60px;

  @media screen and (max-width: 1024px) {
    width: 100%;
  }

  .header {
    display: flex;
    flex-direction: column;
    gap: 2em;
    width: 100%;

    h1 {
      color: #151515;
      font-size: 22px;
      font-weight: 700;
      line-height: normal;
      text-align: center;
    }
  }

  .cover-image {
    display: block;
    width: 400px;
    height: auto;
    margin: 0 auto;

    @media screen and (max-width: 1024px) {
      width: 200px;
    }
  }

  .link-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 40px 25px;
    width: 100%;

    @media screen and (max-width: 1024px) {
      grid-template-columns: 1fr;
      gap: 25px;
    }
  }

  .divider {
    grid-column: 1 / -1;
    width: 100%;
    height: 0;
    margin: 0;
    border-top: 1px solid #d0d0d0;
  }

  .list-button {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 330px;
    height: 55px;
    padding: 15px;
    background-color: #ffffff;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    color: #303036;
    transition: 0.2s;

    &:hover {
      background-color: #ececec;
    }

    &::after {
      font-family: "Font Awesome 6 Free";
      content: "\f054";
      /* biome-ignore lint/suspicious/noShorthandPropertyOverrides: */
      font: var(--fa-font-solid);
      font-size: 10px;
      color: #a0aec0;
    }

    @media screen and (max-width: 1024px) {
      max-width: 370px;
    }
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 520px) {
  .pc-only {
    display: inline;
  }
}
