.cookie-pop-up {
    /* widthを100％にするとiframeにバグが発生するためマイナス1pxにしています */
    width: calc(100% - 1px);
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    background-color: #1e1e1e;
    color: #fff;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
    z-index: 999;
    font-weight: 400;
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Arial, sans-serif;
    line-height: 1.6875;
    font-size: 10px;
    -webkit-font-smoothing: antialiased;
}

@media print, screen and (min-width: 48em) {
    .cookie-pop-up {
        font-size: 14px;
    }
}

.cookie-pop-up__inner {
    max-width: calc(1489px + 70px);
    margin: 0 auto;
    padding: 10px;
    position: relative;
    gap: 58px;
}

@media print, screen and (min-width: 48em) {
    .cookie-pop-up__inner {
        padding: 25px 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.cookie-pop-up__text {
    margin: 0 0 10px;
    line-height: 1.6875;
}

@media print, screen and (min-width: 48em) {
    .cookie-pop-up__text {
        margin-bottom: 0;
    }
}

.cookie-pop-up__link {
    color: #797979;
    font-weight: 700;
    -webkit-transition: color 0.3s ease-out, opacity 0.3s ease-out;
    -o-transition: color 0.3s ease-out, opacity 0.3s ease-out;
    transition: color 0.3s ease-out, opacity 0.3s ease-out;
}

.cookie-pop-up__link:hover {
    color: #fff;
    opacity: 0.7;
}

.cookie-pop-up__accept-button {
    width: 100%;
    height: 30px;
    appearance: none;
    border: 0;
    background-color: #a63642;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease-out, color 0.3s ease-out;
    -o-transition: background-color 0.3s ease-out, color 0.3s ease-out;
    transition: background-color 0.3s ease-out, color 0.3s ease-out;
    line-height: 1.5;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 12px;
}

@media print, screen and (min-width: 48em) {
    .cookie-pop-up__accept-button {
        width: 144px;
        height: 82px;
        font-size: inherit;
    }
}

.cookie-pop-up__accept-button > span {
    margin-left: 10px;
    display: inline-block;
}

@media print, screen and (min-width: 48em) {
    .cookie-pop-up__accept-button > span {
        margin-left: 0;
        display: block;
    }
}

.cookie-pop-up__accept-button:hover,
.cookie-pop-up__accept-button:active,
.cookie-pop-up__accept-button:focus {
    background-color: #fff;
    color: #a63642;
    opacity: 1;
}

.cookie-pop-up__accept-button:disabled,
.cookie-pop-up__accept-button[disabled],
.cookie-pop-up__accept-button:disabled:hover,
.cookie-pop-up__accept-button[disabled]:hover,
.cookie-pop-up__accept-button:disabled:active,
.cookie-pop-up__accept-button[disabled]:active,
.cookie-pop-up__accept-button:disabled:focus,
.cookie-pop-up__accept-button[disabled]:focus {
    background-color: #fff;
    color: #000;
    border: 1px solid currentColor;
    opacity: 0.25;
    cursor: not-allowed;
}

.is-active {
    display: block;
}

.is-down {
    -webkit-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}

iframe + .iframe-consent-message {
    text-align: center;
    display: none;
}

iframe:not([src]) {
    display: none;
}

iframe:not([src]) + .iframe-consent-message {
    display: block;
}
