/* トップページ・ヒーロー・サービス・セクション等 */
.hero-section {
  background: linear-gradient(135deg, #f4f3ee 0%, #e8f5e8 50%, #f0f8ff 100%);
  padding: 6rem 0 6rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, #f4f3ee, #e8f5e8);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #3d405b;
  letter-spacing: -0.02em;
}

.hero-text .highlight {
  color: #e07a5f;
  position: relative;
}

.hero-text .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #e07a5f, #f2cc8f);
  border-radius: 2px;
}

.hero-text p {
  font-size: 1.3rem;
  color: #81b29a;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #e07a5f, #f2cc8f);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(224, 122, 95, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, #81b29a, #a8dadc);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(129, 178, 154, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(129, 178, 154, 0.5);
}

.services-section {
  padding: 6rem 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #3d405b;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.3rem;
  color: #81b29a;
  max-width: 50rem;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: white;
  border-radius: 25px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(61, 64, 91, 0.1);
  align-items: center;
  border: 1px solid rgba(244, 243, 238, 0.5);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(224, 122, 95, 0.15);
}

.service-visual {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 120px;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }

  .section-header h2 {
    font-size: 2.3rem;
  }

  .section-header p {
    font-size: 1.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .service-visual {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 4rem 0;
  }

  .hero-content {
    gap: 2rem;
    padding-top: 100px;
  }

  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .services-section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-visual {
    width: 100%;
    max-width: 180px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
}


