/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
  background-color: var(--color-gray);
  background-image: url("../../../images/bg_wt.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 30vw auto;
}

.features-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: clamp(45px, 35px + 1.3vw, 60px);
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: clamp(45px, 35px + 1.3vw, 60px);
}

.feature-card--reverse {
  flex-direction: row-reverse;
}

.feature-card-image {
  flex: 525;
  min-width: 0;
  aspect-ratio: 11/7;
  border-radius: 30px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 13px + 0.87vw, 30px);
}

.feature-card-image img {
  width: 90%;
  aspect-ratio: 11/7;
  -o-object-fit: contain;
     object-fit: contain;
}

.feature-card-content {
  flex: 850;
  min-width: 0;
}

.feature-card-title {
  font-size: clamp(24px, 13px + 1.39vw, 40px);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 clamp(15px, 10px + 0.61vw, 22px);
}

.feature-card-text {
  margin: 0;
  line-height: 1.4;
}

/* PC */
@media screen and (min-width: 769px) {
  .feature-card:nth-child(1) .feature-card-image img {
    width: 80%;
  }
  .feature-card:nth-child(2) .feature-card-image img {
    width: 85%;
  }
  .feature-card:nth-child(3) .feature-card-image img {
    width: 75%;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .features {
    background-size: 95vw auto;
  }
  .features-list {
    gap: 30px;
  }
  .feature-card {
    flex-direction: column;
    gap: 20px;
  }
  .feature-card--reverse {
    flex-direction: column;
  }
  .feature-card-image {
    width: 100%;
    aspect-ratio: 9/5;
    max-width: 500px;
    margin: 0 auto;
  }
  .feature-card-image img {
    width: 90%;
    aspect-ratio: 9/5;
  }
  .feature-card:nth-child(1) .feature-card-image img {
    width: 75%;
    max-width: 300px;
  }
  .feature-card:nth-child(2) .feature-card-image img {
    width: 90%;
    max-width: 340px;
  }
  .feature-card:nth-child(3) .feature-card-image img {
    width: 70%;
    max-width: 300px;
  }
  .feature-card-content {
    width: 100%;
  }
  .feature-card-title {
    font-size: 24px;
    text-align: center;
  }
  .feature-card-text {
    max-width: 500px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=features.css.map */