/* ════════════════════════════════
   Cookie同意バナー
   cookie_consent.css
════════════════════════════════ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a2e;
  color: rgba(255,255,255,.88);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -2px 16px rgba(0,0,0,.25);
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: .85rem;
  line-height: 1.7;
}

#cookie-banner.hidden {
  display: none;
}

#cookie-banner-text {
  flex: 1;
}

#cookie-banner-text a {
  color: #e85d04;
  text-decoration: none;
}

#cookie-banner-text a:hover {
  text-decoration: underline;
}

#cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

#cookie-btn-accept {
  background: #e85d04;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 10px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

#cookie-btn-accept:hover {
  background: #c94d00;
}

#cookie-btn-close {
  background: transparent;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 4px;
  padding: 10px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}

#cookie-btn-close:hover {
  border-color: rgba(255,255,255,.65);
  color: #ffffff;
}

/* SP対応 */
@media (max-width: 768px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 16px;
    gap: 16px;
  }

  #cookie-banner-actions {
    width: 100%;
  }

  #cookie-btn-accept,
  #cookie-btn-close {
    flex: 1;
    text-align: center;
    padding: 12px;
  }
}
