@charset "UTF-8";
/* 商品一覧*/
/* main*/
h2 p{
    margin: 40px 0 30px;
    line-height: 1.2rem;
}
.list{
    margin-bottom: 20px;
}
.product-list{
    line-height: 1.2rem;
    padding: 5px;
}
.list li::before {
    display: inline-block;
    content: '';
    width: 6px;
    height: 6px;
    background-color: #293855;
    margin: 5px;
}

.list-box{
    width: 100%;
    overflow: hidden;
    margin-bottom: 100px;
}
.product{
    margin: 0 -20px -20px 0; /*ネガティブマージン*/
}
.product li {
 float: left;
 width: calc(100%/4 - 20px);
 height: auto;
 margin: 0 20px 20px 0;
}
.phto{
    width: 100%;
    height: 100%;
}
.product-p{
    margin: 40px 0 30px;
    line-height: 1.4;
}
.smartphoto {
    background-color: #444;
}
/*ｓｐスタイル*/
/*960以下*/
@media screen and (min-width:769px) and (max-width:960px){
    .product-inner{
        margin: 0 20px;
    }
    .product li {
         float: left;
         width: calc(100%/3 - 20px);
         height: auto;
    }
    
}
@media screen and (max-width: 768px){
    .product-p {
        margin: 30px 20px;
    }
    .list{
        margin: 0 20px 20px;
    }
    .product-list{
        line-height: 2rem;
        text-indent: -1em;
        padding-left: 1em;
    }
    .product li {
         float: left;
         width: calc(100%/2 - 40px);
         height: auto;
    }
    .product {
         margin: 0 -40px -20px 20px;
    }
}
  
  