/* ==========================================================================
   aboutセクション専用CSS - クリーン版
   ========================================================================== */

/* ==========================================================================
   基本セクションスタイル
   ========================================================================== */
#about {
  background: var(--white);
  margin-top: 0;
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--scroll-offset);
}

/* ==========================================================================
   背景装飾図形 - バランス良く配置
   ========================================================================== */
#about::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: rgba(210, 220, 240, 0.3);
  border-radius: 50%;
  z-index: 1;
}

#about::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: rgba(200, 230, 250, 0.25);
  border-radius: 50%;
  z-index: 1;
}

/* 追加の右側装飾図形 */
.about-section-container::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: rgba(180, 210, 255, 0.2);
  border-radius: 50%;
  z-index: 1;
}

/* 追加の左下装飾図形 */
.about-section-container::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(220, 235, 255, 0.15);
  border-radius: 50%;
  z-index: 1;
}

/* ==========================================================================
   aboutセクションコンテナ
   ========================================================================== */
.about-section-container {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  padding: 60px 40px;
  z-index: 2;
}

/* ==========================================================================
   セクションタイトルとコンテンツ
   ========================================================================== */
.section-title {
  font-size: clamp(32px, 6vw, 52px);
  color: var(--navy-dark);
  margin-bottom: 20px;
  font-weight: 800;
  position: relative;
  z-index: 2;
}

.section-subtitle {
  font-size: clamp(18px, 3vw, 26px);
  color: var(--navy-dark);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.section-description {
  font-size: clamp(16px, 2.5vw, 22px);
  color: var(--gray-medium);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.section-content-wide {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--gray-medium);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  /* 自然な日本語改行設定 */
  word-break: auto-phrase;
  overflow-wrap: break-word;
  text-align: center;
  line-height: 1.7;
}

/* ==========================================================================
   次世代型バッジ
   ========================================================================== */
.next-gen-badge {
  display: inline-block;
  background: #e91e63;
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(233, 30, 99, 0.4);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.next-gen-badge:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   強調テキスト
   ========================================================================== */
.text-blue-emphasis {
  color: var(--primary-blue);
  font-weight: var(--font-weight-heavy);
}

/* ==========================================================================
   動画ギャラリー
   ========================================================================== */
.video-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.video-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-blue);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-card-media {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover video {
  transform: scale(1.05);
}

.video-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-card-title {
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}

/* ==========================================================================
   3つの特徴タイトル
   ========================================================================== */
.features-title {
  font-size: 36px;
  font-weight: var(--font-weight-bold);
  color: var(--navy-dark);
  text-align: center;
  margin: 80px 0 50px 0;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   aboutハイライト
   ========================================================================== */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.about-highlight-item {
  background: var(--white);
  padding: 30px 25px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(74, 144, 226, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-highlight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(74, 144, 226, 0.2);
}

.about-highlight-item h3 {
  color: var(--navy-dark);
  margin-bottom: 15px;
  font-size: 20px;
}

.about-highlight-item p {
  font-size: 16px;
  color: var(--gray-medium);
  margin-bottom: 0;
}

/* ==========================================================================
   レスポンシブ対応
   ========================================================================== */

/* 大きなタブレット: 3列 */
@media (max-width: 1200px) {
  .video-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
  }
}

/* タブレット: 2列 */
@media (max-width: 992px) {
  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 40px auto;
    padding: 0 15px;
  }
  
  .video-card-media {
    height: 140px;
  }
  
  .video-card-title {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-section-container {
    padding: 40px 25px;
  }
  
  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px auto;
    padding: 0 10px;
  }
  
  .video-card {
    border-width: 2px;
    border-radius: 20px;
  }
  
  .video-card-media {
    height: 120px;
  }
  
  .video-card-content {
    padding: 15px;
  }
  
  .video-card-title {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .about-highlight-item {
    padding: 25px 20px;
  }
  
  /* 背景図形のモバイル調整 */
  #about::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
  }
  
  #about::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
  }
  
  .about-section-container::before {
    width: 150px;
    height: 150px;
    top: -50px;
    right: -50px;
  }
  
  .about-section-container::after {
    width: 120px;
    height: 120px;
    bottom: -40px;
    left: -40px;
  }
}

/* モバイル: 1列 */
@media (max-width: 480px) {
  .about-section-container {
    padding: 30px 20px;
  }
  
  .video-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 320px;
    margin: 25px auto;
    padding: 0 15px;
  }
  
  .video-card {
    max-width: 280px;
    margin: 0 auto;
  }
  
  .video-card-media {
    height: 180px;
  }
  
  .video-card-title {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .about-highlight-item {
    padding: 20px 15px;
  }
  
  /* 背景図形のさらなるモバイル調整 */
  #about::before {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
  }
  
  #about::after {
    width: 180px;
    height: 180px;
    bottom: -40px;
    right: -40px;
  }
  
  .about-section-container::before {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
  }
  
  .about-section-container::after {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -20px;
  }
}

@media (max-width: 360px) {
  .video-gallery {
    max-width: 250px;
    padding: 0 10px;
  }
  
  .video-card {
    max-width: 230px;
  }
  
  .video-card-title {
    font-size: 13px;
  }
}

/* ==========================================================================
   アクセシビリティ対応
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .video-card,
  .about-highlight-item,
  .next-gen-badge {
    transition: none;
  }
  
  .video-card:hover,
  .about-highlight-item:hover,
  .next-gen-badge:hover {
    transform: none;
  }
} 