.cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 36px;
  z-index: 9999;
  border: 1px solid #000;
  background-color: #000;
  padding: 15px;
  /* max-width: 278px; */
  max-width: 476px;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.cookie-popup:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: #fff;
  z-index: 1;
  overflow: hidden;
}

.cookie-popup__inner {
  display: flex;
  /* flex-direction: column; */
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 3;
}

.cookie-popup__text {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #000;
  text-align: left;
  font-family: "Cormorant Garamond","Noto Serif JP",serif;
  white-space: nowrap  ;
}

.cookie-popup__text p {
  margin: 0;
  padding: 0;
}

.cookie-popup__link {
  color: #000;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.cookie-popup__link:hover {
  opacity: 0.7;
}

.cookie-popup__buttons {
  display: flex;
  gap: 12px;
}

.cookie-popup__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 26px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1.5;
}

.cookie-popup__button span {
  display: inline-block;
  position: relative;
  z-index: 3;
}

.cookie-popup__button:hover {
  opacity: 0.7;
}

/* モバイルのスタイル */
@media (max-width: 768px) {
  .cookie-popup {
    bottom: 10px;
    left: 50%;
    gap: 16px;
    transform: translateX(-50%);
    padding: 8px 15px 7px;
    width: auto;
    max-width: 396px;
  }

  .cookie-popup__inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: min(2.4vw, 20px);
  }

  .cookie-popup__text {
    font-size: 10px;
    line-height: 1.4;
  }
  
  .cookie-popup__button {
    width: 60px;
    height: 24px;
    font-size: 10px;
  } 
}