@charset "utf-8";

body,p,img{
    padding: 0;
    margin: 0;
}
img{
    vertical-align: bottom;
    max-width: 100%;
}
body{
    font-family: 'Hiragino Kaku Gothic ProN', Meiryo, Helvetica, Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
    width: 100%;
    background-color: #fff;
}
.all{
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
}

.fv{
    position: relative;
}

.fv a img{
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
    width: 90%;
    margin: 0 auto;
    transition: all 0.5s;
}
.fv a img:hover{
    opacity: 0.8;
}


.cta1{
    position: relative;
}
.cta2{
    position: relative;
}

.cta3{
    position: relative;
}


.cta1 a img{
    position: absolute;
    bottom: 1.5%;
    left: 0;
    right: 0;
    width: 90%;
    margin: 0 auto;
    transition: all 0.5s;
}
.cta2 a img{
    position: absolute;
    bottom: 4.6%;
    left: 0;
    right: 0;
    width: 90%;
    margin: 0 auto;
    transition: all 0.5s;
}

.cta1 a img:hover{
    opacity: 0.8;
}

.attention{
    font-size: 14px;
    text-align: left;
    margin: 0 5% 50px;
}

.button_effect {
    display: inline-block;
    animation-name: updown1;
    animation-delay: 0s;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes updown1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}