@charset "UTF-8";

/*
#000000 キーカラー
#3E3A39 文字用グレー
#F5F5F5 うすいグレー
#6d6d6d デザイン要素グレー

#f6a3ab 文字ベージュピンク
#f4c1b9 背景ベージュピンク
#fffce7 黄色
#f9deea ピンク
*/


/* --------- PC --------- */
/*@media only screen and (min-width: 1100px) */

/* 改行設定 */
.onlyPC{
  display: block;
}
.onlyTAB{
  display: none;
}
.onlySP{
  display: none;
}



/*-------------------------------------------*/
/* 基本 */

html{
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight:300;
  color:#3E3A39;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  margin: 0;
  /*background: linear-gradient(-225deg, #f6a3ab 0%, #fffce7 56%, #f9deea 100%); */
  background-color: #f4c1b9;
}

.Gothic{
  font-family:"YakuHanJPs", "neue-kabel" , "yu-gothic-pr6n", "San Francisco", meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-feature-settings: "palt";
}

.Mincho{
  font-family:"ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-feature-settings: "palt";
}

small{
  display:block;
  line-height: 1.4em;
  margin-top: 10px;
}


/*----------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* TOPimg */

/* ローディング */

.loader-bg {
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  z-index: 100;
}

.loader {
  border: 5px solid #f6a3ab;
  border-top: 5px solid #f4c1b9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 101;
  animation: spin 1.5s linear infinite;
}

@keyframes spin{
  0%{
    transform: rotate(0deg); 
  }

  100%{
    transform: rotate(360deg);
  }
}

.loader_p{
  color: #f6a3ab;
  margin-top: 20px;
  letter-spacing: 0.2em;
  font-size: 12px;
}


.loader-bg.is-active {
  opacity: 0;
  visibility: hidden;
}


/* 動画 */
.topimg{
  position: relative;
  height: 100vh;
  z-index: 0;
}

.video-area{
  position: fixed;
  z-index: -2;
  top:60px;
  bottom:0%;
  left:8%;
  right: 8%;
  overflow: hidden;
}

.video{
  position: absolute;
  z-index: -2;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: 177.77777778vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  opacity: 1;
  filter: contrast(0.4);
}


/* 動画を左から表示 */
.img-wrap {
  overflow: hidden;
}

.img-wrap::before {
  animation: img-wrap 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background-color: #f4c1b9;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  animation-delay: 2s;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%); 
  }
}



/* 動画に載せる文字 */

.toptext{
  position: fixed;
  justify-content: center;
  text-align: center;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  color: #fff;
}

.toptext p{
  font-size: 30px;
  line-height: 1.4em;
  letter-spacing: 0.04em;
}

.toptext p span{
  font-size: 42px;
}

.toptext img{
  width: 200px;
  margin-bottom: 10px;
}


/* エントリーボタン */

.Btn_box{
  margin-top: 20px;
}

a.Btn_box{
  display: block;
  text-decoration: none;
}

.Btn{
  position: relative;
  border: 1px solid #f6a3ab;
  margin-left: auto;
  margin-right: auto;
  width: 280px;
  height: 45px;
  line-height: 46px;
  display: flex;
  text-align: center;
  background: #fff;
  font-size: 22px;
  letter-spacing: 0.4em;
  border-radius: 0px;
}

.Btn-Text{
  width: 100%;
  height: 100%;
  color: #f6a3ab;
  z-index: 10;
}

.Btn-Text:before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #f6a3ab;
  z-index: -1;
  transition: .4s;
}

.Btn-Text:hover{
  color: #fff;
}

.Btn-Text:hover:before{
  width: 100%;
}

.Btn-Text:after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #f6a3ab;
  border-right: 2px solid #f6a3ab;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -4px;
}

.Btn-Text:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 0.3s;
  right: 15px;
}



/* スクロールした後のエントリーボタン */

#scroll_up {
  z-index: 10;
  position: fixed;
	bottom: calc(4%);
	left: calc(50% - 300px/2);
  width: 320px; 
  height: 60px;            
  display: flex;
  text-align: center;
  vertical-align: middle;
  background-color: #f6a3ab;
  border: 1px solid #f6a3ab;
  line-height: 1.2em;
  color: #fff;
  border-radius: 35px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  }
  
  #scroll_up span {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  
  #scroll_up a {
    font-size: 20px;
    letter-spacing: 0.15em;
    margin: auto;
    padding-top: 4px;
  }
  
  #scroll_up a:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -4px;
  }
  
  #scroll_up:hover {
    background-color: #fff;
    color: #f6a3ab;
    transition: 0.3s;
  }
  
  #scroll_up:hover a:before {
    border-top: 2px solid #f6a3ab;
    border-right: 2px solid #f6a3ab;
    transition: 0.3s;
    right: 20px;
  }
  

  /* ふわふわアニメーション */
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* このクラスをつけると回転を無限に繰り返します */
.anime-fuwafuwa {
  animation: 3s fuwafuwa infinite;
}



/*-------------------------------------------*/
/* ヘッダー */

header {
  position: -webkit-sticky;
  position:         sticky;
  top: -100px;
  height: 210px;
  z-index: 10;
  bottom: -100px;
}

.header_cont{
  position: -webkit-sticky;
  position:         sticky;
  background-color: #fff;
  top: -100px;
  height: 160px;
  z-index: 10;
  bottom: -100px;
  clip-path: polygon(0 80px, 100% 0px, 100% 100%, 0 100%);
}

.header_box{
  position: -webkit-sticky;
  position:         sticky;
  display: flex;
  justify-content: center;
  vertical-align: middle;
  bottom:15px;
  z-index: 15;
}

h1{
  width: 160px;
  display: inline-block;
  right: 190px;
  position: absolute;
  top:-52px;
}

header ul{
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 90px;
  column-gap: 15px;
  top:-45px;
}

header li img{
  width: 30px;
}

header a:hover{
  opacity: 0.7;
  transition: 0.3s;
}


/*-------------------------------------------*/
/* スクロールアニメーション */
.scroll {
  position  : fixed;
  z-index: -1;
  font-size : 13px;
  letter-spacing: 0.5em;
  writing-mode : vertical-rl;
  bottom : 230px;
  left : 5%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
}
.scroll::after {
  content : '';
  display : inline-block;
  position : absolute;
  background-color: #fff;
  right : 50%;
  bottom : -210px;
  transform : translateX(-50%);
  width : 1px;
  height : 200px;
  animation: scroll 2s infinite;
}
@keyframes scroll {
0% {
  transform: scale(1, 0);
  transform-origin: 0 0;
}
50% {
  transform: scale(1, 1);
  transform-origin: 0 0;
}
50.1% {
  transform: scale(1, 1);
  transform-origin: 0 100%;
}
100% {
  transform: scale(1, 0);
  transform-origin: 0 100%;
}
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* メイン */
/* メイン文字サイズ設定 */

main{
  position: relative;
  text-align: center;
  background-color: #fff ; 
 }


 .text{
  font-size: 15px;
  color: #3E3A39;
  letter-spacing: 0.1em;
  line-height: 2em;
  text-align: center;
  font-weight: 400;
  }

 .text span{
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 3em;
 }

 
 .pink{
  color: #f6a3ab;
 }

 .pink2{
  color: #f9deea;
 }

 .white{
  color: #fff;
 }

 h2{
  text-align: center;
  font-size: 35px;
  line-height: 1em;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

h2 span{
  font-size: 16px;
}

section{
  margin-top: -60px;
	padding-top: 60px;
}


 /*-------------------------------------------*/
/* banner */

.contwp-banner{
  position: relative;
  margin-top: -100px;
  padding-top: 120px;
  padding-bottom: 100px;
 }

ul.banner_photowp{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  width: 80%;
  margin: 0 auto;
  margin-top: 0px;
  margin-bottom: 0px;
}

.banner_photowp img{
  display: block;
  width: 100%; 
  object-fit: cover;
  max-width: 1000px;
  margin: 0 auto;
}

.banner_ph li{
  width: 100%;
}


 /*-------------------------------------------*/
/* about */

/* 一番上部のとき
.contwp-about{
  position: relative;
  margin-top: -100px;
  padding-top: 120px;
  padding-bottom: 100px;
 }

 .contwp-about:before {
  content: '';
  position: absolute;
  top: -20px;
  bottom: -1px;
  left: 0;
  right: 0;
  background-color: #fff ;  
  transform: skewY(-4deg);
}
*/


/* バナーがあるとき*/
.contwp-about{
  position: relative;
  padding-bottom: 100px;
 }
/* */

ul.photowp{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  width: 80%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  row-gap: 11px;
}

ul.photowp:after{
  content: '';
  display: block;
  width: 24%;
}

.photowp li{
  object-fit: cover;
}

.photowp img{
  display: block;
  width: 100%; 
  object-fit: cover;
}

.aboutph1 li{
  width: 24%;
  flex-direction: row;
  flex-wrap: wrap;
}


.aboutph2 li{
  width: 100%;
}


 /*-------------------------------------------*/
/* News */

.contwp-news{
  position: relative;
  padding-top: 90px;
  padding-bottom: 150px;
 }

 .contwp-news:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  right: 0;
  background-color: #f7f7f7;
  transform: skewY(-4deg);
}


ul.news_list {
  list-style: none;
  padding: 0;
  margin: auto;
}

/* ここからがニュース記事のCSS */

.news_list {
  width: 60vw;
}

li.news_list_item{
padding: 20px 0;
position: relative; 
border-bottom: solid 1px #d9d9d9;
}

li.news_list_item:first-child {
  border-top: solid 1px #d9d9d9;
}

.news_list_item a {
position: relative;
display: flex;
align-items: center;
text-decoration: none;
left: 20px;
}


.news_list_date {
display: flex;
margin-right: 15px;
align-items: center;
vertical-align: middle;

}

.news_item {
background: #f4c1b9;
color: #fff;
border-radius: 14px;
width: 60px;
/* 親要素の文字サイズを基準 */
text-align: center;
margin-left: 20px;
padding:3px;
}

.news_item_none {
  background:none;
  color: none;
  border-radius: 14px;
  width: 60px;
  /* 親要素の文字サイズを基準 */
  text-align: center;
  margin-left: 20px;
  padding:3px;
  }
  

.arrow {
width: 25px;
height: 2px;
background: #f4c1b9;
position: absolute;
top: 50%;
right: 20px;
}

.arrow::after {
content: "";
display: block;
width: 6px;
height: 2px;
background: #f4c1b9;
transform: rotate(45deg);
position: absolute;
right: 0px;
bottom: 2px;
}

.news_list_item a:hover .arrow{
  right: 0px;
  transition: 0.5s;
}




 /*-------------------------------------------*/
/* finalist */

.contwp-finalist{
  position: relative;
  padding-top: 90px;
  padding-bottom: 100px;
  margin-top: -50px;
 }


 .contwp-finalist:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  right: 0;
  background: linear-gradient(-255deg, #f4c1b9 0%, #fffce7 50%, #f9deea 100%);
  transform: skewY(-4deg);
}

.icon{
  width: 15px;
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 5px;  
}

.icon2{
  width: 25px;
  vertical-align: middle;
  margin-left: 5px;
  margin-right: 5px;  
}



/* プロフィール写真 */
.card-group{
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: 50px;
}

.card-group::after{
  content: "";
  display: block;
  width: 30%; /* 4列 23% / 3列 30% */
  margin-bottom: 15px;
}

.card{
  width: 30%; /* 4列 23% / 3列 30% */
  margin-bottom: 15px;
}

.card__imgframe{
  width: 100%;
  height: 350px;/* 4列 280px / 3列 350px */
}

.card__imgframe img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%
}
.card__textbox{
  width: 100%;
  height: auto;
  padding: 20px 20px 8px;
  background: #fff;
  box-sizing: border-box;
}

.card__titletext{
  font-size: 18px;
  line-height: 0.5em;
}

.card__overviewtext{
  font-size: 13px;
  line-height: 2em;
}

.lily{
  color: rgb(216, 167, 44);
}

.lavender{
  color: rgb(158, 134, 177);
}

.gerbera{
  color: rgb(170, 90, 90);
}


 /*-------------------------------------------*/
/* 日本大会 */


.contwp-japan{
  position: relative;
  padding-top: 90px;
  padding-bottom: 120px;
 }

 .contwp-japan:before {
  content: '';
  position: absolute;
  top: 0px;
  bottom: -1px;
  left: 0;
  right: 0;
  background: linear-gradient(-225deg, #d4d4d4 0%, #ffffff 56%, #d9d9d9 100%);
  transform: skewY(-4deg);
}
 
 .japanph li{
  width: 32.5%;

}


 /*-------------------------------------------*/
/* インスタグラム */

.contwp-insta{
  position: relative;
  background-color: #fffce7;
  padding-top: 90px;
  padding-bottom: 100px;
  margin-top: -50px;
}

.contwp-insta ul{
  display: flex;
  width: 80%;
  margin: 0 auto;
  column-gap: 25px;
}

.instabox_left{
  padding-top: 0px;
  width: 40%;
}
.instabox_right{
  width: 60%;
}

/* インスタアカウントボタン */
a.instalink{
  display: flex;
  margin: 8px auto 5px;
  background-color: #fff;
  border: 1px solid #fff;
  line-height: 1.2em;
  width: 300px; 
  height: 40px; 
  border-radius: 35px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
}
  
a.instalink:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #f6a3ab;
  border-right: 2px solid #f6a3ab;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -4px;
}

a.instalink:after{
  content: '';
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0;
  background: url("../img/insta.svg") no-repeat;
  background-size: contain;
  top: 50%;
  left: 25px;
  margin-top: -10px;
}
  
a.instalink:hover {
  background-color: #f4c1b9;
  color: #fff;
  transition: 0.3s;
}

a.instalink:hover:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 0.3s;
  right: 20px;
}



 /*-------------------------------------------*/
/* youtube */

.contwp-youtube{
  position: relative;
  background: linear-gradient(-255deg, #f4c1b9 0%, #fffce7 50%, #f9deea 100%);
  padding-top: 90px;
  padding-bottom: 100px;
}

.contwp-youtube ul{
  display: flex;
  width: 80%;
  margin: 0 auto;
  column-gap: 25px;
  flex-direction : row-reverse
}

.youtubebox_left{
  width: 60%;
}

.youtubebox_left p{
  text-align: left;
  line-height: 1.4em;
  padding-bottom: 10px;
}

.youtubebox_right{
  padding-top: 10px;
  width: 40%;
}

.responsive {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 40px;
  }

.responsive iframe {
  width: 100%;
  height: 100%;
  }

/* youtubeアカウントボタン */
a.youtubelink{
  display: flex;
  margin: 8px auto 5px;
  background-color: #fff;
  border: 1px solid #fff;
  line-height: 1.2em;
  width: 300px; 
  height: 40px; 
  border-radius: 35px;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
}
  
a.youtubelink:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #f6a3ab;
  border-right: 2px solid #f6a3ab;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -4px;
  align-items:center;
}

a.youtubelink:after{
  content: '';
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 25px;
  border: 0;
  background: url("../img/youtube.svg") no-repeat;
  background-size: contain;
  top: 50%;
  left: 25px;
  margin-top: -12px;
}
  
a.youtubelink:hover {
  background-color: #f4c1b9;
  color: #fff;
  transition: 0.3s;
}

a.youtubelink:hover:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: 0.3s;
  right: 20px;
}


 /*-------------------------------------------*/
/* 募集要項／注意事項　guidelines */

.contwp-guidebk{
  position: relative;
  background-color: #fff ;  
  padding-top: 90px;
  padding-bottom: 100px;
}

.contwp-guide{
  width:80%;
  margin:0 auto;
}

.guidetext{
  line-height: 1.6em;
  margin: 30px 0;
  text-align: center;
  font-size: 15px;
}

.guidetext span{
  background-color: #fff9cf;
  border-radius: 15px;
  padding: 5px 30px;

}

.guidetext_left{
  text-align: left;
  display: inline-block;
  line-height: 1.6em;
  font-size: 15px;
  margin: -30px auto 20px;
}


ul.guideDepartment{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  width: 60%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 20px;
  row-gap: 11px;
}

.guideDepartment li{
  width: 30%;
  object-fit: cover;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 20px;
  text-align: center;
}

.guideDepartment img{
  display: block;
  width:50%; 
  object-fit: cover;
  margin:0 auto 20px;
}

.number2 ul{
  list-style-type: disc;
}


 /*-------------------------------------------*/
/* 安心宣言 */

.contwp-anshin{
  position: relative;
  background: linear-gradient(-225deg, #d4d4d4 0%, #ffffff 56%, #d9d9d9 100%);
  padding-top: 90px;
  padding-bottom: 100px;
}

.boxwp-anshin{
  width: 50%;
  margin: 0 auto;
}

.anshintext{
  line-height: 1.6em;
  margin: 15px 0 0;
  text-align: left;
}

.number ol {
  counter-reset: count 0;
}

.number li:before {
  content: counter(count) ". ";
  counter-increment: count 1;
}

.number li{
  padding-left: 1em;
  text-indent: -1.2em;
}




/*-------------------------------------------*/
/* 後援・協賛 */

.contwp-sponsorbk{
  position: relative;
  background-color: #fff ;  
  padding-top: 90px;
  padding-bottom: 100px;
  margin: 0 auto;
}

.contwp-sponsor{
  width:70%;
  margin:0 auto;
}

.kyosan , .koen{
  margin-bottom:50px ;
  word-break: keep-all;
  overflow-wrap: break-word;
}





/*
フッター
-------------------------------------------------------------------------------------------------------------------*/
footer{
  background-color: #f4c1b9;
  color: #fff;
  z-index: 1;
  position: relative;
  padding-bottom: 0px;
}

.foot_wp {
  width: 100%;
  display: block;
  text-align: center;
  padding: 30px 0 5px;
}

footer p{
font-size: 15px;
line-height: 1.7em;
}

.copyrignt{
  margin-top: 100px;
}








/*
エフェクト
----------------------------------------------------------------------------------------------------------------*/

/*
エフェクト　下から上に表示
-------------------------------------------*/
  
/*アニメーション要素のスタイル*/
.animation{
	opacity : 0;
	visibility: hidden;
	transition: 1s;
	transform: translateY(100px);
  }
  /*アニメーション要素までスクロールした時のスタイル*/
  .active{
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
  }


/*
並んでいる写真を順番に表示
-------------------------------------------*/
.photofade{
  opacity : 0;
  transition : all 1s;
}
  
.photofade.active{
  opacity : 1;
}

.photofade2{
  opacity : 0;
  transition : all 1s;
}

.photofade2.active{
  opacity : 1;
}

.photofade3{
  opacity : 0;
  transition : all 1s;
}

.photofade3.active{
  opacity : 1;
}

  /*
エフェクト　TOP用
-------------------------------------------*/

/* 下から上に移動しながらフェードイン */
.fadeInUp {
    opacity: 0;
    transform: translateY(200px);
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
/* 上から下に移動しながらフェードイン */
.fadeInDown {
    opacity: 0;
    transform: translateY(-200px);
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
/* 右から左に移動しながらフェードイン */
.fadeInLeft {
    opacity: 0;
    transform: translateX(-200px);
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
/* 左から右に移動しながらフェードイン */
.fadeInRight {
    opacity: 0;
    transform: translateX(200px);
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/* フェードインのみ */
.fadeInn {
  opacity: 0;
  transform: translateX(0px);
  animation-name: fadeIn;
  animation-duration:2s;
  animation-fill-mode: forwards;
}
/* フェードインアニメーション */
@keyframes fadeIn {
    0% {
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}

 /* 0.5秒後に開始 */
 .delay05{
  animation-delay: 0.5s;
}
 /* 1秒後に開始 */
 .delay1{
  animation-delay: 1s;
}
 /* 1.5秒後に開始 */
 .delay15{
  animation-delay: 1.5s;
}

 /* 2秒後に開始 */
 .delay2{
  animation-delay:2s;
}

 /* 2.5秒後に開始 */
 .delay25{
  animation-delay:2.5s;
}

 /* 3秒後に開始 */
 .delay3{
  animation-delay:3s;
}

 /* 3.5秒後に開始 */
 .delay35{
  animation-delay:3.5s;
}

 /* 4秒後に開始 */
 .delay4{
  animation-delay:4s;
}


 /* 4.5秒後に開始 */
 .delay45{
  animation-delay:4.5s;
}

 /* 5秒後に開始 */
 .delay5{
  animation-delay:5s;
}

 /* 5.5秒後に開始 */
 .delay55{
  animation-delay:5.5s;
}



