
/* ssssssssssssssssss 
J.create
other.css
ssssssssssssssssss*/

/* 下層TOP
---------------------------------------------------------------------*/
.fastviwe{
  width: 100%;
  height: 17vh;
  display: flex; /* 要素をflexboxに対応させる */
  align-items: center; /* 縦方向の中央揃え */
  justify-content: center; /* 横方向の中央揃え */
  flex-direction: column; /* 子要素の並びを上から下にする */
}

/* 下層TOP画像 */

/* product
---------------------------------------------------------------------*/
.productBG {
  background-image: url(../img/page01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* actual-results
---------------------------------------------------------------------*/
.actual-resultsBG {
  background-image: url(../img/page03.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}




/* タブレット・PCで適応　lg------------------*/
@media screen and (min-width: 992px) and (max-width: 1199px) {

}

/* タブレットで適応　md------------------*/
@media screen and (min-width: 768px) and (max-width: 991px) {

}
/* スマホのみ適応　sm--------------------------*/
@media only screen and (max-width: 767px) {

}