@charset "UTF-8";

@media screen and (min-width: 901px) {
a[id^="sp-btn"]+div,
a[id^="m"]+div {
display: none;
}

a[id^="pc-m"]+div .items {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

a[id^="pc-m"]+div .items .inner_item:nth-of-type(2n-1) {
    margin-left: 40px;
}
}

@media screen and (max-width: 900px) {
a[id^="pc-btn"]+div,
a[id^="pc-m"]+div {
display: none;
}
}

/*--- 表示調整(2025/08/26) ---*/
@media only screen and (min-width: 901px) {
    #pc-m4+div .items,
    #pc-m5+div .items {
        flex-direction: row;
　　　　}
    #pc-m4+div .items .inner_item,
    #pc-m5+div .items .inner_item {
        width: calc((100% - 40px) / 2) !important;
    }
    #pc-m4+div .items .inner_item:nth-of-type(2n-1),
    #pc-m5+div .items .inner_item:nth-of-type(2n-1) {
        margin-left: 0;
    }
    #pc-m5+div .items .inner_item:nth-of-type(2n),
    #pc-m4+div .items .inner_item:nth-of-type(2n) {
        margin-left: 40px;
    }

    a[id^="pc-m"]+div .items {
        justify-content: flex-end;
    }
}