/**********************************************************
 * 뷰포트 해상도가 801px 이상인 경우 사용되는 코드
 * --------------------------------------------
 * header, main, footer 영역에 있는 주요 요소가 대상
 */

/******************************
 * default
 */

/* 맨처음 로드될때 다이어리 가운데 오게 */
@media screen and (max-width: 900px) {
    .diary {
        left: -6vw;
    }
}


 /******************************
 * Header 영역
 */
.header-wrapper {
     width: 100%;
}
.header {
    width: 100%;
    min-width: 801px;
    max-width: 1200px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}
.header-logo {
    position: absolute;
    left: calc(50% - 70px);
    top: 25px;
    margin: 0;
    width: 140px;
    height: 50px;
    cursor: pointer;
}
.header-logo > a:link, .header-logo > a:visited {
    text-decoration: none;
    color: #FFFAEB;
}
.header-navi-toggle {
    position: absolute;
    right: 20px;
    top: 25px;
    width: 150px;
    height: 50px;
    border-radius: 10px 10px 0 0;
    background: rgba(255, 255, 255, 0.5);
    text-align: center;
    z-index: 10;
    cursor: pointer;
}
.header-navi-toggle > div {
    width: 150px;
    height: 30px;
    line-height: 30px;
    border-radius: 10px 10px 0 0;
    background: rgba(255, 250, 235);
    font-family: NanumGothicBold;
    color: #000;
}
.header-navi-toggle, .header-navi {
    transition: 0.3s;
}
.header-navi {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    position: absolute;
    right: 20px;
    top: 25px;
    /* display: none이 아니라 height 0이었다가 체크박스가 체크되면 높이가 생기게 */
    height: 0;
    width: 150px;
    overflow: hidden;
}
.header-navi > li {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    font-family: NanumGothicBold;
    z-index: 10;
    cursor: pointer;
}
.header-navi > li:nth-child(1) {
    top: 55px;
}
.header-navi > li:nth-child(2) {
    top: 115px;
}
.header-navi > li:nth-child(3) {
    top: 175px;
}


/******************************
 * Main 영역
 */
.main-wrapper {
    width: 100%;
}
.main {
    width: 100%;
    min-width: 801px;
    max-width: 1200px;
    min-height: 500px;
    margin: 0 auto;
}



/******************************
 * Footer 영역
 */
.footer-wrapper {
    width: 100%;
    display: none;
}
.footer {
    width: 100%;
    min-width: 801px;
    max-width: 1200px;
    min-height: 50px;
    margin: 0 auto;
}
.footer > p {
    text-align: center;
    line-height: 50px;
    color: #666;
    margin: 8px;
}