@charset "utf-8";
/* ===============動き関連CSS=============== */
/*画像の拡大-----------------------*/
.zoomIn img{
  transform: scale(1);
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}
.zoomIn a:hover img{/*hoverした時の変化*/
  transform: scale(1.2);/*拡大の値を変更したい場合はこの数値を変更*/
}
/*画像のマスク*/
.mask{
    display: block;
    line-height: 0;/*行の高さを0にする*/
    overflow: hidden;/*拡大してはみ出る要素を隠す*/
}
/* レイアウトのためのCSS */
.lead{
  text-align: center;
  padding: 50px 20px;
}
/*画像のレスポンシブ*/
img{
  width:100%;
  height: auto;
}
/*横幅*/
.zoomIn{
    width:100%;
    margin: 0 auto;/*中央揃え*/
}



/* ----------------------------------------------- */
/* ふわっと出現 */
.fadeIn {
  opacity: 0;
  transition: 1s;
}
.fadeIn.is-show {
  opacity: 1;
}
/* 左から出現 */
.fadeIn_left {
  opacity: 1;
  transform: translate(-99.9%, 0);
  transition: 1.5s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/* 右から出現 */
.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/* 下から出現 */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 30%);
  transition: 1s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
.zoom-1 img {
  width: 100%;
  height: auto;
  animation: animationZoom1 8s ease-in-out forwards;
}
.zoom {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: 0px
}
@keyframes animationZoom1 {
  100% { transform:scale(1.1)} 
}

/* スマホ調整 */
@media (max-width: 970px) {
  .fadeIn,.fadeIn_up,.fadeIn_left,.fadeIn_right {
    opacity: initial;
    transition: initial;
    transform: initial;
  }
}