/* バナータイプのスタイル（PC・モバイル共通） */

/* PC・モバイル共通のスタイル */
.b19-services-banner-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.b19-service-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.b19-service-banner:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(78, 205, 196, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4ecdc4;
  background: rgba(78, 205, 196, 0.1);
  padding: 1rem;
  border-radius: 12px;
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.b19-service-link {
  display: inline-block;
  margin-top: 1rem;
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.b19-service-link:hover {
  color: #fff;
  transform: translateX(5px);
}

/* プロセスセクションのバナー */
.process-banner-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.process-banner:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(78, 205, 196, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: #4ecdc4;
  background: rgba(78, 205, 196, 0.1);
  padding: 1rem;
  border-radius: 12px;
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* FAQセクションのバナー */
.faq-banner-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.faq-banner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.faq-banner:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(78, 205, 196, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #4ecdc4;
  background: rgba(78, 205, 196, 0.1);
  padding: 1rem;
  border-radius: 12px;
  min-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
}

.faq-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* モバイル対応（768px以下） */
@media (max-width: 768px) {
  /* サービスセクションのバナー */
  .b19-services-banner-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .b19-service-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
  }

  .b19-service-banner:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .service-icon {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
    padding: 1rem;
    border-radius: 12px;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .service-content {
    flex: 1;
  }

  .service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
  }

  .service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }

  .b19-service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #4ecdc4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .b19-service-link:hover {
    color: #fff;
    transform: translateX(5px);
  }

  /* プロセスセクションのバナー */
  .process-banner-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .process-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
  }

  .process-banner:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .step-number {
    font-size: 3rem;
    font-weight: 900;
    color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
    padding: 1rem;
    border-radius: 12px;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
  }

  .step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }

  /* FAQセクションのバナー */
  .faq-banner-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .faq-banner {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
  }

  .faq-banner:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(78, 205, 196, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .faq-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
    padding: 1rem;
    border-radius: 12px;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .faq-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
  }

  .faq-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }

  /* モバイルでのレイアウト調整 */
  .b19-service-banner,
  .process-banner,
  .faq-banner {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
  }
  
  .service-icon,
  .step-number,
  .faq-number {
    min-width: 60px;
    height: 60px;
    font-size: 2rem;
  }
  
  .service-content h3,
  .step-content h3,
  .faq-content h3 {
    font-size: 1.3rem;
  }
  
  .service-content p,
  .step-content p,
  .faq-content p {
    font-size: 0.9rem;
  }
}

/* さらに小さな画面での最適化（480px以下） */
@media (max-width: 480px) {
  .b19-service-banner,
  .process-banner,
  .faq-banner {
    padding: 1rem;
  }
  
  .service-icon,
  .step-number,
  .faq-number {
    min-width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .service-content h3,
  .step-content h3,
  .faq-content h3 {
    font-size: 1.2rem;
  }
  
  .service-content p,
  .step-content p,
  .faq-content p {
    font-size: 0.85rem;
  }
}
