#cookie-consent {
    font-family: source-han-sans-japanese, sans-serif;
    display: block;
    justify-content: center;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 14px;
    background: #fff;
    padding-left: 1rem;
    border-top: 2px solid #353535;
    box-sizing: border-box;
    visibility: hidden;
    z-index: 50;
}

#cookie-consent.is-show {
    visibility: visible;
}

#cookie-consent .cookie-text{
    font-size: 13px;
    color: #353535;
}

#cookie_buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-consent_btn {
    border: 2px solid #353535 !important;
    color: #353535;
    display: inline-block;
    font-size: 1rem;
    line-height: 50px;
    font-family: Meiryo, sans-serif;
    font-weight: 900;
    height: 50px;
    min-width: 30%;
    padding: 0 20px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
    background-color: transparent;
    transition: background 0.3s cubic-bezier(1, 0, 0, 1), color 0.3s cubic-bezier(1, 0, 0, 1);
}

#cookie-reject {
    color: #8e8e8e;
    transition: color 0.3s;
    border: 2px solid #8e8e8e !important;
}

/* パッと消える */
.cc-hide1 {
    display: none;
}

/* ゆっくり消える */
.cc-hide2 {
    animation: hide 1s linear 0s;
    animation-fill-mode: forwards;
}

@keyframes hide {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* メディアクエリ */
@media screen and (min-width: 481px) {
    #cookie-consent {
        width: 100%;
        padding-right: 1.5rem;
        line-height: 2rem;
    }
}

@media screen and (max-width: 480px) {
    #cookie-consent {
        padding-right: 1rem;
        line-height: 1.5rem;
        max-width: -webkit-fill-available;
        overflow-wrap: break-word;
    }
}

@media screen and (min-width: 481px) {
    .cookie-consent_btn {
        margin: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .cookie-consent_btn {
        margin: 1rem;
    }
}

.cookie-consent_btn:hover {
    color: #fff;
    background-color: #353535;
}

/*# sourceMappingURL=styles.css.map */