/*
|---------------------------------------------------------------
| qinc2026-about-solution.css - ソリューションセクション
|---------------------------------------------------------------
*/

/* ==========================================================================
   About Solution
   ========================================================================== */
.about-solution {
  background-color: #f8f3eb;
  padding: var(--section-padding-y) 0;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.about-solution__label {
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-align: center;
  margin: 0 0 8px;
}

.about-solution__title {
  font-weight: 900;
  font-size: 48px;
  line-height: 1.0;
  color: var(--color-blue01);
  text-align: center;
  margin: 0 0 80px;
  font-feature-settings: "palt" 1;
}

/* --------------------------------------------------------------------------
   Cards Grid
   -------------------------------------------------------------------------- */
.about-solution__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* --------------------------------------------------------------------------
   Card
   -------------------------------------------------------------------------- */
.about-solution__card {
  text-align: center;
}

.about-solution__card-circle {
  width: 100%;
  max-width: 384px;
  aspect-ratio: 1;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  padding: 40px;
}

.about-solution__card-title {
  font-family: var(--font-family-en);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.38;
  color: var(--color-blue01);
  margin: 0 0 20px;
}

.about-solution__card-icon {
  width: 120px;
  height: 120px;
}

.about-solution__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-solution__card-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.69;
  color: var(--color-blue01);
  text-align: left;
  margin: 0;
  max-width: 326px;
  margin-left: auto;
  margin-right: auto;
}

.about-solution__highlight {
  font-weight: 900;
  color: var(--color-gold);
}

/* ==========================================================================
   Responsive - About Solution
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .about-solution {
    padding: var(--section-padding-y-md) 0;
  }

  .about-solution__title {
    font-size: 36px;
    margin-bottom: 48px;
  }

  .about-solution__cards {
    gap: 24px;
  }

  .about-solution__card-circle {
    max-width: 280px;
    padding: 30px;
  }

  .about-solution__card-title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .about-solution__card-icon {
    width: 90px;
    height: 90px;
  }

  .about-solution__card-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .about-solution {
    padding: var(--section-padding-y-sp) 0;
  }

  .about-solution__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .about-solution__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* 3枚目を中央寄せ */
  .about-solution__card:last-child {
    grid-column: 1 / -1;
  }

  .about-solution__card-circle {
    max-width: 280px;
    padding: 30px;
  }

  .about-solution__card-title {
    font-size: 22px;
  }

  .about-solution__card-icon {
    width: 80px;
    height: 80px;
  }
}

@media screen and (max-width: 480px) {
  .about-solution__cards {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 320px;
    margin: 0 auto;
  }

  .about-solution__card:last-child {
    grid-column: auto;
  }
}
