@charset "UTF-8";

/* ==========================================================================
   features.css
   「BERYLの機能」専用CSS
   ========================================================================== */

.p-featuresListWrap {
  
}
.p-featuresList__col:not(:last-child) {
  margin-bottom: 4rem;
}
.p-featuresList__col__ttl {
  padding-left: 2rem;
  position: relative;
}
.p-featuresList__col__ttl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: .5rem;
  height: 3rem;
  background-color: #1fbebd;
}
.p-featuresList__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  width: 100%;
}
@media screen and (max-width: 819px) {
  .p-featuresList__inner {
    display: block;
    gap: 4rem;
    width: 100%;
  }
}
.p-featuresList {
  padding: 1.5rem 2rem 0;
  background-color: #fff;
  border-radius: 2rem;
}
@media screen and (max-width: 819px) {
  .p-featuresList {
    margin-bottom: 1rem;
    padding: 1rem 1.5rem 0;
    border-radius: 1rem;
  }
}
.p-featuresList__img {
  margin-bottom: 2rem;
}
.p-featuresList__body {
  display: flex;
  flex-direction: column;
}
.p-featuresList__ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  flex-grow: 1;
  margin-bottom: 1rem;
}

