@charset 'utf-8';
/**
 * 動画講座ページ固有のCSS
 */

/* ===== ファーストビュー ===== */
.video-course-page .page-header{
    height: 560px;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #9ad7f0 !important;
}
/* 画像を配置（上帯58px、画像444px、下帯58px = 合計560px） */
.video-course-page .page-header .page-header-img-wrap{
    position: absolute !important;
    top: 58px !important;
    left: 0 !important;
    width: 100% !important;
    height: 444px !important;
    transform: none !important;
    z-index: 0;
    overflow: hidden;
}
.video-course-page .page-header .page-header-img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* JDLA認定バッジ */
.page-header-jdla-badge{
    position: relative;
    z-index: 2;
    background: #fff;
    color: #4b5563;
    font-size: 20px;
    padding: .6em 2em;
    border-radius: 8px;
    margin-bottom: 20px;
    width: fit-content;
}

/* タイトル */
.page-header-title--video-course{
    position: relative;
    z-index: 2;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 2px;
    opacity: 1;
    transform: none;
    animation: none;
}
.page-header-title--video-course strong{
    font-weight: 800;
}
.page-header-title--video-course .sp-br{
    display: none;
}

/* パンくず調整 */
.video-course-page .breadcrumb-wrap{
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    max-width: none;
    margin-top: 20px;
    z-index: 2;
}

@media(max-width: 575px){
    .video-course-page .page-header{
        height: 480px !important;
        padding: 0 !important;
        overflow: hidden;
        background: #9ad7f0 !important;
    }
    .video-course-page .page-header .page-header-img-wrap{
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 610px !important;
        transform: none !important;
        z-index: 0;
        overflow: hidden;
    }
    .page-header-jdla-badge{
        font-size: 20px;
        padding: .6em 2em;
        margin-bottom: 15px;
    }
    .page-header-title--video-course{
        font-size: 32px;
        padding: 0 15px;
    }
    .video-course-page .breadcrumb-wrap{
        margin-top: 24px;
    }
    .page-header-title--video-course .sp-br{
        display: inline;
    }
}
@media(min-width: 576px) and (max-width: 959px){
    .video-course-page .page-header{
        height: 550px;
    }
}

/* ===== 共通セクション ===== */
.vc-section{
    padding: 80px 80px;
    max-width: 1440px;
    margin: 0 auto;
}
.vc-section--white{
    background: #fff;
}
.vc-section-title{
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #555;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 16px;
}
.vc-section-title:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 2px;
    background: rgb(var(--light-blue));
    clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
}
.vc-section-desc{
    text-align: center;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 20px auto 40px;
    letter-spacing: -1px;
}

/* ===== セクション1：概要グリッド ===== */
.vc-overview-grid{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 67px;
    flex-wrap: wrap;
}

/* お申し込みカード */
.vc-overview-cta-card{
    position: relative;
    width: 450px;
    padding: 30px 28px;
    border-radius: 8px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,.6) 0%, rgba(154,215,240,1) 100%);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.vc-overview-cta-card:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/backgound-patterns/illust.webp') no-repeat left top;
    background-size: contain;
    opacity: .75;
    pointer-events: none;
    z-index: 0;
}
.vc-overview-cta-title,
.vc-overview-cta-desc,
.vc-overview-cta-button{
    position: relative;
    z-index: 1;
}
.vc-overview-cta-title{
    font-size: 20px;
    font-weight: 700;
    color: #555;
}
.vc-overview-cta-desc{
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    white-space: nowrap;
}
.vc-overview-cta-button{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    width: 350px;
    height: 56px;
    background: linear-gradient(135deg, #6472ba, #4a5a9e);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0;
    transition: opacity .3s;
    --cut: 6px;
    clip-path: polygon(var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
}
.vc-overview-cta-button:hover{
    opacity: .85;
}
.vc-arrow-spacer{
    width: 52px;
    flex-shrink: 0;
}
.vc-overview-cta-button .vc-arrow{
    display: inline-block;
    width: 52px;
    height: 9px;
    background: url('../img/icons/arrow.svg') no-repeat center;
    background-size: contain;
    font-size: 0;
    flex-shrink: 0;
}

/* 概要テーブル */
.vc-overview-table-wrap{
    background: #f2fafd;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
}
.vc-overview-table{
    width: 526px;
}
.vc-overview-table-row{
    display: flex;
    border-bottom: 1px solid rgb(var(--light-blue));
    border-left: 3px solid rgba(154,215,240,.53);
    padding: 16px 0 17px;
}
.vc-overview-table-row:first-child{
    border-top: 2px solid rgba(154,215,240,.53);
}
.vc-overview-table{
    position: relative;
}
.vc-overview-table:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: rgba(154,215,240,.3);
    z-index: 0;
}
.vc-overview-table-dt{
    width: 175px;
    font-size: 16px;
    font-weight: 500;
    color: #555;
    padding-left: 1em;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.vc-overview-table-dd{
    font-size: 20px;
    color: #555;
}
.vc-price-suffix{
    font-weight: 400;
    font-size: 16px;
}

/* ===== セクション2：講座の申し込み（2カラム） ===== */
.vc-section--application{
    position: relative;
    overflow: hidden;
    background: #fff;
}
.vc-section--application:before,
.vc-section--application:after{
    content: "";
    position: absolute;
    top: 150px;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 0;
}
.vc-section--application:before{
    background: #9AD7F0;
}
.vc-section--application:after{
    background: url('../img/backgound-patterns/blue_left.svg') no-repeat left bottom,
                url('../img/backgound-patterns/blue_right.svg') no-repeat right top;
    background-size: 291px 129px, 137px 129px;
}
.vc-application-grid{
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.vc-application-card{
    width: 592px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vc-application-card--purple{
    border-top: 5px solid #6472ba;
}
.vc-application-card--blue{
    border-top: 5px solid #15a3df;
}
.vc-application-card-title{
    font-size: 24px;
    font-weight: 700;
    color: #555;
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 0;
    width: 100%;
    border-bottom: 1px solid rgba(var(--light-blue), .3);
}
.vc-application-card-desc{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 24px 0 32px;
}
.vc-application-card-button{
    display: flex;
    align-items: center;
    padding: 0 10px;
    width: 351px;
    height: 56px;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    transition: opacity .3s;
    --cut: 6px;
    clip-path: polygon(var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut), 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, var(--cut) 100%, 0 calc(100% - var(--cut)), 0 var(--cut));
}
.vc-application-card .vc-arrow-spacer{
    display: none;
}
.vc-application-card-button span{
    position: relative;
    z-index: 1;
}
.vc-application-card-button span:not(.vc-arrow){
    flex: 1;
    text-align: center;
}
.vc-application-card-button:hover{
    opacity: .85;
}
.vc-application-card-button--purple{
    background: linear-gradient(135deg, #6472ba, #4a5a9e);
    color: #fff;
}
.vc-application-card-button--purple .vc-arrow{
    display: inline-block;
    width: 52px;
    height: 9px;
    background: url('../img/icons/arrow.svg') no-repeat center;
    background-size: contain;
    font-size: 0;
    flex-shrink: 0;
}
.vc-application-card-button--blue{
    background: #15a3df;
    border: none;
    color: #15a3df;
    position: relative;
}
.vc-application-card-button--blue::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    clip-path: polygon(
        6.83px 2px,
        calc(100% - 6.83px) 2px,
        calc(100% - 2px) 6.83px,
        calc(100% - 2px) calc(100% - 6.83px),
        calc(100% - 6.83px) calc(100% - 2px),
        6.83px calc(100% - 2px),
        2px calc(100% - 6.83px),
        2px 6.83px
    );
}
.vc-application-card-button--blue .vc-arrow{
    display: inline-block;
    width: 52px;
    height: 9px;
    background: #15a3df;
    -webkit-mask: url('../img/icons/arrow.svg') no-repeat center / contain;
    mask: url('../img/icons/arrow.svg') no-repeat center / contain;
    font-size: 0;
    flex-shrink: 0;
}
.vc-arrow{
    font-size: 1.2em;
}

/* ===== セクション3：講座に含まれる内容 ===== */
#courseContents .vc-section-title{
    margin-bottom: 40px;
}
.vc-contents-grid{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
/* カードラッパー */
.vc-contents-item{
    position: relative;
    width: 389px;
}
.vc-contents-card{
    position: relative;
    width: 100%;
    height: 275px;
    background: #d1d5db;
    border: none;
    padding: 0;
    display: block;
    text-decoration: none;
    transition: box-shadow .3s;
    clip-path: polygon(
        75px 0,
        calc(100% - 8px) 0,
        calc(100% - 2.34px) 2.34px,
        100% 8px,
        100% calc(100% - 8px),
        calc(100% - 2.34px) calc(100% - 2.34px),
        calc(100% - 8px) 100%,
        8px 100%,
        2.34px calc(100% - 2.34px),
        0 calc(100% - 8px),
        0 75px
    );
}
.vc-contents-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f2fafd;
    clip-path: polygon(
        75.7px 1px,
        calc(100% - 8px) 1px,
        calc(100% - 3.05px) 3.05px,
        calc(100% - 1px) 8px,
        calc(100% - 1px) calc(100% - 8px),
        calc(100% - 3.05px) calc(100% - 3.05px),
        calc(100% - 8px) calc(100% - 1px),
        8px calc(100% - 1px),
        3.05px calc(100% - 3.05px),
        1px calc(100% - 8px),
        1px 75.7px
    );
}
.vc-contents-card-inner{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 33px;
    gap: 16px;
}
.vc-contents-card:hover{
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.vc-contents-number{
    position: absolute;
    top: -5px;
    left: 7px;
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: rgb(var(--light-blue));
    letter-spacing: 1px;
    z-index: 2;
}
.vc-contents-card-icon{
    width: 198px;
    height: auto;
    position: relative;
    z-index: 1;
}
.vc-contents-card-body{
    text-align: center;
    position: relative;
    z-index: 1;
}
.vc-contents-card-title{
    font-size: 20px;
    font-weight: 700;
    color: #555;
    margin-bottom: 8px;
}
.vc-contents-card-sub{
    font-size: 14px;
    color: #555;
}
.vc-contents-footnote{
    font-size: 14px;
    color: #555;
    text-align: center;
    line-height: 1.4;
    padding: 0 80px;
}

/* ===== セクション4：E資格受験資格の取得条件 ===== */
.vc-section--eligibility{
    background: linear-gradient(78deg, rgb(154,215,240) 30%, rgb(207,236,248));
    padding: 80px 80px;
}
.vc-section--eligibility .vc-section-title{
    color: #555;
}
.vc-section--eligibility .vc-section-title:after{
    background: #15a3df;
}
.vc-section--eligibility .vc-section-title{
    margin-bottom: 35px;
}
.vc-eligibility-banner{
    background: linear-gradient(90deg, #15a3df, #9ad7f0);
    border-radius: 0;
    padding: 10px 50px 10px 30px;
    margin: 0 auto 30px;
    max-width: 1164px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
}
.vc-eligibility-banner-text{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0,0,0,.25);
    line-height: 1.6;
}
.vc-eligibility-grid{
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.vc-eligibility-card{
    position: relative;
    width: 376px;
    background: #fff;
    border: 2px solid #9ad7f0;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 94px;
    margin-top: 37px;
}
.vc-eligibility-step{
    position: absolute;
    top: -37px;
    left: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #15a3df, #9ad7f0);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.vc-eligibility-text{
    font-size: 18px;
    font-weight: 700;
    color: rgb(var(--blue));
    text-align: center;
    line-height: 1.4;
}

/* ===== セクション5：お申し込みの手順（アコーディオンステップ） ===== */
.vc-steps-wrap{
    max-width: 900px;
    margin: 0 auto;
    background: #f2fafd;
    padding: 30px 26px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 矢印 */
.vc-steps-arrow{
    color: rgb(var(--light-blue));
    font-size: 18px;
    margin: 8px 0;
    text-align: center;
}

/* 各ステップ */
.vc-step{
    width: 848px;
    max-width: 100%;
    border: 1px solid #15a3df;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    display: flex;
}

/* STEP番号 */
.vc-step-number{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-width: 80px;
    background: #15a3df;
    color: #fff;
}

/* メインコンテンツ（ヘッダー＋ボディ） */
.vc-step-main{
    flex: 1;
    min-width: 0;
}

/* ステップヘッダー（クリック部分） */
.vc-step-header{
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 80px;
    padding: 0;
    background: #fff;
    border: none;
    cursor: pointer;
    gap: 30px;
    text-align: left;
}
.vc-step-header:hover{
    background: rgba(var(--light-blue), .03);
}
.vc-step-label{
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
.vc-step-num{
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

/* タイトル */
.vc-step-title-wrap{
    flex: 1;
    padding: 16px 0 16px 50px;
}
.vc-step-title{
    font-size: 20px;
    font-weight: 700;
    color: #555;
    line-height: 1.4;
}

/* ＋/− トグル */
.vc-step-toggle{
    font-size: 24px;
    color: #4b5563;
    padding-right: 24px;
    flex-shrink: 0;
    line-height: 1;
}

/* 開いた状態 */
.vc-step-header[aria-expanded="true"] .vc-step-toggle{
    content: "";
}

/* ステップ本文 */
.vc-step-body{
    padding: 0 24px 24px 50px;
    overflow: hidden;
    transition: max-height .4s ease, padding-top .4s ease, padding-bottom .4s ease;
    text-align: center;
}
.vc-step-body[hidden]{
    display: none;
    padding-bottom: 0;
}
.vc-step-content{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

/* STEP1のCTAボタン */
.vc-step-cta-button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 41px;
    background: linear-gradient(135deg, #6472ba, #4a5a9e);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    margin: 16px auto 0;
    position: relative;
    left: -13px;
    transition: opacity .3s;
}
.vc-step-cta-button:hover{
    opacity: .85;
}

/* 下部ボタン・注記 */
.vc-steps-bottom{
    max-width: 848px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.vc-steps-bottom-button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 718px;
    max-width: 100%;
    height: 56px;
    background: #15a3df;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    border-radius: 8px;
    transition: opacity .3s;
}
.vc-steps-bottom-button:hover{
    opacity: .85;
}
.vc-step-toggle-icon{
    font-size: 24px;
    font-weight: 400;
}
.vc-steps-bottom-note{
    width: 848px;
    max-width: 100%;
}
.vc-steps-bottom-note p{
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ===== セクション6：講座開始から終了までの流れ（タイムライン） ===== */
.vc-section--timeline{
    background: #e3f9fc;
}
.vc-section--timeline .vc-section-title:after{
    background: rgb(var(--light-blue));
}
.vc-timeline{
    max-width: 888px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
/* 縦の点線 */
.vc-timeline:before{
    content: "";
    position: absolute;
    left: 38px;
    top: 0;
    bottom: 0;
    width: 0;
    border-left: 2px solid rgba(var(--light-blue), .5);
}
.vc-timeline-item{
    display: flex;
    gap: 40px;
    position: relative;
}
/* STEP丸 */
.vc-timeline-circle{
    position: relative;
    z-index: 1;
    width: 76px;
    min-width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(var(--light-blue)), rgb(var(--blue)));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.vc-timeline-step-label{
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}
.vc-timeline-step-num{
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
}
/* タイトル行 */
.vc-timeline-content{
    flex: 1;
    margin-left: 0;
}
.vc-timeline-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 79px;
    padding: 15px 30px;
    background-color: rgba(255,255,255,.7);
    background-image: repeating-linear-gradient(90deg, #15a3df 0, #15a3df 2px, transparent 2px, transparent 4px);
    background-size: 100% 2px;
    background-position: bottom;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    text-align: left;
}
.vc-timeline-header:hover{
    background-color: rgba(255,255,255,.9);
}
.vc-timeline-title{
    font-size: 20px;
    font-weight: 700;
    color: #555;
}
.vc-timeline-header .vc-step-toggle{
    font-size: 34px;
    font-weight: 300;
    color: #555;
    padding-right: 0;
}
/* 開いた中身 */
.vc-timeline-body{
    border-bottom: none;
    background-image: repeating-linear-gradient(90deg, #15a3df 0, #15a3df 2px, transparent 2px, transparent 4px);
    background-size: 100% 2px;
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 24px;
    overflow: hidden;
    transition: max-height .4s ease, padding-top .4s ease, padding-bottom .4s ease;
}
.vc-timeline-text{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.vc-timeline-body-grid{
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.vc-timeline-body-grid .vc-timeline-text{
    flex: 1;
    min-width: 0;
}
.vc-timeline-figure{
    display: block;
    width: 420px;
    max-width: 50%;
    height: auto;
    flex-shrink: 0;
}
.vc-timeline-link{
    margin-top: 16px;
}
.vc-timeline-link a{
    color: #6472ba;
    font-weight: 500;
}

/* ===== セクション7：E資格の受験と給付金の受給方法 ===== */
.vc-section--exam-flow{
    background: #f2fafd;
}
.vc-exam-flow-image{
    max-width: 888px;
    margin: 0 auto 50px;
    text-align: center;
}
.vc-exam-flow-image img{
    width: 590px;
    max-width: 100%;
    height: auto;
}
/* セクション7：ステップ一覧（アコーディオンなし） */
.vc-exam-steps{
    max-width: 888px;
    margin: 0 auto;
    position: relative;
}
/* 縦の実線 */
.vc-exam-steps:before{
    content: "";
    position: absolute;
    left: 38px;
    top: 0;
    bottom: 0;
    width: 0;
    border-left: 2px solid rgba(var(--blue), .3);
}
.vc-exam-step{
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
    background-image: repeating-linear-gradient(90deg, #15a3df 0, #15a3df 2px, transparent 2px, transparent 4px);
    background-size: calc(100% - 96px) 2px;
    background-position: bottom right;
    background-repeat: no-repeat;
}
.vc-exam-step:last-child{
    background-image: none;
    margin-bottom: 0;
}
.vc-exam-step:last-child:after{
    content: "";
    position: absolute;
    left: 0;
    top: 38px;
    bottom: 0;
    width: 78px;
    background: #f2fafd;
}
.vc-exam-step-header{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: -2px;
}
/* STEP円：アウトラインスタイル */
.vc-exam-step .vc-timeline-circle{
    background: #fff;
    border: 2px solid rgb(var(--blue));
    color: rgb(var(--blue));
}
.vc-exam-step .vc-timeline-step-label{
    font-weight: 500;
}
.vc-exam-step .vc-timeline-step-num{
    font-weight: 700;
}
.vc-exam-step-title{
    font-size: 20px;
    font-weight: 700;
    color: #555;
}
.vc-exam-step-text{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    padding-left: 96px;
}

.vc-timeline-bottom-note{
    max-width: 888px;
    margin: 30px auto 0;
    padding: 0 0 0 96px;
}
.vc-timeline-bottom-note p{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* ===== セクション8-11：前提知識・動画講座・演習・認定試験 ===== */
.vc-section--knowledge{
    background: #f5fdfe;
    padding-left: 297px;
    padding-right: 297px;
}
.vc-knowledge-title{
    font-size: 30px;
    font-weight: 700;
    color: #555;
    padding-left: 0;
    padding-bottom: 10px;
    margin-bottom: 0;
    position: relative;
    border-bottom: none;
}
.vc-knowledge-title:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 350px;
    height: 4px;
    background: #15a3df;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
}
.vc-knowledge-desc{
    font-size: 18px;
    color: #555;
    padding-left: 0;
    margin: 20px 0 10px;
    line-height: 1.6;
}

/* 横並びカード（前提知識） */
.vc-knowledge-grid{
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 10px 0;
}
.vc-knowledge-card{
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
.vc-knowledge-card--full{
    width: 100%;
    max-width: 904px;
}

/* 青バー（トリガー） */
.vc-knowledge-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 30px;
    background: #76cbed;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 1px 2px 2.8px rgba(0,0,0,.25);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .3s;
}
.vc-knowledge-bar:hover{
    background: #5ebede;
}
.vc-knowledge-bar .vc-step-toggle{
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    padding-right: 0;
    text-shadow: none;
}

/* 開いた中身 */
.vc-knowledge-body{
    background: #e4f9fc;
    border-right: 1px solid #9ad7f0;
    border-bottom: 1px solid #9ad7f0;
    padding: 30px;
    overflow: hidden;
    transition: max-height .4s ease, padding-top .4s ease, padding-bottom .4s ease;
}
.vc-knowledge-list{
    margin-bottom: 20px;
}
.vc-knowledge-item{
    font-size: 19px;
    font-weight: 500;
    color: #555;
    padding: 8px 0;
    line-height: 1.6;
}
.vc-knowledge-bullet{
    font-size: 16px;
    color: rgba(21,163,223,.5);
    margin-right: 8px;
}
.vc-knowledge-link-text{
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}
.vc-knowledge-link-button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 228px;
    height: 41px;
    margin: 0 auto;
    background: #6472ba;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 1px 2px 1.9px rgba(0,0,0,.25);
    transition: opacity .3s;
}
.vc-knowledge-link-button:hover{
    opacity: .85;
}
.vc-knowledge-body-text{
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* 静的バー（アコーディオンなし） */
.vc-knowledge-bar--static{
    cursor: default;
}
.vc-knowledge-body--open{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
    background: #e4f9fc;
    border-right: 1px solid #9ad7f0;
    border-bottom: 1px solid #9ad7f0;
    text-align: center;
}

/* コエテコスクリーンショット */
.vc-coeteco-screen-single{
    text-align: center;
    margin: 20px 0;
}
.vc-coeteco-screen-single img{
    width: 590px;
    max-width: 100%;
    height: auto;
    box-shadow: 2px 2px 4.5px rgba(0,0,0,.12);
}
.vc-coeteco-screen-pair{
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0 0;
}
.vc-coeteco-screen-pair img{
    width: 420px;
    max-width: 48%;
    height: auto;
    box-shadow: 2px 2px 2.5px rgba(0,0,0,.12);
}

/* 縦積み */
.vc-knowledge-items-stack{
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 904px;
    margin: 10px auto 0;
}

/* 認定試験ボックス */
.vc-cert-exam-box{
    background: #e3f9fc;
    border-radius: 8px;
    padding: 24px 20px;
    max-width: 896px;
    margin: 10px auto 0;
}
.vc-cert-exam-box p{
    font-size: 16px;
    color: #555;
    line-height: 1.9;
}

/* ===== レスポンシブ ===== */
@media(max-width: 575px){
    /* === 共通 === */
    .vc-section{
        padding: 50px 20px;
    }
    .vc-section-title{
        font-size: 28px;
        line-height: 36px;
    }
    .vc-section-desc{
        font-size: 16px;
        line-height: 26px;
        text-align: left;
        margin: 45px auto 60px;
    }

    #courseTopSection{
        padding-bottom: 30px;
    }

    /* === セクション1：概要 === */
    .vc-overview-grid{
        gap: 60px;
    }
    .vc-overview-cta-card{
        width: 100%;
        padding: 25px 20px;
    }
    .vc-overview-cta-title{
        font-size: 18px;
    }
    .vc-overview-cta-desc{
        font-size: 15px;
        line-height: 25px;
        white-space: normal;
    }
    .vc-overview-cta-button{
        width: 100%;
        font-size: 16px;
    }
    .vc-overview-table-wrap{
        width: 100%;
    }
    .vc-overview-table{
        width: 100%;
    }
    .vc-overview-table:before{
        width: 80px;
    }
    .vc-overview-table-dt{
        width: 80px;
        font-size: 14px;
        padding-left: .6em;
    }
    .vc-overview-table-dd{
        font-size: 16px;
        padding-left: 25px;
    }

    /* === セクション2：講座の申し込み === */
    .vc-application-card{
        width: 100%;
        padding: 25px 20px;
    }
    .vc-application-card-title{
        font-size: 20px;
    }
    .vc-application-card-desc{
        font-size: 14px;
    }
    .vc-application-card-button{
        width: 100%;
        max-width: none;
        font-size: 15px;
        white-space: normal;
        text-align: center;
    }

    /* === セクション3：講座に含まれる内容 === */
    .vc-contents-item{
        width: 100%;
    }
    .vc-contents-card{
        width: 100%;
        height: auto;
    }
    .vc-contents-card-inner{
        padding: 25px 20px;
    }
    .vc-contents-card-icon{
        width: 140px;
    }
    .vc-contents-card-title{
        font-size: 18px;
    }
    .vc-contents-footnote{
        padding: 0;
        font-size: 12px;
        text-align: left;
    }

    /* === セクション4：取得条件 === */
    .vc-section--eligibility{
        padding: 50px 20px;
    }
    .vc-eligibility-banner{
        padding: 15px 20px 30px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), 50% 100%, 0 calc(100% - 25px));
        margin-bottom: 30px;
    }
    .vc-eligibility-banner-text{
        font-size: 14px;
        font-weight: 400;
        text-align: left;
    }
    .vc-eligibility-card{
        width: 100%;
        min-height: 85px;
        padding: 20px 30px;
    }
    .vc-eligibility-grid{
        gap: 10px;
    }
    .vc-eligibility-step{
        width: 58px;
        height: 58px;
        font-size: 14px;
        top: -32px;
        left: 11px;
    }
    .vc-eligibility-card{
        margin-top: 32px;
    }
    .vc-eligibility-text{
        font-size: 18px;
        line-height: 24px;
    }

    /* === セクション5：お申し込みの手順 === */
    #applicationSteps .vc-section-desc{
        margin-bottom: 40px;
    }
    .vc-steps-wrap{
        padding: 20px 10px 25px;
    }
    .vc-step{
        width: 100%;
    }
    .vc-step-header{
        gap: 10px;
        min-height: 60px;
    }
    .vc-step-number{
        width: 55px;
        min-width: 55px;
    }
    .vc-step-label{
        font-size: 11px;
    }
    .vc-step-num{
        font-size: 22px;
    }
    .vc-step-title-wrap{
        padding: 12px 0 12px 15px;
    }
    .vc-step-title{
        font-size: 15px;
    }
    .vc-step-toggle{
        padding-right: 12px;
        font-size: 20px;
    }
    .vc-step-body{
        padding: 0 12px 16px 20px;
    }
    .vc-step-content{
        font-size: 14px;
    }
    .vc-step-cta-button{
        width: 100%;
        left: 0;
    }
    .vc-steps-bottom-button{
        font-size: 16px;
    }

    /* === セクション6：講座開始から修了までの流れ === */
    .vc-timeline{
        gap: 25px;
    }
    .vc-timeline:before{
        left: 25px;
    }
    .vc-timeline-item{
        gap: 15px;
    }
    .vc-timeline-circle{
        width: 50px;
        min-width: 50px;
        height: 50px;
    }
    .vc-timeline-step-label{
        font-size: 11px;
    }
    .vc-timeline-step-num{
        font-size: 22px;
    }
    .vc-timeline-content{
        flex: 1;
    }
    .vc-timeline-header{
        height: auto;
        min-height: 50px;
        padding: 10px 12px;
    }
    .vc-timeline-title{
        font-size: 15px;
    }
    .vc-timeline-header .vc-step-toggle{
        font-size: 24px;
    }
    .vc-timeline-body{
        padding: 16px 12px;
    }
    .vc-timeline-body-grid{
        flex-direction: column;
    }
    .vc-timeline-figure{
        width: 100%;
        max-width: 100%;
    }
    .vc-timeline-text{
        font-size: 14px;
    }

    /* === セクション7：E資格の受験と給付金の受給方法 === */
    .vc-exam-flow-image img{
        width: 100%;
    }
    .vc-exam-steps:before{
        left: 25px;
    }
    .vc-exam-step .vc-timeline-circle{
        width: 50px;
        min-width: 50px;
        height: 50px;
    }
    .vc-exam-step-header{
        gap: 12px;
    }
    .vc-exam-step-title{
        font-size: 16px;
    }
    .vc-exam-step-text{
        font-size: 14px;
        padding-left: 65px;
    }
    .vc-exam-step:last-child:after{
        width: 52px;
    }
    .vc-timeline-bottom-note{
        padding: 0 0 0 65px;
    }
    .vc-timeline-bottom-note p{
        font-size: 14px;
    }

    /* === セクション8-11：前提知識・動画講座・演習・認定試験 === */
    .vc-section--knowledge{
        padding-left: 20px;
        padding-right: 20px;
    }
    .vc-knowledge-title{
        font-size: 30px;
    }
    .vc-knowledge-title:after{
        width: 100%;
    }
    .vc-knowledge-desc{
        font-size: 15px;
    }
    .vc-knowledge-grid{
        flex-direction: column;
        gap: 20px;
    }
    .vc-knowledge-card{
        width: 100%;
    }
    .vc-knowledge-bar{
        font-size: 16px;
        padding: 12px 15px;
    }
    .vc-knowledge-body{
        padding: 20px 15px;
    }
    .vc-knowledge-item{
        font-size: 16px;
    }
    .vc-knowledge-body-text{
        font-size: 14px;
    }
    .vc-knowledge-bar{
        line-height: 1.6;
    }
    .vc-knowledge-link-button{
        width: 228px;
    }

    /* コエテコスクリーンショット */
    .vc-coeteco-screen-pair{
        flex-direction: column;
        align-items: center;
    }
    .vc-coeteco-screen-pair img{
        width: 100%;
        max-width: 100%;
    }

    /* 認定試験ボックス */
    .vc-cert-exam-box{
        padding: 20px 15px;
    }
    .vc-cert-exam-box p{
        font-size: 14px;
    }

    /* TOC CTAボタン */
    .video-toc-cta{
        width: 100%;
        height: 64px;
        border-radius: 12px;
    }
}
/* ===== 狭い画面（〜389px）===== */
@media(max-width: 389px){
    .page-header-title--video-course{
        font-size: 27px;
    }
    .page-header-jdla-badge{
        font-size: 17px;
        padding: .5em 1.7em;
    }
    .vc-section-title{
        font-size: 24px;
        line-height: 32px;
    }
    .vc-knowledge-title{
        font-size: 24px;
    }
}
@media(min-width: 576px) and (max-width: 959px){
    .vc-section{
        padding: 60px 40px;
    }
    .vc-overview-cta-card{
        width: 100%;
        max-width: 450px;
    }
    .vc-overview-table{
        width: 100%;
    }
    .vc-application-card{
        width: 100%;
    }
    .vc-application-card-button{
        width: 100%;
        max-width: 351px;
    }
    .vc-contents-item{
        width: calc(50% - 15px);
    }
    .vc-section--eligibility{
        padding: 60px 40px;
    }
    .vc-section--knowledge{
        padding-left: 40px;
        padding-right: 40px;
    }
    .vc-knowledge-grid{
        flex-direction: column;
        gap: 20px;
    }
    .vc-timeline-body-grid{
        flex-direction: column;
    }
    .vc-timeline-figure{
        width: 100%;
        max-width: 100%;
    }
    .vc-coeteco-screen-pair img{
        max-width: 48%;
    }
}
