@charset "UTF-8";

html{
  overflow: auto;
}



header{
  background-color: #FFA2E5;
 
}

 body {
    min-height: 100vh;
    list-style: none;
    font-family: 'Noto Sans', sans-serif;
    text-decoration: none;
    overflow: hidden;
    color: #2C2B2B;
    background-color: #FCFAFF;
  }

 h1,h2,h3,h4,h5,h6,p {
  color: rgb(53, 50, 48);
 }
 
h1{
  font-size:clamp(1.375rem, 0.852rem + 2.61vw, 2.813rem);
  text-align: center;
}

h2{
  font-size: clamp(1.375rem, 0.852rem + 2.61vw, 2.813rem);
  text-align: center;
  
}

  h6{
   font-size: clamp(1rem, 0.958rem + 0.22vw, 1.125rem); 
  }

  ul{
    list-style: none;
  } 

a{
  text-decoration: none;
}

  /*セクション毎の余白*/
section {
  padding-top: 7rem;
  padding-bottom: 7rem;

}
.instagram{
  padding-top: 7rem;
  padding-bottom: 7rem;
}

/*TOP固定表示*/
.top{
  border-radius: 50%;
  font-size: 1.2rem;
  margin: 0;
  display: flex;
  background-color: #FAFC86;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  position: fixed;
  bottom: 4%;
  right: 3%;
  z-index: 99;   
}

.top a{
  color: #2C2B2B;
  
}

  /* ナビゲーションメニュー*/

  .s-nav{
    justify-content: space-between;

 
  }

  .g-nav h1{
    text-decoration:underline;
    font-size: clamp(1.125rem, 1.083rem + 0.22vw, 1.25rem);
    text-align: center;
    margin-top: 10%;
    color: #2C2B2B;

  }

  .g-nav a{
    font-size: 16px;
    text-decoration: none;

  }
  
  .g-nav a:hover{
    color:rgb(252, 9, 252);;
  }


  .g-nav{
    
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
    /*ナビのスタート位置と形状*/
  top:0;
    right: -120%;
  width:100%;
    height: 100vh;/*ナビの高さ*/
  background:#fff;
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
.g-nav.panelactive{
    right: 0;

}

/*ナビゲーションの縦スクロール*/
.g-nav.panelactive {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 60%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
.g-nav ul {
  padding: 0;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:45%;
    transform: translate(-50%,-50%);
    display: block;
   
}

/*リストのレイアウト設定*/

.g-nav li a{
  color: #333;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(1rem, 0.917rem + 0.44vw, 1.25rem);
}



/*========= ボタンのためのCSS ===============*/
.openbtn1{
  
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:10px;
  right: 10px;
  cursor: pointer;
    width: 50px;
    height:50px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
  background-color: #44444e;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

  /* タブレット以下のスマホサイズ時に表示しないnav*/

/* .nav-menu{
  display: none;
} */
  
.pc-nav{
  display: none;
} 

.logo img{
  width: 50%;
}
/* ここまで */

/*ハンバーガーメニューここまで*/



/*画面をスクロールするとしたからふわっと表示*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  
  
}
.scroll_left.on {
  transform: translateX(0);
  opacity: 1.0;
}

.scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
}
.scroll_right.on {
  transform: translateX(0);
  opacity: 1.0;
}

.logo img{
  width: 90%;
} 


.img-box{
  width: 100%;
  height: 100vw;
  overflow: hidden;
  position: relative;

}
.img-box>div{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  opacity: 0;
  animation-name: fade;
  animation-duration: 12s;
  animation-iteration-count: infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

}




@keyframes fade {
  0%{
    opacity: 0;
  }
  20%{
    opacity: 1;
  }
  80%{
    opacity: 0;
    transition:transform 0.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  100%{
    opacity: 0;
    z-index: 0;
  }
}
/* 1枚目のスライド */
.img-box>div:first-of-type{
  background-image: url(/img/main-s1.jpg);
}

/* 2枚目のスライド */
.img-box>div:nth-of-type(2){
  background-image: url(/img/main-s2.jpg);
  animation-delay: 4s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3枚目のスライド */
.img-box>div:last-of-type{
  background-image: url(/img/main-s3.jpg);
  animation-delay: 8s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.top-ancodancestyle {
  width: 100%;
  text-align: center;
  animation-name: fadeIn;
  animation-duration: 5s;
  position: absolute;
  z-index: 80;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

}

.main-visual{
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;


}

.top-ancodancestyle img{
  width: 60%;
  padding-top: 30%;

}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.parent{
  display: flex;
  padding-top: 50px;
  justify-content:space-around; 

}
.rainbow-p{
  font-size: 1rem;
  text-align: center;
  margin: 0 auto;
  
}




/*スライダーのボタンを消す*/
.slick-dots li button:before{
  content: ''!important;
  height:100%!important;
  width: 100%!important;
}

@keyframes zoomin {
  0% {
    opacity: 0;
    transform: scale(0.7);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}


.main-img img{
  width: 100%;
  margin-bottom: 100px;

}

.followbanner{
  animation: fuwafuwa 2s infinite;
}

/* video section*/

.video{
  width: 100%;
}

/* CONCEPT section*/

#concept{
  background-color: #FFA2E5;
}

#Lesson{
  background-color: #E7B3FF;
}

#rainbow{
  background-color: #FFA2E5;
}

#schedule{
  background-color: #E7B3FF;
}

#instructor{
  background-color: #FFA2E5;
}

#greeting{
  background-image: url(../img/bgi2.jpg);
}

#sns{
  background-color: #E7B3FF;
}

.place{
margin-top: 5rem;
}





/* footer */

footer{
  background-color: #FFA2E5;
  text-align: center;

  }



/*-------------------------------------------
 ▼ Medium md 768px-991px タブレットサイズ
 -------------------------------------------*/
 @media screen and (min-width: 768px) {



  .logo img{
    width: 60%;
  }


 
.top-ancodancestyle img{
  width: 60%;
  padding-top: 40%;

}

  /* 1枚目のスライド */
.img-box>div:first-of-type{
  background-image: url(/img/main1.jpg);
}

/* 2枚目のスライド */
.img-box>div:nth-of-type(2){
  background-image: url(/img/main2.jpg);
  animation-delay: 4s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3枚目のスライド */
.img-box>div:last-of-type{
  background-image: url(/img/main3.jpg);
  animation-delay: 8s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.img-box{
  height: 55vw;
}
.img-box>div{
  height: 55vw;
}


 .rainbow-p{
  font-size: 1.2rem;
  text-align: justify;
  padding-left: 3rem;
  display: flex; align-items: center;
}



}

 /* ==================
PCサイズ
=====================*/
@media screen and (min-width: 1024px) {

 /* ナビゲーション */
 .s-nav{
  display: none;
}

  .pc-nav{
    background-color: #ffa2e5d5;
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 90;

  }

  .pc-nav ul{
    display: flex;
    list-style: none;
      margin: 0;
      padding: 0;
  }
  
  .pc-nav a{
    color: #2C2B2B;;
    padding: 0px 15px;
    font-size: clamp(0.875rem, 0.807rem + 0.36vw, 1.125rem);
    text-decoration: none;
  }
  
  .pc-nav a:hover{
  color: rgb(252, 9, 252);
  }

  /* .girl{
    position: absolute;
    padding-left: 10%;
  }
  
  .girl img{
    margin-top: 40%;
  } */
  
  /* ここまで */
 
  

}