@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

/* 초기 설정 */
* {
    margin: 0;
    padding: 0;
    font-family: 'Noto sans KR', sans-serif;
    color: #333;
}

img {
    vertical-align: top;
}

html,
body {
    overflow-x: hidden;
}

body{
    background-color: #727272;
}
body.on,html.on{
    overflow: hidden;
    width: 100%;
    height: 100vh;
    min-height: 100%;
    
}
ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
    margin: 0;
}

.row {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

.view-768 {
    display: none !important
}

.hide-768 {
    display: block !important
}

.view-1210 {
    display: none !important
}

.hide-1210 {
    display: block !important
}

.d-flex.hide-1210 {
    display: flex !important
}

span.hide-1210 {
    display: inline !important
}
.hide-600{
    display:block
}
.view-600{
    display:none
}


.wrap-1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.wrap-760 {
    width: 100%;
    max-width:760px;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}
.wrap-1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}
/* 초기 설정 */
.top{
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 999999;
    width: 45px;
    height: 45px;
}
.top-wrap {
    width: 100%;
    max-width: 760px;
    padding:10px;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    z-index: 999;
}

/* header */
header{
   position: absolute;
   top: 0;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    z-index: 9999;

}
header .header-top{
    padding: 30px;
}
header .header-top .menu{
    cursor: pointer;
    position: relative;
    z-index: 9999;
}
header .menu-wrap{
    width: 350px;
    height: 100vh;
    background-color: #35b8e3;
    position: absolute;
    top: 0;
    z-index: 999;
    right: -100%;
    transition: .3s;
}
header .menu-wrap.on{
    right:0;
}

header .thumb{
    padding-top: 98px;
    width: 100%;
    height: 100vh;
    background-color: #35b8e3;
    padding-left: 4em;
    margin-left: auto;
}
header .thumb>li{
    padding-bottom: 50px;
}
header .thumb li span{
    display: block;
    font-size: 25px;
    padding-bottom: 10px;
    color: #fff;
    border-bottom: 1px solid #fff;
}
header .thumb .thumb-list li {
    font-size: 20px;
    color: #fff;
    padding: 5px 0;
    padding-left: 25px;
    cursor: pointer;
}
header .thumb .thumb-list li:first-child{
    padding-top: 10px;
}
header .thumb .thumb-list li:hover{
    background-color: #fff;
    color:#35b8e3 ;
}

header h1 img{
    display: block;
}
footer{
    background-color: #282828;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}
footer .f-top{
    padding: 30px;

}
footer .f-top p{
    font-size: 15px;
    color: #fff;
}
footer .f-top p span{
    font-size: 12px;
    color: #c4c4c4;
}
footer .f-top a{
    display: block;
    color: #fff;
    background-color: #727272;
    width: 166px;
    font-size: 13px;
    text-align: center;
    border-radius: 34px;
    padding: 10px 0;
}
@media(max-width:600px){
    header .thumb{
        padding-top: 50px;
    }
    header .thumb>li{
        padding-bottom: 25px;
    }
    header .thumb li span{
        font-size: 20px;
    }
    header .header-top,footer .f-top{
        padding: 10px 10px;
    }
    header h1 img{
        height: 25px;
    }
    header .header-top .menu img{
        height: 30px;
    }
    .hide-600{
        display:none
    }
    .view-600{
        display:block
    }
    footer .f-top a{
        font-size: 10px;
    }
    footer .f-top p{
        font-size: 12px;
    }
    footer .f-top p span{
        font-size: 12px;
    }
}