#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #222;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

#cookie-consent-banner p {
  margin: 0;
  flex: 1 1 300px;
}

#cookie-consent-banner a {
  color: #fff;
  text-decoration: underline;
}

#cookie-consent-banner .cookie-consent-accept {
  flex: 0 0 auto;
  background: #fff;
  color: #222;
  border: none;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 600px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 12px;
    gap: 8px;
  }

  #cookie-consent-banner p {
    flex: 1 1 auto;
    font-size: 11px;
    line-height: 1.45;
    /* 3行までに制限し、それ以上は省略 */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #cookie-consent-banner .cookie-consent-accept {
    align-self: flex-end;
    padding: 6px 18px;
    font-size: 12px;
  }
}