/* ==========================================================================
   igoコーポレーション — トップページ / 通信制ページのセクション
   --------------------------------------------------------------------------
   目次
     1. CTAボタン（.cta-buttons / .cta-btn）
     2. 研修一覧（.training-index / .training-cat / .training-list）
     3. 生成AIを学習する3つのメリット（.benefits-section / .benefit-card / .stat-item）
     4. 3つの講座（.courses-section / .course-card / .courses-custom）
     5. 研修で得られるスキル（.skills-section / .skill-item）
     6. 受講の仕組み（.method-section / .method-item / .support-box / .flow-list）
     7. 添削と質疑応答（.support-section / .teacher-card / .support-promise / .outcome-*）
     8. 研修資料ダウンロード（.sns-consult-section / .sns-btn / .wpdm-download-link）
     9. SVGアイコン共通（.icon — 定義は各HTMLの svg.svg-defs、参照は <use href="#i-名前">）
    10. 印刷・アクセシビリティ（末尾に統合済み）
   --------------------------------------------------------------------------
   共通の約束
     - セクション見出し帯 = .ai-section__title1（オレンジ単色 #E66528・全幅）
     - アクセントカラー   = #F05500（バー・アイコン）／ボタン・帯は #E66528
     - カードは .reveal で順に表示（main.js が自動付与・スタッガー制御）
   ========================================================================== */

/* ========================================================================
   CTAボタン
   ======================================================================== */
/* ボタンコンテナのスタイル */
.cta-buttons {
    display: flex;
    gap: 12px;
    background: white;
        padding: 9px 8px; /* 余白を調整 */
    border-radius: 50px; /* ボタンと統一感を出す */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    justify-content: flex-start;
    align-items: center;
    width: fit-content;
    margin: 30px 0 30px 20px; /* 左寄せ */
}

/* ボタンスタイル */
.cta-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px; /* 少し小さく */
    border: none;
    border-radius: 50px;
    font-size: 14px; /* 可読性を考慮しつつ小さめ */
    font-weight: bold;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    text-decoration: none; /* リンクの下線を消す */
}

.cta-btn:first-child {
    background: #e63946;
}

.cta-btn:last-child {
    background: #f77f00;
}

.cta-btn span {
    display: flex;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease-out;
}

.cta-btn span i {
    margin-left: 8px;
    transition: transform 0.3s ease-out;
}

/* ホバー時のアニメーション */
.cta-btn:hover span {
    transform: translateX(5px);
}

.cta-btn:hover span i {
    transform: translateX(3px);
}

/* タブレット（横向き）: 中央揃え */
@media (max-width: 1024px) {
    .cta-buttons {
        margin: 30px auto; /* 中央配置 */
        justify-content: center;
    }
}

/* スマホ: 2段で中央配置、ボタンをさらに小さく */
@media (max-width: 600px) {
    .cta-buttons {
                flex-direction: column;
align-items: center;
padding: 3px 20px;
margin: 0px auto;
background: none;
    }
    .cta-btn {
        padding: 10px 18px; /* スマホで少しコンパクトに */
        font-size: 13px;
    }
}
    

/* ========================================================================
   研修一覧（トップページ）
   ======================================================================== */
/* ============================================
   研修一覧セクション
   ============================================ */
.training-index {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", Roboto, sans-serif;
  color: #222831;
  line-height: 1.6;
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--space-section) 16px;
  /* 他セクションと同じ背景色。コンテナ幅のまま背景だけ画面全幅に敷く
     （box-shadow を左右 100vmax に伸ばし、clip-path ではみ出しを切る手法） */
  background: #f8f9fa;
  box-shadow: 0 0 0 100vmax #f8f9fa;
  clip-path: inset(0 -100vmax);
}

/* 全体見出し */
.training-index__title {
  margin: 0 0 12px;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #222831;
}

.training-index__title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: #F05500;
}

.training-index__lead {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 40px;
}

/* カテゴリカード */
.training-cat {
  --cat: #F05500;
  --cat-light: #fff8f2;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  margin-bottom: 30px;
}

.training-cat:last-child {
  margin-bottom: 0;
}

.training-cat--ai {
  --cat: #F05500;
  --cat-light: #fff8f2;
}

.training-cat--exec {
  --cat: #1565C0;
  --cat-light: #f3f8fd;
}

.training-cat--staff {
  --cat: #00796B;
  --cat-light: #f1faf8;
}

/* カテゴリ見出し（帯） */
.training-cat__title {
  margin: 0;
  padding: 18px 30px;
  background: var(--cat);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.training-cat--ai .training-cat__title {
  background: #F05500;
}

.training-cat__body {
  padding: 30px 30px 34px;
}

/* サブカテゴリ見出し */
.training-group + .training-group {
  margin-top: 30px;
}

.training-group__title {
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 5px solid var(--cat);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #222831;
}

.training-group__title a {
  color: #222831;
  text-decoration: none;
  transition: color 0.2s ease;
}

.training-group__title a::after {
  content: '→';
  display: inline-block;
  margin-left: 10px;
  color: var(--cat);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.training-group__title a:hover {
  color: var(--cat);
}

.training-group__title a:hover::after {
  transform: translateX(5px);
}

/* 研修リスト */
.training-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.training-list:last-child {
  margin-bottom: 0;
}

.training-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 13px 16px 13px 32px;
  background: #f8f9fa;
  border: 1px solid #eceff1;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #37414d;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.training-list li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cat);
}

.training-list li:hover {
  background: var(--cat-light);
  border-color: var(--cat);
  transform: translateY(-2px);
}

/* リンク付きの項目（カード全体をクリック可能に） */
.training-list li a {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.training-list li a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
}

.training-list li:has(a) {
  padding-right: 30px;
  cursor: pointer;
  background: var(--cat-light);
  border-color: #f3d9c4;
}

.training-list li:has(a)::after {
  content: '›';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cat);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
}

.training-list li:has(a):hover::after {
  transform: translate(3px, -50%);
}

/* ---- レスポンシブ ---- */
@media (max-width: 767px) {
  .training-index {
    padding-inline: 12px;
  }
  .training-index__title {
    font-size: 1.45rem;
  }
  .training-cat__title {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .training-cat__body {
    padding: 22px 18px 26px;
  }
  .training-group__title {
    font-size: 1rem;
  }
  .training-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .training-list li {
    min-height: 0;
  }
}

/* ========================================================================
   生成AIを学習する3つのメリット
   ======================================================================== */
/* WordPressブロック対応スタイル */
.wp-block-ai-benefits {
    width: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #222831;
    line-height: 1.6;
}

/* セクション共通スタイル */
.ai-section {
    margin-bottom: 0;
    padding: var(--space-section) 20px;
    width: 100%;
}

.ai-section__content {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-section__title {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 30px;
    color: #222831;
    position: relative;
}

.ai-section__title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 2px;
    background: #F05500;
    margin: 16px auto 0;
}

.ai-section__image {
    text-align: center;
    margin-bottom: 50px;
}

.ai-section__image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    /* ベースCSSの img { display: block } により text-align では中央にならないため */
    margin-inline: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(34, 40, 49, 0.15);
    transition: transform 0.3s ease;
}

.ai-section__image img:hover {
    transform: scale(1.05);
}

/* メリットセクション - 白背景バージョン */
.benefits-section {
    background: white;
    color: #222831;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(240,85,0,0.05)"/><circle cx="80" cy="20" r="1.5" fill="rgba(240,85,0,0.05)"/><circle cx="40" cy="60" r="1" fill="rgba(240,85,0,0.05)"/><circle cx="70" cy="80" r="2.5" fill="rgba(240,85,0,0.05)"/></svg>');

}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #F05500;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #F05500;
    box-shadow: 0 15px 40px rgba(240, 85, 0, 0.15);
}

.benefit-card__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.benefit-card__title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #222831;
    text-align: center;
}

.benefit-card__stat {
    font-size: 2rem;
    font-weight: bold;
    color: #F05500;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(240, 85, 0, 0.1);
    text-align: center;
}

.benefit-card__stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-card__description {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
    text-align: center;
    font-size: 0.9rem;
}

.benefit-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-card__list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.benefit-card__list li:hover {
    color: #222831;
}

.benefit-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    color: white;
    font-weight: bold;
    background: #F05500;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-card__list li::before {
    background: #ff6b35;
    transform: scale(1.1);
}

/* 統計情報の追加表示 */
.stats-section {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    border-top: 2px solid #f0f0f0;
    padding-top: 40px;
}

.stat-item {
    text-align: center;
    background: #f8f9fa;
    padding: 30px 20px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #F05500;
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(240, 85, 0, 0.1);
}

.stat-item__number {
    font-size: 3rem;
    font-weight: bold;
    color: #F05500;
    text-shadow: 2px 2px 4px rgba(240, 85, 0, 0.1);
    margin-bottom: 10px;
}

.stat-item__label {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .ai-section__image img {
        max-width: 350px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 35px 30px;
    }
    
    .benefit-card__icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .benefit-card__title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .benefit-card__stat {
        font-size: 2.5rem;
    }
    
    .benefit-card__stat-label {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .benefit-card__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .benefit-card__list li {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-left: 30px;
    }
    
    .benefit-card__list li::before {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
        top: 2px;
    }
}

@media (max-width: 768px) {
    .ai-section {
        padding-inline: 15px;
    }

    .ai-section__title {
        font-size: 1.8rem;
    }

    .ai-section__image img {
        max-width: 280px;
        border-radius: 10px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit-card {
        padding: 25px;
    }

    .benefit-card__stat {
        font-size: 2rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 25px 15px;
    }

    .stat-item__number {
        font-size: 2rem;
    }
}

/* WordPressエディタ内での見栄え調整 */

/* 印刷対応 */

/* アクセシビリティ対応 */

/* 高コントラストモード対応 */

    

/* ========================================================================
   3つの講座
   ======================================================================== */
/* WordPressブロック対応スタイル */
.wp-block-ai-courses {
    width: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #222831;
    line-height: 1.6;
}

/* セクション共通スタイル */

.ai-section__title1 {
    font-family: "Noto Sans JP", Sans-serif;
    letter-spacing: 0.04em;
    font-size: 35px;
    font-weight: 700;
    line-height: 50px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding: 40px 40px;
    background: #E66528;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.ai-section__title1::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.85);
}

/* 講座セクション */
.courses-section {
    background: #f8f9fa;
}

/* アンカーリンクで飛んできたときに見出しが隠れないようにする
   （固定ヘッダーの高さに合わせて数値を調整してください） */
#ai-courses {
    scroll-margin-top: 80px;
}

.courses-section .ai-section__content {
    position: relative;
}

.courses-lead {
    text-align: center;
    color: #555;
    font-size: 1rem;
    max-width: 900px;
    margin: -20px auto 0;
}

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

.course-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.course-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: #F05500;
}

/* 各カードカラー */
.course-card:nth-child(1)::before {
    background: #F05500;
}

.course-card:nth-child(2)::before {
    background: #1976D2;
}

.course-card:nth-child(3)::before {
    background: #7B1FA2;
}

.course-card__level {
    display: inline-block;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.course-card:nth-child(1) .course-card__level {
    background: #F05500;
}

.course-card:nth-child(2) .course-card__level {
    background: #1976D2;
}

.course-card:nth-child(3) .course-card__level {
    background: #7B1FA2;
}

.course-card__title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222831;
    text-align: center;
    line-height: 1.55;
}

.course-card__description {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.7;
    flex-grow: 1;
    text-align: left;
    font-size: 0.95rem;
}

.course-card__duration {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F05500;
    font-weight: bold;
    margin-top: auto;
}

.course-card__duration::before {
    content: '';
    width: 18px;
    height: 18px;
    margin-right: 8px;
    background: currentColor;
    -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>') no-repeat center / contain;
    mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>') no-repeat center / contain;
}

/* アイコン追加 */
.course-card__icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
}

.course-card:nth-child(1) .course-card__icon {
    color: #F05500;
}

.course-card:nth-child(2) .course-card__icon {
    color: #1976D2;
}

.course-card:nth-child(3) .course-card__icon {
    color: #7B1FA2;
}

/* 業種別カスタマイズ案内 */
/* 通信制の詳細ページへの導線（トップページのみ） */
.courses-more {
    text-align: center;
    margin: 40px 0 0;
}

.courses-custom {
    max-width: 900px;
    margin: 50px auto 0;
    background: #ffffff;
    border: 3px dashed #F05500;
    border-radius: 18px;
    padding: 32px 28px;
    text-align: center;
}

.courses-custom__icon {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.courses-custom__title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #F05500;
    margin: 0 0 12px;
    line-height: 1.6;
}

.courses-custom__text {
    color: #555;
    font-size: 0.95rem;
    margin: 0 0 20px;
}

.courses-custom__link {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 26px;
    background: #E66528;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.25s ease;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .ai-section__title1 {
        font-size: 29px;
        line-height: 45px;
        padding: 18px 20px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .course-card {
        padding: 40px 30px;
    }

    .course-card__title {
        font-size: 1.4rem;
    }

    .course-card__description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .ai-section {
        padding-inline: 15px;
    }

    .ai-section__title1 {
        font-size: 26px;
        line-height: 40px;
        padding: 15px 15px;
        margin-bottom: 40px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .course-card {
        padding: 25px;
    }

    .courses-custom {
        padding: 26px 20px;
    }

    .courses-custom__title {
        font-size: 1.1rem;
    }
}

/* WordPressエディタ内での見栄え調整 */
.wp-block-ai-courses .wp-block {
    margin: 0;
}

/* 印刷対応 */

/* アクセシビリティ対応 */

/* 高コントラストモード対応 */

    

/* ========================================================================
   研修で得られるスキル
   ======================================================================== */
/* WordPressブロック対応スタイル */
.wp-block-ai-skills {
    width: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #222831;
    line-height: 1.6;
}

/* セクション共通スタイル */

.ai-section__title2 {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    position: relative;
}

.ai-section__title2::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    margin: 16px auto 0;
    border-radius: 2px;
    background: #F05500;
}

/* スキルセクション */
.skills-section {
    background: #222831;
    color: white;
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(240,85,0,0.1)"/><circle cx="80" cy="20" r="1.5" fill="rgba(240,85,0,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(240,85,0,0.1)"/><circle cx="70" cy="80" r="2.5" fill="rgba(240,85,0,0.1)"/></svg>');

}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 35px 30px;
    border-radius: 15px;
    border-left: 5px solid #F05500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: rgba(240, 85, 0, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-left-width: 8px;
}

.skill-item:hover::before {
    transform: translate(20px, -20px) scale(1.2);
    background: rgba(240, 85, 0, 0.2);
}

.skill-item__icon {
    width: 60px;
    height: 60px;
    background: #F05500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(240, 85, 0, 0.3);
    transition: all 0.3s ease;
}

.skill-item:hover .skill-item__icon {
    transform: scale(1.06);
}

.skill-item__title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.skill-item__description {
    color: #ccc;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* スキルカテゴリ別のアクセント色 */
/* スキルカテゴリのアクセントはブランドオレンジに統一 */

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .ai-section {
        padding-inline: 15px;
    }

    .ai-section__title2 {
        font-size: 1.8rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .skill-item {
        padding: 25px;
    }

    .skill-item__icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .skill-item__title {
        font-size: 1.2rem;
    }
}

/* WordPressエディタ内での見栄え調整 */
.wp-block-ai-skills .wp-block {
    margin: 0;
}

/* 印刷対応 */

/* アクセシビリティ対応 */

/* 高コントラストモード対応 */

    

/* ========================================================================
   受講の仕組み（通信制）
   ======================================================================== */
/* WordPressブロック対応スタイル */
.wp-block-ai-method {
    width: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #222831;
    line-height: 1.6;
}

/* セクション共通スタイル */

/* 実施方法セクション */
.method-section {
    background: #ffffff;
}

.method-lead {
    text-align: center;
    color: #555;
    font-size: 1rem;
    max-width: 900px;
    margin: -20px auto 0;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.method-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    box-shadow: var(--shadow-card);
    border-top: 5px solid #F05500;
    display: flex;
    flex-direction: column;
}

/* 4項目のアクセントはブランドオレンジに統一 */

.method-item__icon {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.method-item__name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #222831;
}

.method-item__desc {
    font-size: 0.9rem;
    color: #555;
    text-align: left;
    line-height: 1.7;
}

.method-item__tag {
    display: inline-block;
    margin-top: 14px;
    padding: 5px 12px;
    border-radius: 14px;
    background: #FDEEE4;
    color: #C24E14;
    font-size: 0.75rem;
    font-weight: bold;
}

/* 指導体制ボックス */
.support-box {
    max-width: 900px;
    margin: 50px auto 0;
    background: #ffffff;
    border: 3px solid #F05500;
    border-radius: 18px;
    padding: 34px 30px;
}

.support-box__title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #F05500;
    margin: 0 0 20px;
}

.support-box__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.support-box__table th {
    text-align: left;
    white-space: nowrap;
    width: 9em;
    padding: 12px 14px 12px 0;
    color: #222831;
    font-weight: bold;
    vertical-align: top;
    border-bottom: 1px dashed #e0d9c8;
}

.support-box__table td {
    padding: 12px 0;
    color: #444;
    border-bottom: 1px dashed #e0d9c8;
}

.support-box__table tr:last-child th,
.support-box__table tr:last-child td {
    border-bottom: none;
}

.support-box__hours {
    font-size: 1.15rem;
    font-weight: bold;
    color: #F05500;
}

.support-box__link {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 26px;
    border-radius: 24px;
    background: #E66528;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.25s ease;
}

.support-box__center {
    text-align: center;
}

/* 受講の流れ */
.method-flow__title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    color: #222831;
    margin: 60px 0 10px;
}

.method-flow__title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: #F05500;
}

.flow-list {
    counter-reset: flow;
    margin: 25px auto 0;
    max-width: 760px;
    padding: 0;
    list-style: none;
}

.flow-list li {
    position: relative;
    padding: 16px 18px 16px 60px;
    margin-bottom: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(34, 40, 49, 0.06);
}

.flow-list li::before {
    counter-increment: flow;
    content: counter(flow);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E66528;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-list li strong {
    color: #222831;
}

.method-note {
    max-width: 760px;
    margin: 30px auto 0;
    font-size: 0.85rem;
    color: #777;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px 20px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .wp-block-ai-method .ai-section__title1 {
        font-size: 29px;
        line-height: 45px;
        padding: 18px 20px;
    }

    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .wp-block-ai-method .ai-section {
        padding: 40px 15px;
    }

    .wp-block-ai-method .ai-section__title1 {
        font-size: 26px;
        line-height: 40px;
        padding: 15px 15px;
        margin-bottom: 40px;
    }

    .method-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .support-box {
        padding: 26px 20px;
    }

    .support-box__table th {
        display: block;
        width: auto;
        padding-bottom: 4px;
        border-bottom: none;
    }

    .support-box__table td {
        display: block;
        padding-top: 0;
    }
}

/* 印刷対応 */

    

/* ========================================================================
   添削と質疑応答
   ======================================================================== */
/* WordPressブロック対応スタイル */
.wp-block-ai-support {
    width: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #222831;
    line-height: 1.6;
}

.support-section {
    background: #f8f9fa;
}

.support-lead {
    text-align: center;
    max-width: 900px;
    margin: -20px auto 0;
}

.support-lead__catch {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222831;
    line-height: 1.7;
    margin: 0 0 16px;
}

.support-lead__catch em {
    font-style: normal;
    color: #F05500;
}

.support-lead__text {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

/* 講師集合写真 */
.teachers-photo {
    max-width: 1000px;
    margin: 45px auto 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: #ffffff;
}

.teachers-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.teachers-photo__caption {
    background: #E66528;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
    font-size: 1.05rem;
    padding: 14px 18px;
    letter-spacing: 0.04em;
}

/* 講師グリッド */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 30px;
}

.teacher-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: var(--shadow-card);
    border-top: 5px solid #F05500;
    display: flex;
    flex-direction: column;
}

/* 講師カードのアクセントはブランドオレンジに統一 */

.teacher-card__name {
    font-size: 1.15rem;
    font-weight: bold;
    color: #222831;
    margin: 0 0 4px;
}

.teacher-card__name-en {
    font-size: 0.75rem;
    color: #999;
    margin: 0 0 12px;
}

.teacher-card__role {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.7;
    text-align: left;
}

.teachers-link {
    text-align: center;
    margin-top: 30px;
}

.teachers-link a {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 24px;
    border: 2px solid #F05500;
    color: #F05500;
    background: #ffffff;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.95rem;
}

/* サポート宣言 */
.support-promise {
    max-width: 960px;
    margin: 55px auto 0;
    background: #E66528;
    border-radius: 20px;
    padding: 36px 30px;
    color: #ffffff;
    text-align: center;
}

.support-promise__title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 0 20px;
    line-height: 1.6;
}

.support-promise__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.support-promise__item {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 18px 16px;
    font-size: 0.92rem;
    line-height: 1.7;
}

.support-promise__item strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

/* できるようになること */
.outcome-block {
    max-width: 1000px;
    margin: 60px auto 0;
}

.outcome-block__title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #222831;
    line-height: 1.7;
    margin: 0 0 10px;
}

.outcome-block__title em {
    font-style: normal;
    color: #F05500;
}

.outcome-block__sub {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 34px;
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.outcome-item {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 24px 22px 62px;
    box-shadow: var(--shadow-card);
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
}

.outcome-item::before {
    content: '✓';
    position: absolute;
    left: 20px;
    top: 22px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #E66528;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outcome-item strong {
    display: block;
    color: #222831;
    font-size: 1.02rem;
    margin-bottom: 5px;
}

.outcome-closing {
    text-align: center;
    margin: 40px auto 0;
    max-width: 820px;
    font-size: 1.05rem;
    font-weight: bold;
    color: #222831;
    line-height: 1.9;
}

.outcome-closing span {
    color: #F05500;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .wp-block-ai-support .ai-section__title1 {
        font-size: 29px;
        line-height: 45px;
        padding: 18px 20px;
    }

    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .support-promise__items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wp-block-ai-support .ai-section {
        padding: 40px 15px;
    }

    .wp-block-ai-support .ai-section__title1 {
        font-size: 26px;
        line-height: 40px;
        padding: 15px 15px;
        margin-bottom: 40px;
    }

    .support-lead__catch {
        font-size: 1.2rem;
    }

    .teachers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .outcome-grid {
        grid-template-columns: 1fr;
    }

    .support-promise__title,
    .outcome-block__title {
        font-size: 1.2rem;
    }
}

    

/* ========================================================================
   研修資料ダウンロード
   ======================================================================== */
.sns-consult-section {
  background-color: #2f3a3c;
  padding: clamp(56px, 7vw, 72px) 20px;
  color: #fff;
  font-family: sans-serif;
}

.sns-consult-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sns-call-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* セクション種別ラベル（eラーニング研修） */
.sns-call-label {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 18px;
  border-radius: 999px;
  background: #E66528;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sns-call-number {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.06em;
}

.sns-call-number::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 14px auto 0;
  background: #E66528;
}

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

.sns-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 12px;
  padding: 24px 20px;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
  flex: 1;
}

/* コース名（HTML上もボタンより前に置いてあるので order 指定は不要） */
.sns-btn p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  color: #333f44;
}

/* ファイル形式・容量 */
.sns-btn__meta {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #8a949a;
}

/* ダウンロードボタン */
.wpdm-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  background: #E66528;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: background 0.25s ease;
}

.wpdm-download-link .icon {
  width: 16px;
  height: 16px;
  flex: none;
}

.wpdm-download-link:hover,
.wpdm-download-link:focus-visible {
  background: #C9541B;
}

/* ==== インラインSVGアイコン共通 ==== */
.icon {
  display: inline-block;
  vertical-align: middle;
}

.benefit-card__icon,
.course-card__icon,
.method-item__icon,
.courses-custom__icon {
  line-height: 1;
}

.benefit-card__icon .icon {
  width: 44px;
  height: 44px;
  color: #F05500;
}

.course-card__icon .icon {
  width: 44px;
  height: 44px;
}

.skill-item__icon .icon {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

.method-item__icon .icon {
  width: 38px;
  height: 38px;
  color: #F05500;
}

.courses-custom__icon .icon {
  width: 40px;
  height: 40px;
  color: #E66528;
}

.support-promise__item strong .icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: -3px;
}

/* ==========================================================================
   印刷・アクセシビリティ（全セクション共通・統合済み）
   ========================================================================== */

@media print {
    .benefit-card,
    .stat-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .benefits-section {
        background: white !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    .course-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    .skill-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .skills-section {
        background: #222831 !important;
        -webkit-print-color-adjust: exact;
        color-adjust: exact;
    }
    .method-item, .flow-list li, .support-box {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    .teacher-card, .outcome-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

@media (prefers-reduced-motion: reduce) {
  .training-list li,
  .training-group__title a,
  .training-group__title a::after {
    transition: none;
  }
    .benefit-card,
    .benefit-card__list li::before,
    .stat-item {
        transition: none;
    }
    
    .benefits-section::before {
        animation: none;
    }
    .course-card {
        transition: none;
    }
    .skill-item,
    .skill-item__icon,
    .skill-item::before {
        transition: none;
    }
    
    .skills-section::before {
        animation: none;
    }
}

@media (prefers-contrast: high) {
    .benefit-card {
        border-width: 3px;
        border-color: #222831;
    }
    
    .benefit-card__description,
    .benefit-card__list li {
        color: #222831;
    }
    
    .stat-item {
        border-width: 3px;
        border-color: #222831;
    }
    .course-card {
        border-width: 3px;
        border-color: #222831;
    }
    .skill-item {
        border-width: 3px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .skill-item__description {
        color: white;
    }
}
