@charset "euc-jp";
.cookie-consent {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, .7);
  padding: 1.2em;
  box-sizing: border-box;
  visibility: hidden;
}
.cookie-consent.is-show {
  visibility: visible;
}
.cookie-consent a:link, .cookie-consent a:visited, .cookie-consent a:hover, .cookie-consent a:active {
  color: #fff !important;
  text-decoration: underline;
}
.cookie-agree, .cookie-reject {
  color: #fff;
  background: dodgerblue;
  padding: .5em 1.5em;
  margin-left: 20px;
  font-size: 1.1em;
}
.cookie-agree:hover, .cookie-reject:hover {
  cursor: pointer;
}
.cookie-close {
  width: 10px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 9;
  color: #fff;
  cursor: pointer;
}
.cc-hide1 {
  display: none;
}
.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}    
@media screen and (max-width: 600px) {
  .cookie-consent {
      flex-wrap: wrap;
  }
  .cookie-text {
    margin-bottom: 1em;
    width: 100%;
    padding-right: 14px;
}
    .cookie-agree, .cookie-reject {
        margin-left: 0;
    }
    .cookie-agree {
        margin-right: 10px;
    }
}
