@charset "utf-8";  
 .cookie-consent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: -200px;
    left: calc(50% - 750px/2);
    width: 750px;
    font-size: 16px;
	font-weight: bold;
	line-height: 25px;
	color: #ffffff;
    background-color: rgba(0,0,0,0.7);
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    visibility: visible;
    transition: .5s;
  }
  .cookie-consent.is-show {
    bottom: 5px;
  }
  .cookie-text {
    width: 90%;
  }
  .cookie-agree {
    color: #fff;
    background: #20984e;
    padding: .5em 1.5em;
    border: 2px solid #ddd;	
  }
  .cookie-agree:hover {
    cursor: pointer;
  }
.cookie-text a:link, 
.cookie-text a:visited, 
.cookie-text a:hover, 
.cookie-text a:active {
	color: #ffffff;
  }
.copyright {
    height: 150px;
}



  /* パッと消える */
  .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: 350px;
      left: calc(50% - 350px/2);
	  font-size: 12px;
	  line-height: 20px;
    margin-bottom: 50px;
    }
    .cookie-text {
      width: 100%;
      margin-bottom: 1em;
    }
  }
