/* カスタマイズ用CSS */
/* Instagram */
#insta ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0 100px 100px;
    justify-content: center;
}
#insta li {
    list-style: none;
    width: 20%;
    padding-right: 1px;
    padding-bottom: 1px;
}

@media screen and (max-width: 768px) {
    #insta {
        margin-bottom: 50px;
    }
    #insta ul {
        padding: 0;
    }
    #insta li {
        list-style: none;
        width: 33%;
    }
    #insta li:nth-child(n+10){   /* スマホ時の表示件数指定 */
        display:none;
    }
}

#insta img {
    max-width: 100%;
    height: auto;
    display: block;
}
#insta li a {
    position: relative;
    display: block;
}
#insta li a .like {
    display: none !important;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6em;
    color: #fff;
    opacity: 0.9;
    text-shadow: 0 0 7px #000;
}
#insta li a .like i {
    font-size: 0.8em;
}
#insta li a .like i:before {
    margin-right: 0.2em;
}
#insta h1 {
    text-align: center;
    font-size: 30px;
    font-weight:bold;
    padding: 30px;
    color:#333;
}

#h1:before {
font-weight: 900;
}