@charset "UTF-8";
/* 製品品質 */

.sekkei-wrap
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.sekkei-wrap div
{
    flex: 0 1 49%;
    text-align: center;
    margin-right: 1%;
    margin-bottom: 1%;
}

.sekkei-wrap div:last-child
{
    flex: 0 1 49%;
    text-align: center;
    margin-right: 0%;
}

.sekkei-wrap div a
{
    display: block;
    border: 1px solid #ccc;
    padding: 5px;
    background: #333333;
    color: #fff;
    border-radius: 3px;
    text-decoration: none; 
    letter-spacing: 1px;
    transition: 0.5s;
    
}

.sekkei-wrap div a:hover
{
    display: block;
    border: 1px solid #04193A;
    padding: 5px;
    background: #fff;
    color: #04193A;
    border-radius: 3px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
}
@media only screen and (min-width: 544px) {
    
    .sekkei-wrap
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.sekkei-wrap div
{
    flex: 0 1 32%;
    text-align: center;
    margin-right: 1%;
}

.sekkei-wrap div:last-child
{
    flex: 0 1 32%;
    text-align: center;
    margin-right: 0%;
}
}
@media only screen and (min-width: 768px) {
    
    .sekkei-wrap
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.sekkei-wrap div
{
    flex: 0 1 19%;
    text-align: center;
    margin-right: 1%;
}

.sekkei-wrap div:last-child
{
    flex: 0 1 19%;
    text-align: center;
    margin-right: 0%;
}
}
@media only screen and (min-width: 992px) {}
@media only screen and (min-width: 1200px) {}