.test1 {
    animation-name: test1;
    animation-duration: .8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    max-width: 750px;
    overflow: hidden;
}

@keyframes test1 {
    from {}

    to {
        transform: scale(1.1, 1.1);
    }
}

.btn-fixed img {
    width: 90%;
}

.reflection-img {
    position: relative;
    overflow: hidden;

}

.reflection {
    height: 100%;
    width: 10%;
    position: absolute;
    top: -100px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    transform: rotate(112deg);
    animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    80% {
        transform: scale(0) rotate(12deg);
        opacity: 0.5;
    }

    81% {
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }

    100% {
        transform: scale(20) rotate(45deg);
        opacity: 0;
    }
}


.effects img {
    animation-name: ef1;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-delay: 1s;
    overflow: hidden;
    z-index: 100;
}

@keyframes ef1 {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.effects img:nth-of-type(1) {
    animation-delay: 0.5s;
}

.effects img:nth-of-type(2) {
    animation-delay: 5s;
}

.parallax {
    width: 100%;
    overflow: hidden;
}

.coupon_note {
    text-align: center;
    margin-top: 1%;
    color: red;
}

@media screen and (max-width:749px) {
    .parallax {
        height: 50vh;
    }
}

@media screen and (min-width:750px) {
    .parallax {
        height: 100vh;
    }
}


.refund01 {
    position: absolute;
    width: 23%;
    height: 26px;
    top: 51%;
    right: 22%;
    /*background: orange;*/
}

.tanpin {
    margin: auto;
    margin-bottom: 5%;
    width: 93%;
}

.fv_mov {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}