#spec1 {
    padding: 60px 0 0 0;
    background: url("../images/spec1_bg_pc.jpg") no-repeat top center;
    background-size: 1330px;
    height: 778px;
}
#spec1 .inner p{ position: absolute; }
#spec1 .inner .text1 {
    top: 74px;
    right: 8px;
}
#spec1 .inner .text2 {
    top: 74px;
    left: 8px;
}
#spec1 .inner .text3 {
    top: 393px;
    left: 26px;
}
#spec2 {
    padding: 60px 0 0 0;
    background: url("../images/spec2_bg_pc.jpg") no-repeat top center;
    background-size: 1250px;
    height: 850px;
}
#spec2 .inner .text4 {
    top: 74px;
    left: 13px;
}
#spec2 .inner .text5 {
    right: -2px;
    bottom: 31px;
}

.fadein {opacity: 0;}
#spec1 .title{animation: fadein 0.5s ease 0.3s 1 forwards;}
#spec1 p.fadein:nth-child(2) {animation: fade_zin 0.5s ease 0.9s 1 forwards;}
#spec1 p.fadein:nth-child(3) {animation: fade_r 0.5s ease 1.2s 1 forwards;}
#spec1 p.fadein:nth-child(4) {animation: fade_l 0.5s ease 1.5s 1 forwards;}

#spec2 .title{animation: fadein 0.5s ease 1.8s 1 forwards;}
#spec2 p.fadein:nth-child(2) {animation: fade_r 0.5s ease 2.1s 1 forwards;}
#spec2 p.fadein:nth-child(3) {animation: fade_l 0.5s ease 2.4s 1 forwards;}

@keyframes fadein {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fade_zin {
    0% {
        opacity: 0;
        transform: scale(2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes fade_r {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fade_l {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media all and (max-width: 1079px) {
    #spec1 {
        padding: 13vw 0 0 0;
        background: url("../images/spec1_bg_sp.jpg") no-repeat top center;
        background-size: 100%;
        height: 479vw;
    }
    #spec1 .inner .text1 {
        top: 14.5vw;
        width: 89.5vw;
        left: 0;
    }
    #spec1 .inner .text2 {
        top: 80.5vw;
        left: calc(50% - 50vw);
        width: 101vw;
    }
    #spec1 .inner .text3 {
        top: 161vw;
        left: calc(50% - 50vw);
        width: 100vw;
    }
    #spec2 {
        padding: 0;
        background: url("../images/spec2_bg_sp.jpg") no-repeat top center;
        background-size: 100%;
        height: 296vw;
    }
    #spec2 .inner .text4 {
        top: 13vw;
        left: calc(50% - 50vw);
        width: 100vw;
    }
    #spec2 .inner .text5 {
        top: 147vw;
        left: calc(50% - 50vw);
        width: 100vw;
    }

}
