.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  text-align: center;
  color: #ffffff;
}
.page-hero .page-title {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: flex-start;
}

.sponsor-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}
.sponsor-card h2 {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  color: #4a00e0;
  margin-bottom: 15px;
}
.sponsor-card h3 {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #f4f4f9;
  padding-bottom: 5px;
}

.person-card {
  text-align: center;
}
.person-card img {
  max-width: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.person-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.pricing-card {
  border: 2px solid #f4f4f9;
  border-radius: 12px;
  padding: 30px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.pricing-card h3 {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.pricing-card .price {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4a00e0;
  margin-bottom: 5px;
}
.pricing-card .price .unit {
  font-size: 1rem;
  color: #333333;
}
.pricing-card .note {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #777;
}
.pricing-card ul {
  text-align: left;
}
.pricing-card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.pricing-card ul li .check {
  color: #d32f2f;
  margin-right: 10px;
  font-weight: bold;
}

.budget-table {
  max-width: 600px;
  margin: 0 auto 40px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}
.budget-table table {
  width: 100%;
  border-collapse: collapse;
}
.budget-table table th, .budget-table table td {
  padding: 15px;
  text-align: left;
}
.budget-table table tbody tr {
  border-bottom: 1px solid #f4f4f9;
}
.budget-table table tbody tr:last-child {
  border-bottom: none;
}
.budget-table table th {
  font-weight: 700;
  width: 40%;
}
.budget-table table tfoot {
  background-color: #f4f4f9;
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .page-hero .page-title {
    font-size: 2.5rem;
  }
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
  .person-card {
    margin-top: 20px;
  }
}/*# sourceMappingURL=uniq.css.map */