@charset "UTF-8";
  .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, .8);
    padding: 1.2em;
    box-sizing: border-box;
    visibility: hidden;
    z-index: 9999;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;
    font: 13px/1.75 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS P Gothic', sans-serif;
  }
  .cookie-consent.is-show {
    visibility: visible;
    bottom: 0%;
    left: 0%;
  }
  .cookie-consent a {
    color: #666 !important;
    text-decoration: none;
  }
  .cookie-inner {
    width: 950px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cookie-inner p {
    text-align: left;
    width: 63%;
    padding-right: 1.5em;
    color: #fff;
    font: 13px/1.75 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS P Gothic', sans-serif;
    z-index: 9998;
  }
  .cookie-btn-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 37%;
  }
  .cookie-agree {
    color: #fff;
    background: #3f7ac3;
    width: 14em;
    margin-right: 1.5em;
    text-align: center;
    padding: 1.5em 1em;
  }
  .cookie-more{
    color: #666;
    background: #fff;
    border: 1px solid #3f7ac3;
    width: 14em;
    padding: 0 .8em;
  }
  .cookie-agree:hover, .cookie-more:hover {
    cursor: pointer;
    opacity: 0.7;
  }
  .cookie-agree a, .cookie-more a {
    display: block;
    padding: 1.5em 2.5em;
  }
  .cc-hide {
    animation: hide 1s linear 0s;
    animation-fill-mode: forwards;
  }
  @keyframes hide {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  @media screen and (max-width: 768px){
    .cookie-consent {
      flex-direction: column;
    }
    .cookie-text {
      margin-bottom: 1em;
    }
    
    .cookie-inner {
      width: 100%;
    }
    .cookie-inner p {
      width: 100%;
      display: block;
      margin-bottom: 4.5em;
    }
    .cookie-btn-area {
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      bottom: 0;
      width: 91vw;
      margin-bottom: 1.5em;
    }
    #footer > div.cookie-consent > div.cookie-inner > p > br.pc { display: none;}
    .cookie-agree {
      color: #fff;
      background: #3f7ac3;
      padding: .5em 2.5em;
      width: 50%;
    }
    .cookie-more{
      color: #666;
      background: #fff;
      border: 1px solid #3f7ac3;
      padding: .5em 2.5em;
      width: 50%;
    }
    .cookie-agree a, .cookie-more a {
      display: contents;
      padding: 0;
    }
    .pc {
      display: none !important;
    }
  }