@charset "utf-8";
/*--------------------------------------------------------------------------------

  approach
  
--------------------------------------------------------------------------------*/
.approach-sec {
  --sec-box-pd-top: var(--space-m);
  --sub-ttl-fs: 1rem;
  --sub-ttl-mgb: 1.25rem;
  --sub-ttl-color: var(--color-gray);
}
@media (max-width: 640px) {
  .approach-sec {
    --ttl-mgb: var(--space-m);
  }
}

/*--------------------------------------------------------------------------------
  .approach-list
--------------------------------------------------------------------------------*/
@media not (max-width: 640px) { .approach-list { --col: 2; } }
@media (max-width: 640px) { .approach-list { --col: 1; } }
.approach-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(var(--col), 1fr);
  gap: 0.5rem;
}
.approach-list li {
  padding: 0.75rem;
  line-height: 1.4;
  display: grid;
  align-content: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-base);
  color: var(--color-blue);
  font-weight: 400;
}
@media (max-width: 640px) {
  .approach-list { margin-top: 0.5rem; }
}
