@charset "UTF-8";

/* #needs */
#needs .fig-wrap.course_flow figure {
    max-width: 950px;
}


/* #language-support */
#language-support .flex-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

#language-support .flex-row>a {
    border: solid 1px;
    border-radius: 10px;
    display: block;
    padding: 20px;
    min-width: 200px;
    text-decoration: none;
    position: relative;
    top: 0;
    transition: top .1s;
    background-color: #ffffff;
}

#language-support .flex-row>a:hover {
    top: -10px;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 15px -20px;
}

#language-support .flex-row>a::after {
    content: "";
    display: block;
    width: 1em;
    padding-top: 1em;
    background-color: var(--color-main);
    position: absolute;
    top: 10px;
    right: 10px;
    clip-path: polygon(0 0, 100% 100%, 100% 0);
}

#language-support .flex-row>a .in {
    display: flex;
    align-items: center;
    gap: .5em;
    text-decoration: none;
    font-size: 18px;
}

#language-support .flex-row>a .in img{
    width: 50px;
}

@media only screen and (max-width:767px) {
    #language-support .flex-row {
        display: flex;
        gap: 4vw;
    }

    #language-support .flex-row>a {
        flex-grow: 1;
    }

    #language-support .flex-row>a .in {
        display: flex;
        align-items: center;
        gap: .5em;
        text-decoration: none;
        font-size: 3.73vw;
    }

    #language-support .flex-row>a .in img{
        width: 8vw;
    }
}

/* #curriculum */
#curriculum .fig-row {
    display: flex;
    gap: 20px;
}

#curriculum .fig-row figure figcaption {
    font-size: 16px;
    text-align: center;
    margin-top: 0.5em;
}

#curriculum .fig-row figure figcaption span {
    display: inline-block;
}

@media only screen and (max-width:767px) {
    #curriculum .fig-row {
        flex-direction: column;
        gap: 4vw;
    }

    #curriculum .fig-row figure figcaption {
        font-size: 3.73vw;
    }
}
