#cookieConsent {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 1.4rem;
    color: #fff;
    background: rgba(0, 0, 0, .7);
    padding: 1.2em;
    box-sizing: border-box;
    visibility: hidden;
    z-index: 10000;
}

#cookieConsent.is-show {
    visibility: visible;
}

#cookieConsent a {
    color: #fff;
    text-decoration: underline;
    transition: all .3s;
}

#cookieConsent a:hover,
#cookieConsent a:active {
    color: #0095da;
    text-decoration: none;
}

#cookieConsent.cc-hide1 {
    display: none;
}

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

@keyframes hide {
    from {
        opacity: 1;
    }

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

#cookieAgree {
    color: #333;
    background: #0095da;
    padding: .5em 1.5em;
}

#cookieClose {
    width: 20px;
    height: 20px;
    background: #333;
    position: absolute;
    top: -20px;
    right: 0;
}

#cookieClose::before,
#cookieClose::after {
    display: block;
    content: "";
    width: 2px;
    height: 15px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}

#cookieClose::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

#cookieClose::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.cookieBtn {
    cursor: pointer;
}

/* -------------------------------------------------- */
/* IE対応 */
/* -------------------------------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {}

/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
    #cookieConsent {
        font-size: 1.2rem;
    }
}

/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {}

/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
    #cookieConsent {
        font-size: 1.1rem;
        column-gap: 10px;
    }
}