@charset "UTF-8";
/* CSS Document */

*{
  box-sizing: border-box;
}

img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

body{
  background-color: #FFFFFF;
  font-family: "zen-maru-gothic", sans-serif;;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #111111;
  line-height: 1.5;
}

p{
  font-family: "zen-maru-gothic", sans-serif;;
  font-size: 18px;
}


/*----------header------------*/
#burger_menu{
  display: none;
}

header{
  padding-bottom: 20px;
  padding-top: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  background-color: #8DB255;
}

#header_inner{
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

header h1{
  width: 180px;
  padding-left: 2%;
  z-index: 99999;
}

header nav{
  display: flex;
  z-index: 999999;
}

header nav ul{
  display: flex;
  align-items: center;
}

header nav ul li{
  font-family: "zen-maru-gothic", sans-serif;;
  margin-left: 20px;
  padding-right: 15px;
  font-size: 20px;
}

header nav ul li a{
  text-decoration: none;
  color: #ffffff;
  transition: 0.5s ;
}

header nav ul li a:hover{
  border-bottom: solid 2px #ffffff;
  padding-bottom: 3px;
  text-shadow: 0 0 10px rgb(2 104 2);
  font-size: 22px;
}

#header_inner h1 a{
  display: flex;
}

.logo{
  width: 30%;
  margin-right: 10px;
}

/*----------header END------------*/

#main_visual{
  z-index: -9999;
  margin-bottom: 120px;
}

#main_visual img{
  width: 100vw;
}

main h1{
  text-align: center;
  margin-bottom: 90px;
}

.lesson_inner{
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}

/*----------Register Fee------------*/

.register_fee{
  font-size: 18px;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  background-color: #8DB255CC;
  padding: 20px 40px;
}

/*----------Register Fee END------------*/


/*----------Lesson detail Fee------------*/

.lesson_detail{
  background-color: #8DB255CC;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 180px;
  padding: 30px 40px;
}

.lesson_detail h3.month{
  text-align: right;
  font-size: 14px;
  padding-right: 40px;
  margin-bottom: 5px;
}

table{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

table tr td{
  font-size: 18px;
  background-color: #FEFFE3;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  text-align: center;
  //border: 1px solid #333333;
  padding: 50px 20px;
  vertical-align: middle;
}

.border1{
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

.border2{
  border-right: 1px solid #333333;
}

.border3{
  border-bottom: 1px solid #333333;
}

.border4{
  border-right: 1px solid #333333;
  border-top: 1px solid #333333;
}

.detail_note{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

/*----------Lesson detail END------------*/



/*----------Footer------------*/
.footer_bg{
  width: 100vw;
}

footer{
  margin-top: -10px;
  background-color: #8DB255;
}

.footer_content{
  padding-top: 20px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}

.footer_left{
  width: 40%;
  margin-top: 30px;
}

.footer_right{
  width: 50%;
}

.footer_left ul li:not(:last-of-type){
  margin-bottom: 10px;
}

.footer_left ul li span{
  margin-left: 83px;
}

.footer_left h1{
  width: 190px;
  margin-bottom: 20px;
}

.footer_left a.footer_button{
  border-radius: 30px;
  display: flex;
  align-items: center;
  width: 250px;
  height: 50px;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  text-decoration: none;
  color: #555555;
  font-size: 18px;
  box-shadow: 0 4px 0 #015E01; 
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.footer_left a.footer_button:hover{
  transform: translateY(4px);
  box-shadow: none;
}

.footer_left a.footer_button:hover img{
  transform: rotate(-10deg);
}

.footer_left a.footer_button:not(:last-of-type){
  margin-top: 30px;
}

.footer_left a.footer_button img{
  transition: 0.3s;
  margin-left: 15px;
  margin-right: 15px;
}

small{
  font-size: 14px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

/*----------Footer END------------*/





/*----------SP版------------*/
@media screen and (max-width:900px){
  
  nav{
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  width: 100%;
  height: 100vh;
  /*スライドで開閉*/
  transform: translateX(100%);
  transform: translateY(-100%);
  pointer-events: none;
  transition: 0.5s;
}

nav.active{
  /*フェードで開閉*/
  //opacity: 1;
  /*スライドで開閉*/
  transform: translateX(0);
  transform: translateY(0);
  pointer-events: auto;
  background-image: url("../images/nav_bg.png");
  background-position-x: 90%;
  background-position-y: 70%;
  background-repeat: no-repeat;
  background-size: 60%;
  background-color: #8DB255;
}
  
  
  header nav ul{
    display: block;
  }
  
  header nav ul li{
    margin: 30px 0;
  }
  
  
  nav ul li a{
  display: block;
  text-align: center;
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
}
  
  
  #burger_menu{
  margin-top: 10px;
  display: block;
  position: fixed;
  z-index: 99999999;
  right: 2.5%;
  width: 30px;
  height: 22px;
}
  
  #burger_menu span{
  position: absolute;
  background-color: #000000;
  width: 100%;
  height: 2px;
  transition: 0.5s;
  }
  
  #burger_menu span:nth-last-of-type(1){
    top: 0;
  }
  
  #burger_menu span:nth-last-of-type(2){
    top: 10px;
  }
  
  #burger_menu span:nth-last-of-type(3){
    top: 20px;
  }
  
  #burger_menu.active span{
    background-color: #000000;
  }
  
  #burger_menu.active span:nth-of-type(1){
    transform: translateY(-10px) rotate(45deg);
  }
  
  #burger_menu.active span:nth-of-type(2){
  opacity: 0;
  }
  
  #burger_menu.active span:nth-of-type(3){
  transform: translateY(10px) rotate(-45deg);
  }
}


@media screen and (max-width:600px){
  body{
    font-size: 14px;
  }
  
  p{
    font-size: 14px;
  }
  
  header h1{
    width: 80px;
    padding: 0;
  }
  
  nav{
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  width: 100%;
  height: 100vh;
  /*スライドで開閉*/
  transform: translateX(100%);
  transform: translateY(-100%);
  pointer-events: none;
  transition: 0.5s;
}

nav.active{
  /*フェードで開閉*/
  //opacity: 1;
  /*スライドで開閉*/
  transform: translateX(0);
  transform: translateY(0);
  pointer-events: auto;
  background-image: url("../images/nav_bg.png");
  background-position-x: 90%;
  background-position-y: 70%;
  background-repeat: no-repeat;
  background-size: 60%;
  background-color: #8DB255;
}
  
  
  header nav ul{
    display: block;
  }
  
  header nav ul li{
    margin: 30px 0;
  }
  
  
  nav ul li a{
  display: block;
  text-align: center;
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
}
  
  
  #burger_menu{
  margin-top: 0px;
  display: block;
  position: fixed;
  z-index: 99999999;
  right: 2.5%;
  width: 30px;
  height: 22px;
}
  
  #burger_menu span{
  position: absolute;
  background-color: #000000;
  width: 100%;
  height: 2px;
  transition: 0.5s;
  }
  
  #burger_menu span:nth-last-of-type(1){
    top: 0;
  }
  
  #burger_menu span:nth-last-of-type(2){
    top: 10px;
  }
  
  #burger_menu span:nth-last-of-type(3){
    top: 20px;
  }
  
  #burger_menu.active span{
    background-color: #000000;
  }
  
  #burger_menu.active span:nth-of-type(1){
    transform: translateY(-10px) rotate(45deg);
  }
  
  #burger_menu.active span:nth-of-type(2){
  opacity: 0;
  }
  
  #burger_menu.active span:nth-of-type(3){
  transform: translateY(10px) rotate(-45deg);
  }
  
  /*----------lesson------------*/
  
  #main_visual{
    margin-bottom: 50px;
  }
  
  main h1{
    width: 63%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px; 
  }
  
  .lesson_inner{
    width: 90%;
  }
  
  .register_fee{
    font-size: 16px;
    width: 100%;
    margin-bottom: 20px;
    padding: 15px 25px;
  }
  
  .lesson_detail{
    width: 100%;
    padding: 10px 0px;
    margin-bottom: 80px;
  }
  
  .lesson_detail h3.month {
    text-align: right;
    font-size: 12px;
    padding-right: 20px;
    margin-bottom: 5px;
}
  
  table tr td {
    font-size: 14px;
  }
  
  h3{
    font-size: 12px;
  }
  
  /*----------lesson END------------*/
  
  
  
  
  /*----------footer------------*/
  .footer_content{
    flex-direction: column-reverse;
  }
  
  .footer_right{
    width: 100%;
  }
  
  .footer_left{
    width: 100%;
    font-size: 14px;
  }
  
  .footer_left h1{
    width: 120px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  
  .footer_left a.footer_button{
    transform: scale(0.8);
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer_left ul{
    text-align: center;
  }
  
  .footer_left ul li:first-child{
    margin-bottom: 5px;
  }
  
  .footer_left ul li span{
  margin-left: 73px;
}
  
  .footer_left a.footer_button:not(:last-of-type){
    margin-top: 15px;
    margin-bottom: 5px;
  }
  
  .footer_right iframe{
    height: 200px;
  }
  /*----------footer・END------------*/
