body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: #fff;
}
a:hover{
    text-decoration: none;
}

.pc{
    display: block;
}
.mobile{
    display: none;
}




.wrap{
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.bg img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-btn{
    position: absolute;
    bottom: 40%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.download-btn a img{
    display: block;
    width: 250px;
    object-fit: cover;
}



@media (max-width: 768px) {
    .pc{
        display: none;
    }
    .mobile{
        display: block;
    }

    .download-btn{
        bottom: 25vh;
        transform: translate(-50%, 0);
        gap: 5vh;
    }
    .download-btn a img{
        width: 22vh;   
    }
}