/* ============================
   Lingerica.plus Cookie UI
   ============================ */
body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  background: #fafafa;
  color: #333;
}

.header {
  background: #e91e63;
  color: #fff;
  padding: 1rem;
  text-align: center;
}

.content {
  padding: 1.5rem;
  max-width: 600px;
  margin: auto;
}

h2 {
  margin-top: 1.5rem;
}

#consentStatus ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #e91e63;
  color: white;
}

.btn-secondary {
  background: #eee;
  color: #333;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
}

.modal-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
}

.footer {
  text-align: center;
  padding: 1rem;
  font-size: 13px;
  color: #666;
}

label {margin-bottom:20px;}

/* スマホ最適化 */
@media (max-width: 480px) {
  body { font-size: 14px; }
  .modal-content { width: 95%; }
}
