@charset "UTF-8";

h2
{
    text-align : center ;
}


#idTblItems
{
    background-color : transparent /* skyblue */ ;
}

*.clsItemNam
{
    font-family  : "MS Gothic", "Osaka-Mono", monospace ;
    border-style : none ;
    border-width : thin ;
    border-color : yellow ;
}

*.clsItemVal
{
    padding      : 0 0 0.5em 0 ;
    border-style : none ;
    border-width : thin ;
    border-color : yellow ;
}

*.clsPhotoBox
{
    padding    : 0 0 0.5em 0 ;
    border-style : none ;
    border-color : red ;
    border-width : thin ;
}

*.clsPhotoBody { width : 100% ; }


/* For PC or Tablet */
@media screen and ( min-width : 481px )
{

    #colName  { width :  5.5em ; }
    #colValue { width : 30.5em ; }

    *.clsPhotoArea
    {
        width                 : 96% ;
        margin                : auto ;
        /* padding               : 0 0 10px 0 ; */
        display               : grid ;
        grid-template-columns : 32% 32% 32% ;
        grid-template-rows    : auto ;
        grid-column-gap       : 2% ;
     }

    *.clsPhotoBox1 { grid-area : 1 / 1 / span 1 / span 1 ; }
    *.clsPhotoBox2 { grid-area : 1 / 2 / span 1 / span 1 ; }
    *.clsPhotoBox3 { grid-area : 1 / 3 / span 1 / span 1 ; }
}


/* For Smartphone */
@media screen and ( max-width : 480px )
{
    h1 { font-size : x-large ; }

    #colName  { width : 5.25em ; }

    *.clsPhotoArea
    {
        width  : 90% ;
        margin : auto ;
    }
}

