/* ボタン全体の外枠指定 */
.snsbtniti {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    max-width: 350px;
    margin: 0 auto;
}

/* ulタグの内側余白なしと箇条書きの黒丸削除 */
ul.snsbtniti {
    padding: 0!important;
    list-style-type: none!important;
}

/* ボタン同士の余白調整 */
.snsbtniti li {
    flex: 0 0 33%; /* 並べるボタンの数 */
    text-align: center!important;
}

/* ボタン全体 */
.flowbtn30 {
    font-family: 'Noto Sans Japaneses', sans-serif;
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    font-size: 35px;
    border-radius: 13px;
    transition: .5s;
    text-decoration: none;
}

/* アイコンをど真ん中へ */
.flowbtn30 i {
    position: absolute;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.flowbtn30 i.fa-x-twitter {
    top: 11.5%;
    left: 10.5%;
    transform: scale(0.85, 0.85);
}

.flowbtn30 i.fa-instagram {
    top: 0.5%;
    left: 5.5%;
    transform: scale(0.8, 0.8);
}

/* マウスホバー時、ボタン内を白に指定 */
.flowbtn30:hover {
    text-decoration: none;
    cursor: pointer;
    color: #fff;
}

/* エックス枠線 */
.flowbtn30.my_x2 {
    border: solid 1px #000;
    color: #000;
}
/* エックスマウスホバー時 */
.flowbtn30.my_x2:hover{
    border: solid 1px #000;
    background-color: #000;
    color: #FFF;
}

/* Instagram枠線 */
.flowbtn30.my_instagram2{
    border:solid 1px #c6529a;
    color: #c6529a;
}
/* Instagramマウスホバー時 */
.flowbtn30.my_instagram2:hover {
    border: solid 1px #c6529a;
    background: linear-gradient(45deg, rgba(254,212,117,1) 0%,rgba(229,61,93,1) 50%,rgba(194,49,134,1) 70%,rgba(156,56,187,1) 100%);
    color: #FFF;
}

/*インスタアイコンを少し大きく */
.flowbtn30 i.fa-brands.fa-instagram {
    font-size: 45px;
}

