@charset "Shift_JIS";
/* ----Cookieポリシー同意---- */
#cookieBox{display: none !important;}
#cookieBox.fade_cookie{display: block !important;}
#cookieBox.fade_cookie_off{display: none !important;}

.block-cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 14px;
  color: #f8f3e8;
  background: rgba(0,66,54,0.7);
  padding: 1.2em;
  box-sizing: border-box;
  visibility: visible;
  text-align: left;
  z-index:110;
  flex-wrap: wrap;
  margin-top: 10px;
}

.fade_cookie .block-cookie-consent{
disply:block;
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.block-cookie-consent--text {
  color: #f8f3e8;
  font-family: 'Open Sans', sans-serif;
}
.block-cookie-consent--text a {
  color: #f8f3e8;
}
.block-cookie-consent--btn {
  display: inline-block;
  width: 100px;
  color: #004236;
  background: #d6ce4b;
  padding: .5em 1.5em;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
}
.block-cookie-consent--btn:hover{
  color: #f8f3e8;
  background: #004236;
}




@media screen and (max-width: 768px) {
  .block-cookie-consent {
  font-size: 12px;
}
.block-cookie-consent--btn {
  width: 100%;
}
}
