/*! 通知バーのアニメーション用 */
@-webkit-keyframes ga-cookie-accept-bar-slide-in {
  from {
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes ga-cookie-accept-bar-slide-in {
  from {
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes ga-cookie-accept-bar-slide-out {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
  }
}
@keyframes ga-cookie-accept-bar-slide-out {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(120px);
            transform: translateY(120px);
  }
}
/*! 通知バー */

.module-ga-cookie-accept-bar p{
    color:#ffffff;
}

.module-ga-cookie-accept-bar {
  -webkit-animation-duration: .6s;
          animation-duration: .6s;
  -webkit-animation-name: ga-cookie-accept-bar-slide-in;
          animation-name: ga-cookie-accept-bar-slide-in;
  background-color: #24C6F2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: .875rem;
  line-height: 1.5;
  padding: 5px 0 5px 20px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  min-width: 1024px;
  z-index: 1000;
  border-top:solid 2px #ffffff;
}
.module-ga-cookie-accept-bar.state-remove {
  -webkit-animation-duration: .6s;
          animation-duration: .6s;
  -webkit-animation-name: ga-cookie-accept-bar-slide-out;
          animation-name: ga-cookie-accept-bar-slide-out;
}
.module-ga-cookie-accept-bar p {
  margin: 1em 0;
}
.module-ga-cookie-accept-bar a {
  color: inherit;
  text-decoration: underline;
}
.module-ga-cookie-accept-bar .material-icons {
  vertical-align: middle;
  margin-right: .2em;
}
.module-ga-cookie-accept-bar p button:first-child {
  margin-right: 1em;
}
/*! ボタン */
.module-ga-cookie-accept-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  position: absolute;
  bottom:0;
  right:10px;
  display: inline-block;
  background-color: #fff;
  border: 2px solid #fff;
  color: #24C6F2;
  font-family: inherit;
  font-size: 1em;
  margin-bottom: .5em;
  padding: .5em 1em;
  border-radius: 3px;
}

#name-ga-cookie-deny-btn{
  bottom:0;
  right:150px;
}

.module-ga-cookie-accept-btn:hover{
  cursor: pointer;
  opacity: 0.7;
}
.module-ga-cookie-accept-btn.module-ga-cookie-deny-btn {
  background-color: transparent;
  border-color: #fff;
  color:#fff;
}

#ga-cookie-reset{
    position: absolute;
    bottom:5px;
    right:20px;
}
    #ga-cookie-reset button{
        background: none;
        border: none;
        text-decoration: underline;
        color:#fff;
    }
