/*------------------------------------
  initialize
------------------------------------*/
.splide:not(.is-overflow) .splide__pagination{
    display: flex;
}

/*------------------------------------
  common
------------------------------------*/
.w-1000 {
    width: 1000px;
    margin: 0 auto;
}

.yellow-underline {
    background: linear-gradient(transparent 70%, #fae800 70%);
}

.english {
    --subject-color: #ffa300;
}

.math {
    --subject-color: #3e71cd;
}

.japanese {
    --subject-color: #ff64bc;
}

.science {
    --subject-color: #a362e0;
}

.society {
    --subject-color: #56ae3d;
}

.splide__arrow{
    color: #000;
}

.splide__arrow--prev {
    left: -3em;
}

.splide__arrow--next {
    right: -3em;
}

.splide__pagination__page.is-active{
    background-color: #009380;
}

.spacer-s {
    height: 3rem;
}

.spacer-m {
    height: 5rem;
}

.spacer-l {
    height: 8rem;
}

.content-wrap{
    /* padding: 3rem 0; */
}

.background-gray{
    background-color: #f0f0f0;
}

.section-title-upper{
    font-size: 1.25rem;
    color: #009380;
    font-weight: 700;
}

.section-title{
    font-weight: 700;
    font-size: 2rem;
    padding-bottom: 0.25em;
    padding-top: 1rem;
    border-bottom: 3px solid #009380;
    width: 200px;
    position: relative;
    color: #009380;
    margin: 0 auto;
    text-align: center;
}

/* .section-title::before{
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 30%;
    height: 3px;
    background-color: #009380;
} */

.section-title .-smaller{
    font-size: 0.5em;
    margin-left: 0.5em;
}

body.is-fixed{
    overflow: hidden;
}

.modal-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 30;
    display: none;
}

.modal-overlay.is-active{
    display: block;
}

.modal-dialog{
    width: 1000px;
    max-height: 80vh;
    max-height: 80svh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 1rem 1rem 0 1rem;
    z-index: 22;
    border-radius: 10px;
}

.modal-close-button.x-mark{
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 2rem;
    color: #a6a6a6;
    z-index: 30;
    cursor: pointer;
}

/*------------------------------------
  apply
------------------------------------*/
.apply-button-box{
    width: 700px;
    margin: 0 auto;
}

.apply-before{
    font-weight: 700;
    width: 70%;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 15px;
    border: 2px solid;
    padding: 1rem;
    margin: 0 auto;
    display: block;
}

.apply-after{
    font-weight: 700;
    width: 70%;
    font-size: 1.5rem;
    text-align: center;
    border-radius: 15px;
    padding: 1rem;
    margin: 0 auto;
    display: block;
    background-color: #808080;
    color: #fff;
}

/*------------------------------------
  header-nav
------------------------------------*/
.header-container {
    background-color: #009380;
    padding: 10px;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);
}

.header-nav {
    background-color: #fff;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.logo {
    width: 4rem;
}

.header-nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    padding: 0.4rem 2rem;
    font-weight: bold;
}

.nav-box {
    white-space: nowrap;
    line-height: 1.2;
    text-align: center;
    transition: transform 200ms;
    position: relative;
}
.nav-box:hover {
    transform: translate(2px, 2px);
    background-color: #f6f6f6;
}
/* .nav-box:hover:before {
    content: "";
    position: absolute;
    width: 170px;
    height: 4px;
    border-bottom: 2px solid #009380;
    border-radius: 5px;
} */
.nav-box:after {
    content: "";
    position: absolute;
    width: 48px;
    height: 1px;
    transform: rotate(90deg);
    background-color: #4c4c4c;
}
.nav-box:nth-child(1):after {
    right: -50px;
    top: 19px;
}
.nav-box:nth-child(2):after {
    right: -45px;
    top: 19px;
}
.nav-box:nth-child(3):after {
    right: -53px;
    top: 9px;
}
.nav-box:nth-child(4):after {
    right: -50px;
    top: 9px;
}
.nav-box:nth-child(5):after {
    right: -50px;
    top: 9px;
}
.nav-box:nth-child(1):hover:before {
    bottom: -2px;
    left: -30px;
    width: 225px;
}
.nav-box:nth-child(2):hover:before {
    bottom: -2px;
    left: -29px;
    width: 170px;
}
.nav-box:nth-child(3):hover:before {
    bottom: -11px;
    left: -34px;
    width: 120px;
}
.nav-box:nth-child(4):hover:before {
    bottom: -11px;
    left: -25px;
    width: 187px;
}
.nav-box:nth-child(5):hover:before {
    bottom: -11px;
    left: -31px;
    width: 113px;
}

.header-nav-list li a {
    display: flex;
    align-items: center;
}

.header-nav-list li a i {
    margin-left: 0.5rem;
}

.header-request-button{
    color: #f00;
    border: 2px solid;
    text-align: center;
    border-radius: 8px;
    padding: 0.4rem 2rem;
    position: relative;
    line-height: 1.2;
    transition: background-color 300ms, color 300ms;
    margin-right: 1rem;
}

.header-request-button-green{
    color: #009380;
    border: 2px solid;
    text-align: center;
    border-radius: 8px;
    padding: 0.4rem 2rem;
    position: relative;
    line-height: 1.2;
    transition: background-color 300ms, color 300ms;
}

.header-request-button i {
    position: absolute;
    top: 50%;
    right: 0.3rem;
    transform: translateY(-50%);
}

.header-request-button-green i {
    position: absolute;
    top: 50%;
    right: 0.3rem;
    transform: translateY(-50%);
}

.header-request-button:hover {
    background-color: #f00;
    color: #fff;
}

.header-request-button-green:hover {
    background-color: #009380;
    color: #fff;
}

.mainvisual{
    margin-top: 10px;
    text-align: center;
}

.mainvisual img{
    max-width: 1280px;
    padding: 0 0.5rem;
}

/*------------------------------------
  news
------------------------------------*/
.news-icon {
    background-color: #009380;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    padding: 0 1rem;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.5rem;
}

.news-title {
    text-align: center;
    font-weight: 700;
    margin: 0.5rem auto 1rem;
    font-size: 2.5rem;
    position: relative;
}

.news-title::before{
    position: absolute;
    content: "";
    top: 50%;
    left: 5rem;
    width: 7rem;
    height: 2px;
    background-color: #000;
    transform: rotate(65deg);
}

.news-title::after{
    position: absolute;
    content: "";
    top: 50%;
    right: 5rem;
    width: 7rem;
    height: 2px;
    background-color: #000;
    transform: rotate(115deg);
}

.news-title .-attention {
    color: #f00;
    font-size: 1.5em;
}

.news-title-bigger{
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.news-title-bigger .-subject-name{
    position: absolute;
    font-size: 0.7rem;
    /* font-weight: normal; */
    background: var(--subject-color);
    padding: 0.15rem;
    color: #fff;
    border-radius: 5px;
    transform: translateX(1rem);
    top: -0.2em;
}

.news-title-bigger .-emphasis{
    color: #009380;
}

.news-title-bigger .-bigger{
    font-size: 2em;
}

.news-detail{
    background-color: #fee5ca;
    padding: 0.5rem;
}

.news-detail .-detail-title{
    background-color: #009380;
    color: #fff;
    text-align: center;
    font-weight: 700;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
    padding: 0 5rem;
    font-size: 1.2rem;
}

.news-detail .-detail-title .-smaller{
    font-size: 0.7em;
}

.news-detail .-detail-text{
    font-size: 1rem;
    margin: 0.5rem 0;
}

.voice-container{
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.voice{
    background-color: #fff;
    padding: 1rem;
    flex-basis: 49%;
    border-radius: 15px;
}

.voice .-subject-name{
    background-color: var(--subject-color);
    color: #fff;
    font-weight: 700;
    padding: 0 .5rem;
    width: fit-content;
    display: inline-block;
    font-size: 1.25rem;
}

.voice .-title{
    color: #f00;
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-block;
}

.voice .-detail-block{
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.voice .-detail-block .-sub-title{
    font-weight: 700;
    font-size: 1rem;
}

.voice .-image-col{
    flex: 1;
}

.voice .-text-col{
    flex: 1.5;
    margin-left: 0.5rem;
}

.voice .-detail-block .-description{
    font-size: .9rem;
    line-height: 1.15;
}

@keyframes scroll {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

.image-scroll {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    margin-top: 1rem;
}

.image-scroll img {
    width: 300%;
    display: inline-block;
    animation: scroll 40s linear infinite;
}

.fa-angle-down:before {
    content: "\f107";
}

/*------------------------------------
  improve
------------------------------------*/
.improve-tab-list{
    display: flex;
    justify-content: space-between;
    list-style: none;
    background-color: #fff;
    margin: 2rem auto;
    border-radius: 15px;
    position: relative;
}

.improve-tab-highlight {
    position: absolute;
    bottom: 0;
    width: calc(100% / 3);
    height: 100%;
    color: #fff;
    background-color: #009380;
    transition: left 100ms ease;
    border-radius: 15px;
}

.improve-tab-highlight::before{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -2px);
    width: 2rem;
    height: 3rem;
    background-color: #009380;
    color: #fff;
    clip-path: polygon(50% 30%, 0 0, 100% 0);
}

.improve-tab{
    flex: 1;
    text-align: center;
    border-radius: 15px;
    padding: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 100ms 100ms;
}

.improve-tab.is-active{
    color: #fff;
}

.improve-tab p span{
    font-size: 1.5em;
}

.improve-tab .-eng{
    color: #009380;
    transition: color 100ms 100ms;
}

.improve-tab.is-active .-eng{
    color: #fff;
}

.improve-tabpanel{
    background-color: #fff;
    padding: 1em 0 0.5em;
    border-radius: 15px;
    display: none;
}

.improve-tabpanel.is-active{
    display: block;
}

.improve-slide-title{
    text-align: center;
    font-size: 1.5rem;
}

.improve-slide-title span{
    color: #009380;
    font-size: 1.25em;
}

.improve-slide-title-under{
    text-align: center;
}

.improve-slide-container{
    width: 70%;
    margin: 2rem auto;
}

.improve-tabpanel-slide-title{
    color: #009380;
    font-size: 1.25rem;
    margin-bottom: 0.5em;
}

.improve-slide-image{
    width: auto;
    max-width: 150px;
    max-height: 150px;
}

.improve-slide:nth-child(odd) .improve-slide-image{
    float: right;
    margin-left: 0.5rem;
}

.improve-slide:nth-child(even) .improve-slide-image{
    float: left;
    margin-right: 0.5rem;
}

.improve-tabpanel.-secret .improve-slide-list{
    padding-bottom: 2rem !important;
}

.improve-tabpanel-slide-description{
    word-break: auto-phrase;
    margin-bottom: 3rem;
}

.improve-tabpanel .splide__pagination{
    top: calc(100% - 10px);
}

/*------------------------------------
  study
------------------------------------*/
.nav-guide{
    color: #535353;
    text-align: center;
}

.study-section-nav{
    margin: 2rem 0;
}

.study-section-nav-list{
    display: grid;
    grid-template-columns: repeat(auto-fill, 30%);
    justify-content: space-between;
}

.study-section-nav-list .-button{
    color: #009380;
    border: 3px solid;
    padding: 0.5rem;
    font-size: 1.25rem;
    border-radius: 8px;
    box-shadow: 2px 2px 2px  rgba(0, 0, 0, 0.2);
    display: block;
    text-align: center;
    font-weight: bold;
    transition: box-shadow 200ms, transform 200ms;
    position: relative;
}

.study-section-nav-list .-button:hover{
    box-shadow: none;
    transform: translate(2px, 2px);
}

.study-section-nav-list .-button i{
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.study-section-intro{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.study-section-intro .-image{
    flex: 1;
    margin-right: 1rem;
}

.study-section-intro .-info{
    flex: 1;
}

.study-section-intro .-title-upper{
    color: #fff;
    background-color: #009380;
    border-radius: 50px;
    font-size: 1.5rem;
    padding: 0.25rem 1rem;
    width: fit-content;
    font-weight: bold;
}

.study-section-intro .-title{
    font-size: 2rem;
}

.study-section-intro .-description{
    word-break: auto-phrase;
    width: 95%;
}

/*------------------------------------
  class-flow
------------------------------------*/
.class-flow-title{
    font-size: 2rem;
    padding: 0.25rem 0 0.25rem 1.5rem;
    position: relative;
    margin: 3rem 0 1rem;     
}

.class-flow-title::before{
    width: 10px;
    height: 100%;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #009380;
    border-radius: 10px;
}

.class-flow-list-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-radius: 15px;
    background-color: #f7f8f7;
    margin-bottom: 1rem;
    position: relative;
}

.class-flow-list-item .-image{
    flex: 1;
    margin-right: 2rem;
}

.class-flow-list-item .-info{
    flex: 2.5;
}

.class-flow-list-item .-number{
    color: #009380;
    font-size: 2rem;
    font-weight: bold;
}

.class-flow-list-item .-title{
    font-size: 2rem;
    font-weight: bold;
}

.class-flow-list-item .-description{
    word-break: auto-phrase;
    width: 95%;
}

.class-flow-list-item .-arrow{
    background-color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 1;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.class-flow-list-item .-arrow i{
    font-size: 1.5rem;
    color: #009380;
}

/*------------------------------------
  teacher
------------------------------------*/
.label-title-wrap{
    background-color: #009380;
    color: #fff;
    padding: 2rem;
}

.label-title-container{
    display: flex;
    justify-content: space-between;
}

.label-title-container .-title{
    font-size: 2rem;
}

.label-title-container .-side{
    text-align: right;
    font-weight: bold;
}

.teacher-slide-wrap{
    background-color: #effaf9;
}

.teacher-slide{
    border-radius: 15px;
    background-color: #fff;
}

.teacher-slide img{
    border-radius: 20px 20px 0 0 ;
    object-fit: cover;
}

.teacher-data{
    padding: 0.5rem;
}

.teacher-slide .-subject-name{
    border-radius: 50px;
    background-color: var(--subject-color);
    width: fit-content;
    padding: 0.25rem 1rem;
    color: #fff;
    font-weight: 700;
}

.teacher-slide .-teacher-name{
    text-align: center;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.teacher-slide .-teacher-name .-smaller{
    font-size: 0.9rem;
}

/*------------------------------------
  points
------------------------------------*/
.points-title{
    text-align: center;
    font-size: 2rem;
}

.points-title .-attention{
    color: #f00;
}

.points-list{
    counter-reset: points 0;
}

.points-list-item{
    counter-increment: points;
    background-color: #fff;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.points-list-item .-info{
    flex: 1.5;
}

.points-list-item .-number{
    position: absolute;
    top: -2rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #009380;
}

.points-list-item .-number::after{
    content: counter(points);
    font-size: 1.5em;
}

.points-list-item .-image{
    flex: 1;
}

.points-list-item .-title{
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.points-list-item .-description{
    word-break: auto-phrase;
}

/*------------------------------------
  support
------------------------------------*/
.support-title{
    text-align: center;
    font-size: 2rem;
}

.support-title .-emphasis{
    color: #009380;
}

.support-list{
    counter-reset: support 0;
}

.support-list-item{
    counter-increment: support;
    background-color: #fff;
    border-radius: 15px;
    margin: 2rem 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.support-list-item .-text-wrap{
    flex: 1.5;
}

.support-list-item .-title-wrap{
    display: flex;
}

.support-list-item .-title-wrap .-number{
    font-size: 2.5rem;
    font-weight: 700;
    color: #009380;
    margin-right: 1rem;
}

.support-list-item .-title-wrap .-number::after{
    content: counter(support);
    font-size: 1.5em;
}

.support-list-item .-image{
    flex: 1;
}

.support-list-item .-title{
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.support-list-item .-title .-emphasis{
    color: #009380;
    font-size: 1.25em;
}

.support-list-item .-description{
    word-break: auto-phrase;
}

/*------------------------------------
  victory
------------------------------------*/
.victory-title-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
}

.victory-title-text-wrap{
    flex: 2;
}

.victory-title-upper{
    font-weight: bold;
}

.victory-title{
    font-size: 2rem;
    color: #f00;
}

.victory-title-under{
    font-size: 0.95rem;
    color: #f00;
}

.victory-title-image{
    flex: 1;
    border-radius: 28px;
    overflow: hidden;
}

.victory-flow-list{
    display: flex;
    justify-content: space-between;
    counter-reset: victory-flow 0;
}

.victory-flow-list-item{
    counter-increment: victory-flow;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
    background-color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    flex: 1;
    border-radius: 30px;
    position: relative;
}

.victory-flow-list-item::before{
    content: "0" counter(victory-flow);
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(30%, -40%);
    font-size: 3rem;
    font-weight: 700;
    color: #f00;
}

.victory-flow-list-item:not(:last-child){
    margin-right: 2rem;
}

.victory-flow-list-item:not(:last-child)::after{
    position: absolute;
    content: "";
    top: 50%;
    left: calc(100%);
    transform: translate(67%, -50%);
    clip-path: polygon(0 0, 0% 100%, 75% 50%);
    width: 1rem;
    height: 1rem;
    background-color: #f00;
}

.victory-flow-list-item .-attention{
    color: #f00;
}

.victory-flow-note{
    text-align: center;
    margin: 0.5rem 0 2rem;
}

.victory-subject-container{
    display: flex;
    justify-content: space-between;
}

.victory-subject-wrap{
    display: flex;
    justify-content: center;
    flex: 1;
}

.victory-subject-wrap:nth-child(odd){
    margin-right: 2rem;
}

.victory-subject-title{
    writing-mode: vertical-rl;
    color: #fff;
    display: flex;
    align-items: center;
    background-color: var(--subject-color);
    padding: 0.5rem 0.2rem;
    justify-content: space-between;
    font-weight: 700;
    margin-right: 1rem;
    border-radius: 8px;
}

.victory-subject-title .-subject-name{
    font-size: 1.75rem;
}

.victory-subject-flow li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    word-break: auto-phrase;
    position: relative;
}

.victory-subject-flow li:not(:last-child){
    margin-bottom: 2rem;
}

.victory-subject-flow li:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 67%);
    background-color: var(--subject-color);
    clip-path: polygon(0 0, 50% 75%, 100% 0);
    width: 1rem;
    height: 1rem;
}

.victory-subject-flow li span{
    font-size: 1.1rem;
    font-weight: bold;
    white-space: nowrap;
    color: var(--subject-color);
    display: inline-block;
    margin-right: 1.5rem;
}

.to-schedule-button{
    display: block;
    text-align: center;
    padding: 1.5rem 0;
    width: 70%;
    color: #1b7fb5;
    font-weight: bold;
    font-size: 1.75rem;
    margin: 0 auto;
    border: 3px solid;
    border-radius: 15px;
    box-shadow: 3px 3px 8px rgb(0,0,0,0.3);
    transition: transform 200ms, box-shadow 200ms;
    position: relative;
    cursor: pointer;
}

.to-schedule-button:hover{
    box-shadow: none;
    transform: translate(3px ,3px);
}

.to-schedule-button .fa-angle-right{
    position: absolute;
    top: 50%;
    right: 3%;
    transform: translate(0, -50%);
    display: inline-block;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    border: 2px solid #1b7fb5;
    border-radius: 50%;
    font-size: 1rem;
}

.modal-dialog.-schedule{
    overflow-y: scroll;
}

.schedule-title{
    font-size: 2rem;
    padding: 0.25rem 7rem 0.25rem 1.5rem;
    position: relative;
    margin: 0 0 1rem;
    font-weight: 700;
    width: fit-content;
}

.schedule-title::before{
    width: 7px;
    height: 100%;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ff3737;
    border-radius: 10px;
}

.schedule-title-wrap{
    display: flex;
    justify-content: space-between;
}

.schedule-title-wrap .-title{
    font-weight: 700;
    font-size: 1.25rem;
    flex: 1;
    position: relative;
    text-align: center;
}

.schedule-title-wrap .-title .-emphasis{
    color: #009380;
}

.schedule-title-wrap .-title .-smaller{
    font-size: 0.7em;
    font-weight: normal;
}

.schedule-title-wrap .-title:nth-child(1)::after{
    content: "";
    width: 50%;
    height: 20px;
    clip-path: polygon(0% 45%, 90% 45%, 90% 0%, 100% 50%, 90% 100%, 90% 55%, 0% 55%);
    background-color: #009380;
    position: absolute;
    left: 75%;
    top: 50%;
    transform: translate(0, -50%);
}

.schedule-info-conatiainer{
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.schedule-info{
    border-radius: 10px;
    padding: 1rem;
}

.schedule-info.-test{
    margin-right: 1rem;
}

.schedule-info .-title{
    font-size: 1.25rem;
    font-weight: 700;
}

.schedule-info .-title .-attention{
    color: #f00;
}

.shedule-info-image{
    float: right;
}

.schedule-info.-test .shedule-info-image{
    width: 40%;
}

.schedule-info.-support .shedule-info-image{
    width: 60%;
}

/*------------------------------------
  lesson
------------------------------------*/
.lesson-container-title{
    padding: 0.25rem 0 0.25rem 1.5rem;
    position: relative;
    margin: 3rem 0 2rem;
}

.lesson-container-title::before{
    width: 10px;
    height: 100%;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #009380;
    border-radius: 10px;
}

.lesson-container-title-upper{
    color: #009380;
    font-weight: bold;
}

.lesson-container-title h3{
    font-size: 2rem;
    line-height: 1;
}

.lesson-point-list{
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lesson-point-list li{
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 3rem;
}

.lesson-point-list li .fa-angle-right{
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: #000;
}

.lesson-point-list li i{
    color: #009380;
    font-size: 2rem;
}

.lesson-point-number{
    color: #009380;
    font-weight: 700;
}

.lesson-point-list .-text{
    font-weight: 700;
    word-break: auto-phrase;
}

.lesson-container .-description{
    word-break: auto-phrase;
    padding: 0 3rem;
}

.lesson-box-container{
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.lesson-box{
    flex-basis: 44%;
    position: relative;
    padding: 4rem 1rem 2rem 1rem;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
    border-radius: 15px;
}

.lesson-image{
    position: absolute;
    width: 20%;
    left: 50%;
    top: -10%;
    transform: translate(-50%, 0);
}

.lesson-title{
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
}

.to-lesson-link{
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}

.lesson-example{
    background: linear-gradient(170deg, #30ab9a, #30ab9a 60%, #75C5BA 60.2%, #75c5ba 100%);
    border-radius: 30px;
}

.lesson-example-title{
    text-align: center;
    margin: 0 0 1rem;
    color: #fff;
    font-size: 2rem;
}

.lesson-example-slide{
    padding: 1rem;
    background-color: #fff;
    border-radius: 15px;
    position: relative;
}

.lesson-example-slide .-title{
    font-size: 1rem;
    padding: 0.25rem 0 0.25rem 0.75rem;
    position: relative;
    font-weight: 700;
}

.lesson-example-slide .-title::before{
    width: 6px;
    height: 100%;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #009380;
    border-radius: 10px;
}

.lesson-example-slide .-description{
    font-size: 0.8rem;
    margin: 0.3rem 0;
}

.lesson-example-slide .-teacher-data{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.lesson-example-slide .-teacher-image{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}

.lesson-example-slide .-teacher-image img {
    width: 48%;
    margin-left: 2%;
}

.lesson-example-slide .-teacher-name-wrap{
    font-size: 0.8rem;
    flex: 1.5;
    margin-left: 0.5rem;
}

.lesson-example-slide .-teacher-name-wrap p{
    display: inline-block;
    width: fit-content;
}

.lesson-example-slide .-to-detail{
    text-align: right;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #009380;
    font-weight: 700;
}

.lesson-example-slide-container .splide__pagination__page.is-active{
    background-color: #fff;
}

.lesson-example-slide-container .splide__pagination__page{
    background-color: #ccc;
}

.lesson-example-slide-container .splide__arrow{
    display: none;
}

.lesson-examaple-img{
    width: 90%;
    margin: 0 auto;
    display: block;
}

.lesson-att-txt{
    font-size: 1rem;
    font-weight: normal;
}

/*------------------------------------
  apply_flow
------------------------------------*/
.apply-flow-list{
    margin: 2rem 0;
    display: grid;
    grid-gap: 2rem;
    position: relative;
}

.apply-flow-list::before{
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    width: 1rem;
    height: 100%;
    background: linear-gradient(to bottom, #009380, #009380 2%, #fff 2%,#fff 3%, #009380 3%, #009380 5%, #fff 5%, #fff 6% , #009380 6%, #009380 8%, #fff 8%, #fff 9%, #009380 9%);
    border-radius: 1px;
}

.apply-flow-list-item{
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-flow-list-item:not(:last-child){
    margin-bottom: 1rem;
}

.apply-flow-number{
    font-size: 1.5rem;
    font-weight: 700;
    color: #009380;
    margin-right: 3rem;
}

.apply-flow-detail{
    flex-basis: 40%;
    word-break: auto-phrase;
}

.apply-flow-title{
    font-size: 1.5rem;
    font-weight: 700;
    color: #009380;
}


/*------------------------------------
  tuition
------------------------------------*/
.tuition-container{
    display: flex;
    justify-content: space-between;
    margin: 2rem auto;
}

.tuition-box{
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
}

.tuition-box.-special{
    flex: 2;
    background-color: #f0fffd;
    margin-right: 3rem;
    position: relative;
}

.tuition-box.-special::after{
    position: absolute;
    content: "";
    top: 50%;
    left: calc(100%);
    transform: translate(80%, -50%);
    clip-path: polygon(100% 0%, 25% 50%, 100% 100%);
    width: 1rem;
    height: 1rem;
    background-color: #f00;
}

.tuition-box.-normal{
    flex: 1;
    background-color: #f4f4f4;
}

.tuition-box .-title{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.tuition-box .-attention{
    color: #f00;
    font-size: 1.2em;
}

.tuition-list-item{
    display: flex;
    justify-content: space-around;
    width: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem auto 0;
}

.tuition-detail-text{
    margin-top: 0.5rem;
}

.tuition-note{
    margin-top: 0.5rem;
    font-size: 0.7rem;
}

/*------------------------------------
  preparation
------------------------------------*/
.preparation-title-upper{
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.preparation-title-upper .-emphasis{
    color: #009380;
}

.preparation-title-upper .-attention{
    color: #f00;
}

.preparation-title{
    font-weight: 900;
    font-size: 3rem;
    color: #fff;
    text-align: center;
}

.preparation-title-wrap{
    background-color: #009380;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.preparation-title-wrap .-attention{
    color: #f8e302;
    transform: rotate(5deg);
}

.preparation-title-under{
    text-align: center;
    color: #fff;
    font-weight: 700;
}

.preparation-invite-icon{
    position: absolute;
    background-color: #f00;
    border-radius: 50%;
    color: #fff;
    width: 5rem;
    height: 5rem;
    font-size: 1.5rem;
    display: grid;
    place-items: center;
    line-height: 1;
    font-weight: 700;
    top: -2rem;
    right: 10rem;
}

.preparation-invite-icon.left{
    left: 18%;
    text-align: center;
    font-size: 1.2rem;
}

.preparation-container{
    padding: 1rem;
    border: 2px solid #009380;
    border-radius: 0 0 15px 15px;
}

.preparation-container .-description-title{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.preparation-container .-description-title .-attention{
    color: #f00;
}

.preparation-container .-description-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.preparation-image{
    float: right;
    width: 15rem;
}

.preparation-container .-description{
    word-break: auto-phrase;
}

.preparation-container .-note {
    font-size: 0.65rem;
}

.preparation-about-item-wrap{
    display: grid;
    grid-template-columns: repeat(auto-fill, 50%);
}

.preparation-about-item{
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.preparation-about-item .-head-col{
    flex-basis: 25%;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #fff;
    background-color: #009380;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    white-space: nowrap;
    padding: 0.25rem 1rem;
}

.preparation-about-item .-detail-col{
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.preparation-about-item .-detail-col .-smaller{
    font-size: 0.7rem;
    font-weight: normal;
}

.preparation-about-item .-detail-col .-attention{
    color: #f00;
    font-size: 1.5em;
}

.preparation-about-item .-detail-col .-date i {
    color: #009380;
}

.preparation-apply-button{
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    padding: 1rem 0;
    margin: 0 auto;
    display: block;
    background: linear-gradient(to bottom, #FECAA2, #F45E00);
    border-radius: 50px;
    font-weight: bold;
    line-height: 1.25;
    width: 60%;
}

.preparation-apply-button-before {
    color: #111;
    font-size: 1.1rem;
    text-align: center;
    padding: 1rem 0;
    margin: 0 auto;
    display: block;
    background:  #fff;
    border-radius: 50px;
    border: solid 1px #111;
    font-weight: bold;
    line-height: 1.25;
    width: 60%;
}

.banner-txt{
    text-align: center;
    font-weight: bold;
    font-size: 25px;
}

.banner-txt.syotai {
    margin-top: 70px;
}

.to-gakunenmatsu{
    width: 720px;
    display: flex;
    margin: 0 auto 70px;
}

.to-syotaikousyu {
    width: 720px;
    display: flex;
    margin: 0 auto 0;
}

.textbook-support{
    width: 1000px;
    margin: 0 auto;
}

.textbook-support .-title{
    font-weight: bold;
        font-size: 2rem;
}

.textbook-support .-description {
    margin: 10px auto;
}

.textbook-support .-how-to-use-ttl {
    font-size: 19px;
}

.textbook-support .-arrow {
    clip-path: polygon(0 0, 50% 63%, 100% 0);
    background-color: #009380;
    width: 50px;
    height: 50px;
    margin: 1rem auto;
}

.textbook-support .flex-box{
    display: flex;
}

.textbook-support .flex-cnt:nth-child(1){
    flex: 5;
    margin-right: 10px;
}

.textbook-support .flex-cnt:nth-child(2) {
    flex: 4;
}

/*------------------------------------
  faq
------------------------------------*/
.faq .-acc-btn{
    padding: 0.5rem;
    color: #fff;
    font-size: 1.5rem;
    background: #009380;
    position: relative;
    font-weight: bold;
    align-items: center;
    border-radius: 10px 10px 0 0;
    margin-top: 0.5rem;
}

.faq .-acc-num{
    font-size: 2rem;
    margin-right: 0.5rem;
}

.faq .-acc-btn::before {
    content: "＋";
    position: absolute;
    right: 20px;
}

.faq .-acc-btn.active::before {
    content: "ー";
}

.faq .-acc-cnt{
    display: none;
    background-color: #ebeaea;
    padding: 0.5rem;
    color: #373737;
    font-weight: bold;
    border-radius:0 0 10px 10px;
    font-size: 1.2rem;
}

.faq .-icon {
    width: 12%;
}

.faq .-btn-txt {
    flex: 14;
}

.faq .-none-box {
    flex: 1;
}

.faq .-flex {
    display: flex;
    align-items: center;
}

.faq .-apply-txt {
    font-weight: bold;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.4rem;
}