@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&family=M+PLUS+1p&family=M+PLUS+Rounded+1c&family=Noto+Sans+JP:wght@100..900&family=Stick&display=swap');
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700");
@import url("https://cdn.nicovideo.life/font/font.css");
body{
    font-family: "SF Pro JP Display", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.cookie-consent {
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    bottom: -200px;
    box-sizing: border-box;
    display: flex;
    font-family: SF Pro Display Regular, -apple-system, BlinkMacSystemFont, Hiragino Kaku Gothic ProN, sans-serif;
    font-size: 12px;
    justify-content: space-between;
    left: 5%;
    padding: 1.2em;
    position: fixed;
    transition: .5s;
    visibility: visible;
    width: 90%;
    z-index:1000
}

.cookie-consent.is-show {
    bottom:30px
}

.cookie-text {
    width:90%
}

.cookie-agree {
    background: #1e90ff;
    color: #fff;
    padding:.5em 1.5em
}

.cookie-agree:hover {
    cursor:pointer
}

.cc-hide1 {
    display:none
}

.cc-hide2 {
    animation: hide 1s linear 0s;
    animation-fill-mode:forwards
}

@keyframes hide {
    0% {
        opacity:1
    }

    to {
        opacity: 0;
        visibility:hidden
    }
}

@media screen and (max-width: 650px) {
    .cookie-consent {
        flex-direction: column;
        left: calc(50% - 150px);
        width:300px
    }

    .cookie-text {
        margin-bottom: 1em;
        width: 100%
    }
}
