/*ヒーローセクション*/
.hero {
  background: url('./images/propeller3.jpeg') center/cover no-repeat;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7b00, #ff9900);
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #e56a00, #ff8800);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}


/*事業紹介セクション*/
.business-intro {
  background: #fff;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  color: #333;
}

.business-intro h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.business-intro .lead-text {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.business-intro .lead-text span {
  display: block;
  font-size: 1.1rem;
  color: #888;
}

.business-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.business-content strong {
  color: #ff7b00;
  font-weight: bold;
}

.points, .features {
  margin-top: 40px;
}

.points h3, .features h3 {
  font-size: 1.6rem;
  border-left: 5px solid #ff7b00;
  padding-left: 10px;
  margin-bottom: 15px;
  color: #222;
}

.points ul, .features ul {
  list-style: disc inside;
  padding-left: 10px;
  font-size: 1rem;
  line-height: 1.8;
}

.features ul strong {
  color: #0078d4;
}


/*サービスセクション*/
.services {
  padding: 60px 20px;
  text-align: center;
  background: #f6f6f6;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.services a {
  color: black;
}
/*お客様の声*/
.voice {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.voice blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
  margin: 0 auto;
  max-width: 600px;
}

.voice cite {
  display: block;
  margin-top: 20px;
  color: #888;
  font-size: 0.9rem;
}

.testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.testimonials blockquote {
  font-style: italic;
  margin: 20px auto;
  max-width: 700px;
  padding: 20px;
  background: #fff;
  /*border-left: 5px solid #0066cc;*/
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonials cite {
  display: block;
  margin-top: 10px;
  color: #555;
  font-weight: bold;
}

.testimonials .external-review {
  margin-top: 20px;
  text-align: right;
}

.testimonials .external-review a {
  color: #007acc;
  text-decoration: none;
  font-weight: bold;
}

.testimonials .external-review a:hover {
  text-decoration: underline;
}




.case-link {
  padding: 60px 20px;
  text-align: center;
  background: #eef5f9;
}

.btn-secondary {
  display: inline-block;
  margin-top: 20px;
  background: #0066cc;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #004a99;
}

  
  .center-text {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  section ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
  }
  
  section ul li {
    margin-bottom: 0.5rem;
  }
  
  .btn {
    display: inline-block;
    background-color: #D72638;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
  }
  
  .btn:hover {
    background-color: #a61d2a;
  }
  
  @media (max-width: 768px) {
    .hero-text {
      font-size: 1.5rem;
    }
  
    .lead {
      font-size: 1.1rem;
    }
  
    .btn {
      padding: 0.6rem 1.2rem;
      font-size: 0.9rem;
    }
  }
  