/* 使ってない */
/* body.with-cookie-bar { 
  padding-top: 35px; 
}

.cookie-bar {
    position: fixed;
    width: 100%;
    top: 0;
    text-align: center;
    height: 25px;
    line-height: 25px;
    background: #eeeeee;
} */

.cookie-bar {
    position: fixed;
    width: 100%;
    bottom: 0;
    text-align: left;
    padding: 15px;
    background: #333333f0;
    color: #fff;
    font-size: 12px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;  /* 最前面に表示 */
}
.cookie-message{
    padding: 10px;
}
.cookie-bar a {
    /* color: #ffcc00; */
    text-decoration: none;
    font-weight: bold;
}

.cookie-button-container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 5px;
}

.cookie-button{
    background: #ffcc00;
    color: #333;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 2px;
    margin: 10px 10px;
}

.cookie-bar {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}
.cookie-bar.show {
    opacity: 1;
}
.cookie-bar.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* クリックなどのイベントを無効化 */
}
