/**
 * Video LP - BIM/CIM Malmeセミナー スタイルシート（レスポンシブ対応版）
 * 
 * 目次:
 * 1. CSS変数（カスタムプロパティ）
 * 2. ベーススタイル・リセット
 * 3. 共通コンポーネント
 * 4. ファーストビュー
 * 5. スライダー
 * 6. おすすめセクション
 * 7. 特徴セクション
 * 8. 選ぶ理由セクション
 * 9. CTAセクション
 * 10. 学習コンテンツセクション
 * 11. 受講の流れセクション
 * 12. プランセクション
 * 13. レビューセクション
 * 14. フッター
 * 15. レスポンシブ（タブレット: 768px - 1024px）
 * 16. レスポンシブ（スマートフォン: ~ 767px）
 * 17. レスポンシブ（超小型: ~ 375px）
 */

/* ==========================================================================
   1. CSS変数（カスタムプロパティ）
   ========================================================================== */
:root {
  /* カラーパレット */
  --primary-purple: #2c1244;
  --primary-purple-light: #613375;
  --primary-purple-dark: #0e1226;
  --accent-purple: #7c3aed;
  --accent-pink: #f472b6;
  --accent-magenta: #d4005c;
  
  /* グラデーション */
  --gradient-title: linear-gradient(to right, #2563eb, #f472b6);
  --gradient-cta: linear-gradient(90deg, #d4005c, #32164f);
  --gradient-reason: linear-gradient(90deg, #2c1244, #a2597d);
  --gradient-chapter: linear-gradient(90deg, #d4005c, #32164f);
  --gradient-toc: linear-gradient(90deg, #5170ff, #fd98b9);
  
  /* テキストカラー */
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  
  /* カードスタイル */
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
  
  /* スペーシング */
  --section-padding-y: clamp(30px, 6vw, 60px);
  --container-max-width: 1200px;
  --container-padding: clamp(15px, 4vw, 40px);
  
  /* トランジション */
  --transition-base: 0.3s ease;
  
  /* フォントサイズ */
  --font-size-xs: clamp(12px, 2vw, 14px);
  --font-size-sm: clamp(13px, 2.5vw, 16px);
  --font-size-base: clamp(14px, 3vw, 18px);
  --font-size-lg: clamp(16px, 3.5vw, 20px);
  --font-size-xl: clamp(18px, 4vw, 24px);
  --font-size-2xl: clamp(24px, 5vw, 32px);
  --font-size-3xl: clamp(28px, 6vw, 48px);
  --font-size-4xl: clamp(36px, 8vw, 52px);
}

/* ==========================================================================
   2. ベーススタイル・リセット
   ========================================================================== */
.video-lp {
  padding: 0;
  background-color: #1F1135;
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

.video-lp *,
.video-lp *::before,
.video-lp *::after {
  box-sizing: border-box;
}

.video-lp img {
  max-width: 100%;
  height: auto;
  display: block;
}

.video-lp a {
  text-decoration: none;
  color: inherit;
}

.video-lp ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   3. 共通コンポーネント
   ========================================================================== */
.gradient-title {
  background: var(--gradient-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin: 20px var(--container-padding);
  font-size: var(--font-size-2xl);
  font-weight: bold;
}

/* ==========================================================================
   4. ファーストビュー
   ========================================================================== */
.video-fv {
  width: 100%;
  padding: clamp(20px, 4vw, 40px) var(--container-padding);
}

.fv-center {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(15px, 3vw, 30px);
}

.fv-left {
  flex: 1 1 450px;
  max-width: 800px;
  text-align: center;
}

 .fv-center a{
    position: relative;
    top: -200px;
    left: -320px;
}

 .fv-center .fv-cta-link img{
  max-width: 420px;
}



.fv-left img {
  width: 100%;
  max-height: 530px;
  object-fit: contain;
}

.fv-right {
  flex: 0 1 350px;
  text-align: center;
  position: relative;
}

.fv-right img {
  width: 100%;
  max-height: 530px;
  object-fit: contain;
}

.fv-name {
  position: relative;
  right: -180px;
  top: -80px;
  width: 160px;
}

/* ==========================================================================
   5. スライダー
   ========================================================================== */
.slider-section {
  background: #1F1135;
  padding: clamp(2rem, 5vw, 4rem) 0;
  overflow: hidden;
}

.infinite-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.infinite-slider-wrapper::before,
.infinite-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(50px, 10vw, 100px);
  z-index: 10;
  pointer-events: none;
}

.infinite-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--primary-purple), transparent);
}

.infinite-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--primary-purple), transparent);
}

.infinite-slider-track {
  display: flex;
  width: max-content;
  animation: infiniteScroll 20s linear infinite;
}

.infinite-slider-track:hover {
  animation-play-state: paused;
}

@keyframes infiniteScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.slide-card {
  flex-shrink: 0;
  width: clamp(280px, 30vw, 350px);
  margin: 0 1rem;
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
}

.slide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.3);
  border-color: var(--accent-purple);
}

.slide-image {
  width: 100%;
  height: clamp(150px, 20vw, 200px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image.slide-bg-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.slide-image.slide-bg-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.slide-image.slide-bg-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

/* ==========================================================================
   6. おすすめセクション
   ========================================================================== */
.video-recommend {
  padding: var(--section-padding-y) 0;
}

.box-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 4vw, 40px);
  padding: 0 var(--container-padding);
}

.box {
  min-height: clamp(150px, 20vw, 200px);
  background-color: var(--primary-purple-light);
  border: 1px solid var(--text-white);
  border-radius: 8px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(35px, 5vw, 50px) clamp(12px, 3vw, 20px) clamp(15px, 3vw, 25px);
}

.box-title {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-purple);
  color: var(--text-white);
  font-size: var(--font-size-xs);
  font-weight: normal;
  margin: 0;
  padding: 6px 12px;
  border-radius: 8px 0 8px 0;
}

.box-content {
  color: var(--text-white);
  font-size: var(--font-size-lg);
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   7. 特徴セクション
   ========================================================================== */
.video-features {
  padding: var(--section-padding-y) 0;
}

.section-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 var(--container-padding);
  gap: clamp(30px, 5vw, 60px);
}

.section-text {
  flex: 1 1 450px;
}

.text-block {
  margin-bottom: clamp(30px, 5vw, 50px);
}

.text-title {
  color: var(--text-white);
  font-size: var(--font-size-xl);
  font-weight: bold;
  margin: 0 0 10px 0;
}

.text-content {
  color: var(--text-white);
  font-size: var(--font-size-sm);
  font-weight: normal;
  line-height: 1.8;
  margin: 0;
}

.section-link {
  display: inline-block;
  margin-top: 20px;
  transition: opacity var(--transition-base);
}

.section-link:hover {
  opacity: 0.7;
}

.section-link img {
  width: 100%;
  max-width: 420px;
}

.section-image-box {
  flex: 1 1 400px;
  min-height: clamp(200px, 30vw, 350px);
  background-image: url('https://bimcim-hub.com/wp-content/uploads/2025/12/recomend-back.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* ==========================================================================
   8. 選ぶ理由セクション
   ========================================================================== */
.video-reason {
  background: var(--gradient-reason);
  width: 100%;
  padding: var(--section-padding-y) 0;
}

.feature-wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 4vw, 40px);
  margin-bottom: clamp(20px, 4vw, 30px);
}

.feature-card-small {
  min-height: clamp(200px, 25vw, 300px);
  background-color: var(--primary-purple-dark);
  padding: clamp(20px, 4vw, 30px);
  border-radius: 8px;
}

.feature-card-large {
  width: 100%;
  min-height: 200px;
  background-color: var(--primary-purple-dark);
  padding: clamp(20px, 4vw, 30px);
  border-radius: 8px;
}

.feature-heading {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
}

.heading-num {
  font-size: var(--font-size-4xl);
  font-weight: bold;
  color: var(--text-white);
}

.heading-label {
  font-size: var(--font-size-xl);
  font-weight: bold;
  background: var(--gradient-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-desc {
  color: var(--text-white);
  font-size: var(--font-size-xl);
  line-height: 1.6;
  margin: 0;
}

.small-desc {
  color: var(--text-white);
  font-size: var(--font-size-xs);
  line-height: 1.6;
  margin: 10px 0;
}

.feature-done {
  margin-top: clamp(15px, 3vw, 25px);
  text-align: right;
}

.feature-feature {
  color: var(--text-white);
  font-size: var(--font-size-xl);
  line-height: 1.6;
}

.feature-num {
  font-size: var(--font-size-4xl);
  font-weight: bold;
  color: var(--text-white);
  margin: 0 10px;
  text-shadow: 0 0 10px var(--text-white), 0 0 20px var(--text-white), 0 0 40px var(--text-white);
}

.chatbot {
  display: block;
  max-width: 600px;
  margin: clamp(20px, 4vw, 40px) auto;
}

/* ==========================================================================
   9. CTAセクション
   ========================================================================== */
.video-cta {
  background: var(--gradient-cta);
  padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.watch-video {
  width: 1120px;
  height:630px;
}

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

.button-text {
  color: var(--text-white);
  font-size: clamp(16px, 2.5vw, 24px);
  margin: 0 0 20px 0;
  white-space: nowrap;
}

.button-link {
  display: inline-block;
  transition: opacity var(--transition-base);
}

.button-link:hover {
  opacity: 0.8;
}

.button-img {
  width: 500px;
}

.cta-side {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
}

.button-side-icon {
  width: 150px;
  height: auto;
  display: block;
}

/* ==========================================================================
   10. 学習コンテンツセクション
   ========================================================================== */
.video-learn {
  padding: var(--section-padding-y) 0;
}

.learn-wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: clamp(15px, 3vw, 40px) var(--container-padding);
}

.learn-chapter {
  margin-bottom: clamp(40px, 6vw, 60px);
}

.learn-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(10px, 2vw, 15px);
  margin-bottom: clamp(15px, 3vw, 30px);
}

.learn-subtitle {
  margin-bottom: clamp(20px, 3vw, 30px);
}

.learn-toc-header {
  margin-bottom: clamp(15px, 2vw, 20px);
}

.learn-under-title {
  font-size: var(--font-size-xl);
  border-bottom: 1px solid var(--text-white);
  padding-bottom: 5px;
  color: var(--text-white);
  display: inline-block;
}

.learn-num {
  background: var(--gradient-chapter);
  color: var(--text-white);
  font-size: var(--font-size-xl);
  font-weight: bold;
  padding: 3px 10px;
  border-radius: 5px;
  white-space: nowrap;
}

.learn-label {
  color: var(--text-white);
  font-size: var(--font-size-lg);
  font-weight: bold;
}

.learn-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
  margin-bottom: clamp(30px, 5vw, 40px);
}

.learn-img {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
}

.learn-button {
  display: inline-block;
  transition: opacity var(--transition-base);
  max-width: 420px;
  
}

.learn-button:hover {
  opacity: 0.8;
}

.learn-button-img {
  max-width: 300px;
  width: 100%;
}

/* 目次 */
.toc-wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto clamp(30px, 5vw, 60px) auto;
}

.toc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 40px);
}

.toc-list--large {
  /* 10項目の場合は高さ調整不要、gridで自動配置 */
}

.toc-item {
  display: flex;
  align-items: baseline;
  gap: clamp(8px, 1.5vw, 12px);
}

.toc-num {
  background: var(--gradient-toc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--font-size-lg);
  flex-shrink: 0;
}

.toc-title {
  color: var(--text-white);
  font-size: var(--font-size-lg);
}

.toc-button {
  display: block;
  max-width:420px;
  width: fit-content;
  margin: clamp(20px, 4vw, 30px) auto 0;
  transition: opacity var(--transition-base);
}

.toc-button:hover {
  opacity: 0.8;
}

/* ==========================================================================
   11. 受講の流れセクション
   ========================================================================== */
.video-flow {
  padding: var(--section-padding-y) 0;
}

.flow-wrapper {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: clamp(15px, 3vw, 40px) var(--container-padding);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(15px, 3vw, 25px);
}

.flow-step {
  flex: 1 1 250px;
  max-width: 320px;
  text-align: center;
}

.step-img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.step-label {
  color: var(--text-white);
  font-weight: bold;
  font-size: var(--font-size-base);
  margin: clamp(8px, 2vw, 15px) 0;
  position: relative;
  top: -65px;
}

.step-content {
  color: var(--text-white);
  font-size: var(--font-size-xs);
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.flow-arrow {
  display: flex;
  align-items: center;
  padding-top: clamp(80px, 12vw, 120px);
}

.flow-arrow img {
  width: clamp(18px, 3vw, 22px);
}

/* ==========================================================================
   12. プランセクション
   ========================================================================== */
.video-plan {
  padding: var(--section-padding-y) 0;
}

.split-wrapper {
  max-width: var(--container-max-width);
  margin: clamp(20px, 4vw, 30px) auto;
  margin-left: var(--container-padding);
  margin-right: var(--container-padding);
  display: flex;
  flex-wrap: wrap;
  background: #6b4b8b;
  padding: clamp(20px, 4vw, 30px);
  border-radius: 8px;
}

.split-left {
  flex: 1 1 280px;
  padding: clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--text-white);
}

.split-right {
  flex: 1 1 280px;
  padding: clamp(20px, 4vw, 40px);
}

.split-text {
  color: var(--text-white);
  font-size: var(--font-size-xl);
  font-weight: bold;
  margin: 0 0 10px 0;
}

.split-heading {
  font-size: var(--font-size-lg);
}

.split-price {
  font-size: var(--font-size-2xl);
}

.split-tax {
  font-size: var(--font-size-sm);
  font-weight: normal;
}

.split-list {
  color: var(--text-white);
  font-size: var(--font-size-xl);
  font-weight: bold;
  margin: 10px 0 0 0;
  padding-left: 20px;
  list-style: disc;
}

.split-list li {
  margin-bottom: 8px;
}

/* ==========================================================================
   13. レビューセクション
   ========================================================================== */
.video-review {
  padding: var(--section-padding-y) 0;
}

.voice-wrapper {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}

.voice-content {

  overflow: hidden;
}

.voice-img {
  width: 500px;
}

.voice-body {
  padding: clamp(15px, 3vw, 20px);
}

.voice-label {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 clamp(10px, 2vw, 15px) 10px;
  color: var(--text-white);
  position: relative;
  top: -75px;
}

.voice-text {
  font-size: 18px;
  margin: 0 0 10px 0;
  line-height: 1.6;
  color: var(--text-white);
  
}

/* CTA（最下部） */
.video-cta-bottom {
  background: var(--gradient-cta);
  padding: clamp(40px, 8vw, 80px) var(--container-padding);
  text-align: center;
}

.bottom-text {
  font-size: var(--font-size-3xl);
  color: var(--text-white);
  text-shadow:
    3px 0 0 #000,
    -3px 0 0 #000,
    0 3px 0 #000,
    0 -3px 0 #000,
    3px 3px 0 #000,
    -3px 3px 0 #000,
    3px -3px 0 #000,
    -3px -3px 0 #000;
  margin: 0 0 clamp(20px, 4vw, 30px) 0;
  line-height: 1.3;
}

/* ==========================================================================
   14. フッター
   ========================================================================== */
.video-footer {
  width: 100%;
  text-align: center;
}

.foot-content {
  padding: clamp(40px, 8vw, 80px) var(--container-padding);
  background: #1F1135;
}

.corp-logo {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.foot {
  width: 100%;
  min-height: clamp(180px, 25vw, 300px);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  background-image: url('https://bimcim-hub.com/wp-content/uploads/2025/12/video-footer.png.webp');
  position: relative;
}

.bottom-parts {
  position: absolute;
  bottom: clamp(15px, 3vw, 30px);
  left: 0;
  right: 0;
  padding: clamp(10px, 2vw, 20px) var(--container-padding);
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: clamp(15px, 3vw, 20px);
  margin: 0 0 clamp(20px, 4vw, 30px) 0;
}

.footer-sns-link {
  display: inline-block;
  transition: opacity var(--transition-base);
}

.footer-sns-link:hover {
  opacity: 0.7;
}

.footer-sns-icon {
  width: clamp(32px, 5vw, 40px);
  height: clamp(32px, 5vw, 40px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 2vw, 15px) clamp(20px, 4vw, 30px);
  margin: 0 0 clamp(15px, 3vw, 20px) 0;
}

.footer-link {
  color: var(--text-white);
  font-size: var(--font-size-xs);
  transition: opacity var(--transition-base);
}

.footer-link:hover {
  opacity: 0.7;
}

.copyright {
  color: var(--text-white);
  font-size: 12px;
  margin: 0;
}

/* ==========================================================================
   15. レスポンシブ（タブレット: 768px - 1024px）
   ========================================================================== */
@media screen and (max-width: 1024px) {
  /* FV */
  .fv-name {
    position: relative;
    right: -200px;
    top: -80px;
    width: 160px;
  }

  /* 特徴セクション */
  .section-container {
    flex-direction: column;
  }

  .section-text {
    flex: 1 1 100%;
    order: 1;
  }

  .section-image-box {
    flex: 1 1 100%;
    max-width: 500px;
    order: 2;
  }

  /* CTAセクション */
  .video-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 30px;
    padding: clamp(40px, 6vw, 60px) var(--container-padding);
  }

  .cta-spacer {
    display: none;
  }

  .button-text {
    white-space: normal;
    font-size: var(--font-size-xl);
  }

  .button-img {
    width: 250px;
  }

  .cta-side {
    justify-content: center;
    padding-left: 0;
  }

  .button-side-icon {
    width: 120px;
  }

  /* 受講の流れ */
  .flow-arrow {
    display: none;
  }

  .flow-wrapper {
    gap: 30px;
  }

  /* プラン */
  .split-left {
    border-right: none;
    border-bottom: 1px solid var(--text-white);
  }
}

/* ==========================================================================
   16. レスポンシブ（スマートフォン: ~ 767px）
   ========================================================================== */
@media screen and (max-width: 767px) {
  /* FV */
  .fv-center {
    flex-direction: column;
    align-items: center;
  }
  
  .fv-center a{
    position: absolute;
        top: 3.6%;
        left: 10%;
  }

  .fv-center .fv-cta-link img{
   max-width: 180px;
  }
  
  .section-link{
  }

  .learn-button img {  
    max-width: 370px;
  }

  /* スライダー */
  .slide-card {
    width: 260px;
  }

  /* 目次 - 1列に */
  .toc-list {
    grid-template-columns: 1fr;
  }

  /* 受講の流れ */
  .flow-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .flow-step {
    max-width: 100%;
    width: 100%;
  }

  .step-content {
    text-align: center;
  }

  /* プラン */
  .split-wrapper {
    flex-direction: column;
  }

  .split-left {
    border-right: none;
    border-bottom: 1px solid var(--text-white);
  }

  /* レビュー */
  .voice-wrapper {
    grid-template-columns: 1fr;
  }

  /* CTAセクション */
  .cta-side {
    display: none;
  }

  .button-img {
    width: 200px;
  }
  
  .section-container .section-link{
    position: absolute;
    width: 200px;
  left: 50%;
  transform: translateX(-50%);

  }
  
  .learn-chapter .learn-button{
    margin: 0 auto;
    width: 200px;
    display: block;
  }
  .learn-wrapper  .toc-button{
    margin: 0 auto;
    width: 200px;
    display: block;
  }
  
  .split-left {
   flex: 1 1 0;
  }

  .split-right {
   flex: 1 1 0;
  }
 
  .watch-video {
     width: auto;
     height: auto;
  }
  .step-label {
      color: var(--text-white);
    font-weight: bold;
    font-size: 24px;
    margin: clamp(8px, 2vw, 15px) 0;
    position: relative;
    top: -80px;
  }
}

/* ==========================================================================
   17. レスポンシブ（超小型: ~ 375px）
   ========================================================================== */
@media screen and (max-width: 450px) {
  /* スライダー */
  .slide-card {
    width: 240px;
    margin: 0 0.5rem;
  }

  /* ボックス */
  .box {
    padding: 30px 10px 15px;
  }

  /* 学習セクション */
  .learn-title {
    flex-direction: column;
    align-items: flex-start;
  }

  /* 目次 */
  .toc-item {
    flex-direction: column;
    gap: 5px;
  }

  /* 価格表示 */
  .feature-done {
    text-align: center;
  }
  
   .watch-video {
     width: auto;
     height: auto;
  }
  
    .fv-center a{
     position: absolute;
     top: 3.3%;
     left: 10%;
  }

  .fv-center .fv-cta-link img{
   max-width: 140px;
  }
  
  
}

/* ==========================================================================
   アクセシビリティ対応
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .infinite-slider-track {
    animation: none;
  }
  
  .slide-card:hover {
    transform: none;
  }
  
  * {
    transition: none !important;
  }
}
