@charset "UTF-8";

/*-------------------------------------------------------------------------------------------------------------------
    business.css
---------------------------------------------------------------------------------------------------------------------
*/

.business_index {
    font-size: 19px;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 8px;
    padding: 0 0 0 0;
    color: #006080;
    /*background-color: red;*/
}

.apparel_photo_container {
    display: flex;
    /*background-color: red;*/
}

.apparel_photo {
    width: calc((100% - 8px * 5) / 6);
    margin: 8px 8px 8px 0;
    border-radius: 4px;
    overflow: hidden;
}

.apparel_photo img {
    width: 100%;
    border-radius: 4px;
}


/*-------------------------------------------------------------------------------------------------------------------
    PC wide
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (min-width: 1920px) {
}

/*-------------------------------------------------------------------------------------------------------------------
    PC narrow
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 1000px) {
}

/*-------------------------------------------------------------------------------------------------------------------
    Tablet portrait
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 959px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone portrait
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 520px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
    .apparel_photo_container {
        display: flex;
        margin: 0 0 0 0;
    }

    .apparel_photo {
        margin: 8px 8px 0 0;
    }
}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone landscape
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 896px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
}
