@charset "utf-8";

.secCmnIndexTop{
    background: #f8f7f6;
    color:var(--textColor);
}


/* secNotfound */
.secNotfound{
    text-align: center;
    padding: 100px 0 150px;
}
.secNotfound .tit{
    position: relative;
    font-size: 25px;
    line-height: 1.5;
    font-weight: bold;
}
.secNotfound .txt{
    font-size: 18px;
    line-height: 1.5;
    margin-top: 30px;
}
.secNotfound .btnBack{
    display: block;
    text-decoration: none;
    width: 500px;
    color: var(--textColor);
    border-radius: 100px;
    margin: 0 auto;
    font-weight: bold;
    border: 1px solid var(--textColor);
    opacity: 1;
    pointer-events: all;
    background: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    padding: 19px 0;
    text-align: center;
    margin-top: 40px;
    max-width: 100%;
}
@media only screen and (max-width:767px){
    .secNotfound{
        text-align: center;
        padding: 50px 0 0px;
    }
    .secNotfound .tit{
        font-size: 18px;
    }
    .secNotfound .txt{
        font-size: 14px;
        margin-top: 20px;
        text-align: left;
    }
    .secNotfound .btnBack{
        width: 100%;
        font-size: 14px;
        padding: 15px 0;
        margin-top: 28px;
    }
}