@charset "utf-8";
/* CSS Document */

.bl_firstView {
    position: relative; 
    padding-top: 117px;
    width: 100%;
}
.bl_firstView_inner {
    position: relative;    
}
/* パンくず */
.bl_firstView .el_breadcrumb {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 100;
    padding: .4em;
    background: linear-gradient(90deg, #826A99 0%, #26D4E8 100%);
}
.bl_firstView .el_breadcrumb_inner {
    max-width: 1120px;
    margin: 0 auto;
}
.bl_firstView .el_breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
}
.bl_firstView .el_breadcrumb ol li {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    line-height: 2.5;
    color: #fff;
}
.bl_firstView .el_breadcrumb ol li a::after {
    content: "/";
    margin: 0 7px;
}
.bl_firstView .el_breadcrumb ol li a span {
    text-decoration: underline;
    text-underline-offset: 0.3em;
    transition: 0.3s;
}
.bl_firstView .el_breadcrumb ol li span {
    position: relative;
}
/* 背景画像 */
.bg_fvImg {
    width: 100%;
}
.bg_fvImg > img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top center;
}
.bl_firstView_course .bg_fvImg > img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top center;
}
/* 経産省ロゴ画像 */
.bg_recareerLogo {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
}
.bg_recareerLogo_inner {
    position: absolute;
    width: 240px;
    top: 370px;
    left: 10px;
}
.bg_recareerLogo_inner > img {
    width: 240px;
    z-index: 100;
}
.bl_firstView_course .bg_recareerLogo_inner > img {
    position: absolute;
    bottom: 50%;
    left: 10px;
    width: 240px;
    z-index: 100;
}
/* タイトル */
.bl_mainTitle {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
}
.bl_mainTitle .bl_mainTitle_inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 1em;
    color: #003DB7;
    line-height: 1.2;
}
.bl_mainTitle .catch {
    margin-bottom: 6px;
    font-size: 4.2rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.08em;
}
.bl_mainTitle .catch span {
    background: rgba(255,255,255,0.90);
    padding: 0 .4em .2em;
    display: inline-block;
}
.bl_mainTitle h1.hdg {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.06em;
    color: #fff;
}
.bl_mainTitle h1.hdg span {
    background: linear-gradient(90deg, #003DB7 0%, #00BCD2 100%);
    opacity: 0.95;
    padding: .3em .6em;
    display: inline-block;
}
.bl_mainTitle .sub {
    margin-bottom: 6px;
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: 0.06em;
}
.bl_mainTitle .sub span {
    background: rgba(255,255,255,0.90);
    padding: .4em .6em;
    display: inline-block;
}
/* CTAボタン */
.bl_firstView .el_cta {
    z-index: 101;
    position: absolute;
    right: 10%;
    top: 80%;
    transform: translateY(-50%)
}
.bl_firstView .el_cta .btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 10px 50px;
    border-radius: 100vh;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.35;
    letter-spacing: 0.04em;
    box-shadow: 0 0 0 3px #E62A6D;
}
.bl_firstView .el_cta .btn a::after {
    background: #E62A6D;
    background: linear-gradient(-90deg, #F24C87 0%, #D61A5D 100%);
    border: 2px solid #fff;
    content: "";
    position: absolute;
    border-radius: 100vh;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
  }
.bl_firstView .el_cta .btn a span {
    position: relative;
    z-index: 100;
}
.bl_firstView .el_cta .btn a .icon_arrow {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    width: 12px;
    height: 13px;
    color: #fff;
    z-index: 100;
}
@media screen and (max-width: 767px) {
	/* FVエリア */
    .bl_firstView {
        padding-top: 58px;
        width: 100%;
        height: 90vh;
        overflow: hidden;
    }
    .bl_firstView .el_breadcrumb {
        bottom: auto;
        top: 58px;
    }
    .el_breadcrumb_inner {
        padding: 0 20px;
    }
    .bl_firstView .el_breadcrumb ol li {
        font-size: 1rem;
    }
    /* 背景画像 */
    .bl_firstView_course .bg_fvImg > img,
    .bg_fvImg > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }
    /* 経産省ロゴ画像 */
    .bl_firstView_course .bg_recareerLogo,
    .bg_recareerLogo {
        padding: 0 20px;
        max-width: none;
    }
    .bl_firstView_course .bg_recareerLogo_inner,
    .bg_recareerLogo_inner {
        width: 140px;
        right: 40px;
        top: 80px;
    }
    .bl_firstView_course .bg_recareerLogo_inner > img,
    .bg_recareerLogo_inner > img {
        width: 100%;
    }
    .bl_firstView_course .bg_recareerLogo_inner.logo_spL > img,
    .bg_recareerLogo_inner.logo_spL > img {
        width: 140px;
        right: auto;
        top: 80px;
    }
    /* タイトル */
    .bl_firstView_course .bl_mainTitle,
    .bl_mainTitle {
        top: auto;
        bottom: 5%;
    }
    .bl_firstView_course .bl_mainTitle .bl_mainTitle_inne,
    .bl_mainTitle .bl_mainTitle_inner {
        padding: 0 20px;
        line-height: 1.2;
    }
    .bl_firstView_course .bl_mainTitle .catch,
    .bl_mainTitle .catch {
        font-size: 3.2rem;
        line-height: 1.2;
        letter-spacing: 0.08em;
    }
    .bl_firstView_course .bl_mainTitle .catch span,
    .bl_mainTitle .catch span {
        padding: 0 .3em .2em;
    }
    .bl_firstView_course .bl_mainTitle .hdg,
    .bl_mainTitle .hdg {
        font-size: 1.6rem;
        font-weight: bold;
    }
    .bl_firstView_course .bl_mainTitle .hdg span,
    .bl_mainTitle .hdg span {
        padding: .3em .6em;
    }
    .bl_firstView_course .bl_mainTitle .sub,
    .bl_mainTitle .sub {
        font-size: 1.8rem;
    }
    .bl_firstView_course .bl_mainTitle .sub span,
    .bl_mainTitle .sub span {
        padding: .4em;
    }
    /* CTAボタン */
    .bl_firstView.bl_firstView_course .el_cta,
    .bl_firstView .el_cta {
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%) translateY(-50%);
        width: 100%;
        padding: 0 20px;
    }
    .bl_firstView.bl_firstView_course .el_cta .btn a,
    .bl_firstView .el_cta .btn a {
        padding: 10px 20px;
    }
}

/* 講座遷移リンクパーツ */
.bl_course_list {
    
}
.bl_course_list_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.bl_course_list_inner .list_item {
    width: 48.5%;
    margin-bottom: 2em;
    box-shadow: 0 0 16px 0 rgba(0,0,0,0.2);
    border-radius: 20px;
}
.bl_course_list_inner .list_item a {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
}
.bl_course_list_inner .list_item a::before {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, #003DB7 0%, #00BCD2 100%);
    width: 2em;
    height: 2em;
    right: 1em;
    bottom: 1em;
    border-radius: 100vh;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
}
.bl_course_list_inner .list_item a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: .4em solid transparent;
    border-bottom: .4em solid transparent;
    border-left: .6em solid #FFF;
    border-right: 0;
    right: 1.6em;
    bottom: 1.6em;
}
.bl_course_list_inner .list_item .thumb_img {
    width: 100%;
}
.bl_course_list_inner .list_item .thumb_img img {
    object-fit: cover;
    border-radius: 20px;
}
.bl_course_list_inner .box_contents {
    position: absolute;
    top: 45%;
    left: 6%;
    transform: translateY(-50%);
}
.bl_course_list_inner .box_contents .tit_course_list {
    font-size: clamp(1.2em, 2.4vw, 1.8em);
    font-weight: bold;
    letter-spacing: 0.06em;
    color: #003db7;
}
.bl_course_list_inner .box_contents .tit_course_list span {
    background: rgba(256,256,256,0.8);
    display: inline;
    padding: .2em .4em;
    line-height: 2.2;
    border-bottom: 5px solid #003db7;
    border-image: linear-gradient(90deg, #003DB7 0%, #00BCD2 100%);
    border-image-slice: 1;
}
@media screen and (max-width: 767px) {
    /* 講座遷移リンクパーツ */
    .bl_course_list_inner {
        display: block;
    }
    .bl_course_list_inner .list_item {
        width: 100%;
        margin-bottom: 1.2em;
        box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
        border-radius: 16px;
    }
    .bl_course_list_inner .list_item .thumb_img img {
        border-radius: 16px;
    }
    .bl_course_list_inner .box_contents {
        
    }
    .bl_course_list_inner .box_contents .tit_course_list {
        font-size: 4.8vw;
    }
    .bl_course_list_inner .box_contents .tit_course_list span {
        line-height: 2.1;
        border-bottom: 3px solid #003db7;
    }
}

/* 講座概要・詳細パーツ */

/* コース導線（サブメニュー） */
.bl_subMenu {
    
}
.bl_subMenu_inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.bl_subMenu_inner.bl_subMenu_col2 li {
    width: 49%;
}
.bl_subMenu_inner.bl_subMenu_col3 li {
    width: 32.5%;
}
.bl_subMenu_inner li a {
    position: relative;
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    padding: .8em;
    line-height: 1.4;
    border-radius: 100vh;
    color: #003DB7;
    background:  #fff;
    margin-bottom: 1em;
}
.bl_subMenu_inner li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100vh;
    border: 4px solid transparent;
    background: linear-gradient(90deg, #003DB7 0%, #00BCD2 100%) border-box border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
    mask-composite: exclude;
}
.bl_subMenu_inner li a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 1em;
    width: 2.4rem;
    height: 2.4rem;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640' fill='%23003DB7'%3E%3C!--!Font Awesome Free v7.1.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M320 528C205.1 528 112 434.9 112 320C112 205.1 205.1 112 320 112C434.9 112 528 205.1 528 320C528 434.9 434.9 528 320 528zM320 64C178.6 64 64 178.6 64 320C64 461.4 178.6 576 320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64zM308.7 451.3C314.9 457.5 325.1 457.5 331.3 451.3L435.3 347.3C439.9 342.7 441.2 335.8 438.8 329.9C436.4 324 430.5 320 424 320L352 320L352 216C352 202.7 341.3 192 328 192L312 192C298.7 192 288 202.7 288 216L288 320L216 320C209.5 320 203.7 323.9 201.2 329.9C198.7 335.9 200.1 342.8 204.7 347.3L308.7 451.3z'/%3E%3C/svg%3E");
}

/* オンライン・教室アイコン */
.bl_borderLeftHdg {
    position: relative;
}
.bl_listIcon {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
}
.bl_listIcon_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.ico_listIcon {
    background: #FFF;
    padding: .3em 1em;
    color: #003DB7;
    border: 1px solid #003DB7;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 6px;
}

/* 身につくスキル */
.list_skill {
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
}
.list_skill li {
    list-style-type: none;
    margin-bottom: 0;
    margin-right: .4em;
    font-size: 1.6rem;
}
.list_skill li::after {
    content: "/";
    margin-left: .4em;
}
.list_skill li:last-of-type {
    margin-bottom: 0;
}
.list_skill li:last-of-type::after {
    content: none;
    margin-left: 0;
}

/* CTAボタン */
.bl_btnArea {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.bl_btnArea a {
    position: relative;
    display: block;
    background: #ccc;
    width: 48%;
    margin: 0 auto;
    padding: 1em;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    border-radius: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
}
.bl_btnArea a:hover {
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.6);
    opacity: 0.6;
}
.bl_btnArea a .icon_arrow {
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
}
.bl_btnArea a.btn_pink .icon_arrow *,
.bl_btnArea a.btn_blue .icon_arrow * {
    fill: #fff;
}
.bl_btnArea a::after {
    position: absolute;
    display: block;
    content: "";
    width: 2rem;
    height: 2rem;
    border: 1px solid #fff;
    border-radius: 100vh;
    right: 0.8em;
    top: 50%;
    transform: translateY(-50%);
}
.bl_btnArea a.btn_pink {
    background: linear-gradient(90deg, #bf0044, #ff387f);
    color: #fff;
    transition: all 0.3s ease;
}
.bl_btnArea a.btn_blue {
    background: linear-gradient(90deg, #003DB7, #00BCD2);
    color: #fff;
    transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
    /* コース導線（サブメニュー） */
    .bl_subMenu_inner {
        display: block;
    }
    .bl_subMenu_inner.bl_subMenu_col2 li {
        width: 100%;
    }
    .bl_subMenu_inner.bl_subMenu_col3 li {
        width: 100%;
    }
    .bl_subMenu_inner li a {
        font-size: 1.4rem;
        margin-bottom: .8em;
    }
    .bl_subMenu_inner li:last-child a {
        margin-bottom: 0;
    }
    /* オンライン・教室アイコン */
    .bl_borderLeftHdg {
        margin-bottom: 4em;
    }
    .bl_listIcon {
        position: absolute;
        top: auto;
        right: auto;
        bottom: -4.6em;
        left: 0;
        transform: translateY(-50%);
        padding: .3em 1em;
    }
    .ico_listIcon {
        font-size: 1.2rem;
    }
    /* 身につくスキル */
    .list_skill li {
        font-size: 1.3rem;
    }
    /* CTAボタン */
    .bl_btnArea {
        display: block;
    }
    .bl_btnArea a {
        width: 100%;
        margin: 0 auto;
        padding: 1em;
        font-size: 1.4rem;
        line-height: 1.4;
        font-weight: bold;
        text-align: center;
        border-radius: 100vh;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
        transition: all 0.3s ease;
        margin-bottom: .6em;
    }
    .bl_btnArea a .icon_arrow {
        width: 0.6em;
        height: 0.6em;
    }
    .bl_btnArea a::after {
        position: absolute;
        display: block;
        content: "";
        width: 1.6rem;
        height: 1.6rem;
        border: 1px solid #fff;
        border-radius: 100vh;
        right: 0.75em;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* CTAボックス */
.blk_ctabox {
    margin-top: 0;
    margin-bottom: 50px;
}
.blk_ctabox .ly_contentWidth__md {
    padding: 2em;
    border-radius: 20px;
    border: 4px solid #FBCDDE;
    background: #F1FAFF;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.3);
}
.tit_ctabox {
    font-weight: bold;
    font-size: 36px;
    text-align: center;
    margin-bottom: .4em;
}
.tit_ctabox span {
    font-size: .9em;
}
.blk_ctabox .el_format_txt {
    margin-bottom: 1.2em;
}
@media screen and (max-width: 767px) {
    .blk_ctabox {
        margin-top: 0;
        margin-bottom: 50px;
    }
    .blk_ctabox .ly_contentWidth__md {
        padding: 1.6em;
        border: 3px solid #FBCDDE;
    }
    .tit_ctabox {
        font-size: 22px;
    }
}