@charset "UTF-8";

/* ==============================
   サポート内容
============================== */
.support {
  padding: 120px 143px;
}

.support__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --- セクションタイトル --- */
.support__title-area {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.support__line {
  flex: 1;
  height: 1px;
  background-color: var(--color-gray);
}

.support__heading {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-black);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- カードグリッド --- */
.support__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

/* --- カード --- */
.support__card {
  position: relative;
  width: 348px;
  height: 340px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}

.support__card-overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 182px;
  background: rgba(25, 25, 25, 0.7);
  filter: blur(20px);
}

.support__card-body {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.support__card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}

.support__card-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==============================
   Responsive - Tablet (1024px)
============================== */
@media (max-width: 1024px) {

  .support {
    padding: 80px 40px;
  }

  .support__inner {
    gap: 32px;
  }

  .support__heading {
    font-size: 22px;
  }

  .support__grid {
    gap: 16px;
    justify-content: center;
  }

  .support__card {
    width: calc(50% - 8px);
    height: 300px;
  }
}

/* ==============================
   Responsive - Mobile (767px)
============================== */
@media (max-width: 767px) {

  .support {
    padding: 48px 20px;
  }

  .support__inner {
    gap: 24px;
  }

  .support__heading {
    font-size: 20px;
  }

  .support__grid {
    gap: 12px;
  }

  .support__card {
    width: 100%;
    height: 240px;
    border-radius: 6px;
    padding-bottom: 20px;
  }

  .support__card-overlay {
    height: 140px;
  }

  .support__card-title {
    font-size: 19px;
  }

  .support__card-desc {
    font-size: 15px;
    min-height: auto;
  }
}
