/** PLANS **/

.plans__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-block: 1rem 2rem;
}

.plans__list-item {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.plans__list-item p {
  margin: 0;
}

.plans__list-item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.7);
  color: #231f20;
}

.plans__list-item:nth-child(even) .plans__item-title {
  border-color: #231f20;
}

.plans__item-img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 215 / 156;
  margin-bottom: 1rem;
}

.plans__item-img.tag::before {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  aspect-ratio: 1 / 1;
  background: url(../images/top/9kg-tag.webp) no-repeat center / 100% 100%;
}

.plans__item-title {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid white;
}

.plans__note {
  color: #fff;
  text-align: right;
}

@media (max-width: 767px) {
  .plans__note {
    padding-left: 1em;
    text-indent: -1em;
    text-align: left;
  }
  .plans__item-img.tag::before {
    right: -15px;
    top: -15px;
    width: 70px;
  }
  .plans__list-item {
    padding: 20px;
  }
  .plans__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .plans {
    padding-inline: 5.5%;
  }
}
