@charset "utf-8";
#mainimg {
    margin-bottom: -116px
}

.slider {
  width: 100%;
  height: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
}

.slick-img img {
  width: auto;
  height: auto;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}


.fade-out {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

/* フェードイン時に入るクラス */
.fade-in {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/*画面幅タブレットの設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width : 1000px ){
    
}

/*画面幅タブレットの設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width : 480px ){
	
}
