@charset "UTF-8";

.smp_free-shipping_contents {
  border: 1px solid #ccc;
  padding: 2rem;
  margin: 3rem 0;
}

.smp_free-shipping {
  padding: 1rem;
  display: grid;
  grid-template-areas: "image title" "image text";
  grid-template-columns: 100px 1fr;
  column-gap: 2.5rem;
  row-gap: 1.5rem;
}

.smp_free-shipping__img {
  grid-area: image;
  height: auto;
}

.smp_free-shipping__title {
  grid-area: title;
  align-self: center;
}

.smp_free-shipping__text {
  grid-area: text;
  font-size: 1.4rem;
}

.smp_free-shipping__name {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .smp_free-shipping {
    grid-template-areas: "image title" "text text";
    grid-template-columns: 80px 1fr;
    padding: 1rem;
    row-gap: 2rem;
  }

  .smp_free-shipping__name {
    line-height: 1.5;
  }

}
