@charset "UTF-8";

*{
  margin:0;
  padding:0;
}

/*全デバイス共通*/

.products_main_visual{
    width:100%;
    margin-bottom:100px;
  }

  .products_main_visual img{
    width:100%;
  }
  
  .products h3{
    margin-bottom:30px;
    padding:10px 20px;/*文字周りの余白*/
    color: #3c3c3c;/*文字色*/
    background: #EBF6FF;/*背景色*/
    border-left: solid 10px #0081E0;
    text-align:left;
    margin-left:10px;
    margin-right:10px;
   }

p{
 font-size:1.2em;
}

.products{
 text-align:center;
 margin-bottom:100px;
}

.products-img{
  text-align:center;
 margin-bottom:90px;
}

.products-img img{
 width:40%;
 text-align:center;
 margin-bottom:30px;

}

.products-img .name{
  color:#3c3c3c;
  font-size:1em;
  margin-bottom:60px;
}



/*767pxまで適用*/
@media (max-width:768px){
    

    .products-img img{
        width:60%;
        display:block;
        margin:0 auto;
    }

    .products-img .sub{
       text-align:left;
       margin:0 auto;
    }

}

