/* サポートページ */
.p-support .l-page {
  padding: 60px 0;
  margin: 0 auto;
  max-width: 1200px;
  line-height: 1.8;
}
.p-support .hero {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: center;
}
.p-support .hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-support h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
  margin-top: 20px;
}
/* Right Side: Links Container */
.support-links-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.support-links-container h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
}
.support-links-container p {
  min-height: 80px;
}
/* Link Items */
.support-links {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  gap: 20px;
  /* border: 1px solid var(--color-black); */
  padding: 40px 20px;
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
}

a.support-links:hover {
  opacity: 0.8;
}

/* Icons */
.support-links-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #000;
  border-radius: 50%;
  margin-bottom: 24px;
}

/* Link Titles */
.support-links-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
}

@media (max-width: 1200px) {
  .l-page {
    padding: 40px 20px;
  }
  .support-links-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 30px;
  }
  .support-links-container p {
    min-height: inherit;
  }
  .support-links {
    padding: 20px 10px;
  }
}
@media (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
  .support-links-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    padding: 0 10px;
  }
}
