@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.need-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.need-login .content {
    text-align: center;
}

.need-login .content h1 {
    margin-top: 24px;
    line-height: 30px;
    font-size: 24px;
    font-weight: normal;
}

.need-login .content p{
    margin-top: 4px;
    line-height: 20px;
    font-size: 14px;
    color: rgba(38, 45, 57, 0.32);
}

.need-login .content .img-kakao-t {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    background: url('../img/img_kakao_t.png');
    background-size: 80px 80px;
}

.need-login .content .img-main {
    margin-top: 80px;
    width: 480px;
    height: 87px;
    background: url('../img/img_main.png');
    background-size: 480px 87px;
}

.need-login .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);
}

.need-login .content .wrap-btn .btn-login {
    width: 100%;
    height: 52px;
    font-family: 'Apple SD Gothic Neo';
    font-weight: 600;
    color: #262D39;
    background-color: #FAE100;
    border-radius: 4px;
    user-select: none;
}

.need-login .content .wrap-btn .btn-login span {
    position: relative;
    padding: 1px 0 0 14px;
    display: inline-block;
}

.need-login .content .wrap-btn .btn-login span .icon-kakao-talk {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('../img/icon_kakao_talk.png');
    background-size: 24px 24px;
}

@media (min-width: 768px) {
    .need-login .content .wrap-btn {
        position: relative;
        margin: 96px auto 0;
        width: 320px;
        padding: 0;
    }
}