/* Simple-Flick必須クラス */
.flick-list{
    display: flex;
    position: relative;
    left: 0;
    transition: .4s all ease;
}
.flick-wrapper{
    overflow-x: hidden;
}
@media screen and (min-width: 600px), print{
    /* 要素が少ない時の中央揃えクラス */
    .flick-list--center{
        width: 100%;
        justify-content: center;
    }
    /* 左右ボタンの基本クラス（非アクティブ時のスタイルを想定） */
        .flick-button{
            display: none;
            width: 60rem;
            height: 60rem;
            border-radius: 30rem;
        }
    /* 左右ボタンがアクティブ時に付与されるモディファイアー */
    .flick-button--active{
        display: block;
        cursor: pointer;
        background-color: var(--mgLogoBlue);
    }
}