@charset "UTF-8";

/* page-not-found ------------------*/

#page-not-found {
    padding: 7% 0;
    position: relative;
}

#page-not-found .inner {
    max-width: 1000px;
    text-align: center;
    padding: 0 20%;
    margin: 0 auto;
    position: relative;
}

#page-not-found .inner::after {
    content: "";
    background: url(../img/common/img_deco16.png) no-repeat center top;
    background-size: 100% auto;
    width: 204px;
    height: 280px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(100% - 204px);
}

#page-not-found .ttl {
    font-size: 240%;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 6%;
}

#page-not-found .txt-blc {
    font-size: 120%;
    margin-bottom: 6%;
}

@media screen and (max-width: 1300px) {
    #page-not-found .inner::after {
        width: 15.6vw;
        height: 21.6vw;
        left: calc(100% - 15.6vw);
    }
}

@media screen and (max-width: 1000px) {
    #page-not-found .ttl {
        font-size: 180%;
    }
    #page-not-found .txt-blc {
        font-size: 110%;
    }
}

@media screen and (max-width: 480px) {
    #page-not-found .ttl {
        font-size: 150%;
    }
    #page-not-found .inner {
        padding: 0;
    }
    #page-not-found .inner::after {
        display: none;
    }
}