
.c-inner {
    width: 95%;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 768px) {
    .c-inner {
        width: 100%;
        padding: 0 20px;
    }
}

.c-inner_s {
    width: 95%;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 768px) {
    .c-inner_s {
        width: 100%;
        padding: 0 20px;
    }
}

.c-inner_w {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

@media screen and (max-width: 768px) {
    .c-inner_w {
        width: 100%;
        padding: 0 20px;
    }
}

.c-bg_blue {
    background-color: #F2F9FD;
}

.c-img {
    width: 100%;
    height: auto;
}

.c-img_maru {
    border-radius: 8px;
    overflow: hidden;
}



/*arrow*/
.c-arrow {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    transition: all .3s;
}

@media screen and (max-width: 768px) {
    .c-arrow {
        width: 30px;
        height: 30px;
    }
}

.c-arrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-top: solid 2px #5AB7E6;
    border-right: solid 2px #5AB7E6;
    position: absolute;
    left: 15px;
    top: 16px;
    transform: rotate(45deg);
    transition: all .3s;
}

@media screen and (max-width: 768px) {
    .c-arrow::before {
        width: 6px;
        height: 6px;
        left: 11px;
        top: 12px;
    }
}


/*arrow*/
.c-download {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #928AD7;
    border-radius: 50%;
    position: absolute;
    transition: all .3s;
}


@media screen and (max-width: 768px) {
    .c-download {
        width: 30px;
        height: 30px;
    }
}

.c-download::before {
    content: "\EA0E";
    color: #FFF;
    font-family: "myfont";
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .c-download::before {
        font-size: 16px;
    }
}

a:hover .c-download {
    background-color: #FFF;
}

a:hover .c-download::before {
    color: #928AD7;
}

/*button*/
.c-btn01 {
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .c-btn01 {
        max-width: 280px;
    }
}

.c-btn01.circle {
    border-radius: 35px;
}

.c-btn01_link {
    position: relative;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #fff;
    transition: all .3s;
    background: linear-gradient(90deg, #46C8FF 0%, #FF8CB3 100%);
}

@media screen and (max-width: 768px) {
    .c-btn01_link {
        height: 50px;
        font-size: 1.4rem;
    }
}

.c-btn01_link:hover {
    background: linear-gradient(90deg, #46C8FF 0%, #FF8CB3 80%);
}

.c-btn01_arrow {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.c-btn01_link:hover .c-btn01_arrow {
    right: 10px;
}

.c-btn02 {
    background-color: #fff;
    display: block;
    padding: 22px;
    position: relative;
    line-height: 1.6;
    box-shadow: 1px 1px 0px 0px #0000001A;
    border-radius: 4px;
    transition: all .3s;
    width: 280px;
}

@media screen and (max-width: 768px) {
    .c-btn02 {
        padding: 16px;
        font-size: 1.4rem;
        width: 310px;
    }
}

.c-btn02:hover {
    box-shadow: 1px 1px 0px 0px #0000004D;
}



/*box*/
.c-blue_box {
    background-color: #F2FAFE;
    border-radius: 8px;
    padding: 20px;
}


/*btnArea*/
.c-btnArea {
    padding-top: 100px;
}

@media screen and (max-width: 768px) {
    .c-btnArea {
        padding-top: 50px;
    }
}

.c-btnList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
    .c-btnList {
        justify-content: flex-start;
    }
}

.c-btnList.clm03 {
    justify-content: flex-start;
}

.c-btnList_item {
    margin-right: 20px;
    max-width: 360px;
    width: calc(100% / 3);
}

@media screen and (max-width: 768px) {
    .c-btnList_item {
        width: 100%;
        margin-bottom: 10px;
        max-width: 100%;
        margin-right: 0;
    }
}

@media screen and (max-width: 768px) {
    .c-btnList_item:last-child {
        margin-bottom: 0;
    }
}

.c-btnList_item.clm03 {
    margin-top: 20px;
    margin-right: 20px;
    width: calc((100% - 40px) / 3);
}

@media screen and (max-width: 768px) {
    .c-btnList_item.clm03 {
        margin-top: 0;
        width: 100%;
        margin-bottom: 10px;
        max-width: 100%;
        margin-right: 0;
    }
}

.c-btnList_item.clm03:nth-child(3n) {
    margin-right: 0;
}

.c-btnList_item.clm03:nth-child(1),
.c-btnList_item.clm03:nth-child(2),
.c-btnList_item.clm03:nth-child(3) {
    margin-top: 0;
}

.c-btnList_item:last-child {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .c-btnList_btn.c-btn01 {
        margin: 0 auto;
    }
}

/*linkList*/
.c-linkList01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.c-linkList01_item {
    width: calc((100% - 40px) / 2);
    border-top: 1px solid #DDDDDD
}

@media screen and (max-width: 768px) {
    .c-linkList01_item {
        width: 100%;
    }
}

.c-linkList01_item:last-child,
.c-linkList01_item:nth-last-child(2) {
    border-bottom: 1px solid #DDDDDD
}

@media screen and (max-width: 768px) {
    .c-linkList01_item:nth-last-child(2) {
        border-bottom: none;
    }
}

.c-linkList01_link {
    padding: 16px 0;
    display: flex;
    align-items: center;
    position: relative;
    transition: all .3s;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
    .c-linkList01_link {
        font-size: 1.4rem;
        padding: 13px 0;
    }
}

.c-linkList01_link:hover {
    color: #5FC3F0;
}

.c-arrow_blue {
    right: 0;
    background-color: #928AD7;
}

.c-arrow-pink {
    background
}

.c-linkList01_link:hover .c-arrow_blue {
    right: -3px;
}

.c-arrow_blue::before {
    border-top-color: #fff;
    border-right-color: #fff;
}

.c-linkList02 {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.c-linkList02_item {
    margin: 2px;

}

.c-linkList02_link {
    padding: 8px 20px;
    border-radius: 20px;
    background-color: #F2FAFE;
    line-height: 1.5;
    transition: all .3s;
    display: block;

}

@media screen and (max-width: 768px) {
    .c-linkList02_link {
        padding: 8px 12px;
        font-size: 1.4rem;
    }
}

.c-linkList02_link.active {
    background-color: #5FC3F0;
    color: #fff;
}

.c-linkList02_link:hover {
    background-color: #5FC3F0CC;
    color: #fff;
}

/*column*/
.c-clm02List {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c-clm02List_item {
    width: calc((100% - 40px) / 2);
}

@media screen and (max-width: 768px) {
    .c-clm02List_item {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .c-clm02List_item:first-child {
        margin-bottom: 20px;
    }
}

.c-clm03List {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.c-clm03List_item {
    width: calc((100% - 40px) / 3);
}

@media screen and (max-width: 768px) {
    .c-clm03List_item {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .c-clm03List_item:last-child {
        margin-bottom: 0;
    }
}

.c-clm03List_txt {
    line-height: 1.6;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

@media screen and (max-width: 768px) {
    .c-clm03List_txt {
        font-size: 1.2rem;
    }
}

/*mv*/
#c-mvSection {
    position: relative;
}

.c-mvSection_img {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 27.78%;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .c-mvSection_img {
        padding-top: 51.28%;
    }
}

.c-mvSection_img_in {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.c-mvSection_ttl {
    position: absolute;
    left: 0;
    bottom: 50px;
    padding: 24px 40px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #fff;
    min-width: 380px;
}

@media screen and (max-width: 768px) {
    .c-mvSection_ttl {
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 10px 10px 0 0;
        padding: 12px;
        min-width: 270px;
    }
    .c-mvSection_ttl.wide {
        min-width: 310px;
        padding: 12px 0;
    }
}

.c-mvSection_ttl_head02 {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .c-mvSection_ttl_head02 {
        text-align: center;
    }
}


/*c-tbl01*/
.c-tbl01 {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.c-tbl01_dt,
.c-tbl01_dd {
    position: relative;
}

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

    .c-tbl01_dt,
    .c-tbl01_dd {
        font-size: 1.4rem;
    }
}

.c-tbl01_dt.first,
.c-tbl01_dd.first {
    padding-top: 0;
}

.c-tbl01_dt {
    width: 180px;
    padding: 20px;
    position: relative;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .c-tbl01_dt {
        padding: 12px 0;
        width: 120px;
    }
}

.c-tbl01.topLine::before,
.c-tbl01_dt::before,
.c-tbl01_dd::before {
    content: '';
    background-color: #DDDDDD;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.c-tbl01.topLine::after,
.c-tbl01_dt::after {
    content: '';
    background-color: #5FC3F0;
    width: 144px;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.c-tbl01.topLine::before,
.c-tbl01.topLine::after {
    bottom: auto;
    top: 0;
}

.c-tbl01_dd {
    width: calc(100% - 180px);
    padding: 20px 0;
}

@media screen and (max-width: 768px) {
    .c-tbl01_dd {
        width: calc(100% - 120px);
    }
}

@media screen and (max-width: 768px) {
    .c-tbl01_dd {
        padding: 16px 0;
    }
}

.c-tbl02 {
    width: 100%;
}

.c-tbl02_tr {
    display: flex;
}

.c-tbl02_th,
.c-tbl02_td {
    padding: 15px 20px;
    letter-spacing: 0.08em;
}

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

    .c-tbl02_th,
    .c-tbl02_td {
        padding: 15px 20px;
        font-size: 1.4rem;
    }
}

.c-tbl02_th {
    background-color: #5FC3F0;
    text-align: center;
    color: #fff;
    width: calc(100% - 100px);
}

.c-tbl02_th:nth-child(2) {
    width: 100px;
    border-left: 1px solid #fff;
}

.c-tbl02_td {
    width: calc(100% - 100px);
}

.c-tbl02_td:nth-child(2) {
    width: 100px;
    border-left: 1px solid #6FC9F3;
    text-align: center;
}

.c-tbl02_blue {
    background-color: #F2F9FD;
}

/*tbl03*/
.c-tblScroll {
    overflow-x: scroll;
}

.c-tbl03 {
    width: 100%;
    min-width: 1120px;
}

.c-tbl03_th {
    background-color: #5FC3F0;
    padding: 12px 0;
    text-align: center;
    color: #fff;
}

.c-tbl03_th,
.c-tbl03_td {
    border-top: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    letter-spacing: 0.05em;
}

.c-tbl03_th:first-child,
.c-tbl03_th:nth-child(2) {
    width: 90px;
}

.c-tbl03_th:nth-child(3) {
    width: 100px;
}

.c-tbl03_th:nth-child(4) {
    width: 360px;
}

.c-tbl03_th:nth-child(5) {
    width: 180px;
}

.c-tbl03_th:nth-child(6) {
    width: 130px;
}

.c-tbl03_th:nth-child(5) {
    width: 180px;
}

.c-tbl03_bgBlue01 {
    background-color: #E6F5FD;
}

.c-tbl03_bgBlue02 {
    background-color: #F2FAFE;
}

.c-tbl03_bgOrange01 {
    background-color: #FFF3E7;
}

.c-tbl03_bgOrange02 {
    background-color: #FFF3E74D;
}

.c-tbl03_bgGreen01 {
    background-color: #E4F5F1;
}

.c-tbl03_bgGreen02 {
    background-color: #E4F5F14D;
}

.c-tbl03_bgPurple01 {
    background-color: #EBEBF9;
}

.c-tbl03_bgPurple02 {
    background-color: #EBEBF94D;
}

.c-tbl03_bgBlack01 {
    background-color: #EEEEEE;
}

.c-tbl03_bgBlack02 {
    background-color: #F5F5F5;
}

.c-tbl03_td.p-education_programTbl_td:nth-child(1),
.c-tbl03_td.p-education_programTbl_td:nth-child(2) {
    padding: 23px 0;
    text-align: center;
}

.c-tbl03_td {
    padding: 12px 4px;
}

/*contactBox*/
.c-contactBox {
    border: 1px solid #5FC3F0;
}

.c-contactBox_dt {
    line-height: 1.7;
    padding: 12px;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, #DAF4FF 0%, #E1FAF7 100%);
}

.c-contactBox_dd {
    padding: 20px;
}

.c-contactBox_txt {
    margin-bottom: 12px;
}

.c-telTxt {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.c-telTxt.left {
    justify-content: flex-start;
}

.c-telTxt_link {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: #1A9CCE;
    font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
    .c-telTxt_link {
        font-size: 2rem;
    }
}

.c-telTxt_span {
    font-size: 1.3rem;
    padding: 5px 10px;
    background-color: #EAF7FC;
    color: #1A9CCE;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .c-telTxt_span {
        font-size: 1.1rem;
    }
}

.c-telTxt_txt {
    line-height: 2;
}

@media screen and (max-width: 768px) {
    .c-telTxt_txt {
        display: block;
    }
}

.c-emailTxt {
    text-align: center;
    line-height: 2;
}

.c-emailTxt_link {
    color: #0066CC;
    border-bottom: 1px solid #0066CC;
}

@media screen and (max-width: 768px) {
    .c-emailTxt_link {
        font-size: 1.4rem;
    }
}

.c-contactBox_btn01 {
    margin: 20px auto 0;
}

/*.c-trans{
  animation-name: fadein;
  animation-duration: 1s; 
  animation-delay: .5s;
  animation-fill-mode: forwards;
  position: relative;
  opacity: 0; 
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}*/
.c-index_menuList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.c-index_menuList_item {
    width: calc((100% - 96px) / 3);
}

@media screen and (max-width: 768px) {
    .c-index_menuList_item {
        width: 100%;
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 768px) {
    .c-index_menuList_item:last-child {
        margin-bottom: 0;
    }
}

.c-index_menuList_link {
    position: relative;
}

.c-index_menuList_ttl {
    margin-top: 16px;
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    line-height: 1.5;
    transition: all .3s;
    margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
    .c-index_menuList_ttl {
        margin-bottom: 12px;
        font-size: 1.6rem;
    }
}

.c-index_menuList_link:hover>.c-index_menuList_ttl {
    color: #5FC3F0;
}

.c-index_menuList_txt {
    letter-spacing: 0.05em;
    padding-bottom: 52px;
    position: relative;
}

@media screen and (max-width: 768px) {
    .c-index_menuList_txt {
        padding-bottom: 40px;
    }
}

.c-index_menuList_img {
    transition: all .3s;
    overflow: hidden;
    border-radius: 8px;
}

.c-index_menuList_link:hover .c-index_menuList_img {
    opacity: 0.8;
}

.c-index_menuList_arrow {
    right: 0;
    bottom: 0;
}

.c-index_menuList_link:hover .c-index_menuList_arrow {
    transform: scale(1.1);
}