@charset "shift_jis";
/* CSS Document */

.photo-show {
    height: 170px; /*表示したい大きさ*/
    margin: 0px auto 20px auto; /*縦余白30pxは任意*/
    max-width: 100%;
    position: relative;
    width: 170px; /*表示したい大きさ、height と合わせる*/
    order: 1;
}

.photo-show img { 
    animation: show 12s infinite;
    -webkit-animation: show 12s infinite;
    border-radius: 50%;
    height: auto;
    max-width: 100%;
    opacity: 0;
    position: absolute; /*画像を全て重ねる*/
  left: 0px;
}

/*アニメーション*/

@keyframes show {
    0% {opacity:0}
    24% {opacity:1}
    49% {opacity:1}
    74% {opacity:0}
 }

@-webkit-keyframes show {
    0% {opacity:0}
    24% {opacity:1}
    49% {opacity:1}
    74% {opacity:0}
}

/*各画像のアニメーションの開始時間をずらす*/

.photo-show img:nth-of-type(1) {
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
}

.photo-show img:nth-of-type(2) {
    animation-delay: 3s;
    -webkit-animation-delay: 3s;
}

.photo-show img:nth-of-type(3) {
    animation-delay: 6s;
    -webkit-animation-delay: 6s;
}

.photo-show img:nth-of-type(4) {
    animation-delay: 9s;
    -webkit-animation-delay: 9s;
}

/*マウスが画像に重なった際、動きを止めて四角くする*/

.photo-show img {
    transition: 0.2s;
    -webkit-transition: 0.2s;
}

.photo-show:hover img {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
    border-radius: 10px;
}