.cookie-consent {
  position: fixed;
  z-index: 3000;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 16px;
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 20px;
  color: #684a49;
  background: rgba(255, 253, 252, .96);
  border: 1px solid #ecd4d7;
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(112, 73, 72, .18);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: .035em;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__title {
  margin: 0 0 8px;
  color: #4d3332;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.cookie-consent__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  text-align: justify;
}

.cookie-consent__actions {
  display: grid;
  gap: 10px;
}

.cookie-consent__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
}

.cookie-consent__button--accept {
  color: #fff;
  background: linear-gradient(135deg, #c77988, #ad5e6e);
  border: 1px solid rgba(255, 255, 255, .78);
  box-shadow: 0 10px 24px rgba(157, 88, 103, .22);
}

.cookie-consent__button--necessary {
  color: #9f5867;
  background: #fff;
  border: 1px solid #dfb8c2;
}

.cookie-consent__button:focus-visible {
  outline: 2px solid #9f5867;
  outline-offset: 3px;
}

@media (min-width: 760px) {
  .cookie-consent {
    grid-template-columns: 1fr 280px;
    align-items: center;
    padding: 24px 28px;
  }

  .cookie-consent__title {
    font-size: 17px;
  }

  .cookie-consent__text {
    font-size: 13px;
  }
}
