
@charset "utf-8";


#entry{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items:center ;
    align-items: center;
    -webkit-background-size: cover;
    background-size:cover ;
    background-position: center center ;
}

#entry .cover{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../entry/img/noize.png);
}


#entry h3 span:nth-child(1){
    opacity:0;
    transition-duration: 400ms;
    transition-timing-function: ease-out;
    transition-property: transform,opacity;
}
#entry h3 span:nth-child(1).move{
    opacity:1;
}

#entry h3 span:nth-child(2){
    opacity:0;
    transform:translateX(50px);
    transition-duration: 400ms;
    transition-timing-function: ease-out;
    transition-property: transform,opacity;
}
#entry h3 span:nth-child(2).move{
    opacity:1;
    transform:translateX(0px);
}


#entry .shoulder{
    opacity:0;
    transform:translateY(50px);
    transition-duration: 400ms;
    transition-timing-function: ease-out;
    transition-property: transform,opacity;
}
#entry .shoulder.move{
    transition-delay: 400ms;
    opacity:1;
    transform:translateY(0px);
}


#entry .stit{
    opacity:0;
    transition-duration: 400ms;
    transition-timing-function: ease-out;
    transition-property: opacity;
}
#entry .stit.move{
    transition-delay: 600ms;
    opacity:1;
}


#entry ul{
    opacity:0;
    transition-duration: 400ms;
    transition-timing-function: ease-out;
    transition-property: opacity;
}
#entry ul.move{
    transition-delay: 600ms;
    opacity:1;
}


#entry ul li{
    opacity:0;
    transform:translateY(50px);
    transition-duration: 400ms;
    transition-timing-function: ease-out;
    transition-property: transform,opacity;
}
#entry ul li.move{
    opacity:1;
    transform:translateY(0px);
}
#entry ul li.move:nth-child(1){
    transition-delay: 800ms;
}
#entry ul li.move:nth-child(2){
    transition-delay: 900ms;
}
#entry ul li.move:nth-child(3){
    transition-delay: 1000ms;
}





@media print,screen and (min-width: 769px) {


    #entry{
        background-image: url(../entry/img/back.jpg);

    }



    #entry h3 span:nth-child(1){
        display: block;
        background-image: url(../entry/img/title1.png);
        -webkit-background-size: cover;
        background-size:cover ;
        background-position: center center ;
        width: calc(125px);
        height: calc(463px);
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -231px;
        text-indent: -9999px;
        overflow: hidden;
    }


    #entry h3 span:nth-child(2){
        display: block;
        background-image: url(../entry/img/title2.png);
        -webkit-background-size: cover;
        background-size:cover ;
        background-position: center center ;
        width: calc(840px);
        height: calc(131px);
        position: absolute;
        right: 0;
        bottom: 0;
        text-indent: -9999px;
        overflow: hidden;
    }
    #entry .inner{
        position: relative;
        width: 560px;
    }
    #entry .shoulder{
        color: #fff;
        text-align: center;
        font-size: 40px;
        font-weight: bold;
    }

    #entry .stit{
        margin-top: 40px;
        color: #009d4a;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content:space-between;
        -ms-align-items: center;
        align-items:center ;
    }
    #entry .stit img{
        width: 190px;
        height: 2px;
    }


    #entry ul{
        margin-top: 40px;
        border-bottom: 2px #009d4a solid;
        padding-bottom: 40px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content:space-between;
    }
    #entry ul li {
        margin-left: 10px;
        margin-right: 10px;
    }
    #entry ul li a{
        width: 160px;
        display: block;
        padding: 25px 0px;
        line-height: 1em;
        color: #009d4a;
        text-decoration: none;
        border: 4px #009d4a solid;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        background-color: rgba(0,0,0,0.3);
    }



    #entry h3 span:nth-child(1){
        transform:translateY(-50px);
    }
    #entry h3 span:nth-child(1).move{
        transform:translateY(0px);
    }


}




@media only screen and (max-width: 768px) {


    #entry{
        background-image: url(../entry/img/back_sp.jpg);
        height: 100vh !important;
    }




    #entry h3 span:nth-child(1){
        display: block;
        background-image: url(../entry/img/title1_sp.png);
        -webkit-background-size: cover;
        background-size:cover ;
        background-position: center center ;
        width: calc(70vw);
        height: calc(70vw / 443 * 120);
        position: absolute;
        left: 0;
        top: 0;
        text-indent: -9999px;
        overflow: hidden;
    }


    #entry h3 span:nth-child(2){
        display: block;
        background-image: url(../entry/img/title2.png);
        -webkit-background-size: cover;
        background-size:cover ;
        background-position: center center ;
        width: calc(90vw);
        height: calc(90vw / 840 * 131);
        position: absolute;
        right: 0;
        bottom: 0;
        text-indent: -9999px;
        overflow: hidden;
    }
    #entry .inner{
        position: relative;
        width: 70vw;
    }
    #entry .shoulder{
        color: #fff;
        text-align: center;
        font-size: 20px;
        font-weight: bold;
    }



    #entry .stit{
        margin-top: 40px;
        color: #009d4a;
        text-align: center;
        font-size: 5vw;
        font-weight: bold;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content:space-between;
        -ms-align-items: center;
        align-items:center ;
    }
    #entry .stit img{
        width: 12vw;
        height: 2px;
    }


    #entry ul{
        margin-top: 40px;
        border-bottom: 2px #009d4a solid;
        padding-bottom: 40px;
    }
    #entry ul li {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }
    #entry ul li a{
        display: block;
        padding: 5vw 0px;
        line-height: 1em;
        color: #009d4a;
        text-decoration: none;
        border: 3px #009d4a solid;
        font-size: 5vw;
        font-weight: bold;
        text-align: center;
        background-color: rgba(0,0,0,0.3);
    }



    #entry h3 span:nth-child(1){
        transform:translateY(-50px);
    }
    #entry h3 span:nth-child(1).move{
        transform:translateY(0px);
    }



}
