.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  animation: cookie-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.cookie__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(16, 16, 16, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  text-align: left;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cookie__copy {
  min-width: 0;
}
.cookie__title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.cookie__desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.cookie__desc a {
  color: rgba(154, 209, 255, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(154, 209, 255, 0.4);
}
.cookie__desc a:hover {
  border-bottom-color: rgba(154, 209, 255, 0.8);
}
.cookie__desc a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15), 0 0 0 4px rgba(154, 209, 255, 0.28);
  border-radius: 8px;
  padding: 2px 4px;
  margin: -2px -4px;
}
.cookie__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 520px) {
  .cookie__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie__actions {
    justify-content: flex-end;
  }
}

@keyframes cookie-in {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cbtn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 140ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 140ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 140ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cbtn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}
.cbtn:active {
  transform: translateY(1px);
}
.cbtn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15), 0 0 0 4px rgba(154, 209, 255, 0.28);
}
.cbtn--primary {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(15, 15, 15, 0.95);
  border-color: rgba(255, 255, 255, 0.92);
}
.cbtn--primary:hover {
  background: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}
.cbtn--icon {
  width: 34px;
  height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.cmodal {
  display: none;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.52);
  animation: modal-in 200ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.cmodal.is-open {
  display: flex;
  pointer-events: auto;
}
.cmodal__panel {
  width: min(560px, 100%);
  border-radius: 18px;
  background: rgba(16, 16, 16, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}
.cmodal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cmodal__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.cmodal__body {
  padding: 10px 14px 2px;
}
.cmodal__footer {
  padding: 12px 14px 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@keyframes modal-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.ctoggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}
.ctoggle:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ctoggle__left {
  min-width: 0;
}
.ctoggle__label {
  font-size: 13px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2px;
  text-align: left;
}
.ctoggle__help {
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
}
.ctoggle__input {
  width: 18px;
  height: 18px;
  accent-color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}
.ctoggle__input:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.ctoggle__input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15), 0 0 0 4px rgba(154, 209, 255, 0.28);
  border-radius: 6px;
}

/*# sourceMappingURL=cookie_banner.css.map */
