.visually-hidden {
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	margin: -1px;
}
/* Cookie Link */
  .cookie-consent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 13px;
    color: #fff;
    background: rgba(0,0,0,.9);
    padding: 1.2em;
    box-sizing: border-box;
    visibility: hidden;
    z-index: 10000;
  }
  .cookie-consent.is-show {
    visibility: visible;
  }
  .cookie-consent a {
    color: #fff !important;
  }
  .cookie-text {
    width: 80%;
    padding: 10px;
    line-height: 200%;
  }
  .cookie-text a {
    text-decoration: underline;
  }
  .cookie-text a:hover {
    text-decoration: none;
  }
  .cookie-agree {
    color: #000;
    background: #fff;
    font-weight: bold;
    padding: .5em 1.5em;
    min-width: 180px;
    border-radius: 5px;
    font-size: 16px;
    margin-right: 40px;
    text-align: center;
    line-height: 200%;
  }
  .cookie-agree:hover {
    cursor: pointer;
  }
  /* パッと消える */
  .cc-hide1 {
    display: none;
  }
  /* ゆっくり消える */
  .cc-hide2 {
    animation: hide 1s linear 0s;
    animation-fill-mode: forwards;
  }
     #cookie_info {
      padding-top: 100px;
      margin-top:-100px;
    }
  @keyframes hide {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  /* メディアクエリ */
  @media screen and (max-width: 767px) {
    .cookie-consent {
      flex-direction: column;
    }
    .cookie-text {
      margin-bottom: 1em;
      width: 100%;
      font-size: 12px;
      padding: 0px;
    }
    .cookie-agree {
        font-size: 12px;
        margin-right: 0px;
      }
     #cookie_info {
      padding-top: 80px;
      margin-top:-80px;
    }
  }