@charset "utf-8";
/* CSS Document */
* {
  font-feature-settings: "palt";
}
/* Loading背景画面設定　*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: #99D3D9;
}
/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 200px;
}
/*画面遷移アニメーション*/
body {
  background: #99D3D9; 
  /*遷移アニメーションと同じ色を指定*/
}
body.appear {
  background: #FFFAF1; /*画面を開いた後の背景色を指定*/
}
.splashbg {
  display: none;
  content: "";
  position: fixed;
  transform: scale(100);
  background-color: #99D3D9; /*伸びる背景色の設定*/
  z-index: 9999;
  /*丸のスタートの形状*/
  top: calc(50% - 1rem); /*50%から円の半径を引いた値*/
  left: calc(50% - 1rem); /*50%から円の半径を引いた値*/
  width: 2rem;
  height: 2rem;
}
/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  border-radius: 50%;
  animation-name: PageAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
}
@keyframes PageAnime {
  0% { /*丸のスタート位置と形状*/
    transform: scale(100);
  }
  100% { /*丸の終了位置と形状*/
    transform: scale(0);
    display: none; /*終了時は消える*/
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#body-container {
  opacity: 0; /*はじめは透過0に*/
}
/*bodyにappearクラスがついたら出現*/
body.appear #body-container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  /*animation-delay: 0.8s;*/
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* fadeUpをするアイコンの動き */
.splashUp {
  animation: fadeUpAnime 0.5s forwards, fadeUpAnime2 1.2s ease;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime2 {
  20% {
    transform: rotateZ(5deg);
  }
  50% {
    transform: rotateZ(-5deg);
  }
  80% {
    transform: rotateZ(5deg);
  }
}
/*section-header*/
.section-header {
  height: 50px;
  width: 100%;
  position: fixed;
  z-index: 999;
}
.header-rogo {
  top: 10px;
  left: 20px;
  width: 70px;
  position: absolute;
}
.humberger-menu {
  right: 20px;
  width: 70px;
  top: 10px;
  position: absolute;
  z-index: 9999;
  cursor: pointer;
  filter: drop-shadow(1px 1px 1px #99D3D9);

}
@media(min-width:767px) {
  .header-rogo {
    width: 100px;
    left: 30px;
  }
  .humberger-menu {
    width: 100px;
    right: 30px;
  }
}
#nav-content.panelactive {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  height: 100vh;
}
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #99D3D9;
  opacity: 0.85;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  top: calc(50% - 50px); /*50%から円の半径を引いた値*/
  left: calc(50% - 50px); /*50%から円の半径を引いた値*/
  transition: all .6s; /*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}
#nav-content.panelactive {
  display: block; /*クラスが付与されたら出現*/
}
#nav-content div {
  opacity: 0; /*はじめは透過0*/
  display: none;
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*背景が出現後にナビゲーションを表示*/
#nav-content.panelactive div {
  opacity: 1;
  display: block;
}
.nav-drawer__rogo {
  margin-bottom: 30px;
}
.nav-rogo-anime :hover, .footer__rogo:hover, .top-rogo:hover {
  animation-name: hoverAnime; /*1で解説*/
  animation-fill-mode: backwards; /*2で解説*/
  animation-duration: 3s; /*3で解説*/
  animation-iteration-count: infinite; /*4で解説*/
  animation-timing-function: ease; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
@keyframes hoverAnime {
  20% {
    transform: rotateZ(10deg);
  }
  50% {
    transform: rotateZ(-10deg);
  }
  80% {
    transform: rotateZ(10deg);
  }
}
.header__nav li {
  margin-bottom: 20px;
  font-weight: 600;
}
.header__nav a {
  text-decoration: none;
  color: #6A3A0D;
}
.header__nav a:hover {
  color: #FFF33F;
}
.snslink {
  margin: 20px 10px 30px;
}
/*section-top*/
.section-top {
  text-align: center;
  margin-bottom: 80px;
  overflow-x: hidden;
}
.section-top_inner {
  width: 300px;
  margin: 0 auto 90px;
  position: relative;
}
.section-top_inner p {
  line-height: 30px;
  margin-bottom: 20px;
}
.section-top_inner p span {
  font-size: 20px;
}
.top-rogo {
  width: 180px;
  margin-top: 60px;
  margin-bottom: 40px;
}
.top-massege {
  width: 250px;
  padding-left: 5%;
  margin-bottom: 40px;
}
.top_image6 {
  position: absolute;
  width: 172px;
  top: 140px;
  left: -120px;
}
.top_image3 {
  position: absolute;
  width: 160px;
  top: 350px;
  left: -115px;
}
.top_image1 {
  position: absolute;
  width: 145px;
  top: 580px;
  left: -130px;
}
.top_image2 {
  position: absolute;
  width: 120px;
  top: 160px;
  right: -50px;
}
.top_image5 {
  position: absolute;
  width: 120px;
  top: 300px;
  right: -70px;
}
.top_image4 {
  position: absolute;
  width: 60px;
  top: 600px;
  right: -50px;
}
@media (min-width:767px) {
  .section-top_inner {
    width: 500px;
    margin: 0 auto 100px;
    position: relative;
  }
  .top-rogo {
    width: 250px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  .top-massege {
    width: 300px;
    padding-left: 5%;
    margin-bottom: 30px;
  }
  .section-top p {
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    margin-bottom: 20px;
  }
  .section-top p span {
    font-size: 25px;
    line-height: 35px;
  }
  .top_image6 {
    position: absolute;
    width: 250px;
    top: 155px;
    left: -185px;
  }
  .top_image3 {
    position: absolute;
    width: 220px;
    top: 420px;
    left: -193px;
  }
  .top_image1 {
    position: absolute;
    width: 230px;
    top: 620px;
    left: -165px;
  }
  .top_image2 {
    position: absolute;
    width: 200px;
    top: 195px;
    right: -110px;
  }
  .top_image5 {
    position: absolute;
    width: 210px;
    top: 356px;
    right: -170px;
  }
  .top_image4 {
    position: absolute;
    width: 73px;
    top: 700px;
  }
}
.top-slider1, .top-slider2 {
  display: flex;
  margin-bottom: 10px;
}
.top-slider1 div img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  margin-left: 10px;
}
.top-slider2 div img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

#trial-CV {
  width: 150px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  /*opacity: 0;*/
  z-index: 2;
  animation: fuyuu 2s infinite;
  /*transform: translateY(100px);*/
}

@keyframes fuyuu {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px)
  }
}
@media (max-width:600px){
	#trial-CV {
		width: 120px;
	}
}
.section-title {
  margin-bottom: 40px;
}
.section-title_img {
  height: 35px;
}
/*section-news*/
.section-news {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 80px;
  background-image: url("../images/background_wave.svg");
  background-size: cover;
}
.section-news ol li {
  margin-bottom: 20px;
  margin: 0 auto;
  list-style: none;
}
.news1_img, .news2_img {
  width: 300px;
}
.news_category {
  margin-bottom: 10px;
}
.news_category span {
  background-color: #FFF33F;
  border-radius: 50px;
  padding: 0 10px;
  font-weight: bold;
}
.news1_text, .news2_text {
  background-color: #FAFAFA;
  text-align: left;
  padding: 10px 0 15px 15px;
  width: 285px;
  margin: 0 auto 20px;
}
.newsmore-btn {
  background-color: #99D3D9;
  height: auto;
  width: 250px;
  border-radius: 30px;
  margin: 60px auto;
}
.newsmore-btn p {
  color: #FFF;
  padding: 20px;
  
}
.newsmore-btn a{
  text-decoration: none;
}
@media (min-width:768px) {
  .section-news ol {
    display: flex;
    align-items: start;
    max-width: 768px;
    margin: 0 auto;
  }
}
/*section-class*/
.section-class {
  margin: 120px 0;
}
.section-class h2 {
  margin-bottom: 50px;
}
.section-class_Btn1, .section-class_Btn2 {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-class_Btn1 a, .section-class_Btn2 a {
	text-decoration: none;
}
.section-class_Btn1-1, .section-class_Btn2-1 {
  margin-right: 10px;
}
.section-class_Btn1-1 span, .section-class_Btn1-2 span, .section-class_Btn2-1 span, .section-class_Btn2-2 span {
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 18px;
  color: #FFF;
  cursor: pointer;
}
.section-class_Btn1-1 span {
  background-color: #E95710;
}
.section-class_Btn1-2 span {
  background-color: #99D3D9;
}
.section-class_Btn2-1 span {
  background-color: #9CCD81;
}
.section-class_Btn2-2 span {
  background-color: #F29600;
}
.section-class_schedule_box1, .section-class_schedule_box2 {
  width: 330px;
  margin: 0 auto 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.section-class_schedule_box1 > div, .section-class_schedule_box2 > div {
  display: flex;
  align-items: center;
}
.section-class_schedule {
  margin: 30px auto 30px;
  width: 70%;
  max-width: 500px;
}
.maru1, .maru2, .maru3 {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: #E95710;
  text-align: center;
  line-height: 25px;
  color: #FAFAFA;
  font-weight: 600;
}
.maru1 {
  background-color: #E95710;
}
.maru2 {
  background-color: #F29600;
}
.maru3 {
  background-color: #9CCD81;
}
.section-class_schedule_description {
  margin: 50px auto 50px;
}
@media (min-width: 768px) {
  .section-class_Btn-respons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
  }
}
@media (max-width: 601px) {
  .section-class_PC {
    display: none;
  }
  .section-class h2 {
    font-size: 25px;
  }
}
.section-class_PC {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto 100px;
}
.class_PC1, .class_PC2, .class_PC3, .class_PC4 {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 60px;
  border-style: solid;
  border-width: 4px;
  border-radius: 50px;
  margin-bottom: 30px;
}
.class_PC1 {
  background-color: #FFF;
  border-color: #E95710;
}
.class_PC2 {
  background-color: #FFF;
  border-color: #9CCD81;
}
.class_PC3 {
  background-color: #FFF;
  border-color: #9AD4DA;
}
.class_PC4 {
  background-color: #FFF;
  border-color: #F29600;
}
.section-class_PC h2 {
  margin-bottom: 20px;
}
.class-title_img {
  height: 70px;
  margin-bottom: 30px;
}
.class_PC_p {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 30px;
}
.class_PC_container {
  width: 40%;
}
.class__left {
  width: 40%;
}
.class__left p {
  margin-bottom: 30px;
}
.classSlider img {
  width: 100%;
  border-radius: 30px;
  margin: 20px auto 5px;
}
.slick-dots li button:before {
  color: #F29600 !important;
}
.yanaimachi-attention {
  font-size: 14px;
}
.yanaimachi-attention-maru {
  font-size: 14px;
  color: #E95710;
}
.PC4_link-Btn {
  width: 90%;
}
.class_PC4_linkflex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 30px;
}
.PC4_link-discription {
  margin-bottom: 30px;
  line-height: 30px;
}
.PC4_link-discription span {
  background: linear-gradient(transparent 90%, #F29600 50%);
}
.PC_schedule_container div {
  display: flex;
  margin-bottom: 20px;
}
.PC_schedule_container h3 {
  min-width: 100px;
  text-align: left;
  margin-right: 30px;
}
.PC_schedule_container p {
  text-align: left;
}
@media(max-width: 1000px) {
  .class_PC1, .class_PC2, .class_PC3, .class_PC4 {
    display: block;
  }
  .class_PC_container {
    width: 70%;
    margin: 0 auto;
  }
  .class__left {
    width: 80%;
    margin: 0 auto;
  }
}
/*section-class_slider*/
@media (min-width: 600px) {
  .secrion-class_responsible {
    display: none;
  }
  .section-class h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.secrion-class_responsible {
  margin-top: 50px;
  margin-bottom: 100px;
  position: relative;
}
.secrion-class_responsible h2 {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 25px;
}
.secrion-class_responsible h3 {
  margin-bottom: 10px;
}
.secrion-class_responsible p {
  margin-bottom: 20px;
}
.secrion-class_responsible p span {
  font-size: 14px;
}
.slider4 p span {
  font-size: 14px;
}
.scroll-icon /*,.scroll-icon2*/ {
  animation-name: scrollAnime; /*1で解説*/
  animation-fill-mode: backwards; /*2で解説*/
  animation-duration: 1.5s; /*3で解説*/
  animation-iteration-count: infinite; /*4で解説*/
  animation-timing-function: ease-out; /*5で解説*/
  animation-direction: normal; /*7で解説*/
}
@keyframes scrollAnime {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(15px);
  }
}
.slider_scroll-icon {
  width: 60px;
  position: absolute;
  top: 10px;
  left: 80vw;
  z-index: 1;
}

/*.scroll-icon2 {
  width: 60px;
  position: absolute;
  top: 10px;
  left: 180vw;
  z-index: 1;
}*/
/*scroll-snap-type: x mandatory*/
.slider1, .slider2, .slider3, .slider4 {
  overflow: auto;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  display: flex;
  margin-bottom: 20px;
  max-height: 650px;
  /*position: relative;*/
  -ms-overflow-style: none; /*スクロールバー非表示（IE・Edge）*/
  scrollbar-width: none; /*スクロールバー非表示（Firefox）*/
}
.slider1-1, .slider2-1, .slider3-1, .slider4-1 {
  scroll-snap-align: end;
  width: 90vw;
  flex: none;
}
.slider1-2, .slider2-2, .slider3-2, .slider4-2 {
  scroll-snap-align: start;
  width: 100vw;
  flex: none;
}
.slider1-2 p, .slider2-2 p, .slider3-2 p, .slider4-2 p {
  line-height: 30px;
}
.slider1-3, .slider2-3, .slider3-3, .slider4-3 {
  scroll-snap-align: start;
  width: 95vw;
  flex: none;
}
.slider_img {
  width: 90%;
  border-radius: 30px;
  max-width: 390px;
}
.slider_img2 {
  width: 70%;
  border-radius: 30px;
  max-width: 300px;
}
.slider_link-Btn {
  width: 50%;
  display: block;
  margin: 20px auto;
}
.slider1-1, .slider1-2, .slider1-3, .slider2-1, .slider2-2, .slider2-3, .slider3-1, .slider3-2, .slider3-3, .slider4-1, .slider4-2, .slider4-3 {
  background-color: #FFFFFF;
  padding: 45px 0;
  border-style: solid;
  min-height: 332px;
}
.slider1-1, .slider1-2, .slider1-3 {
  border-color: #E95710;
}
.slider2-1, .slider2-2, .slider2-3 {
  border-color: #9CCD81;
}
.slider3-1, .slider3-2, .slider3-3 {
  border-color: #9AD4DA;
}
.slider4-1, .slider4-2, .slider4-3 {
  border-color: #F29600;
}
.slider1-1, .slider2-1, .slider3-1, .slider4-1 {
  margin-left: 30px;
  border-left-width: 4px;
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-radius: 30px 0 0 30px;
}
.slider1-2, .slider2-2, .slider3-2, .slider4-2 {
  border-top-width: 4px;
  border-bottom-width: 4px;
}
.slider1-3, .slider2-3, .slider3-3, .slider4-3 {
  border-top-width: 4px;
  border-bottom-width: 4px;
  border-right-width: 4px;
  border-radius: 0 30px 30px 0;
  margin-right: 30px;
}
.slide4_link-Btn {
  width: 80%;
  margin-top: 40px;
}
.slider4_link-flex {
  display: flex;
  justify-content: space-around;
}
/*section-teacher*/
.section-teacher {
  margin-bottom: 100px;
  padding: 80px 0 80px;
  background-image: radial-gradient(#9AD4DA 2px, transparent 2px), radial-gradient(#9AD4DA 2px, #FFFAF1 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}
.section-teacher_img {
  width: 150px;
  margin-bottom: 20px;
}
.section-teacher h2 {
  margin-bottom: 30px;
}
.section-teacher h2 span {
  font-size: 14px;
}
.section-teacher_discription {
  width: 80%;
  max-width: 480px;
  margin: 0 auto 50px;
  font-size: 18px;
  text-align: left;
  line-height: 35px;
}
.section-teacher_discription2 {
  width: 80%;
  margin: 0 auto 40px;
  text-align: left;
  line-height: 25px;
}
.ameba_link_discription {
  margin-bottom: 15px;
}
.ameba_link-Btn {
  width: 200px;
}
/*section-triallesson*/
.section-triallesson {
  width: 100%;
  margin: 0 auto 100px;
  padding: 50px 0 50px;
  background-image: url("../images/background_wave.svg");
  background-repeat: repeat;
}
.section-triallesson_img {
  width: 80%;
  border-radius: 30px;
  max-width: 390px;
  margin-bottom: 30px;
}
.section-triallesson_discription {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 30px;
}
.section-triallesson p {
  margin-bottom: 30px;
  line-height: 30px;
}
.section-trial_attention {
  font-size: 14px;
  text-align: left;
  margin: 0 auto;
  max-width: 330px;
}
.section-trial__yanaimachi, .section-trial__mitsu {
  margin-bottom: 30px;
}
.section-trial__yanaimachi span, .section-trial__mitsu span {
  border-radius: 50px;
  padding: 5px 10px;
  font-weight: 600;
  font-size: 18px;
  color: #FFF;
}
.section-trial__yanaimachi span {
  background-color: #E95710;
}
.section-trial__mitsu span {
  background-color: #F29600;
}
.section-trial__syuttyou span {
  background-color: #9CCD81;
}
.section-triallesson_how {
  text-align: left;
  line-height: 40px;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-triallesson_how p span {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 30px;
  background: linear-gradient(transparent 70%, #9AD4DA 60%);
}
.section-triallesson_how > div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 10px;
}
.maru4 {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: #9AD4DA;
  text-align: center;
  line-height: 25px;
  color: #FAFAFA;
  font-weight: 600;
  flex-shrink: 0;
}
/*section-access*/
.section-access {
  margin-bottom: 120px;
}
.accessBtn_yanaimati,.accessBtn_mitsu{
  margin: 40px auto;
}
.accessBtn_yanaimati a,.accessBtn_mitsu a{
  text-decoration: none;
}
.accessBtn_yanaimati span{
  background-color: #E95710;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 18px;
  color: #FFF;
  cursor: pointer;
}
.accessBtn_mitsu span{
  background-color: #F29600;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 18px;
  color: #FFF;
  cursor: pointer;
}
.section-access p {
  margin-bottom: 25px;
}
.map {
  width: 80%;
  max-width: 600px;
  border-radius: 30px;
  display: block;
  margin: 0 auto 30px;
}
.section-access img {
  width: 150px;
}
/*section-contact*/
.section-contact {
  margin-bottom: 100px;
}
.section-contact h2 {
  margin-bottom: 30px;
  line-height: 30px;
}
.section-contact p {
  line-height: 30px;
  margin-bottom: 20px;
}
.line-link, .gmail-link {
  max-width: 250px;
  margin-bottom: 40px;
}
/*section-footer*/
.section-footer {
  padding-bottom: 30px;
  position: relative;
  width: 320px;
  margin: 0 auto;
}
.footer__rogo {
  margin-bottom: 30px;
}
.section-footer ul {
  margin: 0 auto 50px;
  width: 200px;
  list-style: none;
}
.section-footer ul a {
  text-decoration: none;
  color: #6A3A0D;
}
.section-footer ul a:hover {
  opacity: 0.5;
  transition: background-color 1s linear;
}
.section-footer ul li {
  margin-bottom: 20px;
  font-weight: 600;
}
.section-footer small {
  bottom: 0px;
}
.footer__img {
  position: absolute;
  top: 250px;
  right: 50px;
  width: 70px;
}
.link-img:hover {
  animation: linkAnime 1s ease;
}
@keyframes linkAnime {
  20% {
    transform: rotateZ(2deg);
  }
  50% {
    transform: rotateZ(-2deg);
  }
  80% {
    transform: rotateZ(2deg);
  }
}
/* ここから記述をしたやつ！ */
#menu-btn-check {
  display: none; /* ハンバーガーメニューのチェックボタンは消しましょう！ */
}
/* ｔｏｐのカクカクさせてるやつ */
/* 下のアニメーションの時間を各分けて作りました */
.section-top_inner img:nth-child(3) {
  animation: kakukaku 2s linear infinite;
}
.section-top_inner img:nth-child(4) {
  animation: kakukaku 2.4s linear infinite;
}
.section-top_inner img:nth-child(5) {
  animation: kakukaku 1.8s linear infinite;
}
.section-top_inner img:nth-child(6) {
  animation: kakukaku 2.2s linear infinite;
}
.section-top_inner img:nth-child(7) {
  animation: kakukaku 2.1s linear infinite;
}
.section-top_inner img:nth-child(8) {
  animation: kakukaku 1.9s linear infinite;
}
/* ↓でアニメーションの動き */
@keyframes kakukaku {
  0% {
    transform: rotate(10deg);
  }
  49.9% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  99.9% {
    transform: rotate(-10deg);
  }
}
.fuwafuwa { /* ３つに分けたのが、１つのタグでtransformが共存できないため３つに分けてます */
  position: absolute;
  top: 250px;
  right: 50px;
  width: 70px;
  animation: fuwafuwa1 3.5s ease-in-out infinite;
}
.fuwafuwa2 {
  animation: fuwafuwa2 4s ease-in infinite;
}
.fuwafuwa3 {
  width: 100%;
  animation: fuwafuwa3 6s ease-in infinite;
}
@keyframes fuwafuwa1 {
  0% {
    transform: rotateZ(15deg) scale(0.8);
  } /* rotateで回転、scaleで大きさを変える */
  50% {
    transform: rotateZ(-15deg) scale(1.1);
  }
  100% {
    transform: rotateZ(15deg) scale(0.8);
  }
}
@keyframes fuwafuwa2 {
  0% {
    transform: translate3d(20px, 0, 0);
  } /* 横方向にうごかすやつ */
  50% {
    transform: translate3d(-20px, 0, 0);
  }
  100% {
    transform: translate3d(20px, 0, 0);
  }
}
@keyframes fuwafuwa3 {
  0% {
    transform: translate3d(0, 20px, 0);
  } /* 縦方向にうご書くやつ */
  50% {
    transform: translate3d(0, -20px, 0);
  }
  100% {
    transform: translate3d(0, 20px, 0);
  }
}