  .cookie-consent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: calc(50% - 700px/2);
    width: 700px;
   /* width: 100%;*/
    font-size: 9px;
    color:#5F9EA0;
    background: rgba(255,255,221,.7);
    padding: 1.2em;
    box-sizing: border-box;
    visibility: hidden;
  }
  .cookie-consent.is-show {
    visibility: visible;
  }
  .cookie-consent a {
    color: #5D99FF !important;
  }
  .cookie-agree {
    color: #fff;
    background: #00CED1;
    padding: .5em 1.5em;
    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: 600px) {
    .cookie-consent {
      width: 100%;
      left: calc(50% - 100%/2);
      flex-direction: column;
      font-size: 9px;
      padding: 0.5rem 0.8rem;

    }
    .cookie-text {
      margin-bottom: 0.2rem;
    }
    .cookie-agree {
    padding: 0.2rem 1rem;
    border-radius:5px;
  }

  }
