
  .cookie-consent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: -150px;
    left: calc(50% - 650px/2);
    width: 650px;
    font-size: 10px;
    background: rgba(255,255,221,.7);
    padding: 0.5em;
    box-sizing: border-box;
    border: 1px solid #ddd;
    visibility: visible;
    transition: .5s;
  }
  .cookie-consent.is-show {
    top: 10px;
  }
  .cookie-consent a {
    color: #33CCFF !important;
  }  
  .cookie-text {
    width: 90%;
  }
  .cookie-agree {
    color: #fff;
    background: #00CED1;
    padding: .3em 1em;
    border-radius:5px;
  }
  .cookie-agree:hover {
    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: 650px) {
    .cookie-consent {
      flex-direction: column;
      width: 300px;
      left: calc(50% - 300px/2)
    }
    .cookie-text {
      width: 100%;
      margin-bottom: 0.4em;
    }
  }

