/* enhanced.css */
/* 全体のスタイル向上 */
body {
  color: #333;
  line-height: 1.6;
}

/* ヒーローセクション */
.service-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.service-hero-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.service-hero-content {
  color: #fff;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

.service-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* パンくずリスト */
.breadcrumb-container {
  background-color: #f9f9f9;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.breadcrumb {
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #0056b3;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* セクションヘッダー */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* サービス概要セクション */
.service-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-highlight-box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-highlight-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.service-highlight-box p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.text-highlight {
  font-weight: 700;
  color: #0056b3;
}

.overview-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.overview-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.point-icon {
  width: 60px;
  height: 60px;
  background-color: #f0f9ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-icon img {
  width: 30px;
  height: 30px;
}

.point-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.service-overview-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-overview-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 14px;
}

/* 活用シーンセクション */
.bg-gradient {
  background: linear-gradient(135deg, #0056b3, #00a0e9);
  color: #fff;
}

.section-header.light,
.section-header.light .section-title,
.section-header.light .section-subtitle {
  color: #fff;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.usecase-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: #333;
  transition: transform 0.3s ease;
}

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

.usecase-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usecase-icon img {
  width: 50px;
  height: 50px;
}

.usecase-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #222;
}

.usecase-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* サービス詳細プロセス */
.service-process {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 70px;
  left: 40px;
  height: calc(100% - 50px);
  width: 2px;
  background-color: #0056b3;
  z-index: 0;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: #0056b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-right: 30px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.step-content {
  flex-grow: 1;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
}

.step-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.step-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.step-icon {
  align-self: flex-end;
  margin-top: 20px;
}

.step-icon img {
  width: 60px;
  height: 60px;
}

/* 料金プランセクション */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.pricing-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

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

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid #0056b3;
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background-color: #ff5a5f;
  color: #fff;
  padding: 5px 30px;
  font-size: 14px;
  font-weight: 700;
  transform: rotate(45deg);
  z-index: 3;
}

.pricing-header {
  padding: 30px;
  text-align: center;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.pricing-icon img {
  width: 60px;
  height: 60px;
}

.pricing-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
}

.pricing-price {
  margin-bottom: 10px;
}

.pricing-price .price {
  font-size: 28px;
  font-weight: 700;
  color: #0056b3;
}

.pricing-price .period {
  font-size: 14px;
  color: #666;
  display: block;
  margin-top: 5px;
}

.pricing-body {
  padding: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.pricing-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.pricing-features li i {
  color: #0056b3;
  margin-right: 10px;
}

.pricing-button {
  text-align: center;
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-note p {
  margin-bottom: 10px;
}

/* FAQ セクション */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  background-color: #f9f9f9;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h3 {
  font-size: 18px;
  margin: 0;
  color: #222;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 700;
  color: #0056b3;
}

.faq-answer {
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.faq-answer p {
  margin-bottom: 15px;
}

.faq-answer ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.faq-answer ul li {
  margin-bottom: 5px;
}

/* CTA セクション */
.cta-section {
  padding: 80px 0;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.cta-text {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* 関連サービスセクション */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 70px;
  height: 70px;
}

.service-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #222;
}

.service-description {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* アニメーション */
.animated {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fadeInUp {
  animation: fadeInUp 0.8s forwards;
  animation-delay: 0.1s;
}

.fadeInLeft {
  animation: fadeInLeft 0.8s forwards;
  animation-delay: 0.1s;
}

.fadeInRight {
  animation: fadeInRight 0.8s forwards;
  animation-delay: 0.1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* レスポンシブデザイン */
@media (max-width: 992px) {
  .service-hero-title {
    font-size: 36px;
  }
  
  .service-hero-subtitle {
    font-size: 20px;
  }
  
  .service-overview-grid {
    grid-template-columns: 1fr;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .process-step::after {
    top: 60px;
    left: 30px;
  }
}

@media (max-width: 768px) {
  .service-hero {
    min-height: 400px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .usecase-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: scale(1) translateY(-10px);
  }
}

@media (max-width: 576px) {
  .service-hero-title {
    font-size: 28px;
  }
  
  .service-hero-subtitle {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .process-step::after {
    display: none;
  }
  
  .cta-title {
    font-size: 28px;
  }
}

/* enhanced.css - 拡張スタイルシート */
/* ai-support.htmlと同様のビジュアルを実現するためのスタイル追加 */

/* グラデーション背景 */
.bg-gradient {
    background: linear-gradient(135deg, #0062cc, #1e88e5, #0062cc);
    color: #fff;
}

.bg-gradient .section-title,
.bg-gradient .section-subtitle,
.light.section-header h2,
.light.section-header p {
    color: #fff;
}

/* ヒーローセクション */
.service-hero {
    position: relative;
    padding: 0;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.service-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 30, 60, 0.7);
    z-index: -1;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.service-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.btn-scroll {
    position: relative;
    padding-right: 32px;
}

.btn-scroll::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
}

.btn-scroll:hover::after {
    transform: translateY(-40%) rotate(45deg);
}

/* パンくずリスト */
.breadcrumb-container {
    background-color: #f5f5f5;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* セクションヘッダー */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 0.5rem;
}

/* ハイライトボックス */
.service-highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0062cc;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-highlight-box h3 {
    color: #0062cc;
    margin-top: 0;
    margin-bottom: 1rem;
}

.text-highlight {
    background: linear-gradient(transparent 60%, rgba(0,98,204,0.2) 40%);
    font-weight: 600;
}

/* オーバービューポイント */
.overview-points {
    margin-top: 2rem;
}

.overview-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.point-icon {
    flex: 0 0 60px;
    height: 60px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.point-icon img {
    width: 30px;
    height: 30px;
}

.point-content {
    flex: 1;
}

.point-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #0062cc;
}

/* 必要性セクション */
.necessity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.necessity-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.necessity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.necessity-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.necessity-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.necessity-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #fff;
}

.necessity-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* スキルセクション */
.skills-tab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-button {
    background-color: #f5f5f5;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    color: #555;
}

.tab-button:hover {
    background-color: #e0e0e0;
}

.tab-button.active {
    background-color: #0062cc;
    color: white;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.skill-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.skill-icon {
    background-color: #f0f7ff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.skill-icon img {
    width: 35px;
    height: 35px;
}

.skill-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.skill-description {
    color: #666;
    line-height: 1.6;
}

/* プログラムタイムライン */
.program-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.program-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 3px;
    background-color: #0062cc;
    z-index: 1;
}

.program-phase {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 100px;
}

.program-phase:last-child {
    margin-bottom: 0;
}

.program-phase::before {
    content: '';
    position: absolute;
    left: 41px;
    top: 25px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0062cc;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(0, 98, 204, 0.2);
}

.phase-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.phase-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0062cc;
    margin-right: 1rem;
}

.phase-title {
    font-size: 1.25rem;
    margin: 0;
    color: #333;
}

.phase-content {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.phase-duration {
    display: inline-block;
    background-color: #f0f7ff;
    color: #0062cc;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 1rem;
}

/* 料金プラン */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 2rem;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid #0062cc;
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0062cc;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom-left-radius: 8px;
}

.pricing-header {
    background-color: #f8f9fa;
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-icon img {
    width: 40px;
    height: 40px;
}

.pricing-title {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
}

.pricing-price {
    margin-bottom: 1rem;
}

.pricing-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #0062cc;
    display: block;
}

.pricing-price .period {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-top: 0.3rem;
}

.pricing-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    color: #555;
}

.pricing-features li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: #0062cc;
}

.pricing-button {
    text-align: center;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 0.9rem;
}

/* FAQ セクション */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    background-color: #fff;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0062cc;
}

.faq-answer {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin-top: 0;
    color: #555;
}

.faq-answer ul {
    padding-left: 1.5rem;
    color: #555;
}

/* CTA セクション */
.cta-section {
    text-align: center;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 2rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* 関連サービス */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* アニメーション */
.animated {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animated.fadeInUp {
    animation: fadeInUp 0.8s forwards;
}

.animated.fadeInLeft {
    animation: fadeInLeft 0.8s forwards;
}

.animated.fadeInRight {
    animation: fadeInRight 0.8s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* パルスボタン */
.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 98, 204, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 98, 204, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 98, 204, 0);
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .service-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .service-overview-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .program-timeline::before {
        left: 25px;
    }
    
    .program-phase {
        padding-left: 60px;
    }
    
    .program-phase::before {
        left: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* 爆速AIマスター塾ページ用の追加CSS */

/* 対象者セクション */
.target-section {
    padding: 80px 0;
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.target-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.target-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.target-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.target-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.target-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.target-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
}

.target-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1.2;
}

/* コース紹介セクション */
.courses-section {
    padding: 80px 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.course-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.course-image {
    position: relative;
    width: 100%;
    height: 250px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.course-content {
    padding: 30px;
}

.course-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.course-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.course-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.course-cta {
    text-align: center;
    margin-top: 20px;
}

.course-note {
    background-color: #D4AF37;
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    border-left: 4px solid var(--primary-color);
}

.note-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
}

.note-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.note-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.note-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.note-content .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* コース詳細セクション */
.course-details {
    padding: 80px 0;
}

.course-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.course-details-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.course-description-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
}

.course-description-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.check-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #666;
    font-size: 16px;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.course-flow {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.course-flow h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.flow-timeline {
    position: relative;
}

.flow-timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.flow-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}

.flow-item:last-child {
    margin-bottom: 0;
}

.flow-day {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 1;
}

.flow-content {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
}

.flow-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.flow-description p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.flow-description p:last-child {
    margin-bottom: 0;
}

.flow-description ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.flow-description ul li {
    color: #666;
    margin-bottom: 5px;
}

.course-details-examples h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.example-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 20px;
}

.example-card:last-child {
    margin-bottom: 0;
}

.example-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.example-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.example-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.example-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.example-content p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.skill-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.skill-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.skill-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skill-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.skill-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.skill-note {
    font-size: 14px;
    color: #888;
    margin-top: 20px;
    text-align: center;
    font-style: italic;
}

/* 講師紹介セクション */
.instructors-section {
    padding: 80px 0;
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.instructor-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.instructor-image {
    width: 100%;
    height: 300px;
}

.instructor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.instructor-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.instructor-position {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.instructor-description {
    margin-bottom: 20px;
    flex-grow: 1;
}

.instructor-description p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.instructor-specialties h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.specialty-tag {
    background-color: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
}

/* 事例紹介・受講生の声セクション */
.testimonials-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    margin: 0 -15px;
    cursor: grab;
}

.testimonials-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin: 0 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-image {
    width: 100%;
    height: 200px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.author-course {
    font-size: 14px;
    color: var(--primary-color);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .course-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .instructors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .course-features {
        grid-template-columns: 1fr;
    }
    
    .skill-cards {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 30px);
    }
}

/* アニメーション強化 */
.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* FAQ セクション強化 */
.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background-color: #fff;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-answer {
    background-color: #f9f9f9;
    padding: 20px;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin-top: 0;
    color: #666;
    line-height: 1.6;
}

.faq-answer ul {
    margin-bottom: 15px;
}

.faq-answer ul li {
    margin-bottom: 5px;
    color: #666;
}