.cc-banner.cc-bottom {
      background-color: rgba(255, 255, 255, 0.8)!important;
  -webkit-backdrop-filter: blur(.3125rem);
    backdrop-filter: blur(.3125rem);
    width: 97%;
    min-width: auto;
    font-family: "Noto Sans JP",sans-serif;
    background: #fffc;
    border-radius: .25rem;
    bottom: .375rem;
    left: 50%;
    translate: -50%;
    box-shadow: 0 -4px 16px #2f313429;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    position: fixed;
    height: auto;
    z-index: 100000;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 20px;
    text-align: center;
    font-weight: normal;
    -webkit-backdrop-filter: blur(.3125rem);
    backdrop-filter: blur(.3125rem);
}
.cc-body {
  display: grid;
  color: #2f3134;
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
      gap: 1.25rem;
    display: grid;
}
.cc-message {
  text-align:left;
}
.cc-message a {
  color: #2f3134;
}
.cc-compliance {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  place-items: center;
}
.cc-btn {
  z-index: 0;
  font-weight: 600;
  line-height: 1.4;
}
.cc-allow {
    color: rgb(255, 255, 255)!important;
  background-color: #004ea2!important;
    border-radius: .25rem;
    padding-block: .375rem;
    padding-inline: .75rem;
    position: relative;
    overflow: hidden;
    text-transform: none;
    display: block;
    cursor: pointer;
    touch-action: manipulation;
    white-space: nowrap;
    outline: none;
    box-shadow: none;
    text-shadow: none;
    border: none;
    text-decoration: none;
}
.cc-deny{
    color: #004ea2!important;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 100% 1px;
    padding-block: 2px;
    padding-inline: 0;
    transition: color .3s;
    display: inline-block;
    position: relative;
    background-color: unset !important;
}
.cc-allow:hover {
  text-decoration: none;
}
.cc-allow:hover:before {
    background-position: 0 100%;
    background-size: 100% 100%;
}
.cc-allow:before {
    transform-origin: 100% 100%;
    z-index: -1;
    transition: background-size .3s cubic-bezier(.4,1,.64,1);
    background-image: linear-gradient(90deg, #0091db, #0091db);
    content: "";
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: 0 100%;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
.cc-message a:hover, .cc-deny:hover {
  text-decoration: none;
    color: #0091db!important;
    animation: .4s move-underline-animation;
}
@media screen and (min-width: 768px) {
  .cc-banner.cc-bottom {
    width: 98%;
    max-width: 89rem;
    bottom: .5rem;
  }
  .cc-body {
    padding-block: 1.25rem;
    padding-inline: 2.5rem;
    grid-template-columns: 1fr auto;
        align-items: center;
        gap: 2.5rem;
  }
  .cc-compliance {
     gap: .5rem 1.75rem;
  }
  .cc-btn {
    font-size: .75rem;
  }
  .cc-allow {
    padding-block: .6875rem;
    padding-inline: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 980px){
  .cc-compliance {
    display: grid;
  }
}
@media screen and (min-width: 1440px) {
  .cc-banner.cc-bottom{
      width: 100%;
  }
}

@keyframes move-underline-animation {
  0% {
    background-position: right bottom;
    background-size: 100% 1px;
  }

  45% {
    background-position: right bottom;
    background-size: 0 1px;
  }

  56% {
    background-position: left bottom;
    background-size: 0 1px;
  }

  100% {
    background-position: left bottom;
    background-size: 100% 1px;
  }
}