.cookie-content {
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: -200px;
  left: calc(50% - 650px/2);
  width: 650px;
  font-size: 12px;
  background: #fff;
  padding: 1.2em;
  box-sizing: border-box;
  border: 1px solid #ddd;
  visibility: visible;
  transition: .5s;
}
.cookie-content.is-show {
  bottom: 30px;
}
.cookie-text {
  width: 90%;
}
.cookie-agree {
  color: #fff;
  background: #26302d;
  padding: .5em 1.5em;
  border: 0;
  font: inherit;
  white-space: nowrap;
}
.cookie-agree:hover {
  cursor: pointer;
  background: #b45537;
}
.cookie-text strong {
  color: #26302d;
  font-size: 1.05em;
}
.cookie-text a {
  color: #b45537;
}
/* パッと消える */
.cc-hide1 {
  display: none;
}
/* ゆっくり消える */
.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/* 年齢確認オーバーレイ */
.age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .3s, visibility .3s;
}
.age-gate.is-show {
  visibility: visible;
  opacity: 1;
}
.age-gate-inner {
  background: #fff;
  border-radius: 8px;
  padding: 2.5em 2em;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.age-gate-logo {
  margin-bottom: 1em;
  text-align: center;
}
.age-gate-logo img {
  display: block;
  margin: 0 auto;
  max-width: 180px;
  height: auto;
}
.age-gate-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 0.8em;
  color: #333;
}
.age-gate-desc {
  font-size: 0.85em;
  line-height: 1.6;
  color: #777;
  text-align: left;
  margin-bottom: 0.8em;
}
.age-gate-text {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
  text-align: center;
  margin-bottom: 1.5em;
}
.age-gate-note {
  font-size: 0.75em;
  color: #999;
  line-height: 1.5;
  text-align: left;
}
.age-gate-buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-bottom: 1em;
}
.age-gate-yes,
.age-gate-no {
  padding: 0.8em 2.5em;
  font-size: 1em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity .2s;
}
.age-gate-yes {
  background: #c00;
  color: #fff;
}
.age-gate-yes:hover {
  opacity: 0.8;
}
.age-gate-no {
  background: #eee;
  color: #333;
}
.age-gate-no:hover {
  opacity: 0.8;
}

/* メディアクエリ */
@media screen and (max-width: 767px) {
  .cookie-content {
    flex-direction: column;
    width: 300px;
    left: calc(50% - 300px/2);
    bottom: -240px;
  }
  .cookie-text {
    width: 100%;
    margin-bottom: 1em;
  }
  .cookie-agree {
    width: 100%;
  }
  .loader-tagline {
    top: calc(40% + 132px);
  }
  .age-gate-inner {
    padding: 2em 1.5em;
  }
  .age-gate-buttons {
    flex-direction: column;
    gap: 0.8em;
  }
  .age-gate-yes,
  .age-gate-no {
    width: 100%;
  }
}
