@charset "UTF-8";

html{
  overflow: auto;
}


header{
  background-color: #badec1;
 
}

 body {
    min-height: 100vh;
    font-family: "Zen Kaku Gothic New", serif;
   font-weight: 400;
    font-style: normal;
    list-style: none;
    text-decoration: none;
    overflow: hidden;
    color: #2C2B2B;
    /* background-image: url(/img/bgi-1.png);
    background-size:cover; */
  }


 h1,h2,h3,h4,h5,h6,p {
  color: rgb(53, 50, 48);
 }
 
h1{
  font-size:clamp(1.375rem, 1.08rem + 1.48vw, 2.188rem);
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}

h2{
  font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
  text-align: center;
  
}

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

  p{
    font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  }

  ul{
    list-style: none;
  } 

a{
  text-decoration: none;
  color: #2C2B2B;
}

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

/*インスタボタン押し込み*/
.d-flex a{
  transition: .3s;
}
.d-flex a:hover {
  box-shadow: unset;
  transform: translateY(4px);
}

/*navメニュー押し込み*/
.kachi a{
  display: inline-block;
  /* text-align: center; */
  transition: .3s;
}
.kachi a:hover {
  box-shadow: unset;
  transform: translateY(4px);
}


/*TOP固定表示*/
.top{
  border-radius: 15px;
  display: flex;
  background-color: #F4933E;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 150px;
  bottom: 12%;
  position: fixed;
  right: 0%;
  z-index: 99;
  writing-mode: vertical-rl;
    margin-left: auto;
    margin-right: auto;   
}

.top a{
  color: #ffffff;
  writing-mode: vertical-rl;
  align-items: center;
  
}

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


  .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(12, 163, 12);
  }


  .g-nav{
    
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
    /*ナビのスタート位置と形状*/
  top:0;
  right: -120%;
  width: 60%;
  height: 100vh;/*ナビの高さ*/
  background-image: url(/img/bgi-g-nav\ 1.jpg);

    /*動き*/
  transition: all 0.9s;
}

/*アクティブクラスがついたら位置を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:50%;
    transform: translate(-50%,-50%);
    display: block;
   
}

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

.g-nav li a{
  color: #333;
  padding: 0px;
  line-height: 3rem;
  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%;
} 



@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;
  }
}


.top-text {
  width: 100%;
  margin: 0 auto;
  padding-top: 4rem;
  animation-name: fadeIn;
  animation-duration: 5s;
  position: absolute;
  z-index: 80;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


.main-visual-s{
  display: flex;
  justify-content: center;
  position: relative;
}

.main-visual-s img{
  width: 100%;
  margin: 0 auto; 
}

.main-visual-pc{
  display: none;
}

.row{
  padding: 30px;
}

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

}

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

}
 */

/* @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;
}

/*title*/
.title{
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
margin-bottom: 20px;
}

/* CONCEPT section*/

#concept{
 background-image: url(/img/concept-bgi.png);
 background-size: cover;
}

.concept-text{
  background-color: #ffffff8c;
  padding-top: 5rem;
  padding-bottom: 3rem;
}
.concept-text h1{
  align-items: center;
}

.concept-p{
  font-size: 1.2rem;
  /* padding: 20px; */
}

.concept-row{
  padding: 20px;
}

.name{
  font-size: 0.9rem;
  text-align: center;
}



#news{
  background-image: url(/img/news-bgi.png);
  background-size: cover;
}


.about{
  background-image: url(/img/bgi-1.png);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  scroll-behavior: smooth;
}

/*feature section*/
#feature{
  background-image: url(/img/use-bgi3.png);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  scroll-behavior: smooth;

}
#nagare .title{
  margin-top: 50px;
  padding-top: 80px;
}

.feature-box{
  border-radius: 0px 100px;
}



/*price section*/

#price .title{
padding-top: 80px;
margin-top: 100px;
}

#school .title{
padding-top: 80px;
margin-top: 100px;
}


.detail{
  font-size: clamp(1.25rem, 1.114rem + 0.68vw, 1.625rem);
}

.detail-box{
  padding-bottom: 80px;
}

.banner{
  margin-top: 80px;
}

.banner-title {
  display: inline-block;
  text-align: center;
  transition: .3s;
}
.banner-title:hover {
  box-shadow: unset;
  transform: translateY(4px);
}

.picture{
  background-image: url(/img/kouryu-bgi.png);
  background-size: cover;
}

#access{
  background-color: #fff;
  background-image: url(/img/bgi-access.jpg);
  /* background-image: url(/img/guidance-bgi.png); */
  background-size: cover;
}

.map{
 padding: 0;
}

iframe{
  width: 100%;
}

.btn{
  padding: 20px;
  color: #FFF;
  font-style: normal;
  display: inline-block;
  text-align: center;
  transition: .3s;
}

.btn-warning{
  background: #F4933E;
}

.btn:hover {
  box-shadow: unset;
  transform: translateY(4px);
}

#contact{
  background-image: url(/img/bgi-1.png);
  background-size: cover;
}

.contact-button{
  padding: 20px;
}

.coment{
  font-size: 0.9rem;
}



/* footer */

footer{
  background-color: #198F48;
  }

.copyright{
  text-align: center;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-nav{
  text-align: end;
}

.footer-nav a{
  color: #FFF;
}

.copyright {
  font-size: 0.9rem;
}

/*プライバシーポリシーページ*/

#privacy{
  padding-top: 2rem;
  }

#privacy ul{
  font-size: 1.1rem;
}

#privacy p{
  font-size: 1.1rem;
}

/*お問い合わせフォーム*/
.contact-form{
  margin-top: 50px;
  margin-bottom: 50px;
}

#contact-form {
  background-image: url(/img/contact-formbgi.jpg);
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
  background-attachment: fixed;
  background-repeat: no-repeat;
  scroll-behavior: smooth;
}

#privacy{
  background-image: url(/img/contact-formbgi.jpg);
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
  background-attachment: fixed;
  background-repeat: no-repeat;
  scroll-behavior: smooth;
}




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

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

  .logo img{
    width: 60%;
  }
  
  .br-none{
    display: none;
  }

/* .main-visual{
  background-image: url(/img/main-pc.png);
} */
.main-visual-s{
  display: none;
}

.main-visual-pc{
  display: contents;
}

.top{
    width: 80px;
  bottom: 25%;
  height: 180px;
}

.top a{
  font-size: 22px;
}

.top-text-pc {
  width: 40%;
  margin-top: 2rem;
  margin-right: 100px;
  text-align: center;
  animation-name: fadeIn;
  animation-duration: 5s;
  position: absolute;
  z-index: 80;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.main-visual-pc{
  /* width: 100%; */
  display: flex;
  justify-content: right;
  position: relative;

}

.main-visual-pc img{
  width: 100%;
  padding: 0;
  margin: 0 auto; 
}


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

.concept-p{
  padding: 20px;
}

.concept-row{
  padding: 50px;
}

.name{
  text-align: right;
}

.news-box{
  padding: 50px;
}

#access{
  background-image: url(/img/guidance-bgi.png);
  background-size: cover;
}

.coment{
  font-size: 1.2rem;
}

#contact-form {
  background-image: url(/img/kouryu-bgi.png);
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
  background-attachment: fixed;
  background-repeat: no-repeat;
  scroll-behavior: smooth;
}

#privacy {
  background-image: url(/img/kouryu-bgi.png);
  background-size: cover;
  min-height: 100vh;
  overflow: hidden;
  background-attachment: fixed;
  background-repeat: no-repeat;
  scroll-behavior: smooth;
}


}

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

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

  .pc-nav{
    /* background-color: rgba(255, 255, 255, 0.562); */
    background-color: #b8e8c2d8;
    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(12, 163, 12);
  }

  .main-visual-pc{
    margin-left: 0px;
    margin-top: 120px;

  }



  .top-text-pc img{
    padding-top: 50px;
  }
  
  .contact-form{
    margin-top: 150px;
    margin-bottom: 150px;
  }
  
  #privacy{
    margin-top: 150px;
    }
  
 
  
  /* ここまで */
 
  

}