
/* 背景のオーバーレイ */
#gdpr-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒 */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

/* 中央のモーダル */
#gdpr-banner {
  background-color: white;
  padding: 25px 35px;
  border-radius: 8px;
  max-width: 860px;
  width: 90%;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1;
}

#gdpr-banner h6 {
  margin-top: 0;
  font-size: 22px;
  color: #333;
  font-weight: 800;
}

#gdpr-banner h6 i{
  color: #d53232;
  font-size: 23px;
  padding: 0 10px 0 0;
}

#gdpr-banner p {
  margin: 25px 0 35px 0;
  font-size: 17px;
  text-align: left;
}

#gdpr-banner p a{
	color: #050fb0;
	font-weight: 600;
}

#gdpr-banner button {
  width: 200px;
  margin: 0 10px;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.accept {
  background-color: #d53232;
  color: white;
}

.accept:hover {
  background-color: #e06262
}

.decline {
  background-color: #eaeaea;
  color: black;
}

.decline:hover {
  background-color: #f5f3f3;
}

/* ログインボタンを早押し対策 */
#loginLink {
  pointer-events: none;
  opacity: 0.5;
}