@charset "UTF-8";


/* cookie設定 */

.c-cookie__box {
    box-sizing: border-box;
    display: flex;
    z-index: 999;
    position: fixed;
    bottom: 0;
    left: 0;
    justify-content: center;
    width: 100%;
    padding: 10px 40px;
    background: rgba(0, 0, 0, 0.8);
}

.c-cookie__box .c-container.en {
    display: none;
}

.c-cookie__box .c-container {
    display: flex;
    align-items: center;
}

.c-cookie__text {
    width: 75%;
    margin: 0 40px 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.75;
}

.c-cookie__text p {
    line-height: 2;
}

.c-cookie__btn {
    display: flex;
}



.c-cookie__btn--consent a:hover,
.c-cookie__btn--detail a:hover,
.c-cookie__btn--reject a:hover {
    opacity: 0.7;
    background-color: #252525;
    color: #fff;
    border: #fff solid 1px;
}

.c-cookie__btn--consent,
.c-cookie__btn--reject {
    margin: 0 25px 0 0;
}

.c-cookie__btn--consent a,
.c-cookie__btn--detail a,
.c-cookie__btn--reject a {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 40px;
    padding: 10px;
    background-color: #fff;
    color: #252525;
    text-decoration: none;
    font-size: 13px;
    transition: 0.4s ease;
    font-weight: 600;
}


@media (max-width:768px) {
    .c-container {
        flex-direction: column;
    }

    .c-cookie__text {
        margin: 0 20px 0;
        width: 85%;
    }

    .c-cookie__btn {
        margin-top: 10px;

    }

    .c-cookie__text p {
        line-height: 1.8;
    }


}

@media only screen and (max-width: 480px) {

    .c-cookie__btn--consent,
    .c-cookie__btn--reject {
        margin-bottom: 15px;
    }

    .c-cookie__btn {
        flex-wrap: wrap;
        justify-content: center;
    }

    .c-cookie__box {
        padding: 5px 5px 10px 5px;
    }

    .c-cookie__btn--reject {
        margin: 0;
    }
}

.youtube-text-none {
    display: none !important;
}