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

/*----------form------------*/
.inner{
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  margin-left: auto;
  margin-right: auto;
  width: 95%;
  max-width: 980px;
}

article{
  margin-bottom: 100px;
}

article h2{
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: bold;
}

form dl div{
  display: flex;
  align-items: center;
  padding: 20px;
}

form dl div:not(:last-child){
  border-bottom: 1px solid #DDDDDD;
}

form dl dt{
  display: flex;
  align-items: center;
  width: 180px;
}

form dl dt.require::after{
  content: "必須";
  margin-left: 20px;
  background-color: #F8EFEF;
  border-radius: 5px;
  padding: 2px 5px;
  font-size: 14px;
  color: #F06060;
}

form dl dd{
  width: calc(100% - 180px);
}

input, select, textarea{
  padding: 5px;
}

input[name="name"], input[name="furigana"], input[name="address"], input[name="email"], textarea{
  width: 100%;
}

dt{
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

label+label{
  margin-left: 20px;
}

.button_wrapper{
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.button_wrapper input{
  cursor: pointer;
  border-radius: 10px;
  background-color: #8DB255;
  border: solid 3px #8DB255;
  padding: 15px 40px;
  margin-left: 5px;
  margin-right: 5px;
  color: #ffffff;
  transition: 0.3s;
}

.button_wrapper input:hover{
  transform: scale(0.9);
  background-color: #ffffff;
  color: #555555;
}

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

  #main_visual{
    margin-bottom: 50px;
  }
  
  main h1{
    width: 63%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 50px; 
  }


  /*----------Inquiry------------*/
  
  
  form dl dt {
    display: flex;
    align-items: center;
    width: 160px;
}
  
  form dl dd {
    width: calc(100% - 160px);
}
  
  
  
  
  
  
  /*----------Inquiry・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------------*/














