@font-face {
    font-family: 'Main';
    src: url('fonts/Comfortaa-Bold.woff2') format('woff2'),
         url('fonts/Comfortaa-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html,body{
    width: 100%;
}
.app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    background-image: url(./image/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; font-family: 'Main';
}
.app .logo{
    top: 12%;
    position: absolute;
    width: 13%;
    left: 5%;
    z-index: 1;
}

.logo img {
    width: 100%;
}

.girls{
    position: absolute;
    width: 35%;
    bottom: -9%;
    left: 32.5%;
    z-index: 1;
}
.girls img {width: 100%;}
.list{
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -14%;
    left: 0;
}
.list img {
    width: 100%;
}
.button {
    position: absolute;
    width: 20%;
    bottom: 5%;
    left: 40%;
    animation: btn 1s linear;
    animation-iteration-count: infinite;
    z-index: 1;
}
.button:hover .button-wrapper img:last-child {
    opacity: 1;
}
.button img{width: 100%;}
.button .button-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
}

.button .button-wrapper img:last-child {
    position:absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all ease .4s;
}
.button:hover .button-wrapper img:last-child {
    opacity: 1;
}

@keyframes btn {
    from{transform: scale(1,1)}
    50%{transform: scale(1.1,1.1)}
    to{transform: scale(1,1)}
}
@keyframes notice {
    from{transform: translateY(-100%)}
    to{transform: translateY(0)}
}

.notice{
    background: #480fc9;
    background: -moz-linear-gradient(top, #480fc9 0%, #7F3AF0 100%);
    background: -webkit-linear-gradient(top, #480fc9 0%, #7F3AF0 100%);
    background: linear-gradient(to bottom, #480fc9 0%, #7F3AF0 100%);
    position: relative;
    transform: translateY(-100%);
}
.notice-logo1{
    width: 10%;
    position: absolute;
    top: 8%;
    left: 3%;
}
.notice-logo2{
    width: 8%;
    position: absolute;
    top: 7%;
    right: 3%;
}

.notice-logo1 img {width: 100%;}
.notice-logo2 img {width: 100%;}
.notice p {
    color: #f2f1ec;
    width: 65%;
    margin: 0 auto;
    font-size: 1.1em;
    padding: 25px;
    letter-spacing: 2px;
    text-align: center;
}
.notice_active{
    animation: notice .7s ease;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 1400px) {
    .notice-logo1 {
        top: 18%;
        left: 2%;
    }

    .notice-logo2 {
        width: 10%;
        top: 12%;
    }
}

@media screen and (max-width: 900px), (width: 1024px) and (height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation : portrait) {
    .girls {
        width: 90%;
        position: absolute;
        bottom: -9%;
        left: 5%;
    }

    .app .logo {
        width: 35%;
        position: absolute;
        top: 5%;
        left: 5%;
    }

    .button {
        width: 50%;
        position: absolute;
        bottom: 2%;
        left: 24%;
    }
}

@media screen and (max-width: 700px), (height: 768px) and (width: 1024px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape) {
    .girls {
        position: absolute;
        width: 55%;
        bottom: -9%;
        left: 23%;
        z-index: 1;
    }

    .app .logo {
        width: 25%;
        position: absolute;
        top: 5%;
        left: 5%;
    }

    .button {
        width: 30%;
        position: absolute;
        bottom: 2%;
        left: 35%;
    }
}

@media screen and (max-width: 900px), (height: 1024px) and (width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) and (orientation: landscape) {
    .girls {
        position: absolute;
        width: 55%;
        bottom: -9%;
        left: 23%;
        z-index: 1;
    }

    .app .logo {
        width: 25%;
        position: absolute;
        top: 5%;
        left: 5%;
    }

    .button {
        width: 30%;
        position: absolute;
        bottom: 2%;
        left: 35%;
    }
}

@media screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    .girls {
        width: 90%;
        position: absolute;
        bottom: -9%;
        left: 5%;
    }

    .app .logo {
        width: 35%;
        position: absolute;
        top: 5%;
        left: 5%;
    }

    .button {
        width: 50%;
        position: absolute;
        bottom: 2%;
        left: 24%;
    }
}

@media screen and (max-width:415px) {
    .app .logo{
        top: 2%;
        position: absolute;
        width: 50%;
        left: 25%;
        z-index: 2;
    }
    .girls{
        position: absolute;
        width: 120%;
        bottom: -1%;
        left: 0%;
    }
    .girl2 {
        width: 80%;
        left: 10%;
        display: none;
    }
    .girl1 {
        
        left: -10%;
    }
    .list{display: none;}
    .button {
        position: absolute;
        width: 80%;
        bottom: 5%;
        left: 10%;
       
    }
    .notice-logo1{
        display: none;
    }
    .notice-logo2{
        width: 10%;
        position: absolute;
        top: 20%;
        left: 88%;
        display: none;
    }
    .notice p {
        color: #f2f1ec;
        width: 95%;
        margin: 0 auto;
        font-size: .9em;
        padding: 10px;
        letter-spacing: 2px;
    }
}