@charset "UTF-8";

/* FV 各コース共通
-------------------------------------------- */
.fv_top{
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
}
.fv_top:after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.9;
}
.fv_top .inner{
    width: min(100% - 4rem, 1000px);
    margin-inline: auto;
    align-items: stretch;
    justify-content: center;
    position: relative;
    z-index: 1;
    min-height: 40rem;    
}
.fv_top .inner:before{
    position: absolute;
    content: '';
    width: min(60rem, 100%);
    height: 100%;
    display: block;
    right: -10rem;
    clip-path: polygon(0 0, 80% 0%, 100% 100%, 20% 100%);
    background-color: var(--color-foreground);
    opacity: 0.1;
}
.fv_top .inner .block-ttl{
    padding-block: 4rem 3rem;
    width: 55vw;
    max-width: 50rem;
    margin-inline: 0 auto;
    z-index: 1;
    margin-block: auto;
}
.fv_top .inner .block-ttl .ttl{
    text-align: center;
    font-weight: bold;
}
.fv_top .inner .block-ttl .ttl_course_lead{
    display: inline-block;
    padding: 0.5rem 1.2rem;
    position: relative;
    font-size: clamp(1.6rem,4vw,1.8rem);
}
.fv_top .inner .block-ttl .ttl_course_lead:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    transform: skewX(-5deg);
    z-index: -1;
    border-radius: 0;
}
.fv_top .inner .block-ttl .ttl_course_lead:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 1.2rem solid transparent;
    border-left: 0;
    border-top: 1.2rem solid var(--color-white);
    border-bottom: 0;
    position: absolute;
    right: 3.6rem;
    bottom: 1px;
    transform: translateY(100%) translateX(50%);
}
.fv_top .inner .block-ttl .ttl_course_name{
    display: block;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    color: var(--color-white);
    padding-block: 1.2rem 2rem;
    line-height: 1.2;
    white-space: nowrap;
}
.fv_top .inner .block-ttl .ttl_course_desc{
    color:var(--color-white);
    text-align: center;
}
.fv_top .inner .block-ttl .btn_wapper{
    margin-top: 2rem;
}
@media (hover: hover) and (pointer: fine) {
    .fv_top .inner .block-ttl .btn_wapper .btn:hover{
        border-color: var(--color-white);
    }
}
.fv_top .inner .block-image{
    width: min(60rem, 100%);
    position: absolute;
    height: 100%;
    right: -10%;
    clip-path: polygon(16% 0, 100% 0%, 84% 100%, 0% 100%);
}
.fv_top .inner .block-image img{
    height: 100%;
    max-width: initial;
    object-fit: cover;
}
@media screen and (max-width: 1000px) {
    .fv_top .inner .block-image {
        width: min(55vw, 100%);
        clip-path: polygon(16% 0, 100% 0%, 100% 100%, 0% 100%);
        right: -2rem;
    }
    .fv_top .inner .block-image img{
        height: 120%;
    }
    .fv_top .btn_wapper{
        margin-block: 2rem 1rem;
        flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
    .fv_top .inner{
        flex-direction: column-reverse;
    }
    .fv_top .inner:before{
        width: calc(100% + 4rem);
        right: -2rem;
        top: 0;
        height: 40rem;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 80%);
    }
    .fv_top .inner .block-image{
        left: 43%;
        position: initial;
        width: initial;
        height: 26rem;
        clip-path: polygon(0 0, 100% 0%, 100% 80%, 0% 100%);
        width: calc(100% + 4rem);
        margin-left: -2rem;
    }
    .fv_top .inner .block-image img{
        margin-left: initial;
        width: 100%;
        height: initial;
        object-position: center -3rem;
        object-fit: cover;
    }
    .fv_top .inner .block-ttl{
        padding-block: 0 2rem;
        width: 100%;
        margin-inline: auto;
        margin-top: -6rem;
    }
    .fv_top .inner .block-ttl .ttl_course_name{
        padding-block:3.2rem 2.4rem;
        white-space: initial;
    }
}
@media screen and (max-width: 414px) {
    .fv_top .inner .block-image img{
        height: 100%;
        object-position: center;
    }
}
/*  各コース指定色
-------------------------------------------- */
/* 生成AI入門コース */
.course-card.theme-ai-basic .has-hashtag,
.theme-ai-basic.btn{
    color:var(--color-ai-basic);
}
.course-card.theme-ai-basic .has-hashtag:after{
    background-color: var(--color-ai-basic);
}
.theme-ai-basic.btn{
    border-color: var(--color-ai-basic);
}
.course-card.theme-ai-basic .course-card-header-bg:before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--color-ai-basic) 80%);
}

/* ビジネス業務改善コース */
.course-card.theme-business .has-hashtag,
.theme-business.btn{
    color:var(--color-business);
}
.course-card.theme-business .has-hashtag:after{
    background-color: var(--color-business);
}
.theme-business.btn{
    border-color: var(--color-business);
}
.course-card.theme-business .course-card-header-bg:before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--color-business) 80%);
}

/* マーケティングコース */
.course-card.theme-marketing .has-hashtag,
.theme-marketing.btn{
    color:var(--color-marketing);
}
.course-card.theme-marketing .has-hashtag:after{
    background-color: var(--color-marketing);
}
.theme-marketing.btn{
    border-color: var(--color-marketing);
}
.course-card.theme-marketing .course-card-header-bg:before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--color-marketing) 80%);
}

/* 生成AIエンジニアコース */
.course-card.theme-ai-engineer .has-hashtag,
.theme-ai-engineer.btn{
    color:var(--color-ai-engineer);
}
.course-card.theme-ai-engineer .has-hashtag:after{
    background-color: var(--color-ai-engineer);
}
.theme-ai-engineer.btn{
    border-color: var(--color-ai-engineer);
}
.course-card.theme-ai-engineer .course-card-header-bg:before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--color-ai-engineer) 80%);
}

/* フロントエンド開発コース */
.course-card.theme-frontend .has-hashtag,
.theme-frontend.btn{
    color:var(--color-frontend);
}
.course-card.theme-frontend .has-hashtag:after{
    background-color: var(--color-frontend);
}
.theme-frontend.btn{
    border-color: var(--color-frontend);
}
.course-card.theme-frontend .course-card-header-bg:before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--color-frontend) 80%);
}

/* アプリ開発コース */
.course-card.theme-web-application .has-hashtag,
.theme-web-application.btn{
    color:var(--color-web-application);
}
.course-card.theme-web-application .has-hashtag:after{
    background-color: var(--color-web-application);
}
.theme-web-application.btn{
    border-color: var(--color-web-application);
}
.course-card.theme-web-application .course-card-header-bg:before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--color-web-application) 80%);
}

/* SaaSアプリ開発コース */
.course-card.theme-saas .has-hashtag,
.theme-saas.btn{
    color:var(--color-saas);
}
.course-card.theme-saas .has-hashtag:after{
    background-color: var(--color-saas);
}
.theme-saas.btn{
    border-color: var(--color-saas);
}
.course-card.theme-saas .course-card-header-bg:before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--color-saas) 80%);
}

/* データサイエンス入門コース */
.course-card.theme-data-science .has-hashtag,
.theme-data-science.btn{
    color:var(--color-data-science);
}
.course-card.theme-data-science .has-hashtag:after{
    background-color: var(--color-data-science);
}
.theme-data-science.btn{
    border-color: var(--color-data-science);
}
.course-card.theme-data-science .course-card-header-bg:before{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, var(--color-data-science) 80%);
}
a.btn[class*="theme-"]:not(:hover){
    background-color: var(--color-white);
}
@media (hover: hover) and (pointer: fine) {
    .theme-ai-basic.btn:hover{
        background-color: var(--color-ai-basic);
    }
    .theme-business.btn:hover{
        background-color: var(--color-business);
    }
    .theme-marketing.btn:hover{
        background-color: var(--color-marketing);
    }
    .theme-ai-engineer.btn:hover{
        background-color: var(--color-ai-engineer);
    }
    .theme-frontend.btn:hover{
        background-color: var(--color-frontend);
    }
    .theme-web-application.btn:hover{
        background-color: var(--color-web-application);
    }
    .theme-saas.btn:hover{
        background-color: var(--color-saas);
    }
    .theme-data-science.btn:hover{
        background-color: var(--color-data-science);
    }
    a.btn[class*="theme-"]:hover{
        color: var(--color-white);
    }
}

/*  身につく３つのスキル　各コース共通
-------------------------------------------- */
.section-skills{
    position: relative;
}
.section-skills:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: var(--color-ai-basic);
    z-index: -1;
    opacity: 0.1;
}
.section-skills .section_ttl:after{
    display: none;
}
.section-skills .section_ttl .text-larger{
    vertical-align: text-bottom;
}
.section-skills .skills-cards{  
    gap: 4rem;
    margin-bottom: 3rem;
    border-radius: 0.4rem;
    align-items: stretch;
}
.section-skills .skills-card{
    border-width: 0.1rem;
    border-style: solid;
    background-color: var(--color-white);
    padding: 0 2rem 2rem;
    position: relative;
    text-align: center;
    width: calc(100% / 3);
}
.section-skills .skills-card:not(:last-child):after{
    content: '+';
    position: absolute;
    right: 0;
    font-size: 3.6rem;
    font-weight: bold;
    top: 50%;
    right: -3.2rem;
    transform: translateY(-50%) translateX(0);
}
.section-skills .skills-card .text-deco--skew{
    font-size: 1.3rem;
    font-weight: bold;
}
.section-skills .skills-card .ttl{
    font-weight: bold;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    line-height: 1.4;
    margin-block: 2.4rem 1.2rem;
}
.section-skills .skills-card .desc{
    text-align: left;
    font-size: clamp(1.4rem,4vw,1.5rem);
}
@media screen and (max-width: 768px) {
    .section-skills .skills-card{
        width: 100%;
    }
}

/* こんな方におすすめ */
.skills-targets {
    border: 0.3rem solid;
    background-color: var(--color-white);
    border-radius: 0.4rem;
}
.skills-targets .skills-targets-ttl{
    text-align: center;
    color: var(--color-white);
    font-size: clamp(1.8rem, 4vw, 2rem);
    font-weight: bold;
    padding: 0.5rem 1rem 0.8rem;
    position: relative;
}
.skills-targets .skills-targets-ttl:before{
    position: absolute;
    content: '';
    width: min(60rem, 100%);
    height: 100%;
    display: block;
    right: 0;
    margin-inline: auto;
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 95% 0%, 100% 100%, 5% 100%);
    background-color: white;
    opacity: 0.1;
}
.skills-targets .skills-target-item{
    width:min(100%,32rem);
}
.skills-targets .inner{  
    padding:2rem;
    justify-content: center;
    gap: 4rem;
    align-items: flex-start;
}
.skills-targets .inner .ttl{
    font-weight: bold;
    margin-bottom: 1.2rem;
    font-size: clamp(1.6rem, 3vw, 1.8rem);
    position: relative;
}
.skills-targets .inner .ttl:before{
    top: 0.5rem;
}
@media screen and (max-width: 768px) {
    .section-skills .section_ttl_wrap{
        padding-block: 4rem 2rem;
    }
    .section-skills .skills-cards{
        flex-direction: column;
    }
    .section-skills .skills-card:not(:last-child):after{
        top: initial;
        right: 0;
        left: 0;
        bottom: -7.5rem;
    }
    .skills-targets .inner{
        flex-direction: column;
    }
    .skills-targets .skills-target-item{
        width: 100%;
    }
}

/* バナー　リスキリングを通じたキャリアアップ支援事業
-------------------------------------------- */
section.section-banner-reskilling .block-wrap{
    padding-block: 3.6rem 1.2rem;
    display: grid;
    gap: 1.2rem 3.6rem;
    align-items: center;
    width: min(100% - 4rem, 1000px);
    grid-template-columns: 0.5fr 1fr;
}
.section-banner-reskilling .block-logo-meti{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
    border-right: 0.1rem solid var(--color-gray-300);
    display: flex;
    align-items: center;
}
.section-banner-reskilling .block-logo-meti img{
    width: min(100%, 36rem);
    padding-right: 2rem;
}
.section-banner-reskilling .block-image{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.section-banner-reskilling .block-image img{
    width:min(100%,52.3rem);
}
.section-banner-reskilling .block-body{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.section-banner-reskilling .block-body mark{
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    background: linear-gradient(transparent 60%, #DCEEF4 60%);
    line-height: 2;
}
.section-banner-reskilling .block-footer{
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    margin-top: 1rem;
}
@media screen and (max-width: 768px) {
    section.section-banner-reskilling .block-wrap{
        gap:1.2rem;
        grid-template-columns:0.75fr 1fr;
    }
    .section-banner-reskilling .block-logo-meti{
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .section-banner-reskilling .block-logo-meti img{
        padding-inline: 0 1rem;
    }
    .section-banner-reskilling .block-body {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }
    .section-banner-reskilling .block-body p:nth-child(1){
        text-align: center;
    }
    .section-banner-reskilling .block-body p:nth-child(2){
        font-size: 1.1rem;
    }
}

/* バナー　リスキリングを通じたキャリアアップ支援事業 - 2
-------------------------------------------- */
.section-banner-reskilling2{
    padding-block: 3rem 0;
    position: relative;
}
.section-banner-reskilling2:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 10rem;
    display: block;
    clip-path: polygon(0 80%, 100% 0%, 100% 100%, 0% 100%);
    background: var(--color-blue-200);
    z-index: -1;
    bottom: 0;
}
section.section-banner-reskilling2 .block-wrap{
    display: grid;
    max-width: 90rem;
}
.section-banner-reskilling2 .block-body{
    grid-column: 1/2;
    grid-row: 1/2;
}
.section-banner-reskilling2 .block-body .ttl{
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: bold;
    margin-bottom: 2rem;
}
.section-banner-reskilling2 .block-body .ttl em{
    font-weight: bold;
    color: var(--color-primary);
}
.section-banner-reskilling2 .block-meti{
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: min(95%, 60rem);
    justify-content: center;
    margin-inline: auto;
    margin-bottom: 1rem;
}
.section-banner-reskilling2 .block-meti img{
    mix-blend-mode: darken;
    width: min(100%, 18rem);
}
.section-banner-reskilling2 .block-meti p{
    font-size: 1.2rem;
}
.section-banner-reskilling2 .block-image{
    grid-column: 2/3;
    grid-row: 1/4;
}
.section-banner-reskilling2 .block-image img{
    margin-bottom: 0;
    margin-top:auto;
}
@media screen and (max-width: 768px) {
    section.section-banner-reskilling2 .block-wrap{
        display: block;
    }
    .section-banner-reskilling2 .block-meti{
        gap: 1rem;
    }
    .section-banner-reskilling2 .block-meti img{
        width: min(100%, 26rem);
    }
    .section-banner-reskilling2 .block-image img{
        margin-inline: auto;
        display: block;
        width: min(70%, 26rem);
    }
}

/* RAXUS AIスクールが選ばれる理由
-------------------------------------------- */
.section-reason ol:has(> .item){
    counter-reset: li;
}
.section-reason .item{
    background-color: var(--color-white);   
    color:var(--color-foreground);
    border-radius: 0.4rem;
    overflow: hidden;
    position: relative;
}
.section-reason .item:before{
    position: absolute;
    top: 0;
    left: 2rem;
    font-weight: bold;
    opacity: 0.12;
    font-size: clamp(6rem,10vw,9rem);
    color: var(--color-primary);
    counter-increment: li;
    content: counter(li, decimal-leading-zero);
}
.section-reason .item:not(:last-child){
    margin-bottom: 2.4rem;
}
.section-reason .item-header{
    background-color: var(--color-blue-100);
    font-weight: bold;
    font-size: clamp(2rem,5vw,2.4rem);
    text-align: center;
    line-height: 2;
    padding: 1.4rem;
}
.section-reason .item-header h3{
    z-index: 1;
    position: relative;
}

.section-reason .item-header mark{
    background-color: var(--color-foreground);
    color: var(--color-white);
    font-weight: bold;
    font-size: 1.2em;
    padding: .2rem 1rem .4rem;
}
.section-reason .item-body{
    align-items: flex-start;
    width:calc(95%  - 4rem);
    margin-inline: auto;
    padding-block:3.6rem;
}
.section-reason .item-body div{
    flex:1;
    margin-inline: auto;
}
.section-reason .item-body img{
    object-fit: cover;
    aspect-ratio: 3 / 2;
    width: 100%;
    max-width: 40rem;
    margin-bottom: 1rem;
    border-radius: 0.4rem;
    margin-inline: auto;
    display: block;
}
.section-reason .item:nth-child(2) img{
    max-width: 100%;
}
.section-reason .item-body .ttl{
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .section-reason ol:has(> .item) {
        width: min(100% - 2rem, 1000px);
    }
  .section-reason .item-body{
    flex-direction: column;
    width: calc(100% - 4rem);
    gap: 4rem;
  }
  .section-reason .item:nth-child(2) img{
    max-width: 40rem;
  }
  .section-reason .item-header mark{
    font-size: 1em;
    padding: 0rem 0.5rem 0.2rem;
    margin-inline: 0.25rem;
  }
}

/* キャリアアップ補助金制度利用の４つのステップ
-------------------------------------------- */
.section-subsidy .section_ttl_wrap img{
    margin-bottom: 2.4rem;
    width: min(90%, 52.4rem);
}
.section-subsidy .section_ttl_wrap .ttl{
    font-size: clamp(1.8rem,5vw,2.4rem);
    font-weight: bold;
}
.section-subsidy ol.flexbox{
    align-items: stretch;
    counter-reset: li;
    gap: 1.2rem;
}
.section-subsidy .item{
    background-color: var(--color-white);
    flex:1;
    border: 0.2rem solid;
    position: relative;
}
.section-subsidy .item:before{
    counter-increment: li;
    content: counter(li);
    color: initial;
    position: absolute;
    top: -1.5rem;
    right: 0;
    left: 0;
    font-size: 2.4rem;
    text-align: center;
    width: 4rem;
    height: 4rem;
    margin-inline: auto;
    background: var(--color-white);
    border-radius: 100%;
    font-weight: bold;
}
.section-subsidy .item .txt{
    color: var(--color-white);
    background-color: var(--color-foreground);
    font-weight: bold;
    text-align: center;
    min-height: 8rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.4rem 1rem 1rem;
}
.section-subsidy .item .img-block{
    text-align: center;
    padding:1rem 1rem 2rem;
}
.section-subsidy .item .img-block img:nth-child(2){
    height: 3.4rem;
    width: auto;
    max-width: max-content;
}
.section-subsidy .note{
    color: var(--color-blue-100);
}
.section-subsidy dd{
    position:  relative;
    padding-left:1.2rem;
    margin-top: .6rem;
    font-size: 1.3rem;
}
.section-subsidy dd:before{
    content: '\02022';
    position: absolute;
    left: 0;
}
@media screen and (max-width: 768px) {
  .section-subsidy ol.flexbox{
    flex-direction: column;
    gap: 3rem;
  }
  .section-subsidy .item .img-block{
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
}

/* このコースもおすすめ
-------------------------------------------- */
.course-cards{
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}
.course-card{
    max-width: 42rem;
    border:0.1rem solid var(--color-gray-300);
    border-radius: 0.4rem;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.course-card-header {
    position: relative;
    margin-bottom: 2rem;
}

.course-card-header-bg{
    height: 20rem;
    position: relative;
}
.course-card-header-bg:before{
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 80%);
}
.course-card-header img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.course-card-header-ttl{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color:var(--color-white);
    z-index: 1;
}
.course-card-header-ttl .lead{
    font-size: 1.4rem;
}
.course-card-header-ttl .text-deco--bracket:before,
.course-card-header-ttl .text-deco--bracket:after{
    background-color: var(--color-white);
}
.course-card-header-ttl .ttl{
    font-size: clamp(2rem,4vw,2.4rem);
    font-weight: bold;
    margin-block: 0 1.4rem;
    padding-block: 0.5rem 0.5rem;
}
.course-card-body,
.course-card-footer{
    padding-inline: 2.4rem;
}
.course-card-body{
    margin-bottom: 2.4rem;
}
.course-card-body .ttl{
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}
.course-card-footer{
    margin-bottom: 3rem;
}
.course-card-footer .ttl{
    position: relative;
    background-color: var(--color-foreground);
    color: var(--color-white);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.4rem 1.8rem 0.4rem;
    border-radius: 10rem;
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
}
.course-card-footer .ttl:before{
    content:url(../../assets/images/icon-osusume.svg);
    margin-right: 0.5rem;
    vertical-align: middle;
}
.course-card-footer .items{
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 0.6rem;
}
.course-card-footer .has-hashtag{
    position: relative;
    font-weight: bold;
    border-radius: 10rem;
    padding: 0 1.2rem 0.2rem;
    display: inline-block;
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
}
.course-card-footer .has-hashtag:before{
    content: '\0023';
    font-weight: bold;
    margin-right: 0.4rem;
    font-size: 1.2em;
}
.course-card-footer .has-hashtag:after{
    content: '';
    background-color: var(--color-foreground);
    opacity: 0.1;
    position: absolute;
    width: 100%;
    border-radius: 10rem;
    height: 100%;
    left: 0;
    top: 0;
}
.course-card .btn_wapper{
    margin-top: 3rem;
    padding-inline: 2rem;
    margin-block: auto 2rem;
}
/* カリキュラム
-------------------------------------------- */
.section-curriculum table{
    table-layout: fixed;
    border: 0.4rem solid var(--color-foreground);
}
.section-curriculum table thead{
    background-color: var(--color-foreground);
    border-bottom: 0.1rem solid var(--color-white);
}
.section-curriculum table thead th{
    color: var(--color-white);
    font-weight: bold;
    text-align: center;
    vertical-align: middle;
    line-height: 1.2;
    padding-block: 1rem 1.5rem;
}
.section-curriculum table thead th:first-child{
    width:6rem;
}
.section-curriculum table thead th:last-child{
    width:14rem;
}
.section-curriculum table thead th:not(:last-child){
    border-right: 0.1rem solid var(--color-white);
}
.section-curriculum table tbody th{
    text-align: center;
    background: var(--color-foreground);
    color: var(--color-white);
    vertical-align: middle;
}
.section-curriculum table tbody tr:not(:last-child) th{
    border-bottom: 0.1rem solid var(--color-white);
}
.section-curriculum table tbody tr:nth-child(even) {
    background-color: var(--color-gray-100);
}
.section-curriculum table tbody td{
    padding: 2rem 1.5rem;
}
@media screen and (max-width: 768px) {
    section.section-curriculum > table.inner{
        width: 100%;
    }
    .section-curriculum table thead th:last-child{
        width: 8.4rem;
    }
    .section-curriculum table thead th,
    .section-curriculum table tbody th{
        font-size: 1.2rem;
    }
    .section-curriculum table thead th:first-child{
        width: 4rem;
    }
    .section-curriculum table tbody td{
        font-size: 1.3rem;
        vertical-align: middle;
        padding-inline: 1rem 0.5rem
    }
    .section-curriculum table tbody .icon-clock{
        font-size: 1.1rem;
    }
    .section-curriculum table tbody .icon-clock:before{
        width: 1rem;
        height: 1rem;
        margin-right: 0.25rem;
    }
}
/* 学習プラン
-------------------------------------------- */
.section-plan .plan-cards-wrap {
    border:0.1rem solid var(--color-blue-200);
    padding: 2rem;
    background-color: var(--color-white);
}
.plan-header{
    background-color: var(--color-foreground);
    color: var(--color-white);
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
    padding: 1.4rem;
    margin-bottom: 0.1rem;
}
.plan-cards {
    display: flex;
    border: solid var(--color-foreground);
    border-width: 0 0.4rem 0.4rem 0.4rem;
}
.plan-cards-ttl-wrap{
    padding-block: 1.2rem;
}
.plan-cards-ttl-wrap .ttl{
    color: var(--color-primary);
    margin-bottom: 1.2rem;
    font-size: 2.4rem;
    font-weight: bold;
}
.plan-cards .plan-card{
    width: 100%;
}
.plan-cards .plan-card:not(:last-child){
    border-right: 0.1rem solid var(--color-blue-300);
}
.plan-cards .plan-card-header{
    background-color: var(--color-foreground);
    color: var(--color-white);
    font-size: clamp(1.8rem, 4vw, 2rem);
    padding: 1rem;
    font-weight: bold;
}
.plan-cards .plan-card:not(:last-child) .plan-card-header{
    box-shadow: 1px 0 0 0 white;
}
.plan-cards .plan-card-item{
    padding: 1rem 0;
    width: calc(95% - 2rem);
    margin-inline: auto;
}
.plan-cards .plan-card-item:first-of-type{
    padding-top: 1.4rem;
}
.plan-cards .plan-card-item:last-child{
    padding-bottom: 2rem;
}
.plan-cards .plan-card-item .price-original dd{
    font-weight: bold;
    font-size: 0.9em;
}
.plan-cards .plan-card-item .price-original dd,
.plan-cards .plan-card-item dl.price-reskilling dd{
    line-height: 1.4;
}
.plan-cards .plan-card-item .price-original dd .price-amount{
    font-size: 1.8em;
    padding-inline: 0.2rem;
}
.plan-cards .plan-card-item dl.price-reskilling{
    position: relative;
    padding-top: 3rem;
}
.plan-cards .plan-card-item dl.price-reskilling:before{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 1rem solid transparent;
    border-left: 1rem solid transparent;
    border-top: 1rem solid var(--color-primary);
    border-bottom: 0;
    position: absolute;
    right: 50%;
    top: 0;
    transform: translateY(100%) translateX(50%);
}
.plan-cards .plan-card-item dl.price-reskilling dt{
    background: var(--gradation-primary);
    color:var(--color-white);
    font-weight: bold;
    border-radius: 10rem;
    max-width:30rem;
    padding: 0.2rem;
    margin-inline: auto;
}
.plan-cards .plan-card-item dl.price-reskilling dd{
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-primary);
}
.plan-cards .plan-card-item dl.price-reskilling dd .price-amount{
    font-size: 3.2rem;
    padding-inline: 0.2rem;
}

.plan-footer{
    background-color: var(--color-blue-100);
    padding: 1rem 2rem 2rem;
    margin-block: 1rem;
}
.plan-footer .price-extension{
    display: flex;
    align-items: flex-end;
    gap: 3.6rem;
}
.plan-footer .price-extension dt{
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}
.plan-footer .price-extension dd{
    font-size:1.4rem;
}
.plan-footer .price-extension dd .price-amount{
    font-size: 2.4em;
}
@media screen and (max-width: 768px) {
    section.section-plan .plan-cards-wrap{
        width: 100%;
        border-inline: 0;
        margin-inline: auto;
        padding-inline: 1rem;
    }
    .plan-cards{
        flex-direction: column;
    }
    .plan-cards .plan-card:not(:last-child){
        border-right: 0;
    }
    .plan-cards .plan-card:not(:last-child) .plan-card-header{
        box-shadow: none;
    }
}

/* 受講までの流れ
-------------------------------------------- */
.section-flow ol:has(> .item){
    counter-reset: li;
    display: flex;
    align-items: stretch;
    gap:1.2rem;
}
.section-flow ol .item{
    flex:1;
    background-color: var(--color-white);
    text-align: center;
    padding-bottom: 1rem;
    padding-top: 4.4rem;
    position: relative;
}
.section-flow ol .item:before{
    font-weight: bold;
    counter-increment: li;
    content: "STEP " counter(li);
    background: var(--color-foreground);
    display: block;
    text-align: center;
    color: var(--color-white);
    padding: 1rem;
    width: 100%;
}
.section-flow ol .item img{
    width:90%;
    max-width:16rem;
    margin-block: 2rem;
}
.section-flow ol .item .txt{
    padding-inline: 2rem;
    font-size: 1.8rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
  .section-flow ol:has(> .item){
    flex-direction: column;
  }
}
