/* bnr
*************************************************** */
.followbnr {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: max(calc(320 / 1280 * 100vw), 320px);
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-out;
}
.followbnr.show {
    opacity: 1;
    pointer-events: auto;
}
.followbnr.hide {
    opacity: 0;
    pointer-events: none;
}
.followbnr.morehide {
    display: none !important;
}
.followbnr--link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 767px) {
    .followbnr {
        bottom: 18px;
        right: inherit;
        left: 50%;
        transform: translateX(-50%);
        width: calc(354 / 375 * 100vw);
        bottom: 1rem;
    }
    .followbnr--close {
        top: calc(-10 / 375 * 100vw);
        right: calc(-8 / 375 * 100vw);
        width: calc(26 / 375 * 100vw);
        height: calc(26 / 375 * 100vw);
        background-color: #fff;
        border-radius: 50%;
        z-index: 1;
        position: absolute;
    }
    .followbnr--close::before,
    .followbnr--close::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 60%; /* 18px */
        height: 1px;
        background-color: #333;
    }
    .followbnr--close::before {
        transform: rotate(45deg);
    }
    .followbnr--close::after {
        transform: rotate(-45deg);
    }
}
@media screen and (min-width: 768px) {
    .followbnr--close {
        top: calc(-7 / 1280 * 100vw);
        right: inherit;
        left: calc(-8 / 1280 * 100vw);
        width: calc(16 / 1280 * 100vw);
        height: calc(16 / 1280 * 100vw);
        background-color: #fff;
        border-radius: 50%;
        z-index: 1;
        position: absolute;
    }
    .followbnr--close::before,
    .followbnr--close::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 60%; /* 18px */
        height: 1px;
        background-color: #333;
    }
    .followbnr--close::before {
        transform: rotate(45deg);
    }
    .followbnr--close::after {
        transform: rotate(-45deg);
    }
}
