@charset "utf-8";
.mainContainer {
	position: relative;
}


/* top 버튼 */
.go_top {
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0; bottom: 100px;
    width: 70px; height: 70px;
    background-color: #1c1c1c;
}
.go_top span {
    display: block;
    margin-top: -2px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}
.go_top.end_top {
    position: absolute;
}
@media screen and (max-width: 767px) {
    .go_top {
        width: 44px; height: 44px;
    }
    .go_top img {
        width: 23px; height: 23px;
    }
    .go_top span {
        font-size: 12px;
        margin-top: -5px;
    }
}