@charset "UTF-8";

body{
	min-width: auto;
}
.container {
	width: 100%;
	min-height: 100vh;
	padding: 0;
}
.errorbox {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}
.errorbox .imgbox {
    margin: 0 auto;
    width: 80px;
}
.errorbox .imgbox img {
    width: 100%;
}
.errorbox p {
    text-align: center;
}
.errorbox .big_txt {
    margin: 30px 0 20px;
    font-weight: bold;
    font-size: 22px;
}
.errorbox .small_txt {
    font-size: 16px;
    line-height: 1.4;
}
.error_btnbox {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.error_btnbox button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 150px;
    height: 42px;
    padding: 0 10px;
    border-radius: 7px;
    font-weight: bold;
}
.error_btnbox button + button {
    margin-left: 10px;
}
.error_btnbox .bd_black {
    border: solid 1px #1f1f1f;
    color: #1f1f1f;
}
.error_btnbox .bg_black {
    background-color: #1f1f1f;
    color: #fff;
    font-weight: normal !important;
}

@media screen and (max-width: 360px) {
    .errorbox .imgbox {
        margin: 0 auto;
        width: 60px;
    }
    .errorbox .big_txt {
        margin: 20px 0 10px;
    }
    .errorbox .big_txt {
        font-size: 18px;
    }
    .errorbox .small_txt {
        font-size: 14px;
    }
    .error_btnbox button {
        max-width: 120px;
    }
}
