@charset "UTF-8";
.fade_container{
  height: 50vh;
  width: 100%;
  min-height: 300px;
  position: relative;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  
  animation: image-switch-animation 35s infinite; /*アニメーション時間 くりかえし*/
}
/*
.src1 {
  background-image: url("../images/img_profile.svg");
	background-size: 200px 200px;
	background-position: 50% 50%;
}*/
.src1 {
  background-image: url("../images/prof_img01.jpg");
}
.src2 {
  background-image: url("../images/prof_img02.jpg");
}
.src3 {
  background-image: url("../images/prof_img03.jpg");
}
.src4 {
  background-image: url(../images/prof_img04.jpg);
}
.src5 {
  background-image: url(../images/prof_img05.jpg);
}/*
.src6 {
  background-image: url(../images/prof_images6.jpg);
}*/

.image:nth-of-type(1) {
  animation-delay: 0s;
}
.image:nth-of-type(2) {
  animation-delay: 7s;
}
.image:nth-of-type(3) {
  animation-delay: 12s;
}
.image:nth-of-type(4) {
  animation-delay: 17s;
}
.image:nth-of-type(5) {
  animation-delay: 22s;
}/*
.image:nth-of-type(6) {
  animation-delay: 27s;
}/*
.image:nth-of-type(7) {
  animation-delay: 30s;
}*/

@keyframes image-switch-animation {
  0%{ opacity: 0;}
  5%{ opacity: 1;}
  25%{ opacity: 1;}
  30%{ opacity: 0;}
  100%{ opacity: 0;}
}

@media only screen and (max-width: 767px) { /*767まで*/
.fade_container{
  height: 50vh;
  width: 100%;
  min-height: 300px;
	position: relative;
	}
.src1 {
	background-position: 50% 70%;
}
}