@charset "UTF-8";

/*
================================================================
 サイトトップ
================================================================
*/

.top-hero-screen {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.top-hero-screen-item {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    background-color: var(--themeval-color-theme-white);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: var(--themeval-color-theme-text-white);
    overflow: hidden;
}
.top-hero-screen-item.item--screen {
    position: relative;
    z-index: 10;
    transition: left var(--themeval-menu-transition-step-1);
}
.top-hero-screen-item.item--junior {
    background-image: url(../img/top/mvbg_junior_pc.jpg);
}
.top-hero-screen-item.item--senior {
    background-image: url(../img/top/mvbg_senior_pc.jpg);
}
.top-hero-screen.select--junior .top-hero-screen-item.item--screen {
    left: 100%;
    transition: left var(--themeval-menu-transition-step-2);
}
.top-hero-screen.select--junior .top-hero-screen-item.item--junior {
    z-index: 2;
}
.top-hero-screen.select--senior .top-hero-screen-item.item--screen {
    left: -100%;
    transition: left var(--themeval-menu-transition-step-2);
}
.top-hero-screen.select--senior .top-hero-screen-item.item--senior {
    z-index: 2;
}
.top-hero-screen-item .layout-container {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: var(--themeval-frame-container-width);
    min-height: calc(100vh - var(--themeval-global-header-height));
    min-height: calc(100svh - var(--themeval-global-header-height));
}
.top-hero-screen-item .layout-container::before {
    content: "";
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 33.3333% 0 0;
}
.top-hero-screen-item .layout-container .this__dekiru {
    position: absolute;
    bottom: 0;
    left: 35%;
    z-index: 4;
    display: block;
    width: 36.4286%;
    transform: translateX(-85.5%);
}
.top-hero-screen-item .layout-container .this__dekiru::after {
    content: "";
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 41.8% 0 0;
}
.top-hero-screen-item .layout-container .this__dekiru-pivot {
    display: block;
    box-sizing: border-box;
    width: 171.0%;
    height: auto;
    margin: 0 -71.0% 0 0;
    padding: 0 71.0% 0 0;
    opacity: 0.01;
    transform: translateY(20%) scale(0.8);
}
.top-hero-screen-item .layout-container .this__dekiru img {
    display: block;
    width: 100%;
    height: auto;
}
.top-hero-screen-item .layout-container .this__circle {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    display: block;
    width: max( 54.2857%, 85.4vh );
    width: max( 54.2857%, 85.4svh );
    transform: translateX(-50%);
}
.top-hero-screen-item .layout-container .this__circle-pivot {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    opacity: 0.01;
    transform: rotate(-60deg) scale(0.8);
}
.top-hero-screen-item .layout-container .this__circle img {
    display: block;
    width: 100%;
    height: auto;
}
.top-hero-screen-item .layout-container .this__circle::after {
    content: "";
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 41.8% 0 0;
}
.top-hero-screen-item .layout-container .this__comment {
    position: absolute;
    bottom: max(7%, 55px);
    right: 5%;
    z-index: 3;
    display: block;
    width: 18em;
    text-align: right;
    font-weight: 900;
    font-size: min( 17px, 1.6vw );
    line-height: 1.75;
    opacity: 0.01;
    transform: translateY(-20%);
}
.top-hero-screen-item .layout-container .this__comment img {
    display: block;
    width: 16em;
    max-width: 100%;
    height: auto;
    padding: 0;
    margin: 0 0 0 auto;
}
.top-hero-screen-item .layout-container .this__student {
    position: absolute;
    bottom: 0;
    left: 35%;
    z-index: 1;
    display: block;
    width: 42.8571%;
    transform: translateX(-18%);
}
.top-hero-screen-item .layout-container .this__student::before {
    content: "";
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 71.6667% 0 0;
}
.top-hero-screen-item .layout-container .this__student img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: auto;
}


.top-hero-screen.select--junior .top-hero-screen-item.item--junior .layout-container .this__dekiru-pivot,
.top-hero-screen.select--senior .top-hero-screen-item.item--senior .layout-container .this__dekiru-pivot {
    opacity: 1;
    transform: none;
    transition: 
        opacity 0.3s ease-in-out 1.2s,
        transform 0.3s ease-in-out 1.2s;
}
.top-hero-screen.select--junior .top-hero-screen-item.item--junior .layout-container .this__circle-pivot,
.top-hero-screen.select--senior .top-hero-screen-item.item--senior .layout-container .this__circle-pivot {
    opacity: 1;
    transform: none;
    transition: 
        opacity 0.6s ease-out 0.6s,
        transform 0.6s ease-out 0.6s;
}
.top-hero-screen.select--junior .top-hero-screen-item.item--junior .layout-container .this__comment,
.top-hero-screen.select--senior .top-hero-screen-item.item--senior .layout-container .this__comment {
    opacity: 1;
    transform: none;
    transition: 
        opacity 0.4s ease-out 1.5s,
        transform 0.4s ease-out 1.5s;
}

@media (max-aspect-ratio: 2/3), (min-width: 1440px) and (min-height: 2160px) {

    .top-hero-screen.select--junior .top-hero-screen-item.item--junior .layout-container .this__dekiru-pivot,
    .top-hero-screen.select--senior .top-hero-screen-item.item--senior .layout-container .this__dekiru-pivot {
        opacity: 1;
        transform: none;
        transition: 
            opacity 0.3s ease-in-out 0.6s,
            transform 0.3s ease-in-out 0.6s;
    }
    .top-hero-screen.select--junior .top-hero-screen-item.item--junior .layout-container .this__circle-pivot,
    .top-hero-screen.select--senior .top-hero-screen-item.item--senior .layout-container .this__circle-pivot {
        opacity: 1;
        transform: none;
        transition: 
            opacity 0.6s ease-out 0.8s,
            transform 0.6s ease-out 0.8s;
    }
    .top-hero-screen.select--junior .top-hero-screen-item.item--junior .layout-container .this__comment,
    .top-hero-screen.select--senior .top-hero-screen-item.item--senior .layout-container .this__comment {
        opacity: 1;
        transform: none;
        transition: 
            opacity 0.4s ease-out 1.2s,
            transform 0.4s ease-out 1.2s;
    }

}



@media (max-width: 639px), (max-aspect-ratio: 8/7), (min-width: 1440px) and (min-height: 1260px) {

    .top-hero-screen-item .layout-container::before {
        padding: 75% 0 0;
    }
    .top-hero-screen-item .layout-container .this__dekiru {
        left: 40%;
        width: 49%;
    }
    .top-hero-screen-item .layout-container .this__dekiru::after {
        padding: 50% 0 0;
    }
    .top-hero-screen-item .layout-container .this__circle {
        bottom: 40%;
        width: 90%;
    }
    .top-hero-screen-item .layout-container .this__circle::after {
        padding: 0% 0 0;
    }
    .top-hero-screen-item .layout-container .this__comment {
        bottom: 15%;
        right: 2%;
        font-size: min( 21px, 1.6vw );
    }
    .top-hero-screen-item .layout-container .this__student {
        left: 40%;
        width: 56%;
    }
    .top-hero-screen-item .layout-container .this__student::before {
        padding: 80% 0 0;
    }

}

@media (max-aspect-ratio: 3/4), (min-width: 1440px) and (min-height: 1920px) {

    .top-hero-screen-item .layout-container .this__dekiru {
        left: 45%;
        width: 54%;
    }
    .top-hero-screen-item .layout-container .this__dekiru::after {
        padding: 50% 0 0;
    }
    .top-hero-screen-item .layout-container .this__circle {
        bottom: 40%;
        width: 90%;
    }
    .top-hero-screen-item .layout-container .this__circle::after {
        padding: 0% 0 0;
    }
    .top-hero-screen-item .layout-container .this__comment {
        bottom: 25%;
        right: 2%;
        font-size: min( 23px, 1.6vw );
    }
    .top-hero-screen-item .layout-container .this__student {
        left: 45%;
        width: 63%;
    }
    .top-hero-screen-item .layout-container .this__student::before {
        padding: 80% 0 0;
    }

}

@media (max-aspect-ratio: 2/3), (min-width: 1440px) and (min-height: 2160px) {

    .top-hero-screen-item.item--junior {
        background-image: url(../img/top/mvbg_junior_sp.jpg);
    }
    .top-hero-screen-item.item--senior {
        background-image: url(../img/top/mvbg_senior_sp.jpg);
    }
    .top-hero-screen-item .layout-container .this__dekiru {
        top: 2%;
        bottom: auto;
        left: 50%;
        width: 75%;
        transform: translateX(-50%);
    }
    .top-hero-screen-item .layout-container .this__dekiru::after {
        padding: 0% 0 0;
    }
    .top-hero-screen-item .layout-container .this__dekiru-pivot {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .top-hero-screen-item .layout-container .this__circle {
        bottom: 50%;
        left: 50%;
        width: max( 75%, 50vh );
        width: max( 75%, 50svh );
        transform: translate(-50%,50%);
    }
    .top-hero-screen-item .layout-container .this__circle::after {
        padding: 30% 0 0;
    }
    .top-hero-screen-item .layout-container .this__comment {
        bottom: 8%;
        right: 0%;
        font-size: min( 26px, 2.4vw );
    }
    .top-hero-screen-item .layout-container .this__student {
        left: 40%;
        width: min( 100%, 50vh );
        width: min( 100%, 50svh );
        transform: translateX(-50%);
    }
    .top-hero-screen-item .layout-container .this__student::before {
        padding: 80% 0 0;
    }

}





/*
================================================================
 教育の特色
================================================================
*/

.top-features-content {
    position: relative;
    z-index: 1;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 120px 0 280px;
    background-color: var(--themeval-color-theme-white);
    background-image: url(../img/top/campusbg.jpg);
    background-repeat: no-repeat;
    background-position: center bottom -200px;
    background-size: 1920px auto;
    overflow: hidden;
}
.top-features-content::before {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 130px;
    left: 0;
    display: block;
    width: 100%;
    height: calc(100% - 130px);
    background-color: transparent;
    background-image: linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,1) 350px, rgba(255,255,255,1));
}
.top-features-content .content-container {
    position: relative;
    z-index: 11;
}

.top-features-item {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 200px;
}
.top-features-item:nth-child(2n) {
    flex-direction: row-reverse;
}
.top-features-item::after {
    content: "";
    display: block;
    box-sizing: content-box;
    width: 30%;
    height: 0;
    padding: 50% 0 0;
}
.top-features-item-content {
    display: block;
    max-width: 65%;
    padding: 0 0 0 50px;
}
.top-features-item:nth-child(2n) .top-features-item-content {
    padding: 0 50px 0 0;
}
.top-features-item-heading {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: calc(30rem / var(--themeval-root-font-size) );
    font-weight: 900;
    line-height: 1.65;
}
.top-features-item-heading::before {
    content: "";
    position: absolute;
    z-index: 1;
    left: -100px;
    top: -150px;
    display: block;
    width: 400px;
    height: 400px;
    background-color: transparent;
    background-image: radial-gradient(rgba(var(--themeval-rgb-theme-04),0.5), rgba(var(--themeval-rgb-theme-04),0.25) 50%, rgba(var(--themeval-rgb-theme-04),0) 70%);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}
.top-features-item:nth-child(2n) .top-features-item-heading::before {
    left: auto;
    right: -100px;
}
.top-features-item-heading .this__text {
    position: relative;
    z-index: 11;
    display: block;
}
.top-features-item-comment {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 100%;
    transform: translateY(-50%);
}
.top-features-item:nth-child(2n) .top-features-item-comment {
    right: auto;
    left: 0;
}
.top-features-item-comment p {
    position: relative;
    z-index: 11;
    display: block;
    box-sizing: border-box;
    margin: 0 0 0 auto;
    padding: 2.6em 0;
    width: max-content;
    min-height: 9.2em;
    color: var(--themeval-color-theme-01);
    text-align: center;
    font-family: var(--themeval-font-serif);
    font-weight: 700;
    font-size: calc(24rem / var(--themeval-root-font-size) );
    line-height: 1.3333;
    letter-spacing: -0.05em;
    text-shadow: 
        1px 1px 5px var(--themeval-color-theme-white),
        1px -1px 5px var(--themeval-color-theme-white),
        -1px 1px 5px var(--themeval-color-theme-white),
        -1px -1px 5px var(--themeval-color-theme-white);
}
.top-features-item-comment p.text--small-overflow {
    padding: 2.6em 0 1.3em;
}
.top-features-item:nth-child(2n) .top-features-item-comment p {
    margin: 0 auto 0 0;
}
.top-features-item-comment p::before {
    content: "";
    position: absolute;
    top: 0;
    left: 4em;
    display: block;
    width: 2.4em;
    height: 2.0em;
    background-image: url(../img/heading/comm_start.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}
.top-features-item-comment p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% + 3em);
    display: block;
    width: 2.4em;
    height: 2.0em;
    background-image: url(../img/heading/comm_end.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}
.top-features-item-comment .this__circle {
    display: block;
    margin: -40px 0 0 auto;
    width: 400px;
    height: auto;
    border-radius: 50%;
}
.top-features-item:nth-child(2n) .top-features-item-comment .this__circle {
    margin-left: 0;
    margin-right: auto;
}
.top-features-item-data > dl {
    display: block;
    max-width: 600px;
    margin: 50px 0 0;
    padding: 0;
}
.top-features-item-data > dl.is--quantify {
    max-width: 640px;
}
.top-features-item-data > dl > dt {
    display: block;
    margin: 1.5em 0 0.5em;
    padding: 0;
    font-weight: 500;
    font-size: calc(17rem / var(--themeval-root-font-size) );
    line-height: 1.5;
}
.top-features-item-data > dl > dt .this__title {
    display: inline-block;
}
.top-features-item-data > dl.is--quantify > dt .this__title {
    background-color: var(--themeval-color-theme-black);
    color: var(--themeval-color-theme-text-white);
    padding: 0.1em 1em;
    line-height: 1.5;
}
.top-features-item-data > dl > dd {
    display: block;
    margin: 0;
    padding: 0 0 1em;
    border-bottom: 1px solid var(--themeval-color-theme-text-black);
    font-weight: 500;
    font-size: calc(15rem / var(--themeval-root-font-size) );
    line-height: 1.5;
}
.top-features-item-data > dl > dd ul {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0 0 0;
}
.top-features-item-data > dl > dd ul > li {
    display: block;
    list-style-type: none;
    margin: 0.5em 0;
    padding: 0 0 0 1.5em;
}
.top-features-item-data > dl > dd ul > li::before {
    content: "●";
    display: inline-block;
    margin: 0 0 0 -1.5em;
    width: 1.5em;
}
.top-features-item-data > dl.is--quantify > dd {
    padding: 0 0 0.5em;
}
.top-features-item-data > dl.is--quantify > dd dl {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0;
}
.top-features-item-data > dl.is--quantify > dd dl > dt {
    display: block;
    padding: 0 0.5em 0 0;
    margin: 0;
    width: max-content;
    font-size: calc(20rem / var(--themeval-root-font-size) );
    line-height: 1.4;
}
.top-features-item-data > dl.is--quantify > dd dl > dd {
    display: block;
    padding: 0 1em 0 0;
    margin: 0;
    font-size: calc(18rem / var(--themeval-root-font-size) );
    line-height: 1.4;
}
.top-features-item-data > dl.is--quantify > dd dl > dd:last-child {
    margin: 0 0 0 0;
}
.top-features-item-data > dl.is--quantify > dd dl > dd .this__num {
    display: inline-block;
    color: var(--themeval-color-theme-01);
    font-family: var(--themeval-font-serif);
    font-size: calc(100rem / var(--themeval-root-font-size) );
    line-height: 1;
    letter-spacing: -0.05em;
}

@media (max-width: 1279px){
    
    .top-features-content {
        padding: 9.0vw 0 21.5vw;
        background-position: center bottom -15.0vw;
        background-size: 150vw auto;
    }
    .top-features-content::before {
        bottom: 10.0vw;
        height: calc(100% - 10.0vw);
        background-image: linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,1) 27.0vw, rgba(255,255,255,1));
    }
    .top-features-item {
        margin: 0 0 15.0vw;
    }
    .top-features-item::after {
        width: 30%;
        padding: 50% 0 0;
    }
    .top-features-item-content {
        max-width: 65%;
        padding: 0 0 0 3.0vw;
    }
    .top-features-item:nth-child(2n) .top-features-item-content {
        padding: 0 4vw 0 0;
    }
    .top-features-item-heading {
        font-size: 2.25vw;
    }
    .top-features-item-heading::before {
        left: -7.5vw;
        top: -10vw;
        width: 30.0vw;
        height: 30.0vw;
    }
    .top-features-item:nth-child(2n) .top-features-item-heading::before {
        left: auto;
        right: -7.5vw;
    }
    .top-features-item:nth-child(2n) .top-features-item-comment {
        right: auto;
        left: 0;
    }
    .top-features-item-comment p {
        margin: 0 0 0 auto;
        width: max-content;
        font-size: 1.8vw;
    }
    .top-features-item:nth-child(2n) .top-features-item-comment p {
        margin: 0 auto 0 0;
    }
    .top-features-item-comment .this__circle {
        margin: -3.0vw 0 0 auto;
        width: 30.0vw;
    }
    .top-features-item-data > dl {
        max-width: 46.0vw;
        margin: 3.0vw 0 0;
    }
    .top-features-item-data > dl.is--quantify {
        max-width: 50vw;
    }
    .top-features-item-data > dl > dt {
        font-size: 1.2vw;
    }
    .top-features-item-data > dl.is--quantify > dt .this__title {
        padding: 0.1em 1em;
        line-height: 1.5;
    }
    .top-features-item-data > dl > dd {
        margin: 0;
        padding: 0 0 1em;
        border-bottom: 1px solid var(--themeval-color-theme-text-black);
        font-size: 1.0vw;
    }
    .top-features-item-data > dl.is--quantify > dd {
        padding: 0 0 0.5em;
    }
    .top-features-item-data > dl.is--quantify > dd dl > dt {
        font-size: 1.5vw;
    }
    .top-features-item-data > dl.is--quantify > dd dl > dd {
        margin: 0 1em 0 0;
        font-size: 1.3vw;
    }
    .top-features-item-data > dl.is--quantify > dd dl > dd:last-child {
        margin: 0 0 0 0;
    }
    .top-features-item-data > dl.is--quantify > dd dl > dd .this__num {
        font-size: 7.5vw;
    }

}

@media (max-width: 767px){
    
    .top-features-content {
        padding: 120px 0 140px;
        background-position: center bottom -100px;
        background-size: 960px auto;
    }
    .top-features-content::before {
        bottom: 65px;
        height: calc(100% - 65px);
        background-image: linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,1) 175px, rgba(255,255,255,1));
    }
    .top-features-item {
        margin: 0 0 120px;
    }
    .top-features-item::after {
        display: none;
    }
    .top-features-item-content {
        width: 100%;
        max-width: 100%;
        padding: 0 0 0 0;
    }
    .top-features-item:nth-child(2n) .top-features-item-content {
        padding: 0 0 0 0;
    }
    .top-features-item-heading {
        margin: 0 auto 0 50px;
        width: max-content;
        font-size: calc(21rem / var(--themeval-root-font-size) );
    }
    .top-features-item:nth-child(2n) .top-features-item-heading {
        margin: 0 50px 0 auto;
    }
    .top-features-item-heading::before {
        left: -75px;
        top: -100px;
        width: 300px;
        height: 300px;
    }
    .top-features-item:nth-child(2n) .top-features-item-heading::before {
        left: auto;
        right: -75px;
    }
    .top-features-item-comment {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 50px;
        transform: none;
    }
    .top-features-item:nth-child(2n) .top-features-item-comment {
        right: auto;
        left: 0;
    }
    .top-features-item-comment p {
        margin: 0 auto 0 0;
        width: max-content;
        font-size: 2.7vw;
    }
    .top-features-item:nth-child(2n) .top-features-item-comment p {
        margin: 0 0 0 auto;
    }
    .top-features-item-comment .this__circle {
        margin: -20vw 0 0 auto;
        width: 50%;
    }
    .top-features-item:nth-child(2n) .top-features-item-comment .this__circle {
        margin-left: 0;
        margin-right: auto;
    }
    .top-features-item-data > dl {
        max-width: 520px;
        margin: 30px auto 0 0;
    }
    .top-features-item:nth-child(2n) .top-features-item-data > dl {
        margin-left: auto;
        margin-right: 0;
    }
    .top-features-item-data > dl.is--quantify {
        max-width: 520px;
    }
    .top-features-item-data > dl > dt {
        font-size: calc(14rem / var(--themeval-root-font-size) );
    }
    .top-features-item-data > dl.is--quantify > dt .this__title {
        padding: 0.1em 1em;
        line-height: 1.5;
    }
    .top-features-item-data > dl > dd {
        margin: 0;
        padding: 0 0 1em;
        border-bottom: 1px solid var(--themeval-color-theme-text-black);
        font-size: calc(13rem / var(--themeval-root-font-size) );
    }
    .top-features-item-data > dl.is--quantify > dd {
        padding: 0 0 0.5em;
    }
    .top-features-item-data > dl.is--quantify > dd dl > dt {
        font-size: calc(15rem / var(--themeval-root-font-size) );
    }
    .top-features-item-data > dl.is--quantify > dd dl > dd {
        margin: 0 1em 0 0;
        font-size: calc(13rem / var(--themeval-root-font-size) );
    }
    .top-features-item-data > dl.is--quantify > dd dl > dd:last-child {
        margin: 0 0 0 0;
    }
    .top-features-item-data > dl.is--quantify > dd dl > dd .this__num {
        font-size: calc(90rem / var(--themeval-root-font-size) );
    }
}

@media (max-width: 639px){
    
    .top-features-content {
        padding: 20.0vw 0 140px;
        background-position: center bottom -100px;
        background-size: 960px auto;
    }
    .top-features-content::before {
        bottom: 65px;
        height: calc(100% - 65px);
        background-image: linear-gradient(0deg, rgba(255,255,255,0), rgba(255,255,255,1) 175px, rgba(255,255,255,1));
    }
    .top-features-item {
        margin: 0 0 20.0vw;
    }
    .top-features-item::after {
        display: none;
    }
    .top-features-item-content {
        width: 100%;
        max-width: 100%;
        padding: 0 0 0 0;
    }
    .top-features-item:nth-child(2n) .top-features-item-content {
        padding: 0 0 0 0;
    }
    .top-features-item-heading {
        margin: 0 auto 0;
        width: fit-content;
        font-size: 4.125vw;
    }
    .top-features-item:nth-child(2n) .top-features-item-heading {
        margin: 0 auto 0;
    }
    .top-features-item-heading::before {
        left: -15.5vw;
        top: -15.5vw;
        width: 46.5vw;
        height: 46.5vw;
    }
    .top-features-item:nth-child(2n) .top-features-item-heading::before {
        left: auto;
        right: -15.5vw;
    }
    .top-features-item-comment {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 8.0vw;
        transform: none;
    }
    .top-features-item:nth-child(2n) .top-features-item-comment {
        right: auto;
        left: 0;
    }
    .top-features-item-comment p {
        margin: 0 auto 0 0;
        width: max-content;
        font-size: 3.6vw;
    }
    .top-features-item:nth-child(2n) .top-features-item-comment p {
        margin: 0 0 0 auto;
    }
    .top-features-item-comment .this__circle {
        margin: -10.0vw -2% 0 auto;
        width: 55%;
    }
    .top-features-item:nth-child(2n) .top-features-item-comment .this__circle {
        margin-left: -2%;
        margin-right: auto;
    }
    .top-features-item-data > dl {
        max-width: 100%;
        margin: 30px auto 0 0;
    }
    .top-features-item:nth-child(2n) .top-features-item-data > dl {
        margin-left: auto;
        margin-right: 0;
    }
    .top-features-item-data > dl.is--quantify {
        max-width: 100%;
    }
    .top-features-item-data > dl > dt {
        font-size: 3.0vw;
    }
    .top-features-item-data > dl.is--quantify > dt .this__title {
        padding: 0.1em 1em;
        line-height: 1.5;
    }
    .top-features-item-data > dl > dd {
        margin: 0;
        padding: 0 0 1em;
        border-bottom: 1px solid var(--themeval-color-theme-text-black);
        font-size: 2.75vw;
    }
    .top-features-item-data > dl.is--quantify > dd {
        padding: 0 0 0.5em;
    }
    .top-features-item-data > dl.is--quantify > dd dl > dt {
        font-size: 2.75vw;
    }
    .top-features-item-data > dl.is--quantify > dd dl > dd {
        margin: 0 1em 0 0;
        font-size: 2.5vw;
    }
    .top-features-item-data > dl.is--quantify > dd dl > dd:last-child {
        margin: 0 0 0 0;
    }
    .top-features-item-data > dl.is--quantify > dd dl > dd .this__num {
        font-size: 16.0vw;
    }
}





/*
================================================================
 投稿新着情報
================================================================
*/

.top-post-system {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.top-post-system-section {
    position: relative;
    box-sizing: border-box;
    padding: 40px 0 180px;
}
.top-post-system-section .layout-container {
    width: calc(100% - 120px);
    max-width: 1200px;
    margin: 0 auto 0;
}
.top-post-system-section .layout-container.top-post-system-link-container {
    position: absolute;
    bottom: 0;
    padding: 0 0 60px;
}

.top-post-system-section .content-block-inner-area > .post-system-block__list {
    width: 100% !important;
    max-width: 100% !important;
}

.top-post-system-heading {
    display: block;
    width: 100%;
    padding: 0 0 0.8em;
    margin: 0 0 10px;
    border-bottom: 2px solid currentColor;
    text-align: left;
    font-style: normal;
    font-size: calc( 18rem / var(--themeval-root-font-size) );
    font-weight: 700;
    line-height: 1.2;
}
.top-post-system-heading .this__title {
    display: inline-block;
    font-style: normal;
    font-size: calc( 34rem / var(--themeval-root-font-size) );
}
.top-post-system-heading .this__subtitle {
    display: inline-block;
    margin-left: 1em;
    font-style: normal;
}

.top-post-system-section.top-post-system-section--post {
    width: calc(50% - 5px);
    padding-right: 50px;
    background-color: var(--themeval-color-theme-16);
}
.top-post-system-section.top-post-system-section--examnews {
    width: calc(50% - 5px);
    padding-left: 50px;
    background-color: var(--themeval-color-theme-17);
}
.top-post-system-section.top-post-system-section--actreports {
    width: 100%;
    margin-top: 10px;
    background-color: var(--themeval-color-theme-10);
}
.top-post-system-section.top-post-system-section--post .layout-container {
    width: calc(100% - 60px);
    max-width: 540px;
    margin-right: 0;
}
.top-post-system-section.top-post-system-section--examnews .layout-container {
    width: calc(100% - 60px);
    max-width: 540px;
    margin-left: 0;
}
.top-post-system-section.top-post-system-section--post .layout-container.top-post-system-link-container {
    width: calc(100% - 110px);
    right: 50px;
}
.top-post-system-section.top-post-system-section--examnews .layout-container.top-post-system-link-container {
    width: calc(100% - 110px);
    left: 50px;
}
.top-post-system-section.top-post-system-section--actreports .layout-container.top-post-system-link-container {
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
}
.top-post-system-section.top-post-system-section--post .top-post-system-heading {
    color: var(--themeval-color-theme-01);
}
.top-post-system-section.top-post-system-section--examnews .top-post-system-heading {
    color: var(--themeval-color-theme-03);
}
.top-post-system-section.top-post-system-section--actreports .top-post-system-heading {
    margin-bottom: 30px;
    color: var(--themeval-color-theme-01);
}

.shizugaku-single-link-block.top-post-system-link a,
.shizugaku-single-link-block.top-post-system-link .as-link {
    min-width: 340px;
}

@media (max-width: 1079px) {
    .top-post-system-section {
        padding: 40px 0 140px;
    }
    .top-post-system-section .layout-container.top-post-system-link-container {
        padding: 0 0 50px;
    }
    .top-post-system-heading {
        margin: 0 0 10px;
        font-size: calc( 16rem / var(--themeval-root-font-size) );
    }
    .top-post-system-heading .this__title {
        font-size: calc( 30rem / var(--themeval-root-font-size) );
    }
    .top-post-system-section.top-post-system-section--post {
        padding-right: 20px;
    }
    .top-post-system-section.top-post-system-section--examnews {
        padding-left: 20px;
    }
    .top-post-system-section.top-post-system-section--post .layout-container {
        max-width: 570px;
    }
    .top-post-system-section.top-post-system-section--examnews .layout-container {
        max-width: 570px;
    }
    .top-post-system-section.top-post-system-section--post .layout-container.top-post-system-link-container {
        width: calc(100% - 80px);
        right: 20px;
    }
    .top-post-system-section.top-post-system-section--examnews .layout-container.top-post-system-link-container {
        width: calc(100% - 80px);
        left: 20px;
    }
    .shizugaku-single-link-block.top-post-system-link a,
    .shizugaku-single-link-block.top-post-system-link .as-link {
        min-width: 280px;
    }
}
@media (max-width: 959px), (min-width: 960px) and (max-height: 767px) {
    .top-post-system-section .layout-container {
        width: calc(100% - 100px);
    }
    .top-post-system-section.top-post-system-section--post .layout-container,
    .top-post-system-section.top-post-system-section--examnews .layout-container {
        width: calc(100% - 50px);
    }
    .top-post-system-section.top-post-system-section--post .layout-container.top-post-system-link-container,
    .top-post-system-section.top-post-system-section--examnews .layout-container.top-post-system-link-container {
        width: calc(100% - 70px);
    }
}
@media (max-width: 767px) {
    .top-post-system-section {
        padding: 40px 0 140px;
    }
    .top-post-system-section .layout-container {
        width: calc(100% - 100px);
    }
    .top-post-system-section .layout-container.top-post-system-link-container {
        padding: 0 0 50px;
    }
    .top-post-system-section.top-post-system-section--post,
    .top-post-system-section.top-post-system-section--examnews {
        margin-top: 10px;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .top-post-system-section.top-post-system-section--post .layout-container,
    .top-post-system-section.top-post-system-section--examnews .layout-container {
        margin: 0 auto;
        width: calc(100% - 100px);
        max-width: 1200px;
    }
    .top-post-system-section.top-post-system-section--post .layout-container.top-post-system-link-container,
    .top-post-system-section.top-post-system-section--examnews .layout-container.top-post-system-link-container {
        width: calc(100% - 100px);
        right: auto;
        left: 50%;
        margin: 0;
        max-width: 1200px;
        transform: translateX(-50%);
    }
    .shizugaku-single-link-block.top-post-system-link a,
    .shizugaku-single-link-block.top-post-system-link .as-link {
        min-width: 240px;
    }
}
@media (max-width: 639px) {
    .top-post-system-section .layout-container,
    .top-post-system-section.top-post-system-section--post .layout-container,
    .top-post-system-section.top-post-system-section--examnews .layout-container,
    .top-post-system-section.top-post-system-section--post .layout-container.top-post-system-link-container,
    .top-post-system-section.top-post-system-section--examnews .layout-container.top-post-system-link-container {
        width: 90%;
    }
}






/*
================================================================
 入試情報ナビ
================================================================
*/


.top-examnav {
    padding: 120px 0 100px;
}
.top-examnav-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}
.top-examnav-item {
    position: relative;
    z-index: 1;
    display: block;
    box-sizing: border-box;
    width: calc( (100% - 30px) / 3 );
    color: var(--themeval-color-theme-text-black) !important;
    text-decoration: none !important;
    opacity: 1 !important;
}

.top-examnav-item.item--junior {
    background-image: url(../img/top/bnrbg_junior.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
}
.top-examnav-item.item--junior::before {
    content: "";
    position: relative;
    z-index: 1;
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 89.7436% 0 0;
    background-image: url(../img/top/student_junior.png);
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: center bottom;
}

.top-examnav-item.item--senior {
    background-image: url(../img/top/bnrbg_senior.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 20px;
}
.top-examnav-item.item--senior::before {
    content: "";
    position: relative;
    z-index: 1;
    display: block;
    box-sizing: content-box;
    width: 100%;
    height: 0;
    padding: 89.7436% 0 0;
    background-image: url(../img/top/student_senior.png);
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: center bottom;
}

.top-examnav-item .this__bnrcatch {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 11;
    display: block;
    width: 100%;
    height: auto;
}
.top-examnav-item .this__bnrbtn {
    position: absolute;
    left: 5%;
    bottom: 5%;
    z-index: 12;
    display: block;
    box-sizing: border-box;
    width: 90%;
    margin: 0;
    padding: 19px 59px 19px 24px;
    border: 1px solid var(--themeval-color-theme-text-black);
    outline: 0px none;
    border-radius: 40px;
    background-color: var(--themeval-color-theme-white);
    text-decoration: none;
    color: var(--themeval-color-theme-text-black);
    font-weight: 700;
    text-align: left;
    font-size: 24px;
    line-height: 40px;
    transition: 
        color var(--themeval-hover-transition),
        border-color var(--themeval-hover-transition),
        background-color var(--themeval-hover-transition);
}
.top-examnav-item .this__bnrbtn::before,
.top-examnav-item .this__bnrbtn::after {
    content: "";
    position: absolute;
    right: 19px;
    top: 50%;
    display: block;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    margin: -15px 0 0;
    padding: 0;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: opacity var(--themeval-hover-transition);
}
.top-examnav-item .this__bnrbtn::before {
    background-image: url(../img/ico/ico_link.svg);
    opacity: 1;
}
.top-examnav-item .this__bnrbtn::after {
    background-image: url(../img/ico/ico_link_white.svg);
    opacity: 0;
}


.top-examnav-item.item--exam {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.top-examnav-item-heading {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 0;
    padding: 0 0 0;
    width: 100%;
}
.top-examnav-item-heading::before,
.top-examnav-item-heading::after {
    content: "";
    display: block;
    box-sizing: content-box;
    flex-grow: 1;
    border-top: 1px solid var(--themeval-color-theme-text-black);
}
.top-examnav-item-heading .this__title {
    display: block;
    margin: 0 5% 0;
    padding: 0 0 0.1em 50px;
    font-size: 24px;
    line-height: 1.5;
    background-image: url(../img/ico/ico_exam.svg);
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: left 50%;
}

.top-examnav-subitem.item--junior {
    position: relative;
    z-index: 1;
    display: block;
    box-sizing: border-box;
    margin-top: 20px;
    width: calc( (100% - 20px) / 2 );
    background-color: var(--themeval-color-theme-white);
    color: var(--themeval-color-theme-text-black);
    border: 5px solid var(--themeval-color-theme-03);
    border-radius: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    transition: 
        color var(--themeval-hover-transition),
        border-color var(--themeval-hover-transition),
        background-color var(--themeval-hover-transition);
}
.top-examnav-subitem.item--senior {
    position: relative;
    z-index: 1;
    display: block;
    box-sizing: border-box;
    margin-top: 20px;
    width: calc( (100% - 20px) / 2 );
    background-color: var(--themeval-color-theme-white);
    color: var(--themeval-color-theme-text-black);
    border: 5px solid var(--themeval-color-theme-01);
    border-radius: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    transition: 
        color var(--themeval-hover-transition),
        border-color var(--themeval-hover-transition),
        background-color var(--themeval-hover-transition);
}
.top-examnav-subitem.item--junior .this__title,
.top-examnav-subitem.item--senior .this__title {
    display: block;
    margin: 0;
    padding: calc(45% - 0.75em) 0.5em;
}

.top-examnav-subitem.item--form {
    position: relative;
    z-index: 1;
    display: block;
    box-sizing: border-box;
    margin-top: 20px;
    width: 100%;
    background-color: var(--themeval-color-theme-white);
    color: var(--themeval-color-theme-text-black);
    border: 5px solid var(--themeval-color-theme-11);
    border-radius: 20px;
    text-align: left;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    transition: 
        color var(--themeval-hover-transition),
        border-color var(--themeval-hover-transition),
        background-color var(--themeval-hover-transition);
}
.top-examnav-subitem.item--form .this__title {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: calc( 100% - (100% - 20px) / 2 + 4em );
    margin: 0 auto;
    padding: calc(12.5% - 0.75em) 45px;
}
.top-examnav-subitem.item--form .this__title::before,
.top-examnav-subitem.item--form .this__title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 30px;
    height: 30px;
    margin: -15px 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    transition: opacity var(--themeval-hover-transition);
}
.top-examnav-subitem.item--form .this__title::before {
    background-image: url(../img/ico/ico_doc.svg);
    opacity: 1;
}
.top-examnav-subitem.item--form .this__title::after {
    background-image: url(../img/ico/ico_doc_white.svg);
    opacity: 0;
}

.top-examnav-subitem::before,
.top-examnav-subitem::after {
    content: "";
    position: absolute;
    right: 9px;
    bottom: 9px;
    display: block;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    margin: 0 0 0;
    padding: 0;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
    transition: opacity var(--themeval-hover-transition);
}
.top-examnav-subitem::before {
    background-image: url(../img/ico/ico_link.svg);
    opacity: 1;
}
.top-examnav-subitem::after {
    background-image: url(../img/ico/ico_link_white.svg);
    opacity: 0;
}
.top-examnav-subitem.item--form::before,
.top-examnav-subitem.item--form::after {
    right: calc( (100% - 20px) / 4 - 2em );
    bottom: 50%;
    margin: 0 0 -15px;
}

html:not(.agent-prop--Touch) a.top-examnav-item:hover .this__bnrbtn {
    opacity: 1;
    color: var(--themeval-color-theme-text-white) !important;
    border-color: var(--themeval-color-theme-13) !important;
    background-color: var(--themeval-color-theme-13) !important;
}
html:not(.agent-prop--Touch) a.top-examnav-item:hover .this__bnrbtn::before {
    opacity: 0;
}
html:not(.agent-prop--Touch) a.top-examnav-item:hover .this__bnrbtn::after {
    opacity: 1;
}

html:not(.agent-prop--Touch) a.top-examnav-subitem:hover {
    opacity: 1;
    color: var(--themeval-color-theme-text-white) !important;
    border-color: var(--themeval-color-theme-13) !important;
    background-color: var(--themeval-color-theme-13) !important;
}
html:not(.agent-prop--Touch) a.top-examnav-subitem:hover::before {
    opacity: 0;
}
html:not(.agent-prop--Touch) a.top-examnav-subitem:hover::after {
    opacity: 1;
}
html:not(.agent-prop--Touch) a.top-examnav-subitem.item--form:hover .this__title::before {
    opacity: 0;
}
html:not(.agent-prop--Touch) a.top-examnav-subitem.item--form:hover .this__title::after {
    opacity: 1;
}


@media (max-width: 1279px) {
    
    .top-examnav-item .this__bnrbtn {
        padding: 19px 54px 19px 19px;
        border-radius: 35px;
        font-size: 18px;
        line-height: 30px;
    }
    .top-examnav-item .this__bnrbtn::before,
    .top-examnav-item .this__bnrbtn::after {
        right: 19px;
        width: 30px;
        height: 30px;
        margin: -15px 0 0;
    }

    .top-examnav-item-heading .this__title {
        margin: 0 5% 0;
        padding: 0 0 0.1em 50px;
        background-size: 30px 30px;
        font-size: 20px;
    }

    .top-examnav-subitem.item--junior {
        margin-top: 10px;
        width: calc( (100% - 10px) / 2 );
        font-size: 18px;
    }
    .top-examnav-subitem.item--senior {
        margin-top: 10px;
        width: calc( (100% - 10px) / 2 );
        font-size: 18px;
    }
    .top-examnav-subitem.item--junior .this__title,
    .top-examnav-subitem.item--senior .this__title {
        padding: calc(45% - 0.75em) 0.5em;
    }

    .top-examnav-subitem.item--form {
        margin-top: 10px;
        font-size: 18px;
    }
    .top-examnav-subitem.item--form .this__title {
        width: calc( 100% - (100% - 20px) / 2 + 4em );
        padding: calc(12.5% - 0.75em) 45px;
    }
    .top-examnav-subitem.item--form .this__title::before,
    .top-examnav-subitem.item--form .this__title::after {
        left: 0;
        width: 30px;
        height: 30px;
        margin: -15px 0 0;
    }
}

@media (max-width: 1079px) {

    .top-examnav-item.item--junior,
    .top-examnav-item.item--senior {
        border-radius: 15px;
    }
    
    .top-examnav-item .this__bnrbtn {
        padding: 19px 54px 19px 19px;
        border-radius: 30px;
        font-size: 16px;
        line-height: 20px;
    }
    .top-examnav-item .this__bnrbtn::before,
    .top-examnav-item .this__bnrbtn::after {
        right: 19px;
        width: 30px;
        height: 30px;
        margin: -15px 0 0;
    }

    .top-examnav-item-heading .this__title {
        margin: 0 5% 0;
        padding: 0 0 0.1em 50px;
        background-size: 30px 30px;
        font-size: 18px;
    }

    .top-examnav-subitem.item--junior {
        margin-top: 10px;
        width: calc( (100% - 10px) / 2 );
        font-size: 16px;
        border-radius: 15px;
    }
    .top-examnav-subitem.item--senior {
        margin-top: 10px;
        width: calc( (100% - 10px) / 2 );
        font-size: 16px;
    }
    .top-examnav-subitem.item--junior .this__title,
    .top-examnav-subitem.item--senior .this__title {
        padding: calc(45% - 0.75em) 0.5em;
    }

    .top-examnav-subitem.item--form {
        margin-top: 10px;
        font-size: 16px;
        border-radius: 15px;
    }
    .top-examnav-subitem.item--form .this__title {
        width: calc( 100% - (100% - 20px) / 2 + 4em );
        padding: calc(12.5% - 0.75em) 45px;
    }
    .top-examnav-subitem.item--form .this__title::before,
    .top-examnav-subitem.item--form .this__title::after {
        left: 0;
        width: 30px;
        height: 30px;
        margin: -15px 0 0;
    }
}

@media (max-width: 959px) {

    .top-examnav {
        padding: 120px 0 100px;
    }
    .top-examnav-item {
        width: calc( (100% - 30px) / 2 );
    }

    .top-examnav-item.item--junior,
    .top-examnav-item.item--senior {
        border-radius: 15px;
    }
    
    .top-examnav-item .this__bnrbtn {
        padding: 19px 59px 19px 24px;
        border-radius: 35px;
        font-size: 17px;
        line-height: 30px;
    }
    .top-examnav-item .this__bnrbtn::before,
    .top-examnav-item .this__bnrbtn::after {
        right: 19px;
        top: 50%;
        width: 30px;
        height: 30px;
        margin: -15px 0 0;
    }

    .top-examnav-item.item--exam {
        margin-top: 50px;
        width: 100%;
    }

    .top-examnav-item-heading .this__title {
        padding: 0 0 0.1em 50px;
        font-size: 20px;
        background-size: 30px 30px;
        font-size: 20px;
    }

    .top-examnav-subitem.item--junior {
        margin-top: 20px;
        width: calc( (100% - 40px) / 3 );
        border-radius: 15px;
        font-size: 17px;
    }
    .top-examnav-subitem.item--senior {
        margin-top: 20px;
        width: calc( (100% - 40px) / 3 );
        border-radius: 15px;
        font-size: 17px;
    }
    .top-examnav-subitem.item--junior .this__title,
    .top-examnav-subitem.item--senior .this__title {
        padding: 2em 1em;
        text-align: left;
    }

    .top-examnav-subitem.item--form {
        margin-top: 20px;
        width: calc( (100% - 40px) / 3 );
        border-radius: 15px;
        font-size: 17px;
    }
    .top-examnav-subitem.item--form .this__title {
        width: 100%;
        padding: 2em 1em 2em calc(1em + 36px);
        text-align: left;
    }
    .top-examnav-subitem.item--form .this__title::before,
    .top-examnav-subitem.item--form .this__title::after {
        left: 1em;
        width: 24px;
        height: 24px;
        margin: -12px 0 0;
    }

    .top-examnav-subitem::before,
    .top-examnav-subitem::after {
        width: 30px;
        height: 30px;
        right: 1em;
        bottom: 50%;
        margin: 0 0 -15px;
    }
    .top-examnav-subitem.item--form::before,
    .top-examnav-subitem.item--form::after {
        right: 1em;
        bottom: 50%;
        margin: 0 0 -15px;
    }

}

@media (max-width: 767px) {

    .top-examnav {
        padding: 70px 0 50px;
    }
    .top-examnav-item {
        width: calc( (100% - 20px) / 2 );
    }

    .top-examnav-item.item--junior,
    .top-examnav-item.item--senior {
        border-radius: 10px;
    }
    
    .top-examnav-item .this__bnrbtn {
        padding: 14px 46px 14px 16px;
        border-radius: 25px;
        font-size: 14px;
        line-height: 20px;
    }
    .top-examnav-item .this__bnrbtn::before,
    .top-examnav-item .this__bnrbtn::after {
        right: 12px;
        top: 50%;
        width: 24px;
        height: 24px;
        margin: -12px 0 0;
    }

    .top-examnav-item.item--exam {
        margin-top: 50px;
        width: 100%;
    }

    .top-examnav-item-heading .this__title {
        padding: 0 0 0.1em 2.2em;
        font-size: 16px;
        background-size: 1.33em 1.33em;
    }

    .top-examnav-subitem.item--junior {
        margin-top: 20px;
        width: calc( (100% - 40px) / 3 );
        border-width: 3px;
        border-radius: 10px;
        font-size: 14px;
    }
    .top-examnav-subitem.item--senior {
        margin-top: 20px;
        width: calc( (100% - 40px) / 3 );
        border-width: 3px;
        border-radius: 10px;
        font-size: 14px;
    }
    .top-examnav-subitem.item--junior .this__title,
    .top-examnav-subitem.item--senior .this__title {
        padding: 2em 1em;
        text-align: left;
    }

    .top-examnav-subitem.item--form {
        margin-top: 20px;
        width: calc( (100% - 40px) / 3 );
        border-width: 3px;
        border-radius: 10px;
        font-size: 14px;
    }
    .top-examnav-subitem.item--form .this__title {
        width: 100%;
        padding: 2em 1em 2em calc(1em + 30px);
        text-align: left;
    }
    .top-examnav-subitem.item--form .this__title::before,
    .top-examnav-subitem.item--form .this__title::after {
        left: 1em;
        width: 20px;
        height: 20px;
        margin: -10px 0 0;
    }

    .top-examnav-subitem::before,
    .top-examnav-subitem::after {
        width: 24px;
        height: 24px;
        right: 1em;
        bottom: 50%;
        margin: 0 0 -12px;
    }
    .top-examnav-subitem.item--form::before,
    .top-examnav-subitem.item--form::after {
        right: 1em;
        bottom: 50%;
        margin: 0 0 -12px;
    }

}


@media (max-width: 639px) {

    .top-examnav {
        padding: 70px 0 50px;
    }
    .top-examnav-item {
        width: calc( (100% - 10px) / 2 );
    }

    .top-examnav-item.item--junior,
    .top-examnav-item.item--senior {
        border-radius: 10px;
    }
    
    .top-examnav-item .this__bnrbtn {
        left: 2%;
        bottom: 3%;
        width: 96%;
        padding: 9px 40px 9px 16px;
        border-radius: 20px;
        font-size: 14px;
        line-height: 20px;
    }
    .top-examnav-item .this__bnrbtn::before,
    .top-examnav-item .this__bnrbtn::after {
        right: 10px;
        top: 50%;
        width: 24px;
        height: 24px;
        margin: -12px 0 0;
    }

    .top-examnav-item.item--exam {
        margin-top: 50px;
        width: 100%;
    }

    .top-examnav-item-heading .this__title {
        padding: 0 0 0.1em 2.2em;
        font-size: 16px;
        background-size: 1.33em 1.33em;
    }

    .top-examnav-subitem.item--junior {
        margin-top: 20px;
        width: calc( (100% - 10px) / 2 );
        border-width: 3px;
        border-radius: 10px;
        font-size: 14px;
    }
    .top-examnav-subitem.item--senior {
        margin-top: 20px;
        width: calc( (100% - 10px) / 2 );
        border-width: 3px;
        border-radius: 10px;
        font-size: 14px;
    }
    .top-examnav-subitem.item--junior .this__title,
    .top-examnav-subitem.item--senior .this__title {
        padding: 1em 22px;
        text-align: left;
    }

    .top-examnav-subitem.item--form {
        margin-top: 10px;
        width: 100%;
        border-width: 3px;
        border-radius: 10px;
        font-size: 14px;
    }
    .top-examnav-subitem.item--form .this__title {
        width: max-content;
        max-width: calc(100% - 60px);
        padding: 1em 0 1em 30px;
        text-align: left;
    }
    .top-examnav-subitem.item--form .this__title::before,
    .top-examnav-subitem.item--form .this__title::after {
        left: 0;
        width: 20px;
        height: 20px;
        margin: -10px 0 0;
    }

    .top-examnav-subitem::before,
    .top-examnav-subitem::after {
        width: 24px;
        height: 24px;
        right: 6px;
        bottom: 50%;
        margin: 0 0 -12px;
    }
    .top-examnav-subitem.item--form::before,
    .top-examnav-subitem.item--form::after {
        right: 6px;
        bottom: 50%;
        margin: 0 0 -12px;
    }

}

@media (max-width: 479px) {

    .top-examnav {
        padding: 70px 0 50px;
    }
    .top-examnav-item {
        width: 48%;
    }

    .top-examnav-item.item--junior,
    .top-examnav-item.item--senior {
        border-radius: 10px;
    }
    
    .top-examnav-item .this__bnrbtn {
        left: 2%;
        bottom: 3%;
        width: 96%;
        padding: 1.8vw 8.0vw 1.8vw 3.3vw;
        border-radius: 4.1vw;
        font-size: 2.9vw;
        line-height: 4.1vw;
    }
    .top-examnav-item .this__bnrbtn::before,
    .top-examnav-item .this__bnrbtn::after {
        right: 1.8vw;
        top: 50%;
        width: 5vw;
        height: 5vw;
        margin: -2.5vw 0 0;
    }

    .top-examnav-item.item--exam {
        margin-top: 30px;
        width: 100%;
    }

    .top-examnav-item-heading .this__title {
        padding: 0 0 0.1em 2.2em;
        font-size: 16px;
        background-size: 1.33em 1.33em;
    }

    .top-examnav-subitem.item--junior {
        margin-top: 4%;
        width: 48%;
        border-width: 3px;
        border-radius: 10px;
        font-size: 14px;
    }
    .top-examnav-subitem.item--senior {
        margin-top: 4%;
        width: 48%;
        border-width: 3px;
        border-radius: 10px;
        font-size: 14px;
    }
    .top-examnav-subitem.item--junior .this__title,
    .top-examnav-subitem.item--senior .this__title {
        padding: 1em 8vw 1em 4.5vw;
        text-align: left;
    }

    .top-examnav-subitem.item--form {
        margin-top: 4%;
        width: 100%;
        border-width: 3px;
        border-radius: 10px;
        font-size: 14px;
    }
    .top-examnav-subitem.item--form .this__title {
        width: max-content;
        max-width: calc(100% - 16vw);
        padding: 1em 0 1em 30px;
        text-align: left;
    }
    .top-examnav-subitem.item--form .this__title::before,
    .top-examnav-subitem.item--form .this__title::after {
        left: 0;
        width: 20px;
        height: 20px;
        margin: -10px 0 0;
    }

    .top-examnav-subitem::before,
    .top-examnav-subitem::after {
        width: 5vw;
        height: 5vw;
        right: 1.5vw;
        bottom: 50%;
        margin: 0 0 -2.5vw;
    }
    .top-examnav-subitem.item--form::before,
    .top-examnav-subitem.item--form::after {
        right: 1.5vw;
        bottom: 50%;
        margin: 0 0 -2.5vw;
    }

}











