@charset "UTF-8";

#contents .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#contents .head .productslogo {
    font-size: 24px;
    width: 960px;
    margin: 0 auto;
}

#contents .head .productslogo a {
    color: #000000;
}

#contents .head .productslogo span {
    margin-left: 15px;
}

#contents .head .productslogo span:before {
    display: inline-block;
    content: "";
    background-color: #444444;
    width: 2px;
    height: 30px;
    vertical-align: middle;
    margin-right: 15px;
}

@media screen and (max-width: 767px) {
    #contents .head {
        display: block;
        width: 100%;
    }
    
    #contents .head .productslogo {
        width: 100%;
        font-size: 4.6875vw;
    }
    
        #contents .head .productslogo span {
        margin-left: 7.5px;
    }
    
    #contents .head .productslogo span:before {
        width: 1px;
        height: 10px;
        margin-right: 7.5px;
        padding: 2% 0;
    }
}