/* Interview Page CSS - インタビューページ専用スタイル */

/* インタビュー専用タブコンテナ */
.interview-tab.tab-container {
  padding-bottom: var(--spacing-xl); /* 下部に余白を追加してボックスの「終わり」を表示 */
}

/* インタビュー専用タブコンテンツ（スクロール機能） */
.interview-tab .tab-content {
  position: relative;
  max-height: 65vh;
  overflow-y: auto;
}

/* スクロールヒント（下向き矢印） */
.interview-tab .tab-content::after {
  content: '↓';
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 173, 169, 0.3);
  pointer-events: none;
  animation: scrollHint 2s ease-in-out infinite;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 10;
}

/* スクロール開始で非表示 */
.interview-tab .tab-content.scrolled-to-bottom::after {
  opacity: 0;
}

/* ふわふわアニメーション */
@keyframes scrollHint {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .interview-tab .tab-content {
    max-height: 65vh;
  }
}

@media (max-width: 768px) {
  .interview-tab .tab-content {
    max-height: 60vh;
  }
  
  .interview-tab .tab-content::after {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 15px;
  }
}

@media (max-width: 480px) {
  .interview-tab .tab-content::after {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 12px;
  }
}

/* ========================================
   講師インタビュー - ストライプ型
   ======================================== */

.lecturer-section {
  margin-bottom: 0;
}

.lecturer-heading {
  background: linear-gradient(135deg, #00ADA9 0%, #008B88 100%);
  padding: 30px 40px;
  color: white;
  position: relative;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.lecturer-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: #FFF174;
}

.lecturer-text {
  background: white;
  padding: 30px 40px;
  border-bottom: 2px solid #f0f0f0;
  font-size: 15px;
  color: #333;
  line-height: 1.9;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .lecturer-heading,
  .lecturer-text {
    padding: 20px 25px;
  }

  .lecturer-heading {
    font-size: 16px;
  }

  .lecturer-text {
    font-size: 14px;
  }
}
