.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(1000px, 100vw - 48px);
  background: #FFFFFF;
  box-shadow: 0px 24px 48px -12px rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  padding: 32px;
  z-index: 9999;
  font-family: "Noto Sans JP", sans-serif;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.cookie-consent.is-visible {
  opacity: 1;
}
.cookie-consent.is-hiding {
  opacity: 0;
  pointer-events: none;
}
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent .cookie-consent-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.cookie-consent .cookie-consent-text {
  flex: 1 1 auto;
  margin: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.02em;
  color: #231815;
}
.cookie-consent .cookie-consent-text-sp {
  display: none;
}
.cookie-consent .cookie-consent-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent .cookie-consent-link:hover {
  opacity: 0.7;
}
.cookie-consent .cookie-consent-agree {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  min-width: 114px;
  background: #006FD6;
  color: #FFFFFF;
  border: none;
  border-radius: 1000px;
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.cookie-consent .cookie-consent-agree:hover, .cookie-consent .cookie-consent-agree:focus-visible {
  opacity: 0.85;
}
.cookie-consent .cookie-consent-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 0;
}
.cookie-consent .cookie-consent-close:hover, .cookie-consent .cookie-consent-close:focus-visible {
  opacity: 0.8;
}
.cookie-consent .cookie-consent-close svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .cookie-consent {
    width: min(342px, 100vw - 32px);
    bottom: 16px;
    padding: 24px;
    border-radius: 8px;
  }
  .cookie-consent .cookie-consent-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .cookie-consent .cookie-consent-text {
    font-size: 14px;
    line-height: 150%;
    align-self: stretch;
  }
  .cookie-consent .cookie-consent-text-pc {
    display: block;
  }
  .cookie-consent .cookie-consent-text-sp {
    display: none;
  }
  .cookie-consent .cookie-consent-agree {
    width: auto;
    min-width: 0;
    padding: 8px 16px;
    background: #231815;
    border: 1px solid #231815;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    letter-spacing: 0.02em;
    margin-top: 8px;
  }
  .cookie-consent .cookie-consent-close {
    top: -10px;
    right: -10px;
  }
}
