/* GDPR Cookie 同意バナー */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 32px;
  background-color: #FFF;
  border: 1px solid #707070;
  position: relative;

}

.cookie-banner-text {
  max-width: 1036px;
  margin: 0 auto;
}

.cookie-banner-text p {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.cookie-privacy-link {
  margin-top: 28px;
  display: inline-block;
  text-decoration: underline;
  font-size: 12px;
  letter-spacing: 0.12em;
  transition: opacity 0.2s ease;
}

.cookie-privacy-link:hover {
    opacity: 0.8;
}

.cookie-banner-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  right: 25px;
  bottom: 20px;
  z-index: 2;
}

.cookie-btn {
  min-width: 125px;
  height: 32px;
  border: 1px solid #707070;
  border-radius: 3px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_jp_txt);
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cookie-btn:hover {
  opacity: 0.8;
}

.accept-btn {
  background-color: #fff;
  color: var(--fcolor);
}

.no-accept-btn {
  background-color: #484646;
  color: #fff;
  font-size: 11px;
}

.cookie-close-btn {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 25px;
  border: none;
  background: none;
}

.cookie-close-btn::before, 
.cookie-close-btn::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #707070;
  transform: translate(-50%, -50%) rotate(45deg);
}

.cookie-close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}



/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .cookie-banner {
    padding: 10px;
  }

  .cookie-banner-content {
    padding: 50px 10px 32px;
    border: none;
  }

  .cookie-banner-buttons {
    bottom: 24px;
  }

  .cookie-close-btn {
    width: 16px;
    height: 16px;
    top: 16px;
    right: 20px;
  }

  .cookie-banner-en .cookie-banner-content {
    padding-bottom: 84px;

  }
}
