@charset "UTF-8";


@import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+P+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');

*{
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  padding: 0;
  margin: 0;
}


body::after{
  background-image: url(../img/body_back.png);
  object-fit: contain;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100vh;
}

main{
  margin: 0 96px;
  padding: 160px 60px 300px 60px;
  background-color: #fff;
  box-shadow: -10px 0 4px rgba(254, 170, 3, 0.3),10px 0 4px rgba(254, 170, 3, 0.3);
}

main p{
  font-size: 16px;
  font-family: 'Kosugi Maru', sans-serif;
}

body a{
  text-decoration: none;
}

body li{
  list-style: none;
}

body h1{
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: 80px;
  margin: 0;
  text-shadow:6px 6px 0 rgba(254, 170, 3, 0.8);

}

/*=============ここからヘッダー＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
header{
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 10;
  background-color: #FEAA02;
}
.header__inner{
  max-width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  align-items: center;
}

.header__logo {
  width: 206px;
  margin-top: auto;
  margin-bottom: auto;
}

.header__logo img{
  width: 100%;
  height: 100%;
}

.header__nav{
  margin-left: auto;
  display: flex;
}

.header__list{
  display: flex;
  font-family: 'Mochiy Pop P One', sans-serif;
  align-items: center;
  margin-right: 35px;
}

.header__list li{
  margin-right: 26px;
}

.header__list li:last-child{
  margin-right: 0;
}

.header__list a{
  color: #fff;
  vertical-align: middle;
  font-size: 24px;
  position: relative;
}

.header__list a::before{
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: #fff;
  z-index: -1;
  transition: scale .3s ease;
  scale: 0 1;
  transform-origin: left;
}



.header__list a:hover{
  color: #FEAA02;
}

.header__list a:hover::before{
  scale: 1;
}

.sns_list {
  display: flex;
}

.sns_list a{
  display: inline-block;
  width: 48px;
}

.sns_list li{
  width: 48px;
  margin-right: 16px;
}

.sns_list li:last-child{
  margin-right: 0;
}

.sns_list img {
  width: 100%;
  vertical-align: middle;
}


/*==========ここからハンバーガーメニュー==========================================*/
.header__hamburger-area{
  display: none;
  width: 50px;
  height: 50px;
  text-align: center;
  background-color: #FEAA02;
  border-radius: 8px;
}


.header__hamburger {
  position: relative;
  width: 28px;
  height: 24px;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  display: none;
  justify-content: flex-end;
  align-items: center;
  margin: 13px auto;
  z-index: 1000;
}

.header__hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.header__hamburger span:first-of-type {
  top: 0;
}

.header__hamburger span:last-of-type {
  bottom: 0;
}

.header__hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}

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

.header__hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
          transform: translateY(-12px) rotate(45deg);
}

.sp_menu{
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: -600px;
  transition: 0.3s;
  background-color: #FFC44F;
  z-index: 900;

}

.sp_menu.active{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  opacity: 1;
  top: 0;
  background-color: #FFC44F;
}

.sp_menu-img{
  margin: 56px auto 72px auto;
  width: 192px;
}

.sp_menu-img img{
  width: 100%;
}

.sp_menu-list{
  text-align: center;
}

.sp_menu li{
  width: 100%;
  height: 64px;
  font-size: 24px;
  font-family: 'Mochiy Pop P One', sans-serif;
}


.sp_menu li a{
  color: #fff;
  line-height: 64px;
}

.sp_menu li a:hover{
  background-color: #fff;
  color: #FEAA02;
}

.sp__sns{
  width: 176px;
  margin: 56px auto;
}
/*==========ここまでハンバーガーメニュー==========================================*/
/*==========ここまでheader==========================================*/


/*==========ここからcontact==========================================*/
form{
  font-family: 'Kosugi Maru', sans-serif;
}



/*==========ここから入力画面==========================================*/

.form_text{
  max-width: 700px;
  width: 100%;
  margin: 80px auto 60px auto;
}

.form_text p{
  font-size: 24px;
}

.contact_form{
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
  border:4px solid #FEAA02;
  padding: 24px 40px;
}

.contact_form h2{
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 40px;
}

.contact_item{
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.contact_label{
  font-size: 24px;
  border-left:5px solid #FEAA02;
  padding-left: 8px;
}

.form_input{
  margin-top: 16px;
  padding: 8px;
  max-width: 375px;
  width: 100%;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  background-color: #eaeaea;
}

.contact_textbox{
  max-width: 640px;
  width: 100%;
  margin-top: 16px;
  padding: 8px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  background-color: #eaeaea;
}

.contact_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 192px;
  height: 63px;
  margin: 0 auto;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  background-color: #FEAA02;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.contact_btn:active{
  background-color: #fff;
  color: #FEAA02;
}
/*==========ここまで入力画面==========================================*/



/*==========ここから確認画面==========================================*/
.confirm_text{
  text-align: center;
  margin-bottom: 160px;
}

.confirm_item{
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}



.btn_box{
  padding: 0 80px;
  margin: 80px auto 40px auto;
  display: flex;
  justify-content: space-evenly;

}

.send_btn{
  margin: 0;
}

.back_btn{
  margin: 0;
  background-color: #fff;
  color: #FEAA02;
  border: 2px solid #FEAA02;
}

.back_btn:active{
  background-color: #FEAA02;
  color: #fff;
}
/*==========ここまで確認画面==========================================*/


/*==========ここから完了画面==========================================*/


.complete_form{
  margin: 240px auto;
  padding: 160px 20px 40px ;
  border:4px solid #FEAA02;
  text-align: center;
}

.complete_form p{
  font-size: 24px;
}

.complete_form a{
  display: block;
  margin-top: 200px;
}

.complete_btn{
  display: block;
  display: flex;
  justify-content: center;  
  align-items: center;
  width: 192px;
  height: 63px;
  margin: 0 auto;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  background-color: #FEAA02;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}
/*==========ここまで完了画面==========================================*/
/*==========ここまでcontact==========================================*/

/*==========ここからfooter===========================================*/

footer{
  background-color: #FEAA02;
  text-align: center;
  width: 100%;
  height: 24px;
}

footer p{
  color: #fff;
  line-height: 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 11px;
}
/*==========ここまでfooter===========================================*/


/*=============ここから1024px=========================================*/

@media screen and (max-width: 1024px){

  main{
    padding: 126px 24px 64px 24px;
    margin: 0 64px;
  }

  .header__inner{
    height: 100%;
  }
}
/*=============ここまで1024px==============================================*/



/*=============ここから900px==============================================*/
@media screen and (max-width: 900px){


  header{
    background-color: transparent;
  }


  .header__list{
    display: none;
  }

  .header__sns{
    display: none;
  }

  .header__hamburger-area{
    display: block;
    margin-right: 20px;
  }

  .header__hamburger{
    display: block;
  }

  .sp_menu{
    background-color: #FFC44F;
  }
}
/*=============ここまで900px==============================================*/


/*=============ここから768px==============================================*/
@media screen and (max-width: 768px){

  .header__hamburger-area{
    margin-right: 20px;
  }

  .btn_box{
    padding: 0;
  }

}
/*=============ここまで768px==============================================*/


/*=============ここから500px==============================================*/
@media screen and (max-width: 500px){

  main{
    margin: 0 16px;
    padding: 80px 16px 64px 16px;
  }

  main h1{
    font-size: 40px;
  }
  
  .header__inner{
    padding: 0 16px;
  }


  .header__logo{
    width: 103px;
  }

  .header__hamburger-area{
    margin-right: 0px;
  }



  .form_text{
    max-width: 700px;
    width: 100%;
    margin: 56px auto 40px auto;
  }


  .btn_box{
    padding: 0;
    align-items: center;
    flex-direction: column;
  }
  
  .back_btn{
    margin-bottom: 40px;
  }

  .send_btn{
    margin-bottom: 0;
  }

}
/*=============ここまで500px==============================================*/