@charset "UTF-8";
/*
Template: swell
Theme Name: SWELL CHILD infinite-scroll-style
Description: infinite scrollのスタイル
*/

/*infinite scrollCSSここから*/
#more-button {
    display: block;
    width: 90%;
    max-width: 300px;
    height: 50px;
    margin: 10px auto 0;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #000;
    color: #000;
}

#more-button:after {
    font-family: icomoon;
    content: "\e910";
    padding-left: 5px;
    position: absolute;
}

#more-button:hover {
    background: #333333;
    color: #fff;
    transition: .5s;
}

.scroller-status {
    display: none;
    margin: 20px 0 0;
}

.infinite-scroll-request {
    animation: scroll-request 1.1s infinite linear;
    border: 4px solid #000;
    border-left: 4px solid #fff;
    border-radius: 50%;
    height: 48px;
    margin: auto;
    width: 48px;
}

@keyframes scroll-request {
    0% {
transform: rotate(0deg);
    }

    100% {
transform: rotate(360deg);
    }
}

.infinite-scroll-last,
.infinite-scroll-error {
    color: #757575;
    text-align: center;
}

#post_list_tab_1 .p-postList__item {
    transition: 800ms;
}
/*infinite scrollCSSここまで*/