@charset "UTF-8";

/* reset */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
button {
    margin: 0;
    padding: 0;
}

fieldset,
img {
    border: 0 none;
}

dl,
ul,
ol,
menu,
li {
    list-style: none;
}

input,
select,
textarea,
button {
    font-size: 100%;
    vertical-align: middle;
}

button {
    border: 0 none;
    background-color: transparent;
    cursor: pointer;
}

body {
    -webkit-text-size-adjust: none;
}

html,
body {
    width: 100%;
    height: 100%;
}

body,
th,
td,
input,
select,
textarea,
button {
    font-size: 16px;
    line-height: 22px;
    font-family: 'Roboto', 'AppleSDGothicNeo', 'Malgun Gothic', '맑은 고딕', 'dotum', '돋움', 'sans-serif';
    color: #262D39;
    outline: none;
}

a {
    color: #000;
    text-decoration: none;
}

a:active,
a:hover {
    text-decoration: none;
}

/* reset */
html {
    min-height: 100vh;
}

body {
    background-color: #F5F6F7;
}

.wrap {
    width: 100%;
    height: 100%;
}

.bg-gradient {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 300px;
    width: 100%;
    background: linear-gradient(359.72deg, rgba(38, 45, 57, 0.04) 0.13%, rgba(38, 45, 57, 0) 99.65%);
}

.wrap.temporary_error {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap.temporary_error {
    height: calc(100% - 68px);
}

.temporary_error .content {
    text-align: center;
}

.temporary_error .content .img-temporary-error {
    margin: 0 auto;
    width: 180px;
    height: 180px;
}

.temporary_error .content .img-temporary-error{
    background: url('../img/img_temporary_error.png');
    background-size: 180px 180px;
}

.temporary_error .content h1 {
    margin-top: 2px;
    font-weight: normal;
    line-height: 22px;
    font-size: 16px;
}

.temporary_error .content p {
    margin-top: 8px;
    font-size: 14px;
    line-height: 20px;
    color: rgba(38, 45, 57, 0.52);
}

.temporary_error .content .wrap-btn {
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 20px calc(constant(safe-area-inset-bottom) + 16px);
    padding: 0 20px calc(env(safe-area-inset-bottom) + 16px);
}

.temporary_error .content .wrap-btn .btn-ask {
    width: 100%;
    height: 52px;
    font-family: 'Apple SD Gothic Neo';
    font-weight: 600;
    color: #fff;
    background-color: #3581FF;
    border-radius: 4px;
    user-select: none;
}

@media (min-width: 768px) {
    .wrap.temporary_error {
        display: block;
        height: 100%;
    }

    .temporary_error .content {
        box-sizing: border-box;
        margin: 0 auto;
        padding-top: 160px;
        width: 320px;
    }

    .temporary_error .content .wrap-btn {
        position: relative;
        margin: 96px auto 0;
        padding: 0;
    }
}