@charset "utf-8";

/* procedure*/
ol li {
  list-style-type: decimal;
  margin-left: 1.5rem;
}

.desc ul li {
  list-style-type: disc;
}

.how-to {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.how-to h3 {
  width: 100%;
  font-size: 1.25rem;
  padding: 0.3rem 2rem;
  background-image: linear-gradient(90deg, var(--green), var(--light-grey) 50%, var(--light-grey) 100%);
  color: #fff;
  font-weight: bold;
}

.icon {
  width: 30%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}

.icon img {
  width: 80%;
  height: auto;
}

.desc {
  width: 70%;
  padding: 1rem 0;
}

.card-reader,
.key-box {
  text-align: right;
}

.card-reader img {
  width: 30%;
}

.key-box img {
  width: 30%;
}

.note {
  display: block;
  text-indent: -1rem;
  padding-left: 1rem;
  color: #333;
  font-weight: normal;
}

span {
  background-color: #fff;
  font-weight: bold;
  color: var(--pink)
}

p span {
  font-weight: normal;
}


/* MOBILE SIZE
========================================== */
@media screen and (max-width:767px) {
  .how-to {
    flex-wrap: wrap;
    align-items: center;
  }

  .how-to h3 {
    width: 75%;
    background-image: none;
    color: var(--green);
    text-align: center;
    padding: 2.5rem 0 0 0;
  }
  
  .how-to h3::after {
    content: '';
    display: block;
    width: 100%;
    height:6px;
    background-image: linear-gradient(90deg, var(--green), var(--light-grey) 50%, var(--light-grey) 100%);
    margin-top: 0.5rem;
  }

  .icon {
    width: 20%;
    box-shadow: 3px 3px 3cqmin rgba(0, 0, 0, 0.1);
    border-radius:10px;
  }

  .desc {
    width: 100%;
  }
}

