@charset "Shift_JIS";
/* ----Cookieポリシー同意---- */
.block-cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  color: #fff;
  background: rgba(0,0,0,.7);
  padding: 23px 30px;
  box-sizing: border-box;
  visibility: visible;
  text-align: left;
  z-index:110;
}
.block-cookie-consent--text a {
  color: #fff;
}
.block-cookie-consent--text {
    line-height: 1.5;
}
.block-cookie-consent--btn {
  display: inline-block;
  min-width: 70px;
  width: 120px;
  color: #000;
  background: #fff;
  padding: 5px 0;
  cursor: pointer;
  text-align: center;
}
.block-cookie-close {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 5px;
    cursor: pointer;
}
.block-cookie-close::before,.block-cookie-close::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.block-cookie-close::before {
    transform: rotate(45deg);
}
.block-cookie-close::after {
    transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
    .block-cookie-consent {
        flex-direction: column;
        padding: 10px 15px;
    }
    .block-cookie-consent--text {
        margin-bottom: 8px;
        text-align: center;
    }
}