.tv-bg {
  width: 100%;
  display: block;
}

.tv-video {
    position: absolute;
    top: 49%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, -50%);
}

.all-refund {
    position: absolute;
    width: 25%;
    height: 10%;
    top: 51%;
    right: 40%;
}

/* ----------gifエリア----------- */
.point-container {
    position: relative;
    width: 100%;
    line-height: 0;
}

.cta_btn1 {
	position: absolute;
    right: 5%;
    bottom: 5%;
    width: 88%;
}

/* 背景 */
.bg-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 動画とフレームを重ねる */
.movie-layer1{
    position: absolute;
    top: 1%;
    left: 5%;
    width: 92%;
}
.movie-layer2 {
    position: absolute;
    top: 0%;
    left: 5%;
    width: 91%;
}

.frame-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.movie-layer {
    z-index: 1;
}

.frame-layer {
    z-index: 2;
}

.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;
    }
}

.free {
    width: 80%;
    overflow: hidden;
    position: absolute;
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
.movie-layer1 {
    top: 1%;
    left: 5%;
    width: 92%;
}
}