@charset "UTF-8";

.wrap{
    width: 100%;
    height: 100vh;
    background-image: url('../img/home_back.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.wrap a{
    color: white;
    font-size: 100px;
    font-family: "Rubik Mono One", monospace;
    font-weight: 400;
    font-style: normal;
}

.wrap a:hover{
    color: #AA231A;
}

.index{
    position: absolute;
    display: flex;
    flex-flow: column;
    right:0;
    bottom:0;
}

/* モバイル版　*/
@media (max-width: 600px) {
    .wrap{
        width: 100%;
        height: 100vh;
        background-image: url('../img/home_back_sm_2.png');
        background-position: bottom;
    }

    .wrap a{
        color: white;
        font-size: 60px;
        font-family: "Rubik Mono One", monospace;
        font-weight: 400;
        font-style: normal;
        margin-top: -10px;

        transform: rotate(-10deg);
        -moz-transform: rotate(-10deg);
        -webkit-transform: rotate(-10deg);
    }

    .index{
        bottom: 35vw;
        right: 5px;
    }
}