@charset "UTF-8";

body {
    margin: 0;
    width: 100%;
    padding-top: 0px;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
    overflow-x: hidden;
}

.header_links a,
.header_group .header .header_btn .btn,
.header_side_btn .btn {
    transition: color 0.25s ease, background-color 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}

.header {
    top: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    padding: 20px 0 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header .header_inner {
    width: 1060px;
    margin: 0 0 0 0;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header .header_inner .header_left {
    display: flex;
    flex-direction: column;
    color: #00a0ff;
    width: 50%;
    min-width: 400px;
    margin-left: 5px;
}

.header .header_inner .header_left img {
    width: 90%;
    min-width: 300px;
}

.header .header_inner .header_btn {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.header .header_inner .header_btn .btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 4px 16px;
    border: 2px solid #00a0ff;
    gap: 6px;
    border-radius: 30px;
    color: #00a0ff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.header .header_inner .header_btn .btn:hover {
    background: #00a0ff;
    color: white;
}

.header .header_inner .header_btn .btn .icon.hover,
.header_side_btn .btn .icon.hover {
    display: none;
}

.header .header_inner .header_btn .btn:hover .icon.normal,
.header_side_btn .btn:hover .icon.normal {
    display: none;
}

.header .header_inner .header_btn .btn:hover .icon.hover,
.header_side_btn .btn:hover .icon.hover {
    display: inline;
}

.header .header_inner .header_btn .btn:hover,
.header_side_btn .btn:hover {
    background: #00a0ff;
    color: white;
}

.header .header_inner .header_btn .btn .icon {
    width: 18px;
    margin-top: 3%;
}

.header .header_inner .hamburger_btn{
    display: none;
}

.header.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.header_group {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.header_group.hide {
    transform: translateY(-100%);
}

.header {
    width: 100%;
}

.header_links {
    width: 100%;
    display: flex;
    margin: 0;
    padding: 10px 0;
    top: 100px;
    text-align: center;
    justify-content: center;
    gap: 0px;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: 0 2px 2px 0 #d4d4d4;
}

.header_links .triangle1 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #e5f4ff;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 999;
}

.header_links .triangle1.active {
    opacity: 1;
    transform: translateY(0);
}

.header_links .links {
    margin: 0;
    font-size: 16px;
}

.header_links .links a {
    color: #000;
    text-decoration: none;
    padding:10px 20px;
}

.header_links .links a:hover {
    color: #00a0ff;
    background-color: #fff;
}

.header_side_btn {
    writing-mode: vertical-rl;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    gap: 4%;
    position: fixed;
    right: 10px;
    top: 164px;
    z-index: 9999;
    transition: transform 0.6s ease;
}

.header_side_btn .side_btns {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 30px;
    width: 50px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    text-decoration: none;
}

.header_side_btn .side_btns img {
    width: 50%;
    margin-bottom: 10px;
    display: block;
}

.header_side_btn .side_btns > .icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.header_side_btn .side_btns.btn:hover .icon.hover {
    display: block !important;
}

.header_side_btn .side_btn1 {
    border: 3px solid #70cc58;
    height: 135px;
    background-color: #70cc58
}

.header_side_btn .side_btn2 {
    border: 3px solid #ffa300;
    height: 180px;
    background-color: #ffa300;
}

.header_side_btn .side_btn3 {
    border: 3px solid #00b1ff;
    height: 180px;
    background-color: #00b1ff;
}

.header_side_btn .side_btn1:hover {
    background-color: #fff;
    color: #70cc58;
}

.header_side_btn .side_btn2:hover {
    background-color: #fff;
    color: #ffa300;
}

.header_side_btn .side_btn3:hover {
    background-color: #fff;
    color: #00b1ff;
}

.header_side_btn .side_toggle{
    display: none;
}

.nav_mask {
    display: none;
}

.header_links .sp_only {
    display: none;
}
@media screen and (max-width: 1100px){
    .header_links{
        gap: 0px;
    }

    .header_links .links{
        font-size: 15px;
    }
}

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

    body {
        font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
        font-weight: 400;
        -webkit-font-smoothing: antialiased;
    }

    .all_footer .white .links,
    .all_footer .white .last {
        font-weight: normal;
    }


    .header_group .header {
        height: auto;
        min-height: 60px;
        padding: 10px 0 5px;
        position: relative;
        z-index: 10000;
        box-shadow: 0 2px 2px 0 #d4d4d4;
    }

    .header_group .header .header_inner {
        padding: 0 11px;
        height: auto;
        min-height: 60px;
        display: flex;
        align-items: center;
    }

    .header_group .header .header_inner .header_left {
        width: 50%;
        display: flex;
        align-items: center;
        min-width: auto;
    }

    .header_group .header .header_inner .header_left img {
        min-width: auto;
        width: 120%;
        height: auto;
    }

    .header_group .header .header_inner .header_btn {
        display: none;
    }

    .header_group .header .header_inner .hamburger_btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 65px;
        height: 65px;
        background-color: #00a0ff;
        border-radius: 8px;
        cursor: pointer;
        z-index: 10001;
        margin-left: auto;
        gap: 8px;
    }

    .header_group .header .header_inner .hamburger_btn span {
        position: static;
        width: 34px;
        height: 3px;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    .header_group .header .header_inner .hamburger_btn.active span {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-top: -1px;
        margin-left: -17px;
    }

    .header_group .header .header_inner .hamburger_btn.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .header_group .header .header_inner .hamburger_btn.active span:nth-child(2) {
        opacity: 0;
    }

    .header_group .header .header_inner .hamburger_btn.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .header_group .header_links {
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100vh - 60px);
        background: #00a0ff;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 0;
        padding-bottom: 0;
        gap: 0;
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 1;
        transition: transform 0.3s ease;
        z-index: 9990;
        box-shadow: none;
    }

    .header_group .header_links.open {
        transform: translateX(0);
        z-index: 10000;
    }

    .header_group .header_links .links {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.7);
        font-size: 20px;
        box-sizing: border-box;
        margin: 0;
    }

    .header_group .header_links .links a {
        padding: 30px 20px;
        display: block;
        width: 100%;
        color: #fff;
    }

    .header_group .header_links .links a:hover {
        background-color: transparent;
        opacity: 0.8;
        color: #fff;
    }

    .header_group .header_links .triangle1 {
        display: none;
    }

    .header_group .Links_no1 {
        display: none;
    }

    .header_side_btn {
        writing-mode: horizontal-tb;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        gap: 8px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 60%;
        height: auto;
        padding: 5px 10px 0px;
        background: transparent;
        z-index: 9000;
        transform: translateY(0);
        transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) !important;
        pointer-events: none;
    }

    .header_side_btn.closed {
        transform: translateY(100%);
    }

    .header_side_btn .side_toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        pointer-events: auto;
        position: absolute;
        top: -50px;
        right: 10px;
        left: auto;
        width: 50px;
        height: 50px;
        background-color: #00a0ff;
        color: #fff;
        font-size: 23px;
        font-weight: bold;
        border-radius: 12px;
        box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
        transition: background-color 0.3s, border-radius 0.3s ease;
    }

    .header_side_btn.closed .side_toggle {
        border-radius: 50%;
    }

    .header_side_btn .side_toggle .info_icon {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 20px;
        height: 20px;
        border: 1px solid #fff;
        border-radius: 50%;
        font-family: serif;
        font-style: italic;
        font-weight: bold;
        font-size: 13px;
        line-height: 1;
        box-sizing: border-box;
    }

    .header_side_btn .side_btns {
        pointer-events: auto;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 40px;
        padding: 0 !important;
        flex: 1;
        height: 70px;
        min-height: auto;
        margin: 0 !important;
        border-radius: 18px;
        font-size: 18px;
        font-weight: 550;
        line-height: 1.2;
        white-space: nowrap;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        transition: opacity 0.5s ease, background-color 0.25s ease, color 0.25s ease;
        opacity: 1;
    }

    .header_side_btn.closed .side_btns{
        opacity: 0;
        pointer-events: none;
    }

    .header_side_btn .side_btns img {
        display: none !important;
    }

    .header_side_btn .side_btns .icon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .header_side_btn .side_btns.btn:hover .icon.hover{
        display: none !important;
    }

    .header_side_btn .side_btns span.text,
    .header_side_btn .side_btns {
        margin: auto;
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .header_side_btn .side_btn1 {
        background-color: #70cc58;
        border: 2px solid #70cc58;
    }
    .header_side_btn .side_btn2 {
        background-color: #ffa300;
        border: 2px solid #ffa300;
    }
    .header_side_btn .side_btn3 {
        background-color: #00b1ff;
        border: 2px solid #00b1ff;
    }

    .header_side_btn .side_btns:hover {
        background-color: #fff;
    }
    .header_side_btn .side_btn1:hover { color: #70cc58; }
    .header_side_btn .side_btn2:hover { color: #ffa300; }
    .header_side_btn .side_btn3:hover { color: #00b1ff; }

    .header_side_btn .side_toggle{
        box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .header_side_btn .btn{
        box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
    }

    .header_side_btn{
        gap: 5px;
        bottom: 10px;
    }


    .nav_mask {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9995;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

    .nav_mask.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header_links .sp_only {
        display: block;
    }
}

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

    .header_group .header .header_inner .header_left img{
        width: 165%;
    }

    .header_group .header .header_inner .hamburger_btn {
        width: 44px;
        height: 44px;
        border-radius: 4px;
        gap: 6px;
    }

    .header_group .header .header_inner .hamburger_btn span{
        width: 24px;
        height: 2px;
    }

    .header_group .header .header_inner .hamburger_btn.active span{
        margin-left: -12px;
    }

    .header_side_btn{
        width: auto;
    }

    .header_side_btn .side_btns{
        font-size: 16px;
        height: 60px;
    }

    .header_side_btn .side_toggle{
        width: 40px;
        height: 40px;
        font-size: 17px;
        top: -40px;
    }

    .header_group .header_links .links{
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.7);
        font-size: 16px;
        box-sizing: border-box;
        margin: 0;
    }

    .header_group .header_links .links a{
        padding: 20px 20px;
    }
}

body:not(.home) .header_group,
body:not(.home) .header_side_btn {
    pointer-events: auto !important;
}

.header_group.hide,
.header.hide {
    transform: none !important;
    opacity: 1 !important;
}

.all_footer{
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
}

html{
    scroll-behavior: smooth;
}

.all_footer .blue{
    width: 100%;
    height: auto;
    background-color: aliceblue;
    padding: 5% 8% 10%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.all_footer .blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: aliceblue;
    z-index: -1;
}

.all_footer .blue .flex{
    display: flex;
    margin-bottom: -10%;
    gap: 120px;
    justify-content: center;
}

.all_footer .blue .flex .group{
    margin: 5% 0 30%;
}

.all_footer .blue .flex .group a{
    transition: all ease 0.25s;
}

.all_footer .blue .flex .group a:hover{
    color:rgb(101, 183, 255);
}

.all_footer .blue .flex .group .font_size1 a:hover{
    color: #a0dbf7;
}

.all_footer .blue .flex .group .font_size1,
.all_footer .blue .flex .group .font_size2,
.all_footer .blue .flex .group .font_size3{
    font-weight: 450;
    margin-bottom: 7%;

}

.all_footer .blue .flex .group .font_size1{
    font-size: 22px;
}

.all_footer .blue .flex .group .font_size1 a{
    color: #00a0ff;
}

.all_footer .blue .flex .group .font_size2{
    font-size: 16px;
}

.all_footer .blue .flex .group .font_size3{
    font-size: 13px;
    margin-left: 9%;
}

.all_footer .blue .flex .group a{
    text-decoration: none;
    color: #000;
}

.all_footer .blue .flex .icon_flex{
    display: flex;
    gap: 3%;
    margin-top: 120%;
}

.all_footer .blue .flex .icon_flex img{
    width: 70%;
    min-width: 60px;
}

.all_footer .white{
    width: 100%;
    height: auto;
    background-color: #fff;
    padding-top: 3%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.all_footer .white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #fff;
    z-index: -1;
}

.all_footer .white .links{
    font-size: clamp(0px, 2vw,16px);
    font-weight: 300;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 0;
}

.all_footer .white .links span {
    display: block;
    padding: 0 15px;
    border-right: 1px solid #000;
    line-height: 1;
}

.all_footer .white .links span:last-child {
    border-right: none;
}

.all_footer .white .links a{
    text-decoration: none;
    color: #000;
}

.all_footer .white .links a:hover{
    color: rgb(101, 183, 255);
}

.all_footer .white .flex{
    display: flex;
    margin: 3% auto;
    justify-content: center;
    width: 90%;
    align-items: center;
}

.all_footer .white .flex .img{
    width: 6%;
    margin-right: 2%;
}

.all_footer .white .flex .img img{
    width: 100%;
}

.all_footer .white .flex .school{
    width: 45%;
    white-space: nowrap;
}

.all_footer .white .flex .school .snt1{
    font-size: clamp(0px,1.5vw,14px);
}

.all_footer .white .flex .school .snt2{
    font-size: clamp(0px,1.75vw,20px);
}

.all_footer .white .flex .school a{
    text-decoration: none;
    color: #000;
}

.all_footer .white .flex .tel{
    width: 25%;
    border: 1px solid #cacbcb;
    border-radius: 10px;
    padding:1% 0% ;
    text-align: center;
    white-space: nowrap;

}

.all_footer .white .flex .tel .snt1{
    font-size: clamp(0px,2.4vw,25px);
}

.all_footer .white .flex .tel .snt2{
    font-size: clamp(0px,1.5vw,15px);
}

.all_footer .white .last{
    font-size: clamp(0px,1.5vw,14px);
    font-weight: 350;
    text-align: center;
    padding-bottom: 3%;
    white-space: nowrap;
}

.footer_opener {
    display: none;
}

.footer_sub_links {
    height: auto;
    opacity: 1;
    display: block;
}

@media screen and (max-width:1020px){
    .all_footer .white .flex .school{
        margin-right: 5%;
    }
}

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

    .all_footer .blue .flex{
        display: grid;
        gap: 0 15%;
        grid-template-rows: repeat(5, auto);
        grid-auto-flow: column;
    }

    .all_footer .blue .flex .pc_only{
        display: contents;
    }

    .all_footer .blue .flex .icon_flex{
        margin: 10% 0 5% 6%;
    }


    .all_footer .blue .flex .group{
        margin: 5% 0 10%;
    }

    .all_footer .blue .flex .group .font_size1{
        font-size: 25px;
        font-weight: 500;
    }

    .all_footer .blue .flex .group .font_size2{
        font-size:18px;
    }

    .all_footer .blue .flex .group .font-size3{
        font-size: 16px;
    }

    .all_footer .blue .flex .icon_flex{
        margin-top: 57%;
    }

    .all_footer .white .flex .school{
        margin-right: 8%;
    }

    .all_footer .white .flex .tel{
        padding: 1% 2%;
    }

    .all_footer .white .last{
        padding-bottom: 15%;
    }
}

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

    .all_footer .blue {
        background-color: rgb(247, 247, 247);
        padding: 0 0 15%;
        margin-top: 0;
    }

    .all_footer .blue::before {
        background-color: rgb(247, 247, 247);
    }

    .all_footer .blue .flex {
        display: block;
        width: 100%;
    }

    .all_footer .blue .flex .group {
        width: 100%;
        margin: 0;
        padding: 0;
        border-top: 1px solid #0097de;
    }

    .all_footer .blue .flex .pc_only:last-child .group:nth-last-child(2) {
        border-bottom: 1px solid #0097de !important;
    }

    .all_footer .blue .flex .group .font_size1 {
        font-size: 28px;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        padding: 8px 20px;
        margin-bottom: 0 !important;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .all_footer .blue .flex .group .font_size1 a {
        flex: 1;
        display: block;
        color: #000;
        text-decoration: none;
        padding: 5px 0;
        font-size: 16px;
    }

    .all_footer .blue .flex .group .font_size2{
        font-size: 16px;
    }

    .footer_opener {
        position: relative;
        display: block;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        margin-left: 10px;
        cursor: pointer;
        font-size: 0;
        color: transparent;
        transform: none;
        transition: none;
    }

    .footer_opener::before,
    .footer_opener::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: #0097de;
        transform: translate(-50%, -50%);
        transition: transform 0.5s ease;
    }

    .footer_opener::before {
        width: 16px;
        height: 2px;
    }

    .footer_opener::after {
        width: 2px;
        height: 16px;
    }

    .footer_opener.active {
        transform: none;
    }

    .footer_opener.active::after {
        transform: translate(-50%, -50%) rotate(-90deg);
    }

    .footer_sub_links {
        height: 0;
        opacity: 0;
        overflow: hidden;
        transition: height 0.5s ease, opacity 0.3s ease;
        background-color: #fff;
    }

    .footer_sub_links.is-open {
        opacity: 1;
        padding-bottom: 0%;
    }

    .all_footer .blue .flex .group .footer_sub_links .font_size2,
    .all_footer .blue .flex .group .footer_sub_links .font_size3 {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #eee;
    }

    .all_footer .blue .flex .group .footer_sub_links a.clicked {
        background-color: #e5f4ff;
        color: #00a0ff;
        transition: background-color 0.1s;
    }

    .all_footer .blue .flex .group .font_size1.header-active {
        background-color: #e5f4ff;
        transition: background-color 0.1s;
    }

    .all_footer a,
    .all_footer .font_size1 {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-tap-highlight-color: transparent;
    }

    .all_footer .blue .flex .group .footer_sub_links > div:first-child {
        border-top: 1px solid #eee;
    }


    .all_footer .blue .flex .group .footer_sub_links .font_size2 a,
    .all_footer .blue .flex .group .footer_sub_links .font_size3 a {
        display: block;
        width: 100%;
        height: 100%;
        padding: 10px 20px 10px 40px;
        box-sizing: border-box;
        color: inherit;
        text-decoration: none;
    }

    .all_footer .blue .flex .group .footer_sub_links .font_size3 a {
        padding-left: 60px;
    }

    .all_footer .blue .flex .icon_flex {
        margin: 10% auto 5%;
        gap: 20px;
        justify-content: center;
    }

    .all_footer .white .links{
        margin: 8% 5% 8%;
        font-size: 13px;
    }

    .all_footer .white .links span {
        padding: 0 10px;
    }

    .all_footer .white .flex{
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 25px 0px;
        align-items: center;
        width: 95%;
        margin: 5% auto;
    }

    .all_footer .white .flex .tel{
        grid-column: 1 / -1;
        grid-row: 1;
        width: 75%;
        box-sizing: border-box;
        order: -1;
        padding: 10px;
        border: 2px solid #cacbcb;
        border-radius: 10px;
        text-align: center;
        margin: 3% auto;
    }

    .all_footer .white .flex .img {
        grid-column: 1 / 2;
        grid-row: 2;
        width: 100%;
        margin: 0;
    }

    .all_footer .white .flex .img img{
        width: 80%;
    }

    .all_footer .white .flex .school {
        grid-column: 2 / 3;
        grid-row: 2;
        width: 100%;
        margin: 0;
        text-align: left;
    }


    .all_footer .white .flex .tel .snt1{
        font-size: 27px;
    }

    .all_footer .white .flex .tel .snt2{
        font-size: 14px;
    }

    .all_footer .white .flex .school .snt1 {
        font-size: 9px;
    }

    .all_footer .white .flex .school .snt2 {
        font-size: 13px;
        line-height: 1.4;
    }

    .all_footer .white .last{
        font-size: 7px !important;
        padding-bottom: 23%;
    }
}

.all {
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
    position: relative;
}

a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
}