@charset "UTF-8";
/* ========================
　新着講座　トップページ
======================== */
.course_area{
    display: grid;
    grid-gap: 3rem 3rem;
}

.button.course_bt{
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 0px) {
    .course_area{
        display: flex;
        flex-wrap: wrap;
        gap: 1.5em;
    }
}

@media screen and (min-width: 768px) {
    .course_area{
        display: grid;
        grid-template-columns: repeat(2, minmax(334px, 1fr));
        grid-gap: 2em 2em;
    }
}

@media screen and (min-width: 1025px) {
    .course_area{
        grid-template-columns:repeat(3, minmax(270px, 1fr));
    }
}

/* ========================
　新着講座　レイアウト
======================== */
.course_content{
    display: grid;
    grid-auto-flow: row dense;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    justify-content: space-evenly;
    border-radius: 30px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
}

.course_content:hover .course_img img,
.course_content:hover .no_course_img img{
    transform: scale(1.1);/* 拡大 */
}

.course_content:hover .course_tit{
    text-decoration: underline;
}

.couse_link{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.course_img,
 .no_course_img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.course_img img,
.no_course_img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    position: relative;
    transition: transform .6s ease;
}

.course_img img{
    object-position: top;
}

.no_course_img img{
    object-position: center;
}

.course_tx__area{
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 0.75em;
    margin-top: 1.5em;
}

.course_tit{
    display: block;
    width: 100%;
    font-size: 1.35em;
}

.event_date{
    width: 100%;
}

.event_date p,
.course_category p,
.course_ganre p{
    margin: 0rem;
    display: inline-block;
    font-size: 0.8em;
}

.event_date p{
    width: 100%;
}

.course_ganre{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0.35em;
}

.course_ganre p{
    padding: 0.25em 0.5em;
    border-radius: 5px;
    background-color: var(--gray);
}

.course_category{
    width: 100%;
    display: block;
}

.course_category p{
    padding: 0.25em 0.5em;
    border-radius: 5px;
    border: solid 1px var(--border);
}

.course_type{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: left;
    gap: 0.5em;
}

.course_type a{
    display: flex;
    align-items: flex-start;
    gap: 5px;
    line-height: 1em;
}

.course_type .mark::before{
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    top: 0.25em;
}

.course_type .mark.online::before{
   background-color: var(--online);
}

.course_type .mark.free::before{
    background-color: var(--free);
}

.course_type .mark.taimen::before{
    background-color: var(--taimen);
}

.course_type .mark.open_badge::before{
    background-color: var(--open_badge);
}

.course_type .mark.e-learning::before {
    background-color: #a831e5;
}

.course_keyword{
    width: 100%;
}

.course_keyword a{
    padding: 1px 1em;
    border-radius: 20px;
    border: solid 1px var(--black);
    font-size: 0.8em;
}

@media screen and (min-width: 0px) {
    .course_content{
        padding: 1.5em;
    }
}

@media screen and (min-width: 768px) {
    
}

@media screen and (min-width: 1024px) {
    .course_content{
        padding: 2em;
    }
}

/* ========================
　講座検索　トップページ
======================== */
.course_search__content{
    width: 100%;
    border-radius: 3rem;
    background-color: var(--gray_clear);
    backdrop-filter: var(--blur);
    border: solid 1px var(--white_clear);
}

.course_search__content .tit_area{
    margin-bottom: 2.5em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5em;
}

.course_search__content .tit_area h2.top_tit,
.course_search__content .tit_area p{
    margin: 0;
    display: inline-block;
}

@media screen and (min-width: 0px) {
    .course_search h3 {
        font-size: 1.25em
    }
}

@media screen and (min-width: 768px) {
    .course_search h3{
        font-size: 1.7em;
    }
}
/* ========================
　講座検索　ボタン
======================== */
.course_search__bt___area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.course_search__bt a{
    padding: 1.5rem;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    font-weight: 500;
    display: grid;
    grid-auto-flow: column;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 10fr 1fr;
    grid-template-rows: 1fr;
    gap: 0rem 1rem;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.course_search__bt___area .course_search__icon{
    border-radius: 10px;
    background: var(--gray2);
    background-repeat: no-repeat;
    background-size: 65px;
    background-position: center;
}

.course_search__bt:first-child .course_search__icon{
    background-image: url(../img/icon/skill.svg);
}

.course_search__bt:nth-child(2) .course_search__icon{
    background-image: url(../img/icon/management.svg);
}

.course_search__bt:nth-child(3) .course_search__icon{
    background-image: url(../img/icon/zaitaku.svg);
}

.course_search__bt:last-child .course_search__icon{
    background-image: url(../img/icon/change.svg);
}

.course_search__bt a:hover{
    box-shadow: 0px 30px 20px -10px rgb(0 34 112 / 7%);
}

.course_search__bt a:hover .bt_arrow{
    left: 10px;
}

@media screen and (min-width: 0px) {
    .course_search{
        padding: 4.5em 0em 2em 0em;
    }

    .course_search__content{
        padding: 4em 1.5em;
    }

    .course_search__content .tit_area {
        flex-wrap: wrap;
    }

    .course_search__bt___area{
        gap: 1em;
    }

    .course_search__bt {
        width: 100%;
    }

    .course_search__bt___area .course_search__icon {
        width: 50px;
        height: 50px;
        background-size: 40px;
    }

    .course_search__bt a{
        font-size: 1em;
    }
}

@media screen and (min-width: 768px) {
    .course_search{
        padding: 4.5em 1.5em 2em 1.5em;
    }
    
    .course_search__bt___area{
        gap: 2em;
    }

    .course_search__content{
        padding: 3em;
        display: flex;
        flex-wrap: wrap;
    }

    .course_search__bt{
        width: calc(50% - 1rem);
    }
    
}

@media screen and (min-width: 1024px) {
    .course_search__bt___area .course_search__icon {
        width: 90px;
        height: 90px;
        background-size: 65px;
    }

    .course_search__bt a{
        font-size: 1.5em;
    }
}

@media screen and (min-width: 1025px) {
    
}

@media screen and (min-width: 1440px) {

}

/* ========================
　講座検索　フリーワード検索
======================== */
.course_search__area{
    width: 100%;
    margin-top: 3em;
}

.course_search__free{
    margin-top: 1.5rem;
    display: flex;
    position: relative;
}

.course_search__free [type="search"] {
    width: 100%;
    border-radius: 3rem;
    border: unset;
    box-shadow: var(--shadow);
    position: relative;
}

.course_search__free::before{
    margin-left: 1em;
    content: '';
    height: 100%;
    background-image: url(../img/icon/search.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    z-index: 1;
}

.course_search__free [type="submit"] {
    right: 0;
    height: 100%;
    display: flex;
    background-color: unset;
    border-radius: 0 5rem 5rem 0;
    border: unset;
    position: absolute;
    align-items: center;
    cursor: pointer;
    color: var(--black);
}

.course_search__free [type="submit"]::before{
    content: '';
    width: 1px;
    height: 40px;
    display: block;
    background-color: var(--black);
}

/* ========================
　講座検索　キーワード
======================== */
.course_keyword__area{
    margin-top: 3rem;
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 1.5rem;
}

.key_word__list{
    display: flex;
    flex-wrap: wrap;
    gap: 0.75em;
    list-style: none;
}

.key_word__list li{
    display: flex;
    align-items: center;
}

.key_word__list li a{
    padding: 0.25em 1.5em;
    border-radius: 20px;
    border: solid 2px var(--black);
    background-color: var(--white);
    font-weight: 500;
}

@media screen and (min-width: 0px) {
    .course_search__bt a br{
        display: none;
    }

    .course_search__free::before{
        width: 20px;
    }

    .course_search__free [type="search"] {
        padding: 1em 4em 1em 3em;
    }

    .course_search__free [type="submit"]{
        padding: 1em 1em 1em 0;
    }

    .course_search__free [type="submit"]::before{
        margin-right: 1em;
    }

    .course_keyword__area{
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 425px) {
}

@media screen and (min-width: 768px) {
    .course_search__free::before{
        width: 35px;
    }

    .course_search__free [type="search"] {
        padding: 1em 6em 1em 4em;
    }

    .course_search__free [type="submit"]{
        padding: 1em 2em 1em 0;
    }

    .course_search__free [type="submit"]::before{
        margin-right: 2em;
    }
}

@media screen and (min-width: 1024px) {
    .course_search h3 {
        font-size: 1.5em
    }

}

@media screen and (min-width: 1025px) {
    .course_search__bt a br{
        display: inline;
    }
}

@media screen and (min-width: 1440px) {
    .course_search h3 {
        font-size: 1.7em;
    }
}

/* ========================
　講座 ページ内 検索
======================== */
.page_course__search{
    margin-bottom: 4em;
    padding-top: 0;
}

.page_course__tit{
    font-size: 1.75em;
}

.page_course__search h3{
    font-size: 1.5em;
}

/* ========================
　講座詳細ページ 共通
======================== */
.page_course__header nav{
    width: 100%;
}

.page_course__header .course_tit__area .course_file:link,
.page_course__header .course_tit__area .course_file:visited,
.course_item__area a:link,
.course_item__area a:visited{
    text-decoration: underline;
    color: #2271b1;
}

.course_page a[target="_blank"]::after{
    content: '';
    margin-left: 0.45rem;
    width: 15px;
    height: 15px;
    mask-image: url(../img/icon/blank.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    display: inline-block;
    position: relative;
    background-color: #888;
}

.page_course__header{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 3em 2em;
}

.page_course__header .mainimg{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page_course__header .course_page__img{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    flex-wrap: wrap;
    aspect-ratio: 3 / 4;
}

.page_course__header .subimg_area{
    margin-top: 1em;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;
}

.page_course__header .subimg_area .subimg{
    width: 33.33%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: .3s;
}

.page_course__header .subimg_area .subimg:hover{
    opacity: 0.7;
}

.page_course__header .subimg_area .subimg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_course__header .course_tit__area{
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 1em;
}

.page_course__header .course_tit__area h1{
    margin-top: 0;
    width: 100%;
}

.page_course__header .course_tit__area p{
    line-height: 1.5;
    letter-spacing: 1px;
}

.page_course__header .course_tit__area .course_category p,
.page_course__header .course_tit__area .course_ganre p{
    background-color: var(--white);
    font-size: 1em;
}

.course_tx{
    width: 100%;
}

.page_course__header .course_tit__area .course_file__area{
    width: 100%;
    display: flex;
    align-items: center;
}

.page_course__header .course_tit__area .course_file{
    display: block;
}

/* 講座 詳細ページ ファイルアイコン */
.page_course__header .course_tit__area img{
    width: 15px;
    height: 17px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-block;
    position: relative;
    margin-right: 0.5rem;
}

.page_keyword__area{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
}

.key_word__list{
    width: 100%;
}

.course_page h2{
    font-size: 30px;
}

.course_item{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5em 2em;
}

.course_item h3,
.course_item p{
    margin: 0;
}

.course_item__area{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.5em;
}

.course_item dt {
    margin: 0;
}

.course_item dd {
    margin: 0;
}

.bosyu_tx{
    width: 100%;
    font-size: 1.25em;
    font-weight: 600;
}

.bosyu_tx p{
    margin: 0;
}

.apply_bt {
    margin-top: 3em;
    width: 100%;
    display: flex;
    justify-content: center;
}

.apply_bt a{
    width: 100%;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 60px;
    border: solid 2px var(--black);
    background-color: var(--white);
    font-weight: 600;
    font-size: 1.25em;
    transition: .3s;
}

.apply_bt__icon{
    margin-right: 0.5em;
    width: 25px;
    height: 30px;
    background-image: url(../img/icon/moushikomi.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.apply_bt a[target="_blank"]::after{
    content: unset;
}

.apply_bt a:hover {
    text-decoration: underline;
}

.back_bt.button{
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 0px) {

    .page_course__header .course_page__img{
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
    }

    .page_course__header .course_tit__area{
        width: 100%;
    }

    .course_item dt {
        width: 100%;
    }

    .course_item dd {
        width: 100%;
    }

    .course_bt__area{
        padding-top: 3em;
    }
}

@media screen and (min-width: 768px) {
    .page_course__header .mainimg{
        aspect-ratio: 1 / 1;
    }

    .course_item dt {
        width: calc(25% - 1em);
    }

    .course_item dd {
        width: calc(75% - 1em);
    }

    .course_bt__area{
        padding: 3em 4.5em 0 4.5em;
    }

}

@media screen and (min-width: 1024px) {
    .page_course__header .course_page__img{
        width: calc(33.33% - 1em);
    }

    .page_course__header .course_tit__area{
        width: calc(66.66% - 1em);
    }
}

@media screen and (min-width: 1025px) {

}

@media screen and (min-width: 1440px) {

}