/* サンプルCSS */
html {
    font-size: calc(100vw / 375);
}
body{
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
    font-size: 16rem;
}
.mixin-wrapper-width{
    width: 100%;
    margin: 0 auto;
}
.mixin-width{
    margin: 0 auto;
}
@media screen and (min-width: 600px) {
    html {
        font-size: 1px;
    }
    body {
        -webkit-text-size-adjust: 100%;
    }
    .mixin-wrapper-width{
        max-width: 1400rem;
        min-width: 1000rem;
    }
    .mixin-width{
        padding: 0 20rem;
    }
}



/* Simple-Flick必須クラス */
.flick-list{
    width: fit-content;
    display: flex;
    position: relative;
    left: 0;
    transition: .5s all ease;
}
.flick-wrapper{
    overflow-x: hidden;
}
/* 左右ボタンの基本クラス（非アクティブ時のスタイルを想定） */
.flick-button{
    cursor: default;
    width: 40rem;
    height: 40rem;
    background-color: rgb(215, 215, 215);
}
/* 左右ボタンがアクティブ時に付与されるモディファイアー */
.flick-button--active{
    cursor: pointer;
    background-color: rgb(0, 145, 255);
}



/* 以下はサンプルCSS */
.test-block{
    margin-bottom: 100rem;
}
.test-block__item{
    background-color: rgb(67, 79, 211);
    width: 265rem;
    margin-right: 20rem;
    height: 100rem;
    flex-shrink: 0;
    flex-grow: 0;
}
.test-block__item2{
    background-color: rgb(207, 10, 33);
    width: 150rem;
    margin-right: 15rem;
    height: 100rem;
    flex-shrink: 0;
    flex-grow: 0;
}
.test-block__item:first-of-type{
    margin-left: 15rem;
}
.test-block__item:last-of-type{
    margin-right: 0;
}
.test-block__item2:first-of-type{
    margin-left: 15rem;
}
.test-block__item2:last-of-type{
    margin-right: 0;
}
.test-block__link{
    display: block;
    width: 100%;
    height: 100%;
}