@charset "UTF-8";


*.clsPhotoBody { width : 100% ; }

/* For PC or Tablet */
@media screen and ( min-width : 481px )
{
    *.clsPhotoGrid
    {
        display               : grid ;
        grid-template-columns : 25% 25% 25% 25% ;
        grid-template-rows    : auto ;
     }

    *.clsPhotoBox
    {
        padding          : 0.5em 0.5em 0.5em 0.5em ;
        text-align       : center ;
        background-color : transparent /* lightyellow */ ;
    }

    *.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 ; }
    *.clsPhotoBox4 { grid-area : 1 / 4 / span 1 / span 1 ; }
}


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

    *.clsPhotoGrid
    {
        display               : grid ;
        grid-template-columns : 50% 50% ;
        grid-template-rows    : auto auto ;
        grid-row-gap          : 0.5em ;
        padding               : 0 0 0.5em 0 ;
    }

    *.clsPhotoBox
    {
        padding          : 0.5em 0.5em 0.5em 0.5em ;
        text-align       : center ;
        background-color : transparent /* lightyellow */ ;
    }

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

