/**********************************************************
 * 뷰포트 해상도가 800px 이하인 경우 사용되는 코드
 * --------------------------------------------
 * main 영역에 있는 콘텐츠 대상
 */
/****************************************
 * 공지 팝업
 */
@media screen and (max-width: 500px) {
    .notice-popup {
        width: initial;
        left: 20px;
        right: 20px;
    }
    .notice-popup > span {
        padding-left: calc(100% - 35px);
    }
}
@media screen and (max-width: 400px) {
    .notice-popup {
        height: 200px;
        top: calc(50% - 100px);
    }
    .notice-popup > span {
        font-size: 2rem;
        padding-left: calc(100% - 28px);
    }
    .notice-popup > ul {
        padding-top: 20px;
        font-size: 1rem;
        line-height: 2rem;
    }
}
/*------------------------------------
 * 슬라이더
 */
@media screen and (max-width: 540px) {
    .slider-navi {
        font-size: 0.8rem;
    }
    .slider-navi > span:nth-of-type(1),
    .slider-navi > span:nth-of-type(5) {
        padding: 3px;
    }
}

/*****************************************
 * HOT ITEM
 */
.hot-item-title {
    margin-top: 50px;
    font-family: NanumSquareEB;
    font-size: 1.8rem;
}
.hot-item-list {
    grid: auto / 1fr 1fr;
    margin: 20px 15px;
}

/*--------------------------------------
 * 상품 정보
 */
.item > ul {
    font-size: 1.2rem;
}
.item > ul > li:nth-of-type(3) {
    font-size: 0.8rem;
}

@media screen and (max-width: 310px) {
    .item > ul {
        font-size: 1rem;
    }
    .item > ul > li:nth-of-type(3) {
        font-size: 0.6rem;
    }
}