/* body {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 768px) {
  body {
    padding-bottom: 160px  !important;
  }
}
body.is-cookie {
  padding-bottom: 0 !important;
} */
.cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: rgba(0,0,0,.5);
  padding: 1.2em;
  box-sizing: border-box;
  visibility: hidden;
    font-size: 1.6rem;
   z-index: 99999;
  }
@media screen and (max-width: 768px) {
  .cookie-consent.is-recruit {
    padding: 1.2rem 1.2rem 70px 1.2rem;
  }
}
  .cookie-consent.is-show {
    visibility: visible;
  }
  .cookie-consent a {
    color: #fff !important;
    transition: all 0.3s;
  }
  .cookie-consent a:hover {
    text-decoration: underline;
  }
  .cookie-agree {
    color: #fff;
    background: #418AC9;
    padding: .5em 1.5em;
    transition: all 0.3s;
    width: 97px;
    text-align: center;
  }
  .cookie-agree:hover {
    opacity: 0.7
  }
  .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;
    }
  }
.cookie-text {
  line-height: 1.5;
  padding-right: 20px;
}
  /* メディアクエリ */
  @media screen and (max-width: 768px) {
    .cookie-consent {
      flex-direction: column;
    }
    .cookie-text {
      margin-bottom: 1em;
      padding-right: 0;
    }
  }