.card {
  flex: 1;
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
  max-width: 300px;

  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;

    .tag {
      background-color: #3182ce;
      color: #ffffff;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 10px;
    }

    h3 {
      font-weight: 700;
      font-size: 16px;
      color: #3182ce;
    }
  }

  img {
    width: 100%;
    height: 120px;
    object-fit: contain;
  }

  p {
    font-size: 16px;
    line-height: 28px;
    color: #4a5568;
  }
}

/* ----------------------------------------
セキュリティに関する取り組み（security-initiatives.tsx）
---------------------------------------- */
.caution-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;

  .caution-item {
    .caution-content {
      display: flex;
      flex-direction: column;
      gap: 4px;

      .caution-title {
        font-weight: 700;
        font-size: 15px;
        color: #2d3748;
        margin: 4px 0;
      }

      .caution-text {
        font-size: 14px;
        line-height: 1.6;
        color: #4a5568;
        margin: 0;
      }
    }
  }
}

.security-initiatives-text {
  text-align: center;
}

.security-initiatives-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 60px;
  justify-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;

  .card {
    max-width: 320px;
  }

  li:last-child {
    grid-column: 1 / -1;
  }

  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;
    row-gap: 40px;
    column-gap: 0;

    .card {
      max-width: 100%;
    }

    li:last-child {
      grid-column: auto;
    }
  }
}

.security {
  max-width: 885px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 80px;
  padding: 30px 0px 80px;

  section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0;
    width: 100%;
  }

  .sub-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #333333;
    width: 100%;
  }

  .with-lines {
    display: flex;
    align-items: center;
    gap: 20px;

    &::before,
    &::after {
      content: "";
      flex-grow: 1;
      border-bottom: 1px solid #cbd5e0;
    }
  }

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

  @media screen and (max-width: 768px) {
    padding: 30px 20px 60px;
    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;
  }
}

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