@charset "UTF-8";
/* CSS Document */
html {scroll-behavior: smooth;}
html, div, body {
	padding: 0;
	margin: 0;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.wrapper{
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    line-height: 1.2;
    background: url(../img/common/haikei_main.png);
}
.main {
    width: 100%;
    /* max-width: 1250px; */
    margin: 0 auto;
}
a {
	color: #000;
	/* transition: 0.7s; */
	text-decoration: none;
}
p {
	font-size: 18px;
	line-height: 1.6;
    /* font-family: 'Sawarabi Gothic', sans-serif; */
	font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
}
h1, h2, h3{
	line-height: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
}
h1 {
	font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: normal;
	text-align: center;
}
h3 {text-align: center;}
ul {
	padding: 0;
	margin: 0;
}
ul li {
	list-style: none;
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
    font-weight: bold;
	line-height: 1.6;
}
img{
    width: 100%;
	max-width: 100%;
	display: block;
	margin: 0 auto;
    height: auto;
    vertical-align: bottom;
}
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.inview-slide-up {
    opacity: 0;
    transform: translateY(20%);
}
.slide-up {
    opacity: 1;
    transform: translateY(0%);
    transition: .6s;
}
a.btn {
    display: inline-block;
    border-radius: 50px;
    padding: 10px 50px;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    transition: .7s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: perspective(2px) translateZ(0);
    transform: perspective(2px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.2s;
    -webkit-transition-property: transform;
    transition-property: transform;
}
a.btn:hover, a.btn:focus, a.btn:active {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    display: inline-block;
}
a.btn::after {
    position: absolute;
    right: 1rem;
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	content: "\f061";
}
a.btn_white {
    background: #fff;
    color: #036EB7;
}
a.btn_blue {
    background: #036EB7;
    color: #fff;
}
.sp-only {display: none;}
.pc-only {display: block;}


/* header */
#header {
    background: #fff;
    /* background-repeat: repeat; */
    -webkit-box-shadow: 2px 3px 5px -3px rgb(0 0 0 / 30%);
    box-shadow: 2px 3px 5px -3px rgb(0 0 0 / 30%);
    width: 100%;
    line-height: 1;
    z-index: 2;
    position: fixed;
    top: 0;
}
.header-inner {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    max-width: 1000px;
}
.header-logo {
    margin: 0 auto;
    margin-bottom:10px;
}
.header-logo a {width:220px;}
.header-logo img {
    max-width: 200px;
}
.gnavi .gnavi-item {
    position: relative;
    padding: 20px;
    transition: .7s;
}
.gnavi .gnavi-item a {
    display: block;
    text-decoration: none;
    /* padding: 10px 10px 20px; */
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.gnavi .gnavi-item a:hover, .gnavi-item :focus, .gnavi-item a:active {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.gnavi .gnavi-item::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 3%;
    width: 100%;
    height: 105px;
    display: inline-block;
    background: url(../img/common/menu_line.svg) no-repeat;
    background-size: contain;
}
.gnavi .gnavi-item:last-child::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -95%;
    width: 100%;
    height: 105px;
    display: inline-block;
    background: url(../img/common/menu_line.svg) no-repeat;
    background-size: contain;
}
.gnavi .gnavi-item a img {width: 100px;}
.gnavi .contact_txt {
    background: #036EB7;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
    padding: 20px 0;
}
.gnavi .contact_txt span {
    color: #FAC300;
}
.burger {
    display: none;
    cursor: pointer;
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0px;
    right: 0px;
    padding: 0px;
    transition: all .6s;
}
.burger p {
    position: absolute;
    left: 17px;
    top: 28px;
    font-size: 0.4rem;
    font-weight: bold;
}
.burger span {
    position: absolute;
    left: 20px;
    width: 30%;
    height: 2px;
    background-color: #000;
    border-radius: 0px;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    -webkit-transition: all 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
    -o-transition: all 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: all 200ms cubic-bezier(0.25, 0.1, 0.25, 1);
}
.burger span:first-of-type {
    top: 12px;
}
.burger span:nth-of-type(2) {
    top: 18px;
}
.burger span:nth-of-type(3) {
    top: 24px;
}
.burger.is-active span {
    background: #000;
}
.burger.is-active span:first-of-type {
    top: 20px;
    -webkit-transform: translateY(0px) rotate(-45deg);
    -ms-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg)
}
.burger.is-active span:nth-of-type(2) {
    top: 20px;
    opacity: 0
}
  .burger.is-active span:nth-of-type(3) {
    top: 20px;
    -webkit-transform: translateY(0px) rotate(45deg);
    -ms-transform: translateY(0px) rotate(45deg);
    transform: translateY(0px) rotate(45deg)
}


/* mv */
.mv {
    padding-top: 125px;
}
.wave{
    position:relative;
    /* height:200px; */
}
#waveCanvas {
    width: 100%;
    height: 200px;
}
canvas{
    position: absolute;
    bottom: 0;
    left:0;
    width: 100%;
}

/* sns */
.sns {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}
.sns .sns_inner {
    position: absolute;
    top: 0;
    right: 0;
    margin: 20px 0;
}
.sns i {
    font-size: 50px;
    margin: 0 7px;
    color: #036EB7;
}
#culum .sns {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
    position: unset;
    z-index: 1;
}
#culum .sns_inner {
    position: static;
}

/* fade */

@media screen and (max-width: 768px) {
    p {font-size: 16px;}
    .sp-only {display: block;}
    .pc-only {display: none;}
    a.btn {
        padding: 7px 50px;
        font-size: 0.9rem;
    }
    .wrapper{max-width: 399px;}
    #main {max-width: 340px;}
    #header {
        height: 135px;
        -webkit-transition: all .6s;
        -o-transition: all .6s;
        transition: all .6s;
        min-width: inherit;
    }
    .header-inner {
        width: 100%;
        padding: 0;
        min-width: auto;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        z-index: -999;
    }
    .header-logo {
        width: 100%;
        padding: 10px 0 0 0;
        margin-bottom: -6px;
        display: inline-block;
    }
    .header-logo a {width:320px;}
    .header-logo img:first-child {
        max-width: 300px;
    }
    .header-logo .header-logo-sub img {
        max-width: 200px;
    }
    .gnavi {
        display: none;
        padding-left: 5%;
        padding-right: 5%;
        padding-bottom: 0;
        transition: 0.6s ease-in-out;
        z-index: 200;
        /* transform: translateX(-100%); */
        opacity: 0;
    }
    .gnavi.is-active {
        display: block;
        background: #fff;
        padding: 0;
        /* transform: translateX(0%); */
        opacity: 1;
    }
    .gnavi-list {
        padding-top: 10px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .gnavi .gnavi-item {
        width: 50%;
    }
    .gnavi .gnavi-item:nth-child(1) {
        border-bottom: 1px solid #333;
    }
    .gnavi .gnavi-item:nth-child(2) {
        border-bottom: 1px solid #333;
    }
    .gnavi .gnavi-item:nth-child(odd) {
        border-right: 1px solid #333;
    }
    .gnavi .gnavi-item::before {display: none;}
    .gnavi .gnavi-item:last-child:after {display: none;}
    .burger {
        display: block;
    }
    .mv {padding-top: 135px;}
    #waveCanvas {height: 100px;}
    #culum .sns {max-width: 350px;}
    .sns .sns_inner {
        position: absolute;
        top: 0;
        right: 0.5rem;
        margin: 10px 0;
    }
    .sns i {
        font-size: 45px;
        margin: 0px 5px;
    }
}

/* お知らせ */
h3.ttl {
    width: 100%;
    max-width: 380px;
    text-align: center;
    margin: 0 auto;
}
.news_inner {
    padding: 70px 0;
    max-width: 1250px;
    margin: 0 auto;
}
.news_ttl {
    width: 48%;
    padding: 0 0 25px 100px;
}
.news_area {
    width: 45%;
}
.news_area hr {
    border: 0;
    border-bottom: 1px dotted #000;
}
.news_item {
    margin: 20px 0;
    position: relative;
}
.news_item:last-child:after {
    content: "";
    display: inline-block;
    width: 100%;
    border-bottom: 1px dotted #000;
    position: absolute;
    bottom: -50%;
    left: 0;
} 
.news_item a {
    transition: .6s;
    font-weight: bold;
}
.news_item a:hover, .news_item a:focus, .news_item a:active {
    color: #036EB7;
}
.news_item span {
    background: #FAC300;
    padding: 3px 25px;
    border-radius: 5px;
    margin-right: 15px;
}
.news_item a span:hover {
    color: #000;
}

/* ごあいさつ */
#greeting {position: relative;}
#greeting #animal_01 {
    position: absolute;
    top: -4rem;
    left: calc(20% - 14rem);
    width: 25%;
}
#greeting #animal_02 {
    position: absolute;
    bottom: 7rem;
    left: calc(15% - 15rem);
    width: 20%;
}
#greeting #animal_03 {
    position: absolute;
    bottom: -9rem;
    right: calc(10% - 12rem);
    width: 25%;
}
#greeting #animal_01_sp {
    position: absolute;
    top: -5rem;
    left: -3rem;
    width: 25%;
}
#greeting #animal_02_sp {
    position: absolute;
    top: -3rem;
    right: calc(-9% - 0rem);
    width: 45%;
}
#greeting #animal_03_sp {
    position: absolute;
    bottom: -8rem;
    left: calc(-10% - 0rem);
    width: 45%;
}
#greeting #animal_04_sp {
    position: absolute;
    bottom: -9rem;
    right: calc(-9% - 0rem);
    width: 30%;
}
#greeting .greeting_inner h3.ttl {
    position: absolute;
    top: calc(-10% - 40px);
    left: calc(50% - 10rem);
}
.greeting {
    background: url(../img/1x/greeting_bg.png) center;
    position: relative;
}
.greeting_inner {
    max-width: 1250px;
    margin: 0 auto;
}
.greeting_area .txt {
    width: 55%;
}
.greeting_area .head {
    width: 40%;
    background: url(../img/1x/koucho_bg.svg) no-repeat center;
    background-size: contain;
    height: 580px;
}
.greeting_area .head .head_inner {
    padding: 70px 90px 0px 80px;
}
.greeting_area .head .head_inner .flex {align-items: end;}
.greeting_area .head .head_inner .flex img {width: 49%;}
.greeting_area .head .head_inner .flex p {
    width: 49%;
    line-height: 1.4;
}
.greeting_area .head .head_inner .flex p span {
    color: #036EB7;
}
.greeting_area .head .head_inner p {
    margin-top: 15px;
}
.greeting_area .head img {
    width: 100%;
    max-width: 150px;
}

/* 先生 */
.teacher_area {position: relative;}
.teacher_btn {
    position: relative;
    background: url(../img/1x/teacher_bg.png) no-repeat center;
    background-size: contain;
    width: 100%;
    height: 300px;
    margin-left: -150px;
}
.teacher_btn a {
    position: absolute;
    top: 12rem;
    left: calc(50% - 90px);
}
.teacher_area .teacher_img {
    position: absolute;
    top: 10rem;
    left: calc(50% - 20px);
    width: 40%;
}

#culum {
    position: relative;
    z-index: 0;
}
#culum #animal_04 {
    position: absolute;
    top: 15rem;
    left: 0;
    width: 17%;
}
#culum #animal_05 {
    position: absolute;
    bottom: 35rem;
    right: -2rem;
    width: 17%;
}
#culum #animal_06_sp {
    position: absolute;
    bottom: -10rem;
    right: -1rem;
    width: 97%;
}
.culum {
    background: url(../img/1x/culum_bg_top.png) no-repeat;
    background-size: contain;
    background-position: bottom;
    padding-bottom: 4rem;
}
.culum_inner {
    max-width: 900px;
    margin: 0 auto;
}

.tabiiku {margin-bottom: 3rem;}
.tabiiku_1 {width: 50%;}
.tabiiku_2 {width: 45%;}

.book {
    background: url(../img/1x/culum_bg_bottom.png) no-repeat;
    background-size: contain;
    background-position: top;
    margin-bottom: 2rem;
}
.book_area {
    background: url(../img/1x/book_bg.png) no-repeat center;
    background-size: contain;
    width: 100%;
    height: 570px;
}
.book_area p {
    text-align: center;
    max-width: 665px;
    margin: 0 auto -20px;
}
.book_area h3:first-child {
    max-width: 165px;
}
.book_area h3 {
    margin: 0 auto;
    padding: 90px 0 20px;
}

@media screen and (max-width: 768px) {
    h3.ttl {
        width: 100%;
        max-width: 380px;
        text-align: center;
        margin: 0 auto;
    }
    /* おしらせ */
    .news_inner {
        padding: 0px 20px 40px;
    }
    .news_ttl {
        padding: 0 60px;
        margin: 0 auto;
        width: 100%;
    }
    .news_ttl h3:nth-child(1) {
        margin-top: 30px;
    }
    .news_area {width: 100%;} 
    /* ごあいさつ */
    #greeting .greeting_inner h3.ttl {
        position: absolute;
        top: -1rem;
        left: calc(50% - 9.5rem);
        width: 75%;
    }
    .greeting_area {padding-top: 5rem;}
    .greeting_area .txt {
        width: 100%;
        padding: 0 25px;
    }
    .greeting_area .head {
        width: 100%;
        height: 480px;
    }
    .greeting_area .head .head_inner {padding: 65px 32px 0px 40px;}
    .greeting_area .head .head_inner .flex img {width: 35%;}
    .greeting_area .head .head_inner p {
        font-size: 16px;
        margin-top: 15px;
    }
    .greeting_area .head .head_inner .flex p {
        width: 55%;
        line-height: 1.2;
    }
    .teacher_btn {
        margin-left: 0;
        height: 200px;
    }
    /* 先生 */
    .teacher_btn a {
        top: 7.5rem;
        left: calc(50% - 85px);
    }
    .teacher_area .teacher_img {
        left: calc(50% - 100px);
        width: 75%;
    }

    /* カリキュラム */
    #culum{margin-bottom: 80px;}
    .culum {
        background: none;
        padding-bottom: 1rem;
    }
    .culum_inner {padding: 0 20px;}
    .tabiiku {
        margin-top: 10rem;
    }
    .tabiiku_1 {width: 100%;}
    .tabiiku_2 {width: 100%;}
    .book {
        background: none;
    }
    .book_area {
        background: url(../img/2x/book_bg_sp.png) no-repeat center;
        height: 480px;
        width: 100%;
        background-size: cover;
    }
    .book_area h3:first-child {
        max-width: 150px;
        padding: 40px 0 5px;
    }
    .book_area h3 {padding: 23px 0 5px;}
    .book_area p {
        text-align: left;
        max-width: 280px;
        margin: 0 auto;
        font-size: 16px;
    }
}

/* footer */
#footer {
    width: 100%;
    line-height: 1;
    z-index: 1;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}
#footer hr {
    border: none;
    border-top: 2px dotted #fff;
    width: 285px;
}
#footer::after {
    content: "";
    min-width: 1250px;
    display: block;
    position: absolute;
    left: 0;
    bottom: 3rem;
    width: 100%;
    z-index: -1;
    min-height: 600px;
    background: url(../img/1x/PC_footer.png) no-repeat;
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
}
#footer::before {
    content: "";
    display: block;
    position: absolute;
    right: 21.5%;
    bottom: 9%;
    width: 7%;
    min-height: 600px;
    background: url(../img/1x/animal_06.png) no-repeat;
    background-size: contain;
    background-position: bottom center;
    transform-origin: center bottom;
    animation: yurayura 12s linear infinite;
}
.footer-main {
    max-width: 1250px;
    margin: 0 auto;
}
.footer-inner {
    position: relative;
    background: url(../img/1x/PC_waku.png) no-repeat center;
    background-size: contain;
    width: 1250px;
    height: 275px;
    color: #fff;
    margin: 0 auto 50px;
}
.footer-inner-in {
    position: absolute;
    top: 3.6rem;
    left: calc(50% - 31rem);
    width: 1000px;
    margin: 0 auto;
    align-items: center;
    gap: 1rem;
}
.footer-inner-in:before {
    content: "";
    border: 1px solid #d3d3d3;
    align-self: stretch;
}
/* .footer-bottom {position: relative;} */
.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
}
#footer::before #animal_06 {
    position: absolute;
    bottom: 10rem;
    right: 27rem;
    width: 7%;
}
.footer-left {
    text-align: center;
    font-size: 2rem;
    width: 44.5%;
    order: -1;
    flex: 1;
    font-weight: bold;
}
.footer-left span {
    color: #FAC300;
}
.footer-right {
    text-align: center;
    width: 44.5%;
    flex: 1;
}
.footer-right a:first-child {
    font-size: 2.4rem;
    color: #FAC300;
}
.footer-right a:last-child {
    margin-top: 7px;
}
.footer-right span {
    font-size: 1.5rem;
    letter-spacing: 3px;
}
.footer-hitode {
    position: absolute;
    top: -35px;
    left: 0px;
}
.footer-hitode img {
    width: 150px;
}
.footer-bottom {
    margin-bottom: 21rem;
}
/* .footer-bottom #map {
    width: 55%;
    height: 420px;
} */
.footer-bottom #gmap {
    position: relative;
    width: 55%;
    height: 420px;
}
.footer-bottom #gmap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 420px;
    border: 5px solid #fff;
}
.footer-bottom .footer-adress {
    width: 40%;
}
.footer-bottom .footer-adress p span {
    font-size: 15px;
}
.footer_img_area {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 50px;
}
.footer_img_area .flex img {width: 30.5%;}
.copy {
	background: #163259;
	font-size: 0.7rem;
	text-align: center;
	padding: 20px;
    color: #fff;
}
#topbtn {
	position: fixed;
    right: 50px;
    bottom: 3rem;
    width: 85px;
    height: 85px;
    text-align: center;
	display: none;
}
#topbtn a span {
	margin-top: -10px;
}


.animal_anime{
    transform-origin: center bottom;
    animation: yurayura 12s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(10deg);
  }
  50%{
      transform: rotate(-8deg);
  }
}

@media screen and (max-width: 768px) {
    #footer::before {
        content: "";
        display: block;
        position: absolute;
        right: 38%;
        bottom: 7%;
        width: 16.5%;
        min-height: 600px;
        background: url(../img/1x/animal_06.png) no-repeat;
        background-size: contain;
        background-position: bottom center;
    }
    #footer::after {
        content: "";
        min-width: 379px;
        display: block;
        position: absolute;
        left: 0;
        bottom: 3rem;
        width: 100%;
        z-index: -1;
        min-height: 220px;
        background: url(../img/2x/SP_footer.png) no-repeat;
        background-size: contain;
        background-position: bottom center;
    }
    .footer-main {
        padding: 20px 20px 50px;
    }
    .footer-inner {
        background: url(../img/2x/SP_waku.png) no-repeat center;
        background-size: contain;
        width: 100%;
        padding: 50px 5% 20px;
        height: 275px;
        margin: 0 auto 20px;
    }
    .footer-inner-in {
        top: 1rem;
    }
    .footer-content {
        margin-top: 0;
        display: block;
    }
    .footer-bottom #animal_06 {
        position: absolute;
        bottom: -11rem;
        right: calc(94% - 15rem);
        width: 70px;
    }
    .footer-left {
        width: 100%;
        margin-right: 0;
        padding-left: 5%;
        padding-right: 5%;
        font-size: 1.2rem;
    }
    .footer-right {
        padding-left: 0;
        margin-top: 0px;
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        border: none;
    }
    .footer-right a:first-child {
        font-size: 1.9rem;
        color: #FAC300;
    }
    .footer-right span {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }
    .footer-hitode {
        position: absolute;
        top: -26px;
        left: -15px;
    }
    .footer-hitode img {
        width: 100px;
    }
    .footer-bottom {
        margin-bottom: 12rem;
    }
    .footer-bottom #gmap {
        width: 100%;
        height: 270px;
    }
    .footer-bottom #gmap iframe {
        height: 240px;
        border: 1.8px dotted #163259;
    }
    .footer-bottom .footer-adress {width: 100%;}
    .footer-bottom .footer-adress p span {
        font-size: 13px;
    }
    .footer_img_area .flex img {width: 100%;}
    #topbtn {
        right: 15px;
        bottom: 1rem;
    }
}