body{
    overflow-y: hidden;
    position: relative;
}
body > *{
    font-family: 'Noto Sans KR', sans-serif;
}

header{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 240px;
    height: 100vh;
    background-color: #b28850;
}
header #logo{}
header #logo h1{
    margin-top: 30px;
}

header #menu{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
header #menu ul{}
header #menu ul li{
    width: 100%;
}
header #menu ul li a{
    color: #ddd;
    font-size: 16px;
    padding: 10px 0px;
    border-bottom: 1px solid white;
    width: 140px;
    font-weight: bold;
    color: white;
}
header #menu ul li a.on{
}

header .tel{
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
}
.snsfixed{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #000000aa;
}
.snsfixed i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 30px;
    color: #eee;
}
@media only screen and (min-height:100px) and (max-height:600px){
    header #menu{
        position: static;
        top: 0%;
        left: 0%;
        transform: none;
        margin-top: 50px;
    }
    header .tel{
        position: static;
        top: 0%;
        left: 0%;
        transform: none;
        margin-top: 115px;
    }
}


@media only screen and (min-width:100px) and (max-width:499px){
    body > .re{
        display: block;
    }
}
















