/*row-start/column-start/row-end/column-end*/
/*top right bottom left*/
@media screen and (orientation:portrait){
    header{
        grid-template-columns: 50px auto 50px;
    }
    header>div{
        grid-template-columns: 40px;
    }
    header>div>p{
        display: none;
    }
    div#groupListFrame{
        width: 80vw;
        width: 80dvw;
    }
    div#groupListFrame.hide{
        transform: translate(-80vw, 0);
        transform: translate(-80dvw, 0);
    }
    div#cartListFrame{
        width: 80vw;
        width: 80dvw;
    }
    div#cartListFrame.hide{
        transform: translate(80vw, 0);
        transform: translate(80dvw, 0);
    }
    div#body{
        left: 10px;
    }
    div#siteContent.V3_ItemList>div{
        width: 35vw;
        width: 35dvw;
        height: 55vw;
        height: 55dvw;
        grid-template-rows: auto 20px 15px;
    }
    div#siteContent.V3_ItemList>div>a{
        grid-template-rows: 35vw 10px calc(20vw - 45px);
        grid-template-rows: 35dvw 10px calc(20dvw - 45px);
    }
    div#siteContent.V3_ItemList>div>a>div:nth-of-type(3){
        font-size: 0.8rem;
    }
    div#siteContent.V3_ItemList>div>input:nth-of-type(1){
        font-size: 0.7rem;
    }
    div#siteContent.V3_ItemView{
        grid-template-columns: calc(100vw - 20px);
    }
    div#id_iv_big{
        height: 90vw;
        height: 90vdw;
    }
    div#id_iv_small>div{
        width: 15vw;
        width: 15vwd;
        height: 15vw;
        height: 15vwd;
    }
    div#siteContent.V3_CartView{
        grid-template-columns: 1fr;
    }
    div#siteContent.V3_OrderView{
        grid-template-columns: 1fr;
    }
}
