*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
iframe{
    display: block;
    width: 100%;
    object-fit: contain;
}

.wrapper{
    margin-inline: auto;
}

.cta_area,
.plan_area,
.access_area{
    position: relative;
}
.cta_area .cta,
.plan_area .cta,
.access_area iframe{
    position: absolute;
}

.cta_area .cta{
    width: 86%;
    left: 7%;
    bottom: 12.5%;
    overflow: hidden;
}

.cta_area .cta02{
    width: 86%;
    left: 7%;
    bottom: 10.5%;
    overflow: hidden;
    position: absolute;
}

.cta_area .cta a{
    position: relative;
}
.cta_area .cta a::before{
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny 3s ease-in-out infinite;
}
@-webkit-keyframes shiny {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.plan_area .cta{
    width: 90%;
    left: 5%;
    bottom: 5%;
}
.access_area iframe{
    width: 90%;
    left: 5%;
    height: 90%;
    bottom: 5%;
}



.pc, .sp{
    display: none;
}
@media screen and (min-width:769px){
    .pc{
        display: block;
    }

    .cta_area .cta{
        width: 46%;
        left: 27%;
        bottom: 17.5%;
    }

    .cta_area .cta02{
        width: 46%;
        left: 27%;
        bottom: 14%;
        
    }

    .plan_area .cta{
        width: 46%;
        left: 27%;
        bottom: 4%;
    }
    .access_area iframe{
        width: 27%;
        left: 49%;
        height: 31%;
        bottom: 8%;
    }
}
@media screen and (max-width:768px){
    .sp{
        display: block;
    }
}