.insta_heading {
    margin-bottom: 15px;
  }
#insta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

#insta .card {
    width: 22%;
    justify-content: space-between; 
    margin: 10px;
  }
@media (max-width: 768px) {
  /* デバイスサイズ 768px以下に適用 */
    #insta .card {
    width: 30%;
    justify-content: space-between;    
  }
@media (max-width: 480px) {
  /* デバイスサイズ 768px以下に適用 */
    #insta .card {
    width: 40%;
    justify-content: space-between;    
  }  
}




