@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');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800&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: 0 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);

}

.section{
  transform: translateY(20%);
  opacity: 0;
}

.scrollEvent{
  animation: scroll 1.5s ease-out forwards;
}

@keyframes scroll{
  to{
    transform: initial;
    opacity: 1;
  }
}

/*=============ここからヘッダー＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
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;
}

/*==========ここまでハンバーガーメニュー==========================================*/
/*=============ここまでヘッダー＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*=============ここからMVー＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.mv{
  width: 100%;
}

.mv img{
  width: 100%;
}
/*=============ここまでMV＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*=============ここからProfile＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.profile{
  padding-top: 104px;
}

.profile_box{
  max-width: 1128px;
  width: 100%;
  border:2px solid #FEAA02;
  margin: 80px auto;
}

.profile_contents{
  display: flex;
  justify-content: space-around;
  border:2px solid #FEAA02;
  padding: 32px 0 40px 32px;
  margin: 30px 32px;
}

.profile_info {
  max-width: 550px;
  width: 100%;
  margin: 32px auto 41px auto;
}

.profile_name h2{
  font-family: 'Mochiy Pop P One', sans-serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.015em;
  margin: 0;
  padding-bottom: 20px;
  border-bottom:3px dashed #FEAA02;
}

.profile_text{
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom:3px dashed #FEAA02;
}

.profile_text p{
  line-height: 1.8;
}

.profile_puestion{
  max-width: 580px;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 3px dashed #FEAA02;
  font-family: 'Kosugi Maru', sans-serif;
  font-size: 16px;
}

.profile_puestion table{
  width: 100%;
}

.profile_puestion tr{
  display: flex;
  margin-bottom: 24px;
  width: 100%;
}

.profile_puestion tr:last-child{
  margin-bottom: 0;
}

.profile_puestion th{
  text-align: left;
  width: 100%;
  display: flex;
}

.profile_puestion th::after{
  content: "";
  border-top: 1px solid #FEAA02;
  max-width: 200px;
  width: 70%;
  display: block;
  height: 0;
  margin: 8px 4px 4px 4px;
}

.profile_puestion td{
  width: 100%;
}

.profile_img{
  width: 420px;
  position: relative;
}

.fade_img{
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  opacity:0;
	transition:all 1s ease-in-out;

}
/*=============ここまでProfile＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*=============ここからvideos＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.videos_slider{
  overflow: hidden;
  margin: 80px auto 60px auto;
}

.videos_slider-container{
  width: 100%;
  position: relative;
  overflow-x: scroll;
}

.videos_slider-container::-webkit-scrollbar{
  opacity: 0;
}

.videos_slider-contents{
  
  display: flex;
  width: 200%;
}

.videos_slider-box{
  flex-basis: 50%;
  display:flex;
  align-items: center;
}

.slider_item{
  padding-right: 20px;
}

.videos_slider-box img{
  width: 320px;
  transition: 0.3s ease-in-out;
}

.videos_slider-box img:hover{
  color: black;
  opacity: 0.5;
}

.videos_btnbox{
  align-items: center;
  text-align: center;
  margin: 62px auto 104px auto;
}

.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;
  position: relative;
  inset: 0;
  scale: 1;
  transition: scale .4s ease;
  transform-origin: left;
}
.btn::after{
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background-color: #fff;
  z-index: -1;
  transition: scale .2s ease;
  scale: 0 1;
  transform-origin: right;
}

.btn:hover::after{
  background-color: #fff;
  color: #FEAA02;
  border: 2px solid #FEAA02;
  border-radius: 8px;
  z-index: -1;
  scale: 1;
  transform-origin: right;

}

.btn span{
  display: block;
  width: 192px;
  height: 63px;
  line-height: 63px;

}

.btn span:hover{
  z-index: 2;
  color: #FEAA02;
}

/*=============ここまでvideos＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*============ここからtimeline==============================================================*/

.x_timeline{
  max-width: 680px;
  margin: 80px auto;
}

.twitter-timeline{
  border: 4px solid #FEAA02;
  border-radius: 14px;
}
/*============ここまでtimeline==============================================================*/

/*=============ここからcontact＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.contact_box{
  max-width: 720px;
  width: 100%;
  margin: 80px auto 56px auto;
  padding: 50px 24px;
  border: 2px solid #FEAA02;
}

.contact_text{
  margin: 0 auto 32px auto;
  text-align: center;
}

.contact_btn{
  width: 264px;
  text-align: center;
}

.contact_btn span{
  width: 264px;
}

.contact_scroll-btn{
  width: 72px;
  margin: 56px auto 0 auto;
  padding-bottom: 72px;
}

.contact_scroll-btn img{
  width: 100%;
}
/*=============ここまで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＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*=============ここから1240px＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width: 1240px){
  .fade_img{
    width: 360px;
    left: -20px;
  }

  .profile_info{
    margin-bottom: 0;
    margin-top: 0;
  }
}
/*=============ここまで1240px＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/




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

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

  .header__inner{
    height: 100%;
  }

  .profile{
    padding-top: 72px;
  }

  .profile_box{
    margin: 56px auto 72px auto;
  }

  .profile_contents{
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
  }

  .profile_info{
    margin-top: 72px;
  }

  .profile_img{
    height: 711px;
  }

  .fade_img{
    left: 0;
    width: 420px;
  }

  .videos_slider{
    margin: 56px auto 40px auto;
  }

  .videos_btnbox{
    margin: 40px auto 72px auto;
  }

  .contact_box{
    margin-top: 56px;
  }

  .contact_scroll-btn{
    padding-bottom: 40px;
  }

  
}
/*=============ここまで1024px＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/




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

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

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

  .profile_contents{
    margin: 24px;
  }

}
/*=============ここまで900px＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/



/*=============ここから768px＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width: 768px){
  .profile_contents{
    margin: 16px;
    padding: 0 8px;
  }

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

  .profile_name h2{
    font-size: 56px;
  }
}
/*=============ここまで768px＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


/*=============ここから500px＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (max-width: 500px){
  main{
    margin: 0 16px;
    padding: 0 16px;
  }

  main h1{
    font-size: 40px;
  }

  .header__inner{
    padding: 0 16px;
  }


  .header__logo{
    width: 103px;
  }

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


  .profile{
    padding-top: 40px;
  }

  .profile_box{
    margin: 32px auto 72px auto;
  }

  .profile_info{
    margin-top: 32px;
  }

  .profile_name h2{
    font-size: 24px;
    padding-bottom: 8px;
  }

  .profile_puestion{
    font-size: 12px;
  }

  .profile_puestion th::after{
    width: 40%;
    margin: 6px auto 4px auto;
  }


  .profile_img{
    width: 320px;
    height: 569px;
  }

  .fade_img{
    width: 320px;
  }


  .videos_slider{
    margin: 32px auto 40px auto;
  }

  .x_timeline{
    margin: 32px auto 72px;
  }


  .contact_box{
    margin-top: 32px;
  }


  .contact_btn{
    width: 100%;
  }
}
/*=============ここまで500px＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/