@charset "utf-8";
/* CSS Document */
/* TOP_MVスライダー */
/* リセットCSS */
body,ul,li {padding: 0;margin: 0;}
.slider li {
  height: 780px;
  background-size: cover;
  background-position: center;
}
.slider li:first-of-type {
	background-image: url("../../images/profile/profile_mv1_s.jpg");
}
.slider li:nth-child(2) {
	background-image: url("../../images/profile/profile_mv2_s.jpg");
}
/* 縮小率調整 */
@keyframes fadezoom {
  0% {
    transform-origin: center;
    transform: scale(1.5);
    transition: 5s ease-out;
  }
  100% {
    transform: scale(1.0);
  }
}
/* ズームアニメーション */
.animation {
  animation: fadezoom 15s 0s forwards;
}
@media screen and (max-width:1150px) {
/* TOP_MVスライダー */
/* リセットCSS */
body,ul,li {padding: 0;margin: 0;}
.slider li {
  height: 560px;
}
.slider li:first-of-type {
	background-image: url("../../images/profile/profile_mv1_sp_s.jpg");
}
.slider li:nth-child(2) {
	background-image: url("../../images/profile/profile_mv2_sp_s.jpg");
}  
}